@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Raleway:wght@300;400;500;600&display=swap');

:root {
  --cream: #F8F4EE;
  --cream-dark: #EDE7DB;
  --cream-mid: #F2EDE3;
  --black: #1A1714;
  --charcoal: #2D2926;
  --gold: #C4A45A;
  --gold-light: #D9BF82;
  --gold-pale: #F5EDDA;
  --gold-on-light: #7B5E2B;
  --black-raised: #221f1b;
  --black-raised-hover: #2a271d;
  --text: #3D3530;
  --text-muted: #5C5652;
  --white: #FFFFFF;
  --error: #B04040;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Raleway', 'Trebuchet MS', Helvetica, sans-serif;

  --max-width: 1160px;
  --header-height: 80px;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.15);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* Focus indicator — single global rule, composited outline */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
a:focus-visible,
button:focus-visible { outline-offset: 4px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--black); line-height: 1.15; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-on-light);
  display: block;
  margin-bottom: 0.75rem;
}

/* Gold labels on dark surfaces */
.section-bg-dark .section-label,
.page-hero .section-label,
.cta-banner .section-label { color: var(--gold); }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.85;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.gold-line {
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem 0;
}
.text-center .gold-line { margin: 1.25rem auto; }

/* ── Container ── */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ── Sections ── */
.section { padding: 6rem 0; }
.section-lg { padding: 8rem 0; }
.section-sm { padding: 4rem 0; }

.section-bg-dark { background: var(--black); }
.section-bg-dark .section-title { color: var(--cream); }
.section-bg-dark .section-subtitle { color: rgba(248, 244, 238, 0.55); }
.section-bg-dark .gold-line { background: var(--gold); }

.section-bg-mid { background: var(--cream-mid); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-dark { background: var(--black); color: var(--cream); border-color: var(--black); }
.btn-dark:hover { background: var(--charcoal); border-color: var(--charcoal); }

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

.btn-outline-light { background: transparent; color: var(--cream); border-color: rgba(248, 244, 238, 0.45); }
.btn-outline-light:hover { background: rgba(248, 244, 238, 0.08); border-color: rgba(248, 244, 238, 0.7); }

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

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.site-header.transparent { background: transparent; }
.site-header.scrolled,
.site-header.solid {
  background: var(--black);
  box-shadow: 0 1px 0 rgba(196, 164, 90, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  height: var(--header-height);
  gap: 2.5rem;
}

.nav-logo { flex-shrink: 0; }
.nav-logo a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--cream);
}
.nav-logo a span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 244, 238, 0.75);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-book {
  flex-shrink: 0;
  margin-left: 0.5rem;
  padding: 0.65rem 1.5rem;
}

/* Touch target: 44px minimum height via padding */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 12px 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Page Hero ── */
.page-hero {
  min-height: 300px;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding-bottom: 3.5rem;
  padding-top: calc(var(--header-height) + 3rem);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 40%, rgba(196, 164, 90, 0.1) 0%, transparent 60%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 164, 90, 0.3), transparent);
}

.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--cream); font-size: clamp(2.2rem, 5vw, 3.75rem); }

/* ── Footer ── */
.site-footer {
  background: var(--black);
  color: rgba(248, 244, 238, 0.65);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(196, 164, 90, 0.18);
}

.footer-brand p {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.85;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(248, 244, 238, 0.6);
  transition: color 0.2s ease;
}
.footer-col ul a:hover { color: var(--cream); }

.footer-col address { font-style: normal; font-size: 0.875rem; line-height: 2; }

.footer-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 1.25rem;
  font-size: 0.875rem;
}
.footer-hours .day { color: var(--text-muted); }
.footer-hours .time { color: rgba(248, 244, 238, 0.65); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.75rem;
  color: rgba(248, 244, 238, 0.35);
}

.footer-social { display: flex; gap: 1.5rem; }
.footer-social a {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 244, 238, 0.35);
  transition: color 0.2s ease;
}
.footer-social a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   INDEX — HERO
══════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 55%, rgba(196, 164, 90, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(45, 41, 38, 0.6) 0%, transparent 55%),
    linear-gradient(155deg, #1a1714 0%, #2d2520 50%, #1c1410 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
  padding-bottom: 5rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-eyebrow span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(3rem, 7.5vw, 6.25rem);
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.75rem;
  max-width: 740px;
}

