/* ── Reset ───────────────────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }

body { min-height: 100dvh; line-height: var(--lh-body); color: var(--color-text-primary);
  background: var(--color-bg); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }

img, video, svg { display: block; max-width: 100%; height: auto; }
img { object-fit: cover; }

input, button, textarea, select { font: inherit; }
button { cursor: pointer; background: none; border: none; }

a { color: inherit; text-decoration: none; }

ul[role="list"], ol[role="list"] { list-style: none; }

p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
h1, h2, h3, h4 { text-wrap: balance; }
p { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--color-brand-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection { background: var(--color-brand-primary); color: var(--color-on-brand); }

/* ─────────────────────────────────────── */

/* ── Custom Properties ───────────────────────────────────────────────── */
:root {
  /* Colors */
  --color-bg:             oklch(83% 0.018 58);
  --color-surface:        oklch(81.5% 0.019 58);
  --color-surface-alt:    oklch(78.5% 0.022 58);
  --color-text-primary:   oklch(22% 0.022 55);
  --color-text-secondary: oklch(17.5% 0.020 55);
  --color-brand-primary:  oklch(38% 0.040 55);
  --color-brand-accent:   oklch(47% 0.055 220);
  --color-border:         oklch(74.5% 0.018 58);
  --color-border-strong:  oklch(65% 0.025 58);
  --color-on-brand:       oklch(99% 0.005 60);
  --color-success:        #22c55e;
  --color-danger:         #ef4444;

  /* Typography */
  --font-heading:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'Lato', system-ui, sans-serif;
  --fs-display:     clamp(2.5000rem, 2.4290rem + 0.2841vw, 5.0000rem);
  --fs-h1:          clamp(2.0000rem, 1.9574rem + 0.1705vw, 3.5000rem);
  --fs-h2:          clamp(1.5000rem, 1.4787rem + 0.0852vw, 2.2500rem);
  --fs-h3:          clamp(1.2000rem, 1.1844rem + 0.0625vw, 1.7500rem);
  --fs-h4:          clamp(1.1000rem, 1.0922rem + 0.0312vw, 1.3750rem);
  --fs-body:        clamp(1.0000rem, 0.9964rem + 0.0142vw, 1.1250rem);
  --fs-sm:          clamp(0.8750rem, 0.8732rem + 0.0071vw, 0.9375rem);
  --fs-xs:          clamp(0.7500rem, 0.7482rem + 0.0071vw, 0.8125rem);
  --lh-heading:     1.1;
  --lh-body:        1.65;
  --ls-heading:     -0.025em;
  --ls-display:     -0.04em;

  /* Radius */
  --radius-xs:  3px;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --radius-xl:  36px;
  --radius-full:9999px;

  /* Shadow */
  --shadow-xs: 0 1px 2px rgb(0 0 0 / 0.06);
  --shadow-sm: 0 2px 8px rgb(0 0 0 / 0.08), 0 1px 2px rgb(0 0 0 / 0.04);
  --shadow-md: 0 4px 16px rgb(0 0 0 / 0.10), 0 2px 4px rgb(0 0 0 / 0.06);
  --shadow-lg: 0 8px 32px rgb(0 0 0 / 0.12), 0 4px 8px rgb(0 0 0 / 0.06);
  --shadow-xl: 0 20px 60px rgb(0 0 0 / 0.15), 0 8px 16px rgb(0 0 0 / 0.08);

  /* Motion */
  --motion-fast: 120ms;
  --motion-med:  280ms;
  --motion-slow: 500ms;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:     cubic-bezier(0.55, 0, 1, 0.45);
  --ease-out:    cubic-bezier(0, 0, 0.38, 1);

  /* Layout */
  --max-width:         1200px;
  --gutter:            clamp(1.0000rem, 0.9716rem + 0.1136vw, 2.0000rem);
  --section-padding-y: clamp(4.0000rem, 3.8864rem + 0.4545vw, 8.0000rem);
  --nav-height:        64px;
  --hero-min-height:   88vh;
  --prose-width:       68ch;
}

/* ─────────────────────────────────────── */

