/* ========== DESIGN TOKENS ========== */
:root {
  --bg: #FAF6F0;
  --bg-elev: #FFFFFF;
  --bg-soft: #F2EBDF;
  --ink: #2A241E;
  --ink-soft: #6B6359;
  --ink-mute: #9C9388;
  --gold: #B8956A;
  --gold-deep: #9A7A52;
  --rose: #D4B5A5;
  --line: #E5DDD0;
  --line-soft: #EFE7DA;

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Karla', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

#root {
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.7 0 0 0 0 0.6 0 0 0 0 0.5 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; line-height: 1.1; color: var(--ink); }
.display { font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 300; line-height: 0.95; letter-spacing: -0.025em; }
.display em { font-style: italic; font-weight: 300; color: var(--gold-deep); }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 56ch; }

/* ========== HEADER ========== */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,246,240,0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: clamp(12px, 1.8vw, 20px) 0; }
.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.logo em { font-style: italic; color: var(--gold-deep); }
.logo img {
  height: clamp(48px, 6vw, 78px);
  width: auto;
}
.menu { display: flex; gap: 36px; align-items: center; }
.menu a {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.45s cubic-bezier(.2,.7,.2,1);
}
.menu a:hover, .menu a[aria-current="page"] { color: var(--ink); }
.menu a:hover::after, .menu a[aria-current="page"]::after { width: 100%; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(.2,.7,.2,1);
}
.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 8px 12px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--sans);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 14px 0 20px;
  border-top: 1px solid var(--line-soft);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.mobile-menu a[data-book-link] {
  width: fit-content;
}

@media (max-width: 720px) {
  .menu { display: none; }
  .nav .btn,
  .nav .btn-gold { display: none; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 20px; }
}

/* ========== BREADCRUMBS ========== */
.crumbs { padding: 24px 0 0; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); }
.crumbs a { color: var(--ink-soft); }
.crumbs a:hover { color: var(--gold-deep); }
.crumbs span[aria-current="page"] { color: var(--ink); }

/* ========== HERO ========== */
.hero {
  padding: 28px 0 54px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FAF8F5 0%, #F7F4EE 100%);
  border-bottom: 1px solid #E9E3D8;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 84% 35%, rgba(184, 137, 79, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 55% 45% at 20% 72%, rgba(184, 137, 79, 0.08) 0%, transparent 72%);
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: 32px;
  align-items: stretch;
  min-height: 64vh;
}
.hero-text {
  padding: 34px 0 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-text .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #B8894F;
  letter-spacing: 0.24em;
  font-size: 0.66rem;
}
.hero-text .eyebrow::before,
.hero-text .eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 137, 79, 0.45), transparent);
  margin: 6px 0;
}
.hero-text h1 {
  color: #2B2B2B;
  font-size: clamp(2.45rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 13.5ch;
  margin-bottom: 10px;
}
.hero-text h1 em { color: #B8894F; }
.hero-subhead {
  font-family: var(--sans);
  font-size: 0.98rem;
  color: #66615A;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 8px;
  max-width: 46ch;
}
.hero-text p.lead {
  color: #66615A;
  font-size: 0.97rem;
  max-width: 46ch;
  margin-bottom: 18px;
  line-height: 1.66;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-cta .btn-gold {
  background: linear-gradient(110deg, #b8894f 0%, #d2b07c 45%, #e8d4b0 70%, #b8894f 100%);
  color: #2B2B2B;
  border: 1px solid rgba(184, 137, 79, 0.55);
  box-shadow: 0 10px 24px rgba(184, 137, 79, 0.2);
}

.hero-cta .btn-gold:hover {
  box-shadow: 0 14px 28px rgba(184, 137, 79, 0.26);
}

.hero-cta .btn-ghost-dark {
  border-color: #D8D0C3;
  color: #5F574D;
  background: rgba(255, 255, 255, 0.7);
}

.hero-cta .btn-ghost-dark:hover {
  border-color: #B8894F;
  color: #2B2B2B;
  background: rgba(248, 242, 232, 0.95);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #E9E3D8;
  background: #FFFFFF;
  color: #66615A;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  background: linear-gradient(110deg, #a07840 0%, #c9a06a 35%, #f0d9a8 50%, #c9a06a 65%, #a07840 100%);
  background-size: 250% auto;
  color: #1c1814;
  transition: background-position 0.5s ease, box-shadow 0.3s ease, transform 0.15s ease;
}
.btn-gold:hover {
  background-position: right center;
  box-shadow: 0 0 28px rgba(181,138,82,0.42), 0 4px 18px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid rgba(181,138,82,0.35);
  background: transparent;
  color: #c8bfab;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.btn-ghost-dark:hover {
  border-color: rgba(181,138,82,0.7);
  color: #f5f0e8;
  background: rgba(181,138,82,0.06);
}

.hero-meta {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-top: 0;
  border-top: 0;
}
.hero-meta div {
  font-size: 0.78rem;
  color: #66615A;
  background: #F7F4EE;
  border: 1px solid #E9E3D8;
  border-radius: 12px;
  padding: 10px 12px;
}
.hero-meta strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2B2B2B;
  font-weight: 400;
  margin-bottom: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 16px 0 10px;
}

.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  width: 100%;
  border-radius: 30px;
  border: 1px solid #E9E3D8;
  box-shadow: 0 24px 56px rgba(80, 63, 39, 0.12);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02) brightness(1.02);
}
.hero-gallery {
  background: linear-gradient(180deg, rgba(247, 244, 238, 0.35), rgba(247, 244, 238, 0.1));
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(43, 43, 43, 0.09) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-card {
  position: absolute;
  right: 16px;
  bottom: 22px;
  width: min(328px, calc(100% - 32px));
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(184, 137, 79, 0.28);
  background: linear-gradient(145deg, rgba(250, 248, 245, 0.96), rgba(247, 244, 238, 0.94));
  box-shadow: 0 16px 44px rgba(80, 63, 39, 0.16);
  backdrop-filter: blur(8px);
}

.hero-floating-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9a7a52;
  margin-bottom: 12px;
}

.hero-floating-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(154, 122, 82, 0.18);
}