.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-desc {
  font-size: 0.975rem;
  color: rgba(248, 244, 238, 0.62);
  max-width: 440px;
  margin-bottom: 2.75rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.hero-scroll-indicator span {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(248, 244, 238, 0.3);
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(196, 164, 90, 0.6) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
  overflow-x: clip;
}

.about-visual { position: relative; }

.about-image-primary {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #2D2926 0%, #3D3028 100%);
  border: 1px solid rgba(196, 164, 90, 0.15);
}

/* Year badge replaces the stat-box cliché */
.about-aside {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--charcoal);
  border: 1px solid rgba(196, 164, 90, 0.2);
  padding: 2rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.about-aside-est {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-aside-year {
  font-family: var(--font-display);
  font-size: 3.25rem;
  color: var(--cream);
  line-height: 1;
  font-weight: 400;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* ── Service Strips (replaces identical card grid) ── */
.service-strips {
  margin-top: 4rem;
  border-top: 1px solid rgba(196, 164, 90, 0.12);
}

.service-strip {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 2.5rem;
  align-items: center;
  padding: 2.25rem 1.5rem;
  border-bottom: 1px solid rgba(196, 164, 90, 0.12);
  text-decoration: none;
  cursor: pointer;
  margin: 0 -1.5rem;
  transition: background-color 0.3s ease;
}

.service-strip:hover { background-color: rgba(196, 164, 90, 0.04); }

.strip-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: rgba(196, 164, 90, 0.2);
  line-height: 1;
  transition: color 0.3s ease;
}

.service-strip:hover .strip-num { color: rgba(196, 164, 90, 0.45); }

.strip-body h3 {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.45rem;
}

.strip-body p {
  font-size: 0.875rem;
  color: rgba(248, 244, 238, 0.45);
  line-height: 1.8;
  max-width: 540px;
}

.strip-link {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.strip-link .arrow {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-strip:hover .strip-link .arrow { transform: translateX(6px); }

/* ── Testimonial ── */
.testimonial-wrap {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 0;
}

.testimonial-marks {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  opacity: 0.4;
  display: block;
  margin-bottom: 1.5rem;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-style: italic;
  color: var(--black);
  line-height: 1.55;
  margin-bottom: 2rem;
}

.testimonial-author {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.testimonial-author strong { color: var(--gold-on-light); font-weight: 600; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--charcoal);
  border-top: 1px solid rgba(196, 164, 90, 0.2);
  border-bottom: 1px solid rgba(196, 164, 90, 0.2);
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.cta-banner p {
  font-size: 0.9rem;
  color: rgba(248, 244, 238, 0.55);
  margin-bottom: 2.25rem;
}

/* ══════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════ */

.services-page { padding: 5rem 0; }

.services-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 5rem;
}

.services-category { margin-bottom: 5rem; }

.category-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 0.5rem;
}

.category-header h2 { font-size: 1.6rem; white-space: nowrap; }

.category-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}

.category-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.price-list { width: 100%; }

.price-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: start;
}

.price-item:last-child { border-bottom: none; }

.price-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--black);
  margin-bottom: 0.2rem;
}

.price-note { font-size: 0.78rem; color: var(--text-muted); }

.price-amount {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-on-light);
  white-space: nowrap;
  padding-top: 0.15rem;
}

/* Side-stripe removed: background tint carries the distinction */
.services-notice {
  background: var(--gold-pale);
  border: 1px solid rgba(196, 164, 90, 0.22);
  padding: 1.5rem 2rem;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.8;
  margin-top: 1rem;
}

.services-notice strong { color: var(--black); }

/* ══════════════════════════════════════
   TEAM PAGE
══════════════════════════════════════ */

.team-page { padding: 5rem 0; }

.team-intro {
  max-width: 600px;
  margin-bottom: 4.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem 5rem;
}

.team-card { display: flex; flex-direction: column; }

.team-card-top {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.75rem;
  align-items: start;
}