/* ── Base Typography ──────────────────────────────────────────────── */
:root { color-scheme: light; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  color: var(--color-text-primary);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { font-size: var(--fs-body); color: var(--color-text-secondary); max-width: var(--prose-width); }

.display { font-size: var(--fs-display); letter-spacing: var(--ls-display);
  font-family: var(--font-heading); line-height: 1.05; font-weight: 700; }

.label { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 600; color: var(--color-text-secondary); }

.caption { font-size: var(--fs-sm); color: var(--color-text-secondary); }

/* Skip link */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  padding: 0.5rem 1rem; background: var(--color-brand-primary);
  color: var(--color-on-brand); border-radius: var(--radius-md);
  font-weight: 600; transition: top var(--motion-fast) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* Screen-reader only utility */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ─────────────────────────────────────── */

/* ── Layout Utilities ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: 1440px; }

section {
  padding-block: var(--section-padding-y);
}

.section-header {
  max-width: 52ch;
  margin-bottom: 3rem;
}
.section-header--centered {
  text-align: center;
  margin-inline: auto;
}

.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-brand-primary);
  margin-bottom: 0.75rem;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
}

/* ─────────────────────────────────────── */

/* ── Navigation ──────────────────────────────────────────────────────── */
.nav {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  height: var(--nav-height);
  display: flex; align-items: center;
  transition:
    background-color var(--motion-med) var(--ease),
    box-shadow var(--motion-med) var(--ease),
    color var(--motion-med) var(--ease);
}
.nav--scrolled {
  background: color-mix(in srgb, var(--color-bg) 94%, transparent);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--color-on-brand);
  transition: color var(--motion-med) var(--ease);
}
.nav--scrolled .nav__logo { color: var(--color-text-primary); }
.nav__logo:hover { opacity: 0.85; }

.nav__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) { .nav__links { display: flex; } }

.nav__link {
  padding: 0.375rem 0.75rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: oklch(99% 0.005 60 / 88%);
  border-radius: var(--radius-md);
  transition: color var(--motion-med) var(--ease), background var(--motion-fast) var(--ease);
  position: relative;
}
.nav--scrolled .nav__link { color: var(--color-text-secondary); }
.nav__link::after {
  content: '';
  position: absolute; bottom: 2px; left: 0.75rem; right: 0.75rem;
  height: 2px; background: oklch(100% 0 0 / 70%);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--motion-med) var(--ease);
  border-radius: 1px;
}
.nav--scrolled .nav__link::after { background: var(--color-brand-primary); }
.nav__link:hover { color: oklch(100% 0 0); }
.nav--scrolled .nav__link:hover { color: var(--color-text-primary); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__cta {
  display: none;
  padding: 0.5rem 1.25rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  background: var(--color-brand-primary);
  color: var(--color-on-brand);
  border-radius: var(--radius-full);
  transition: opacity var(--motion-fast) var(--ease), transform var(--motion-fast) var(--ease);
  opacity: 0; pointer-events: none;
}
.nav--scrolled .nav__cta { opacity: 1; pointer-events: auto; }
.nav__cta:hover { opacity: 0.9; transform: translateY(-1px); }
@media (min-width: 768px) { .nav__cta { display: inline-flex; align-items: center; } }

/* Mobile hamburger */
.nav__hamburger {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: var(--radius-md);
  color: var(--color-on-brand);
  transition: color var(--motion-med) var(--ease), background var(--motion-fast) var(--ease);
}
.nav--scrolled .nav__hamburger { color: var(--color-text-primary); }
.nav__hamburger:hover { background: oklch(100% 0 0 / 12%); }
.nav--scrolled .nav__hamburger:hover { background: var(--color-surface); }
@media (min-width: 768px) { .nav__hamburger { display: none; } }

.nav__mobile {
  display: none; position: fixed; inset-block-start: var(--nav-height); inset-inline: 0;
  background: var(--color-bg); border-block-end: 1px solid var(--color-border);
  padding: 1rem; flex-direction: column; gap: 0.25rem;
  box-shadow: var(--shadow-md);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile-link {
  padding: 0.75rem 1rem; border-radius: var(--radius-md);
  font-weight: 500; color: var(--color-text-secondary);
  transition: background var(--motion-fast) var(--ease), color var(--motion-fast) var(--ease);
}
.nav__mobile-link:hover { background: var(--color-surface); color: var(--color-text-primary); }

/* ─────────────────────────────────────── */

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  min-height: var(--hero-min-height);
  padding-block-start: var(--nav-height);
  position: relative;
  display: grid;
  overflow: hidden;
}
.hero__eyebrow {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-brand-accent);
  margin-bottom: 1rem;
}
.hero__headline { font-family: var(--font-heading); font-weight: 700; text-wrap: balance; }
.hero__subheadline { color: var(--color-text-secondary); max-width: 52ch; margin-top: 1rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.hero__scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--color-text-secondary); font-size: var(--fs-xs); font-weight: 500;
  animation: scrollCue 2s var(--ease) infinite;
}