.hero-floating-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.hero-floating-item h3 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 4px;
  color: #302922;
}

.hero-floating-item p {
  font-size: 0.86rem;
  line-height: 1.5;
  color: #6f6255;
}

.hero-floating-item strong {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 1.02rem;
  color: #9a7a52;
  text-align: right;
  line-height: 1.2;
}
.hero-gallery-frame {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  will-change: opacity;
  animation: heroGalleryFade var(--hero-gallery-duration, 24s) infinite;
  animation-delay: calc(var(--hero-gallery-index, 0) * var(--hero-gallery-step, 6s) - var(--hero-gallery-duration, 24s));
}
.hero-gallery-frame:first-child {
  opacity: 1;
}
.hero-gallery-frame img {
  will-change: transform;
  animation: heroGalleryZoom var(--hero-gallery-duration, 24s) infinite;
  animation-delay: calc(var(--hero-gallery-index, 0) * var(--hero-gallery-step, 6s) - var(--hero-gallery-duration, 24s));
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-text .eyebrow { animation: hero-fade-up 0.75s cubic-bezier(0.22,1,0.36,1) 0.05s both; }
.hero-text h1       { animation: hero-fade-up 0.75s cubic-bezier(0.22,1,0.36,1) 0.18s both; }
.hero-subhead       { animation: hero-fade-up 0.75s cubic-bezier(0.22,1,0.36,1) 0.30s both; }
.hero-text p.lead   { animation: hero-fade-up 0.75s cubic-bezier(0.22,1,0.36,1) 0.40s both; }
.hero-cta           { animation: hero-fade-up 0.75s cubic-bezier(0.22,1,0.36,1) 0.52s both; }
.hero-meta          { animation: hero-fade-up 0.75s cubic-bezier(0.22,1,0.36,1) 0.62s both; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 42px 0 14px; }
  .hero-visual { padding: 0 0 20px; }
  .hero-image { aspect-ratio: 4/3; min-height: 320px; }
  .hero-meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-floating-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }
}

@media (max-width: 480px) {
  .hero-text { padding: 54px 0 28px; }
  .hero-subhead { font-size: 0.97rem; }
  .hero-text h1 {
    font-size: clamp(2.4rem, 12vw, 3.25rem);
    max-width: 100%;
  }
  .hero-meta {
    flex-direction: column;
    gap: 16px;
  }
  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-floating-item {
    flex-direction: column;
  }
  .hero-floating-item strong {
    text-align: left;
  }
}

