:root {
  --black: #000000;
  --white: #ffffff;
  --ink: #111111;
  --muted: #626262;
  --line: rgba(0, 0, 0, 0.12);
  --line-dark: rgba(255, 255, 255, 0.16);
  --coffee: #443627;
  --honey: #d98324;
  --cream: #efdcab;
  --pale: #f2f6d0;
  --ivory: #fbfaf7;
  --stone: #f3f0e9;
  --radius: 0;
  --header-height: 76px;
  --button-width: 340px;
  --shadow: 0 24px 58px rgba(0, 0, 0, 0.14);
  --soft-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
  scrollbar-color: var(--black) var(--ivory);
  scrollbar-width: thin;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  overscroll-behavior-y: auto;
}

body.menu-open {
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

*::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

*::-webkit-scrollbar-track {
  background: var(--ivory);
}

*::-webkit-scrollbar-thumb {
  border: 3px solid var(--ivory);
  background: linear-gradient(180deg, var(--black), var(--coffee));
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--honey);
}

*::-webkit-scrollbar-corner {
  background: var(--ivory);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-weight: 520;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 5.2vw, 3.85rem);
}

h2 {
  max-width: 780px;
  font-size: clamp(2.15rem, 3.4vw, 2.55rem);
}

h3 {
  font-size: 1.28rem;
}

p {
  color: var(--muted);
}