/* Variant B — Full-bleed backdrop (restaurants, hospitality) */
.hero--backdrop { place-items: center; text-align: center; }
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgb(0 0 0 / 0.62) 0%,
    rgb(0 0 0 / 0.28) 28%,
    rgb(0 0 0 / 0.45) 60%,
    rgb(0 0 0 / 0.62) 100%
  );
}
.hero--backdrop .hero__content {
  position: relative; z-index: 1;
  color: oklch(100% 0 0); padding-inline: var(--gutter);
}
.hero--backdrop .hero__headline { font-size: var(--fs-display); color: oklch(100% 0 0); }
.hero--backdrop .hero__subheadline { color: rgb(255 255 255 / 0.85); margin-inline: auto; }
.hero--backdrop .hero__eyebrow { color: oklch(80% 0.052 220); }
.hero--backdrop .hero__scroll-cue { color: rgb(255 255 255 / 0.7); }

/* Secondary button on dark hero — white outline */
.hero .btn--secondary {
  border-color: oklch(99% 0.005 60 / 72%);
  color: oklch(99% 0.005 60);
}
.hero .btn--secondary:hover {
  background: oklch(99% 0.005 60 / 12%);
  border-color: oklch(99% 0.005 60);
}


/* ─────────────────────────────────────── */

/* ── Trust strip ─────────────────────────────────────────────────────── */
.trust-strip {
  padding-block: 1.25rem;
  border-block: 1px solid var(--color-border);
  background: var(--color-surface);
}
.trust-strip__inner {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 1.5rem 3rem;
  justify-content: center;
}
.trust-strip__item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: var(--fs-sm); color: var(--color-text-secondary);
  font-weight: 500;
}
.trust-strip__item svg { color: var(--color-brand-accent); flex-shrink: 0; }
.trust-strip__value { color: var(--color-text-primary); font-weight: 700; font-size: var(--fs-h3); font-family: var(--font-heading); line-height: 1; }

/* ─────────────────────────────────────── */

/* ── About ───────────────────────────────────────────────────────────── */
.about { background: var(--color-bg); }
.about__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about__inner { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.about__image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about__image::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: inherit;
  pointer-events: none;
}
.about__body { display: flex; flex-direction: column; gap: 1.25rem; }
.about__body p { font-size: var(--fs-body); }
@media (max-width: 767px) { .about__image { aspect-ratio: 3/2; } }

/* ─────────────────────────────────────── */

/* ── Services ────────────────────────────────────────────────────────── */
.services { background: var(--color-brand-primary); }
.services .section-label { color: oklch(65% 0.045 58); }
.services .section-header h2 { color: oklch(93% 0.010 60); }
.services__features {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
  border-top: 1px solid oklch(50% 0.030 55 / 45%);
}
.services__feature {
  display: grid;
  grid-template-columns: 4.5rem 1fr 3rem;
  gap: 2.5rem;
  align-items: start;
  padding-block: 2.5rem;
  border-bottom: 1px solid oklch(50% 0.030 55 / 45%);
}
@media (max-width: 640px) {
  .services__feature { grid-template-columns: 3rem 1fr; gap: 1.5rem; }
  .services__feature-icon { display: none; }
}
.services__feature-num {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 300;
  color: oklch(55% 0.042 58);
  line-height: 1.1;
  padding-top: 0.15rem;
}
.services__feature-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: oklch(93% 0.010 60);
  margin-bottom: 0.75rem;
  letter-spacing: var(--ls-heading);
}
.services__feature-desc {
  font-size: var(--fs-sm);
  color: oklch(72% 0.018 60);
  max-width: 52ch;
  line-height: var(--lh-body);
}
.services__feature-icon {
  width: 2.75rem; height: 2.75rem;
  display: grid; place-items: center;
  color: oklch(55% 0.042 58);
  padding-top: 0.2rem;
}