@media (max-width: 767px) {
  html,
  body,
  #root {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  section,
  .wrap,
  .hero,
  .hero-grid,
  .hero-text,
  .hero-visual,
  .hero-image,
  .hero-gallery,
  .hero-floating-card,
  .offers,
  .offers .wrap,
  .offers-grid,
  .offers-grid.offer-single,
  .offer-card,
  .services-grid,
  .service-card,
  .gallery-grid,
  .gallery-item,
  .contact-grid,
  .contact-info,
  .contact-panel,
  .map-column,
  .storefront-thumb,
  .map-embed,
  .cta-strip .btn-row,
  .footer-grid {
    max-width: 100%;
    min-width: 0;
  }

  .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  section {
    overflow-x: hidden;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
  }

  .hero-grid > * {
    min-width: 0;
    max-width: 100%;
  }

  .hero-text {
    padding: 42px 0 16px;
    min-width: 0;
  }

  .hero-text h1,
  .display {
    max-width: 100%;
    font-size: clamp(2.2rem, 10.5vw, 3.35rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-subhead {
    display: none;
  }

  .hero-text p.lead,
  .offers .section-head .lead,
  .section-head,
  .section-head .lead {
    max-width: 100%;
    width: 100%;
  }

  .hero-cta,
  .cta-strip .btn-row,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-cta a,
  .cta-strip .btn-row a,
  .contact-actions a,
  .contact-panel .btn-gold {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .contact-panel {
    width: 100%;
    gap: 10px;
  }

  .contact-panel > div:first-child {
    width: 100%;
  }

  .contact-actions {
    width: 100%;
    margin-top: 2px;
  }

  .hero-cta .btn-gold,
  .hero-cta .btn-ghost-dark {
    display: flex;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-badges {
    gap: 10px;
    width: 100%;
    align-items: stretch;
  }

  .hero-badge {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }

  .hero-meta {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .hero-meta div {
    width: 100%;
    min-width: 0;
  }

  .hero-visual {
    justify-content: stretch;
    padding: 0 0 20px;
  }

  .hero-image,
  .hero-gallery {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
  }

  .hero-floating-card {
    position: static;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
    padding: 18px;
    overflow: hidden;
  }

  .hero-floating-item {
    flex-direction: column;
    gap: 10px;
  }

  .hero-floating-item strong {
    text-align: left;
  }

  .offers {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .offers .wrap,
  .offers-grid,
  .offers-grid.offer-single,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card,
  .service-card {
    width: 100%;
    min-height: 0;
  }

  .offer-card {
    padding: 24px 20px;
    overflow: hidden;
  }

  .offer-card h3,
  .offer-value,
  .offer-note,
  .offer-service,
  .offer-card p,
  .hero-floating-item h3,
  .hero-floating-item p,
  .hero-text p.lead,
  .offers .section-head .lead,
  .announce span,
  .announce p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .announce span {
    white-space: normal;
  }

  .service-card {
    padding: 32px 22px;
  }

  .business-hours-line {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-gallery-frame,
  .hero-gallery-frame img {
    animation: none;
  }

  .hero-gallery-frame {
    opacity: 0;
  }

  .hero-gallery-frame:first-child {
    opacity: 1;
  }
}

/* ========== HOMEPAGE BOOKING HERO ========== */
.booking-home-shell {
  position: relative;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(184, 149, 106, 0.2), transparent 44%),
    radial-gradient(circle at 80% 72%, rgba(154, 122, 82, 0.16), transparent 48%),
    linear-gradient(180deg, #1f1914 0%, #2a221b 100%);
  border-top: 1px solid rgba(184, 149, 106, 0.22);
  border-bottom: 1px solid rgba(184, 149, 106, 0.22);
}

.booking-home-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 35%, rgba(255, 255, 255, 0.04));
  opacity: 0.45;
}

.booking-fade-in {
  opacity: 0;
  transform: translateY(12px);
  animation: bookingFadeIn 720ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.booking-fade-in:nth-child(1) { animation-delay: 80ms; }
.booking-fade-in:nth-child(2) { animation-delay: 170ms; }
.booking-fade-in:nth-child(3) { animation-delay: 280ms; }
.booking-fade-in:nth-child(4) { animation-delay: 360ms; }
.booking-fade-in:nth-child(5) { animation-delay: 460ms; }

@keyframes bookingFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== SHARED FOOTER BOOKING SECTION ========== */
.footer-booking-shell {
  position: relative;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 16% 10%, rgba(184, 149, 106, 0.2), transparent 42%),
    radial-gradient(circle at 84% 88%, rgba(154, 122, 82, 0.18), transparent 48%),
    linear-gradient(180deg, #1f1914 0%, #2a221b 100%);
  border-top: 1px solid rgba(184, 149, 106, 0.22);
}

.footer-booking-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.05), transparent 36%, rgba(255, 255, 255, 0.04));
}

@media (prefers-reduced-motion: reduce) {
  .booking-fade-in {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ========== PAGE HEADER (interior pages) ========== */
.page-head { padding: 80px 0 40px; }
.page-head .eyebrow { display: inline-block; margin-bottom: 18px; }
.page-head h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.page-head h1 em { font-style: italic; color: var(--gold-deep); }
.page-head .lead { font-size: 1.2rem; max-width: 64ch; }
.lead p { margin-bottom: 16px; }
.lead p:last-child { margin-bottom: 0; }

/* ========== SECTION SCAFFOLD ========== */
section { padding: 120px 0; position: relative; }
.section-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.section-head { max-width: 720px; margin-bottom: 72px; }
.section-head h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.section-head h2 em { font-style: italic; color: var(--gold-deep); }

/* ========== OPENING OFFERS ========== */
.offers {
  background:
    radial-gradient(circle at 10% 18%, rgba(184, 149, 106, 0.10), transparent 42%),
    radial-gradient(circle at 86% 16%, rgba(184, 149, 106, 0.08), transparent 46%),
    linear-gradient(180deg, #f8f4ee 0%, #f6f0e7 100%);
  padding-top: 72px;
  padding-bottom: 72px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}

.offers .wrap {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: start;
}

.offers .section-head {
  margin-bottom: 0;
  max-width: 660px;
}

.offers .section-head h2 {
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.06;
  margin-bottom: 24px;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.offers .section-head .lead {
  font-size: 1.08rem;
  line-height: 1.7;
  white-space: normal;
  max-width: 52ch;
  color: var(--ink-soft);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 18px;
  justify-content: stretch;
}

.offers-grid.offer-single {
  grid-template-columns: minmax(250px, 420px);
}

.offer-card {
  border: 1px solid rgba(184, 149, 106, 0.42);
  border-radius: 22px;
  width: 100%;
  min-height: 330px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(246, 238, 226, 0.92)),
    #fbf7f1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  padding: 34px 30px 30px;
  box-shadow: 0 10px 28px rgba(42, 36, 30, 0.08);
  transform: translateY(8px);
  opacity: 0;
  animation: offerReveal 520ms cubic-bezier(.2,.7,.2,1) forwards;
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.offer-card::before {
  content: none;
}

.offer-value {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  line-height: 1.18;
  color: #3a332c;
  min-width: 0;
}

.offer-note {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
  font-weight: 500;
  color: #a47f4f;
  text-align: left;
  white-space: pre-line;
}

.offer-note-top {
  display: block;
  font-size: 0.88em;
  line-height: 1.1;
}

.offer-note-main {
  display: block;
  margin-top: 4px;
  font-size: 1.08em;
  line-height: 1.05;
  font-weight: 600;
}

.offer-service {
  margin-top: 2px;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--ink-soft);
  max-width: 36ch;
}

.offer-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(184, 149, 106, 0.45);
  background: rgba(255, 255, 255, 0.7);
  color: #6d5638;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 260ms ease;
}

.offer-cta:hover {
  border-color: rgba(154, 122, 82, 0.7);
  background: linear-gradient(135deg, rgba(184, 149, 106, 0.14), rgba(184, 149, 106, 0.08));
  color: #5f4a30;
}

.offer-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 149, 106, 0.62);
  box-shadow: 0 18px 38px rgba(42, 36, 30, 0.14);
}

@keyframes offerReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  .offers .wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .offers-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    justify-content: stretch;
  }

  .offer-card {
    min-height: 290px;
    padding: 28px 24px 24px;
  }
}

.offers + .hero {
  padding-top: 34px;
}

/* ========== ABOUT ========== */
.about { background: var(--bg-soft); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.about-img { position: relative; aspect-ratio: 5/6; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
.about-text h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; margin-bottom: 28px; }
.about-text h2 em { font-style: italic; color: var(--gold-deep); }
.about-text p { color: var(--ink-soft); margin-bottom: 22px; font-size: 1.05rem; }
.about-text p:last-of-type { margin-bottom: 0; }

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--bg-elev);
  padding: 56px 48px;
  display: flex; flex-direction: column;
  transition: background 0.4s ease;
  position: relative;
  scroll-margin-top: 140px;
}
.service-card:hover { background: var(--bg); }
.service-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-deep);
  margin-bottom: 32px;
}
.service-card h3 {
  font-size: 1.9rem;
  margin-bottom: 18px;
  font-weight: 400;
}
.service-card .price {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 1rem;
  margin-bottom: 20px;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin-bottom: 24px;
  flex-grow: 1;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  border-top: 1px solid var(--line-soft);
  padding-top: 20px;
}
.service-card li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: 4px 0;
  position: relative;
  padding-left: 18px;
}
.service-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Service Tags */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 24px;
}
.service-tag {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  color: white;
  font-family: var(--sans);
}
.service-tag:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.service-tag-1 { background: var(--gold-deep); }
.service-tag-2 { background: var(--rose); }
.service-tag-3 { background: var(--ink-soft); }
.service-tag-4 { background: var(--gold); }
.service-tag-5 { background: var(--rose); opacity: 0.85; }
.service-tag-6 { background: var(--gold-deep); opacity: 0.85; }
.service-tag-7 { background: var(--ink-soft); opacity: 0.85; }
.service-tag-8 { background: var(--gold); opacity: 0.85; }