.team-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px solid rgba(196, 164, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.photo-1 { background: linear-gradient(145deg, #2d2926, #3c302a); }
.photo-2 { background: linear-gradient(145deg, #252c2e, #2e3a3c); }
.photo-3 { background: linear-gradient(145deg, #2c2626, #3c2e2e); }
.photo-4 { background: linear-gradient(145deg, #272522, #363024); }

.team-name { font-size: 1.35rem; margin-bottom: 0.2rem; }

.team-role {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-on-light);
}

.team-bio {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.team-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.tag {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border: 1px solid rgba(196, 164, 90, 0.28);
  color: var(--text-muted);
}

.team-join {
  background: var(--cream-dark);
  padding: 5rem 0;
  margin-top: 5rem;
  text-align: center;
}

.team-join h2 { margin-bottom: 0.75rem; }
.team-join p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════ */

.gallery-page { padding: 5rem 0; }

.gallery-intro {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 3.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16 / 8; }
.gallery-item:nth-child(2) { aspect-ratio: 1; }
.gallery-item:nth-child(3) { aspect-ratio: 1; }
.gallery-item:nth-child(4) { aspect-ratio: 1; }
.gallery-item:nth-child(5) { grid-column: span 2; aspect-ratio: 16 / 8; }
.gallery-item:nth-child(6) { aspect-ratio: 4/3; }
.gallery-item:nth-child(7) { aspect-ratio: 4/3; }
.gallery-item:nth-child(8) { aspect-ratio: 4/3; }
.gallery-item:nth-child(9) { grid-column: span 3; aspect-ratio: 16 / 5; }

.gallery-fill {
  position: absolute;
  inset: 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-fill { transform: scale(1.04); }

.g1 { background: linear-gradient(145deg, #30261e 0%, #241c15 100%); }
.g2 { background: linear-gradient(145deg, #1e2830 0%, #151e25 100%); }
.g3 { background: linear-gradient(145deg, #2e1e20 0%, #231618 100%); }
.g4 { background: linear-gradient(145deg, #1e2820 0%, #151e17 100%); }
.g5 { background: linear-gradient(145deg, #2c2218 0%, #221a12 100%); }
.g6 { background: linear-gradient(145deg, #201e30 0%, #181625 100%); }
.g7 { background: linear-gradient(145deg, #2a1e1e 0%, #1f1617 100%); }
.g8 { background: linear-gradient(145deg, #1e2424 0%, #161b1b 100%); }
.g9 { background: linear-gradient(145deg, #22201a 0%, #1a1814 100%); }

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.gallery-item:hover .gallery-hover { background: rgba(0, 0, 0, 0.28); }

.gallery-hover-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-hover-label { opacity: 1; transform: translateY(0); }

.gallery-corner-label {
  position: absolute;
  bottom: 0.9rem;
  left: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196, 164, 90, 0.35);
  z-index: 1;
}

.gallery-soon {
  text-align: center;
  padding: 3.5rem 0 2rem;
}

.gallery-soon p {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.gallery-soon span {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */

.contact-page { padding: 5rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
}

.contact-form-section h2 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.contact-form-section > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.85;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* Required field asterisk */
.form-group.required label::after {
  content: ' *';
  color: var(--gold-on-light);
  font-weight: 400;
  letter-spacing: 0;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  color: var(--black);
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(93, 86, 82, 0.4); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

/* Error states */
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select { border-color: var(--error); }

.form-group.has-error label { color: var(--error); }

.form-error-msg {
  display: none;
  font-size: 0.75rem;
  color: var(--error);
  margin-top: 0.35rem;
  line-height: 1.4;
}

.form-group.has-error .form-error-msg { display: block; }

.form-group textarea { min-height: 130px; resize: vertical; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--text-muted);
  border-bottom: 1.5px solid var(--text-muted);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.form-consent {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.contact-info-section h2 { font-size: 1.8rem; margin-bottom: 2.25rem; }

.info-block { margin-bottom: 2.5rem; }

.info-block h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-on-light);
  margin-bottom: 0.75rem;
}

.info-block p,
.info-block address {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 2;
  font-style: normal;
}

.hours-table {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 1.5rem;
  font-size: 0.9rem;
}

.hours-table .h-day { color: var(--text-muted); }
.hours-table .h-time { color: var(--text); }

.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  border: 1px solid rgba(196, 164, 90, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  margin-top: 2.5rem;
}

.map-placeholder svg { opacity: 0.4; }

.map-placeholder span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.map-placeholder small { font-size: 0.78rem; color: var(--text-muted); opacity: 0.7; }

/* ── Fade-up animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-visual { max-width: 480px; }
  .team-grid { gap: 2.5rem 3rem; }
  .contact-grid { gap: 4rem; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }

  .section { padding: 4rem 0; }
  .section-lg { padding: 5rem 0; }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 2.5rem 2rem;
    gap: 1.75rem;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.3s ease;
    pointer-events: none;
    z-index: 999;
    margin-left: 0;
    border-bottom: 1px solid rgba(196, 164, 90, 0.15);
  }

  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a { font-size: 0.9rem; }
  .nav-book { display: none; }
  .nav-toggle { display: flex; }

  /* Service strips on mobile */
  .service-strip {
    grid-template-columns: 3rem 1fr;
    gap: 1.25rem;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .strip-link {
    grid-column: 2;
    margin-top: 0.5rem;
  }

  /* About aside: keep within bounds on mobile */
  .about-aside {
    right: 0;
    bottom: -1.5rem;
    padding: 1.25rem 1.75rem;
  }

  .about-aside-year { font-size: 2.5rem; }

  .team-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .team-card-top { grid-template-columns: 100px 1fr; gap: 1.25rem; }
  .team-photo { width: 100px; height: 100px; font-size: 1.6rem; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 3px; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 2; }
  .gallery-item:nth-child(9) { grid-column: span 2; aspect-ratio: 2/1; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
}

@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { grid-column: auto !important; aspect-ratio: 4/3 !important; }
  .category-header::after { display: none; }
  .category-header { margin-bottom: 0; }
}