/* ─────────────────────────────────────── */

/* ── Gallery ─────────────────────────────────────────────────────────── */
.gallery { background: var(--color-bg); }
.gallery__caption {
  font-size: var(--fs-sm); color: var(--color-text-secondary);
  margin-bottom: 2rem; text-align: center;
}
.gallery__item {
  overflow: hidden; border-radius: var(--radius-lg);
  position: relative; background: var(--color-surface);
  cursor: zoom-in;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--motion-slow) var(--ease);
}
.gallery__item:hover img { transform: scale(1.03); }

.gallery__item::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.3; mix-blend-mode: overlay;
}

/* Masonry variant */
.gallery__grid {
  columns: 2; gap: 1rem;
  column-gap: 1rem;
}
@media (min-width: 768px) { .gallery__grid { columns: 3; } }
@media (min-width: 1200px) { .gallery__grid { columns: 4; } }
.gallery__item { break-inside: avoid; margin-bottom: 1rem; aspect-ratio: unset; }
.gallery__item img { height: auto; width: 100%; object-fit: cover; }


/* ─────────────────────────────────────── */

/* ── Testimonials ─────────────────────────────────────────────────────── */
.testimonials { background: var(--color-surface); }
.testimonials__notice {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: var(--fs-xs); color: var(--color-text-secondary);
  background: color-mix(in srgb, var(--color-brand-accent) 10%, var(--color-surface));
  border: 1px solid color-mix(in srgb, var(--color-brand-accent) 25%, transparent);
  border-radius: var(--radius-md); padding: 0.5rem 1rem;
  margin-bottom: 2rem; width: fit-content;
}
.testimonial-card {
  background: var(--color-bg); border-radius: var(--radius-xl);
  padding: 2rem; display: flex; flex-direction: column; gap: 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card__quote { font-size: 3rem; line-height: 1; color: var(--color-brand-primary); opacity: 0.3; }
.testimonial-card__text { font-size: var(--fs-body); color: var(--color-text-secondary); flex: 1; font-style: italic; }
.testimonial-card__stars { display: flex; gap: 0.2rem; color: #f59e0b; }
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar {
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius-full);
  background: var(--color-brand-primary); color: var(--color-on-brand);
  display: grid; place-items: center; font-weight: 700; font-size: var(--fs-sm); flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: var(--fs-sm); }

/* ─────────────────────────────────────── */

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq { background: var(--color-bg); }
.faq__list { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border); }
.faq__item { border-block-end: 1px solid var(--color-border); }
.faq__item:last-child { border-block-end: none; }
details.faq__item summary {
  list-style: none; padding: 1.25rem 1.5rem;
  font-size: var(--fs-body); font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: background var(--motion-fast) var(--ease), color var(--motion-fast) var(--ease);
}
details.faq__item summary::-webkit-details-marker { display: none; }
details.faq__item summary:hover { background: var(--color-surface); color: var(--color-brand-primary); }
details.faq__item[open] summary { color: var(--color-brand-primary); background: var(--color-surface); }
.faq__icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; transition: transform var(--motion-med) var(--ease); }
details.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__answer { padding: 0 1.5rem 1.5rem; color: var(--color-text-secondary); font-size: var(--fs-body); line-height: var(--lh-body); }

/* ─────────────────────────────────────── */