@media (max-width: 720px) {
  .service-tags { justify-content: flex-start; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 40px 32px; }
}

/* Detailed service block (services.html) */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 80px 0; border-top: 1px solid var(--line); }
.service-detail:first-of-type { border-top: 0; padding-top: 40px; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img { aspect-ratio: 4/5; overflow: hidden; }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92); }
.service-detail h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; margin-bottom: 18px; }
.service-detail h2 em { font-style: italic; color: var(--gold-deep); }
.service-detail .price-line { font-family: var(--serif); font-style: italic; color: var(--gold-deep); font-size: 1.05rem; margin-bottom: 22px; }
.service-detail p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1rem; }
.service-detail h3 { font-size: 1.1rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); margin: 20px 0 12px; }
.service-detail ul { list-style: none; padding: 0; }
.service-detail li {
  font-size: 0.95rem; color: var(--ink-soft);
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; gap: 16px;
}
.service-detail li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.service-detail li span:last-child { color: var(--ink); font-family: var(--serif); font-style: italic; }

@media (max-width: 880px) {
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
}

/* ========== STYLISTS ========== */
.stylists { background: var(--bg-soft); }
.stylist-grid { display: block; }
.team-overview {
  max-width: 920px;
  margin: 0 auto;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  padding: 44px 46px;
  box-shadow: 0 16px 40px rgba(42, 36, 30, 0.06);
}
.team-overview .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
}
.team-overview h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 18px;
}
.team-overview-lead,
.team-overview-copy {
  color: var(--ink-soft);
  font-size: 1.04rem;
  max-width: 64ch;
}
.team-overview-lead {
  margin-bottom: 14px;
}
.team-overview-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 20px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.team-overview-list li {
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}
.team-overview-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