address {
  margin: 0;
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section-band {
  padding: 72px 0;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.preloader {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-items: center;
  background: #080808;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 420ms ease,
    visibility 420ms ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: grid;
  justify-items: center;
  gap: 24px;
}

.preloader img {
  width: 154px;
}

.preloader span {
  width: 168px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.preloader span::before {
  display: block;
  width: 42%;
  height: 100%;
  content: "";
  background: var(--honey);
  animation: preloader-line 1100ms ease-in-out infinite;
}

@keyframes preloader-line {
  0% {
    transform: translateX(-105%);
  }

  100% {
    transform: translateX(250%);
  }
}

.legal-consent {
  position: fixed;
  z-index: 2600;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
}

.legal-consent.is-visible {
  display: grid;
}

.legal-consent__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(10px);
}

.legal-consent__dialog {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: clamp(24px, 5vw, 38px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.legal-consent__dialog h2 {
  font-size: clamp(2rem, 8vw, 3rem);
}

.legal-consent__dialog p {
  margin-top: 12px;
}

.legal-consent__links {
  margin-top: 14px;
}

.legal-consent__links a,
.privacy-inline-button {
  color: var(--honey);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-consent__message {
  min-height: 24px;
  color: var(--coffee);
  font-weight: 800;
}

.legal-consent__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

.skip-link:focus {
  z-index: 2000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--white);
  background: var(--black);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition:
    min-height 180ms ease,
    background 180ms ease,
    backdrop-filter 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  transition: min-height 180ms ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 60px;
}

.brand {
  position: relative;
  display: inline-flex;
  width: 104px;
  align-items: center;
  outline: 0;
  transform-origin: center;
  transition:
    width 180ms ease,
    filter 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.brand img {
  width: 104px;
  height: auto;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.brand:hover,
.brand:focus-visible {
  filter: drop-shadow(0 10px 18px rgba(217, 131, 36, 0.16));
  transform: translateY(-1px) scale(1.035);
}

.brand:focus-visible {
  outline: 1px solid var(--honey);
  outline-offset: 8px;
}

.brand:hover img,
.brand:focus-visible img {
  filter: contrast(1.08);
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .brand img {
  width: 86px;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  color: var(--ink);
  font-size: 0.9rem;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.privacy-page-nav {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--black);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  width: min(100%, var(--button-width));
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 15px 24px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.16);
}

.btn:focus-visible {
  outline: 2px solid var(--honey);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.btn-primary:hover {
  color: var(--black);
  background: var(--honey);
  border-color: var(--honey);
}

.btn-outline {
  color: var(--black);
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.22);
}

.btn-outline:hover {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.eyebrow {
  color: var(--honey);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero {
  min-height: auto;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 34px) 0 30px;
  background: var(--ivory);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 42px;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-text {
  max-width: 620px;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .btn {
  width: min(100%, var(--button-width));
}

.hero-media img {
  width: 100%;
  max-height: 470px;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.trust-row span {
  min-height: 62px;
  display: grid;
  align-content: center;
  gap: 2px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.trust-row strong {
  color: var(--black);
  font-size: 1.15rem;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 700px;
}

.departments {
  background: var(--stone);
}

.department-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.department-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.department-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #efefef;
}

.department-card div {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.department-card span,
.highlight-grid span,
.about-facts span {
  color: var(--honey);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.department-card.compact img {
  aspect-ratio: 16 / 10;
}

.feature-card {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.feature-card:hover {
  border-color: rgba(0, 0, 0, 0.24);
  box-shadow: var(--soft-shadow);
  transform: translateY(-4px);
}

.split-layout,
.reviews-layout,
.location-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 42px;
}

.section-copy,
.contact-copy {
  display: grid;
  gap: 16px;
}

.about-panel {
  position: relative;
}

.about-panel img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-facts {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 280px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.about-facts strong {
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.highlights {
  padding-top: 0;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.highlight-grid article {
  min-height: 170px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding: 24px 0 0;
}

.showcase {
  color: var(--white);
  background: var(--black);
  padding-bottom: 58px;
}

.dark-heading h2,
.dark-heading p:not(.eyebrow) {
  color: var(--white);
}

.showcase-carousel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
}

.showcase-shell {
  position: relative;
  min-width: 0;
}

.showcase-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 18px;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.showcase-track::-webkit-scrollbar {
  display: none;
}

.showcase-track:focus-visible {
  outline: 1px solid var(--honey);
  outline-offset: 6px;
}

.showcase-item {
  position: relative;
  flex: 0 0 min(58%, 720px);
  height: clamp(280px, 42vh, 380px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #1d1d1d;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  transform: translateZ(0);
}

.showcase-item::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.76) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 42%);
  opacity: 0.9;
  transition: opacity 260ms ease;
}

.showcase-item::after {
  position: absolute;
  z-index: 2;
  inset: 16px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.985);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.94) contrast(1.02);
  transform: scale(1);
  transition:
    filter 360ms ease,
    transform 700ms ease;
}

.showcase-item:hover img,
.showcase-item:focus-within img {
  filter: saturate(1.04) contrast(1.08);
  transform: scale(1.065);
}

.showcase-item:hover::before,
.showcase-item:focus-within::before {
  opacity: 0.68;
}

.showcase-item:hover::after,
.showcase-item:focus-within::after {
  opacity: 1;
  transform: scale(1);
}

.showcase-item figcaption {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 22px;
  left: 22px;
  max-width: 560px;
  display: grid;
  gap: 8px;
  border-left: 2px solid var(--honey);
  padding: 0 0 0 18px;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.25;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.42);
  transform: translateY(8px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.showcase-item figcaption span {
  color: var(--honey);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-item:hover figcaption,
.showcase-item:focus-within figcaption {
  transform: translateY(0);
}

.carousel-control {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-dark);
  color: var(--black);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
  font-size: 1.85rem;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.carousel-control:hover,
.carousel-control:focus-visible {
  color: var(--white);
  background: var(--honey);
  border-color: var(--honey);
  transform: translateY(-50%) scale(1.06);
}

.carousel-control-prev {
  left: 18px;
}

.carousel-control-next {
  right: 18px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
}

.carousel-dot {
  width: 34px;
  height: 4px;
  border: 0;
  background: rgba(255, 255, 255, 0.3);
  transition:
    background 180ms ease,
    transform 180ms ease,
    width 180ms ease;
}

.carousel-dot:hover,
.carousel-dot:focus-visible {
  background: rgba(255, 255, 255, 0.72);
}

.carousel-dot.is-active {
  width: 48px;
  background: var(--honey);
}

.reviews {
  background: var(--stone);
}

.reviews-layout {
  align-items: start;
}

.reviews-summary {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 100px;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.score-grid div,
.testimonial,
.instagram-panel,
.store-card,
.map-frame {
  border: 1px solid var(--line);
  background: var(--white);
}

.score-grid div {
  min-height: 98px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px;
}

.score-grid strong {
  color: var(--black);
  font-size: 1.55rem;
}

.score-grid span {
  color: var(--muted);
}

.testimonial-list {
  display: grid;
  gap: 16px;
}

.testimonial {
  margin: 0;
  padding: 22px;
}

.testimonial p {
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.08rem;
}

.testimonial cite {
  display: block;
  margin-top: 18px;
  color: var(--honey);
  font-style: normal;
  font-weight: 800;
}

.faq {
  background: var(--ivory);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--honey);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  max-width: 780px;
  padding-top: 14px;
}

.instagram {
  background: var(--ivory);
}

.instagram-panel {
  display: grid;
  min-width: 0;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 28px;
  border-color: rgba(255, 255, 255, 0.12);
  padding: 30px;
  overflow: hidden;
  color: var(--white);
  background: #080808;
}

.instagram-copy {
  display: grid;
  gap: 14px;
}

.instagram-copy h2,
.instagram-copy p {
  color: var(--white);
}

.instagram-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.instagram-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.instagram-stats span {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 4px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.instagram-stats strong {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.3rem;
}

.instagram-preview {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(120px, 1fr));
  gap: 12px;
  height: clamp(290px, 38vh, 380px);
}

.instagram-preview figure {
  position: relative;
  min-height: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #151515;
}

.instagram-preview figure:first-child {
  grid-row: span 2;
}

.instagram-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.01);
  transition:
    filter 320ms ease,
    transform 520ms ease;
}

.instagram-preview figure:hover img {
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1.07);
}

.instagram-preview figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border: 1px solid var(--line-dark);
  padding: 10px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.64);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.store-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.store-card:hover,
.store-card.is-active,
.store-card:has([aria-pressed="true"]) {
  border-color: rgba(0, 0, 0, 0.34);
  box-shadow: var(--soft-shadow);
  transform: translateY(-2px);
}

.store-card span {
  color: var(--honey);
  font-weight: 800;
  text-transform: uppercase;
}

.store-card address {
  max-width: 520px;
  font-weight: 650;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.store-actions .btn {
  width: min(100%, var(--button-width));
}

.store-actions a {
  border-bottom: 1px solid currentColor;
  color: var(--black);
  font-weight: 800;
}

.map-frame {
  min-height: 420px;
  overflow: hidden;
  background: var(--stone);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.contact {
  background: var(--black);
}

.contact.section-band {
  padding-top: 58px;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-copy {
  align-content: center;
}

.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--white);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form textarea {
  min-height: 112px;
  overflow-y: hidden;
  resize: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 24px;
  color: var(--muted);
  font-weight: 700;
}

.form-status.is-error {
  color: #8b1f1f;
}

.form-actions {
  display: grid;
  gap: 14px;
  justify-items: stretch;
}

.form-actions .btn {
  width: 100%;
  max-width: none;
}

.form-whatsapp-link {
  width: 100%;
}

.optional-field {
  color: var(--muted);
  font-size: 0.86em;
  font-weight: 700;
}

.privacy-accept {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  border: 1px solid var(--line);
  padding: 14px;
  color: var(--muted);
  font-weight: 700;
}

.privacy-accept input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--black);
}

.privacy-inline-button {
  border: 0;
  padding: 0;
  color: var(--black);
  background: transparent;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-inline-button:hover {
  color: var(--honey);
}

.site-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms ease;
}

.site-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.site-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
}

.site-modal__dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow-y: auto;
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 48px);
  background: var(--white);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
  transform: translateY(18px) scale(0.98);
  transition: transform 220ms ease;
}

.site-modal.is-open .site-modal__dialog {
  transform: translateY(0) scale(1);
}

.site-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  font-size: 1.6rem;
  line-height: 1;
}

.site-modal__close:hover {
  color: var(--white);
  background: var(--black);
}

.site-modal h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.site-modal p + p {
  margin-top: 14px;
}

.site-modal__actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.site-modal__actions .btn {
  width: 100%;
}

.legal-main {
  padding: calc(var(--header-height) + 54px) 0 80px;
  background: var(--ivory);
}

.legal-hero {
  padding-bottom: 34px;
}

.legal-hero h1 {
  max-width: 940px;
}

.legal-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: start;
}

.legal-document {
  display: grid;
  gap: 26px;
  border: 1px solid var(--line);
  padding: clamp(26px, 4vw, 48px);
  background: var(--white);
}

.legal-document section {
  display: grid;
  gap: 10px;
}

.legal-document h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.legal-document ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.legal-actions {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  padding: 18px;
  background: var(--white);
}

.site-footer {
  padding: 54px 0;
  color: var(--white);
  background: #0b0b0b;
}

.footer-stack {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.site-footer img {
  width: 132px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-nav,
.footer-addresses,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-nav {
  gap: 18px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-addresses {
  max-width: 980px;
  gap: 12px;
}

.footer-addresses a {
  min-width: 220px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line-dark);
  padding: 16px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.footer-addresses a:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.footer-addresses strong {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.05rem;
}

.footer-addresses span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.site-footer .btn-footer-top {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.site-footer .btn-footer-top:hover {
  color: var(--white);
  background: var(--honey);
  border-color: var(--honey);
}

.footer-copy {
  font-size: 0.86rem;
}

.pull-refresh-indicator {
  position: fixed;
  z-index: 1200;
  top: 12px;
  left: 50%;
  min-width: 132px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--soft-shadow);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -18px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.pull-refresh-indicator.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.pull-refresh-indicator.is-ready {
  color: var(--white);
  background: var(--black);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 821px) and (max-height: 760px) {
  .section-band {
    padding: 58px 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + 24px);
  }

  .hero-media img {
    max-height: 420px;
  }

  .showcase-item,
  .showcase-item img {
    height: clamp(250px, 38vh, 340px);
  }

  .instagram-preview {
    height: clamp(260px, 34vh, 330px);
  }

  .map-frame,
  .map-frame iframe {
    min-height: 360px;
  }
}

@media (max-width: 1040px) {
  h1 {
    font-size: 2.95rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-grid,
  .split-layout,
  .reviews-layout,
  .location-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 26px;
  }

  .department-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-summary {
    position: static;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 66px;
  }

  .site-header.is-scrolled {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.045);
  }

  html {
    scroll-padding-top: 82px;
  }

  .container {
    width: min(100% - 30px, 720px);
  }

  .section-band {
    padding: 58px 0;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand,
  .brand img,
  .site-header.is-scrolled .brand,
  .site-header.is-scrolled .brand img {
    width: 92px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 15px;
    left: 15px;
    display: grid;
    justify-content: stretch;
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 12px;
  }

  .privacy-page-nav {
    position: static;
    width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + 26px);
  }

  .trust-row,
  .highlight-grid,
  .score-grid,
  .footer-addresses {
    grid-template-columns: 1fr;
  }

  .showcase-track {
    gap: 16px;
  }

  .showcase-item,
  .showcase-item img {
    height: clamp(260px, 40vh, 360px);
  }

  .showcase-item {
    flex-basis: 72%;
  }

  .instagram-panel {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    padding: 24px;
  }

  .instagram-stats {
    grid-template-columns: 1fr;
  }

  .instagram-stats span {
    min-height: 72px;
  }

  .instagram-preview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    height: 190px;
  }

  .instagram-preview figure,
  .instagram-preview figure:first-child {
    grid-row: auto;
    min-height: 0;
    height: 190px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 360px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .legal-content {
    grid-template-columns: 1fr;
  }

  .legal-actions {
    position: static;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.12rem;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-copy {
    gap: 16px;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    max-height: none;
    aspect-ratio: 16 / 10;
    box-shadow: none;
  }

  .hero-actions,
  .store-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .store-actions .btn,
  .instagram-panel .btn {
    width: 100%;
  }

  .instagram-preview {
    display: flex;
    height: 200px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .instagram-preview::-webkit-scrollbar {
    display: none;
  }

  .instagram-preview figure {
    flex: 0 0 82%;
    height: 200px;
    scroll-snap-align: start;
  }

  .department-grid {
    grid-template-columns: 1fr;
  }

  .showcase-track {
    gap: 12px;
    padding-bottom: 14px;
  }

  .showcase-item,
  .showcase-item img {
    height: clamp(250px, 44vh, 330px);
  }

  .showcase-item {
    flex-basis: 84%;
  }

  .showcase-item figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
    font-size: 1rem;
  }

  .carousel-control {
    top: auto;
    bottom: 70px;
    width: 44px;
    height: 44px;
    font-size: 1.7rem;
    transform: none;
  }

  .carousel-control:hover,
  .carousel-control:focus-visible {
    transform: scale(1.04);
  }

  .carousel-control-prev {
    left: 18px;
  }

  .carousel-control-next {
    right: 18px;
  }

  .about-facts {
    position: static;
    max-width: none;
    margin-top: 12px;
    box-shadow: none;
  }

  .contact-form,
  .department-card div,
  .testimonial,
  .instagram-panel {
    padding: 18px;
  }

  .contact.section-band {
    padding-top: 46px;
  }

  .contact-shell {
    gap: 22px;
  }

  .site-modal {
    padding: 12px;
  }

  .site-modal__dialog {
    max-height: calc(100vh - 24px);
    padding: 26px 18px;
  }

  .site-modal__close {
    top: 8px;
    right: 8px;
  }

  .privacy-accept {
    grid-template-columns: auto 1fr;
    padding: 12px;
  }

  .footer-addresses {
    width: 100%;
  }

  .footer-addresses a {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