/* ── Contact ─────────────────────────────────────────────────────────── */
.contact { background: var(--color-surface); }
.contact__inner {
  display: grid; gap: 3rem;
}
@media (min-width: 900px) {
  .contact__inner { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
}
.contact__details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact__detail { display: flex; align-items: flex-start; gap: 0.875rem; }
.contact__detail-icon {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--color-brand-primary) 10%, var(--color-surface));
  border-radius: var(--radius-md); color: var(--color-brand-primary);
}
.contact__detail-label { font-size: var(--fs-xs); color: var(--color-text-secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.contact__detail-value { font-size: var(--fs-body); font-weight: 500; }
.contact__map { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3; background: var(--color-border); }
.contact__map iframe { width: 100%; height: 100%; border: 0; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.375rem; }
.form-field label { font-size: var(--fs-sm); font-weight: 600; color: var(--color-text-primary); }
.form-field input,
.form-field textarea {
  width: 100%; padding: 0.75rem 1rem;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--fs-body); color: var(--color-text-primary);
  transition: border-color var(--motion-fast) var(--ease), box-shadow var(--motion-fast) var(--ease);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-brand-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-brand-primary) 20%, transparent);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 8rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: var(--radius-full);
  font-size: var(--fs-body); font-weight: 600;
  transition: opacity var(--motion-fast) var(--ease), transform var(--motion-fast) var(--ease),
    box-shadow var(--motion-fast) var(--ease);
  text-decoration: none; cursor: pointer; border: none;
  white-space: nowrap;
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn--primary { background: var(--color-brand-primary); color: var(--color-on-brand); }
.btn--secondary {
  background: transparent;
  color: var(--color-brand-primary);
  border: 2px solid var(--color-brand-primary);
  padding: calc(0.75rem - 2px) calc(1.75rem - 2px);
}
.btn--secondary:hover { background: color-mix(in srgb, var(--color-brand-primary) 8%, transparent); }
.btn--ghost { color: var(--color-text-primary); background: var(--color-surface); }
.btn--sm { padding: 0.5rem 1.25rem; font-size: var(--fs-sm); }
.btn--full { width: 100%; }

/* WhatsApp */
.btn--whatsapp { background: #25D366; color: oklch(100% 0 0); }

/* ─────────────────────────────────────── */

/* ── Footer ──────────────────────────────────────────────────────────── */
.footer {
  background: var(--color-surface);
  border-block-start: 1px solid var(--color-border);
  padding-block: 3rem;
}
.footer__inner { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: center; }
.footer__brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__name { font-family: var(--font-heading); font-weight: 700; font-size: var(--fs-h4); }
.footer__tagline { font-size: var(--fs-sm); color: var(--color-text-secondary); }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer__link { font-size: var(--fs-sm); color: var(--color-text-secondary); transition: color var(--motion-fast) var(--ease); }
.footer__link:hover { color: var(--color-text-primary); }
.footer__social { display: flex; gap: 0.75rem; }
.footer__social-link {
  display: grid; place-items: center;
  width: 2.25rem; height: 2.25rem;
  border-radius: var(--radius-full);
  background: var(--color-border);
  color: var(--color-text-secondary);
  transition: background var(--motion-fast) var(--ease), color var(--motion-fast) var(--ease);
}
.footer__social-link:hover { background: var(--color-brand-primary); color: var(--color-on-brand); }
.footer__credit { width: 100%; font-size: var(--fs-xs); color: var(--color-text-secondary); text-align: center; opacity: 0.5; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }

/* ─────────────────────────────────────── */

/* ── Language Switcher ───────────────────────────────────────────────── */
.lang-switcher { display: flex; align-items: center; gap: 0.25rem; }
.lang-switcher__btn {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.3rem 0.6rem;
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  color: var(--color-text-secondary);
  transition: background var(--motion-fast) var(--ease), color var(--motion-fast) var(--ease),
    border-color var(--motion-fast) var(--ease);
}
.lang-switcher__btn:hover { background: var(--color-surface); color: var(--color-text-primary); }
.lang-switcher__btn.is-active {
  background: var(--color-brand-primary);
  color: var(--color-on-brand);
}
.lang-switcher__sep { color: var(--color-border-strong); font-size: var(--fs-xs); user-select: none; }
.lang-switcher__flag { display: block; width: 1.2rem; height: 0.85rem; border-radius: 2px; flex-shrink: 0; overflow: hidden; }

/* On hero (before scroll): invert to white so both buttons are readable */
.nav:not(.nav--scrolled) .lang-switcher__btn {
  color: oklch(99% 0.005 60 / 72%);
}
.nav:not(.nav--scrolled) .lang-switcher__btn:hover {
  background: oklch(99% 0.005 60 / 14%);
  color: oklch(99% 0.005 60);
  border-color: oklch(99% 0.005 60 / 30%);
}
.nav:not(.nav--scrolled) .lang-switcher__btn.is-active {
  background: oklch(99% 0.005 60 / 20%);
  color: oklch(99% 0.005 60);
  border-color: oklch(99% 0.005 60 / 45%);
}
.nav:not(.nav--scrolled) .lang-switcher__sep {
  color: oklch(99% 0.005 60 / 40%);
}

/* Dropdown variant (4+ languages) */
.lang-switcher--dropdown select {
  padding: 0.25rem 0.5rem;
  font-size: var(--fs-xs); font-weight: 600;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-primary);
  cursor: pointer;
}