@media (max-width: 880px) {
  .team-overview {
    padding: 32px 28px;
  }

  .team-overview-list {
    grid-template-columns: 1fr;
  }
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.92);
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(42,36,30,0.85), rgba(42,36,30,0));
  color: var(--bg);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }
.g1 { grid-column: span 3; grid-row: span 2; }
.g2 { grid-column: span 3; grid-row: span 1; }
.g3 { grid-column: span 2; grid-row: span 1; }
.g4 { grid-column: span 1; grid-row: span 1; }
.g5 { grid-column: span 2; grid-row: span 2; }
.g6 { grid-column: span 4; grid-row: span 1; }

@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .g1, .g2, .g3, .g4, .g5, .g6 { grid-column: span 1; grid-row: span 1; }
  .g1 { grid-column: span 2; grid-row: span 2; }
}

/* ========== TESTIMONIALS ========== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.review {
  background: var(--bg-elev);
  padding: 44px 36px;
  border: 1px solid var(--line);
  position: relative;
}
.review::before {
  content: '"';
  position: absolute;
  top: 12px; left: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.5;
}
.review-stars {
  color: var(--gold);
  letter-spacing: 0.25em;
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.review p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 24px;
}
.review .author {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (max-width: 880px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ========== FAQ ========== */
.faq-wrap { max-width: 880px; margin: 0 auto; }
details {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  cursor: pointer;
}
details:first-of-type { border-top: 1px solid var(--line); }
summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold-deep);
  transition: transform 0.4s ease;
  flex-shrink: 0;
}
details[open] summary::after { transform: rotate(45deg); }
details .answer { margin-top: 18px; color: var(--ink-soft); font-size: 1rem; max-width: 70ch; }
details .answer p { margin-bottom: 12px; }
details .answer p:last-child { margin-bottom: 0; }
details .answer a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
details .answer a:hover { color: var(--rose); }