/* ─────────────────────────────────────── */

/* ── Lightbox ────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }

.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgb(0 0 0 / 0.92);
  cursor: zoom-out;
  animation: lb-in var(--motion-med) var(--ease) both;
}
.lightbox__content {
  position: relative; z-index: 1; margin: 0;
  display: flex; flex-direction: column; align-items: center;
  max-width: min(92vw, 1100px);
  animation: lb-scale var(--motion-med) var(--ease) both;
}
.lightbox__img {
  max-width: 100%;
  max-height: 82dvh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 32px 80px rgb(0 0 0 / 0.5);
  user-select: none;
}
.lightbox__counter {
  margin-top: 0.875rem;
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: oklch(99% 0.005 60 / 45%);
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed; z-index: 2;
  display: grid; place-items: center;
  width: 3rem; height: 3rem;
  border-radius: var(--radius-full);
  background: oklch(99% 0.005 60 / 12%);
  color: oklch(99% 0.005 60);
  border: 1px solid oklch(99% 0.005 60 / 18%);
  transition: background var(--motion-fast) var(--ease),
    border-color var(--motion-fast) var(--ease),
    opacity var(--motion-fast) var(--ease);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: oklch(99% 0.005 60 / 22%); border-color: oklch(99% 0.005 60 / 35%); }
.lightbox__close { top: 1.25rem; right: 1.25rem; }
.lightbox__prev  { top: 50%; left: 1.25rem;  transform: translateY(-50%); }
.lightbox__next  { top: 50%; right: 1.25rem; transform: translateY(-50%); }
.lightbox__prev:disabled,
.lightbox__next:disabled { opacity: 0.2; pointer-events: none; }

@media (max-width: 540px) {
  .lightbox__prev { left: 0.5rem; }
  .lightbox__next { right: 0.5rem; }
  .lightbox__close { top: 0.75rem; right: 0.75rem; }
}

@keyframes lb-in    { from { opacity: 0; } to { opacity: 1; } }
@keyframes lb-scale { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }

/* ─────────────────────────────────────── */

/* ── Animations ──────────────────────────────────────────────────────── */

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 500ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }

/* Hero scroll cue */
@keyframes scrollCue {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  60% { transform: translateX(-50%) translateY(0.5rem); opacity: 0.5; }
}

/* View transition for language switch */
@supports (view-transition-name: lang) {
  ::view-transition-old(lang) { animation: 150ms ease-out both fade-out; }
  ::view-transition-new(lang) { animation: 150ms ease-in both fade-in; }
}
@keyframes fade-out { to { opacity: 0; } }
@keyframes fade-in { from { opacity: 0; } }

/* ─────────────────────────────────────── */

/* ── Reduced motion ──────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__scroll-cue { display: none; }
}

/* ─────────────────────────────────────── */

/* ── Print ───────────────────────────────────────────────────────────── */
@media print {
  .nav, .hero__scroll-cue, .hero__actions, .lang-switcher { display: none !important; }
  body { font-size: 12pt; color: #000; background: oklch(100% 0 0); }
  h1, h2, h3 { page-break-after: avoid; }
  img { max-width: 100% !important; }
}