.faq-category-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin: 56px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.faq-category-label:first-child { margin-top: 0; }

/* ========== CONTACT ========== */
.contact { background: var(--ink); color: var(--bg); padding: 120px 0; }
.contact .eyebrow { color: var(--rose); }
.contact h2, .contact h1 { color: var(--bg); }
.contact h2 em, .contact h1 em { color: var(--rose); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-info > div { margin-bottom: 22px; }
.contact-info p, .contact-info a { color: var(--bg); font-size: 1.02rem; line-height: 1.55; }
.contact-info a:hover { color: var(--rose); }

.contact-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  padding-top: 2px;
  clear: both;
}

.contact-panel > div:first-child .btn-gold {
  margin-top: 6px;
}

.contact-panel .btn-gold,
.contact-actions .btn {
  position: relative;
  z-index: 1;
}

.contact-actions .btn-ghost {
  color: #f3e9db;
  border-color: rgba(201, 160, 106, 0.75);
  background: rgba(250, 246, 240, 0.04);
}

.contact-actions .btn-ghost:hover {
  color: #1f1a15;
  background: #c9a06a;
  border-color: #c9a06a;
}

.contact-panel > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.contact-panel h3 {
  color: var(--bg);
}

.contact-inspire {
  color: var(--bg);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 18ch;
}

.contact-inspire-sub {
  color: rgba(250,246,240,0.7);
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 34ch;
  margin-bottom: 6px;
}

.business-hours {
  border: 1px solid rgba(250,246,240,0.2);
  border-radius: 12px;
  padding: 12px 16px;
  background: rgba(250,246,240,0.06);
}

.business-hours h3 {
  margin-bottom: 8px;
}

.business-hours ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.business-hours li {
  border-bottom: 1px dashed rgba(250,246,240,0.16);
  padding-bottom: 8px;
}

.business-hours-alert {
  border: 1px solid rgba(200,159,103,0.42);
  border-radius: 12px;
  padding: 12px 14px 12px;
  background:
    linear-gradient(135deg, rgba(200,159,103,0.16), rgba(200,159,103,0.06)),
    rgba(250,246,240,0.04);
  box-shadow: 0 8px 22px rgba(0,0,0,0.16);
}

.business-hours-alert + li {
  padding-top: 6px;
}

.business-hours li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.business-hours-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.94rem;
  line-height: 1.35;
}

.business-hours li span {
  color: rgba(250,246,240,0.9);
}

.business-hours li strong {
  color: var(--rose);
  font-weight: 600;
  text-align: right;
}

.business-hours-note {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-left: 4px solid var(--gold-deep);
  border-radius: 8px;
  background: rgba(22, 18, 14, 0.3);
  color: #f6ede3;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}


.social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid currentColor;
  color: var(--rose);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.social-icons a:hover {
  background: var(--rose);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ========== BOOKING OPTIONS ========== */
.booking-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
/* When inside contact-grid (right column), stack vertically */
.contact-grid .booking-options {
  grid-template-columns: 1fr;
  margin-top: 0;
  align-content: start;
}
.booking-option {
  border: 1px solid rgba(250,246,240,0.16);
  border-radius: 16px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, background 0.2s;
}
.booking-option:hover { border-color: rgba(250,246,240,0.35); background: rgba(250,246,240,0.05); }
.booking-option-icon {
  font-size: 1.5rem;
  line-height: 1;
}
.booking-option-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
}
.booking-option h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--bg);
  margin: 0;
  line-height: 1.3;
}
.booking-option p {
  color: rgba(250,246,240,0.68);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.booking-option .btn-book-opt {
  display: inline-block;
  margin-top: 8px;
  padding: 9px 18px;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  text-align: center;
  letter-spacing: 0.02em;
}
.booking-option-walkin .btn-book-opt {
  background: var(--rose);
  color: var(--ink);
}
.booking-option-walkin .btn-book-opt:hover { background: #c9897a; }
.booking-option-appt .btn-book-opt {
  background: var(--gold);
  color: var(--ink);
}
.booking-option-appt .btn-book-opt:hover { background: var(--gold-deep); }
@media (max-width: 620px) {
  .booking-options { grid-template-columns: 1fr; }
}

.social-icons svg { width: 18px; height: 18px; }
.hours-table { font-size: 1rem; }
.hours-table div { display: flex; justify-content: space-between; padding: 6px 0; max-width: 320px; }
.hours-table div span:first-child { color: rgba(250,246,240,0.7); }

.map-column { display: flex; flex-direction: column; gap: 28px; }
.storefront-thumb {
  margin: 0;
  max-width: 400px;
  align-self: flex-start;
}
.storefront-thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid rgba(250,246,240,0.15);
}
.storefront-thumb figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(250,246,240,0.7);
  letter-spacing: 0.01em;
}
.map-embed {
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid rgba(250,246,240,0.15);
  background: rgba(250,246,240,0.05);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: grayscale(0.15) contrast(1.02);
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .storefront-thumb { max-width: 100%; align-self: stretch; }
}

/* ========== CTA STRIP ========== */
.cta-strip { padding: 100px 0; background: var(--bg-soft); text-align: center; }
.cta-strip h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; margin-bottom: 20px; }
.cta-strip h2 em { font-style: italic; color: var(--gold-deep); }
.cta-strip p { color: var(--ink-soft); max-width: 56ch; margin: 0 auto 32px; font-size: 1.08rem; }
.cta-strip .btn-row { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ========== FOOTER ========== */
footer {
  background: var(--ink);
  color: rgba(250,246,240,0.6);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(250,246,240,0.1);
  font-size: 0.85rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250,246,240,0.1);
  margin-bottom: 24px;
}
.footer-grid h4 {
  color: var(--rose);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: rgba(250,246,240,0.7); }
.footer-grid a:hover { color: var(--rose); }
.footer-brand { font-family: var(--serif); font-size: 1.4rem; color: var(--bg); margin-bottom: 14px; }
.footer-brand em { font-style: italic; color: var(--rose); }
.footer-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; align-items: center; }
.footer-nap { color: rgba(250,246,240,0.7); }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(250,246,240,0.5); font-size: 0.78rem; letter-spacing: 0.04em; text-decoration: none; transition: color 0.2s; }
.footer-legal-links a:hover { color: rgba(250,246,240,0.85); }


@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-legal-links { gap: 14px; }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroGalleryFade {
  0% { opacity: 0; }
  8% { opacity: 1; }
  16% { opacity: 1; }
  24% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes heroGalleryZoom {
  0% { transform: scale(1.02); }
  24% { transform: scale(1.08); }
  100% { transform: scale(1.1); }
}
.hero-text > * { opacity: 0; animation: fadeUp 0.9s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-text .eyebrow { animation-delay: 0.1s; }
.hero-text h1 { animation-delay: 0.25s; }
.hero-text p { animation-delay: 0.4s; }
.hero-text .hero-cta { animation-delay: 0.55s; }
.hero-text .hero-meta { animation-delay: 0.7s; }
.hero-image { opacity: 0; animation: fadeUp 1.1s cubic-bezier(.2,.7,.2,1) 0.3s forwards; }
.page-head > * { opacity: 0; animation: fadeUp 0.9s cubic-bezier(.2,.7,.2,1) forwards; }
.page-head .eyebrow { animation-delay: 0.05s; }
.page-head h1 { animation-delay: 0.18s; }
.page-head .lead { animation-delay: 0.32s; }
