:root {
  --gold: #c9a96e;
  --gold-light: #e2cc9c;
  --gold-dark: #a07d3f;
  --cream: #faf6f0;
  --cream-dark: #f0e8d8;
  --espresso: #2a1f14;
  --espresso-light: #3d2e1f;
  --rose: #c4837a;
  --rose-muted: #d4a59f;
  --blush: #f5e6e0;
  --white: #fffdf9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--cream);
  color: var(--espresso);
  overflow-x: hidden;
}

/* ── Grain overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  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");
}

/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(42, 31, 20, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.8rem 3rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.nav-logo em {
  font-style: italic;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.7);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; }
  .navbar.scrolled { padding: 0.7rem 1.5rem; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(42, 31, 20, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right 0.4s ease;
  }

  .nav-links.open { right: 0; }

  .nav-links a { font-size: 0.85rem; }
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(160deg, var(--espresso) 0%, #3a2a1a 40%, #4a3525 100%);
  padding: 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 45%, rgba(201,169,110,0.12) 0%, transparent 70%),
    radial-gradient(circle at 20% 80%, rgba(196,131,122,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-arch {
  position: absolute;
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 50%;
  pointer-events: none;
}
.hero-arch--1 {
  width: 500px; height: 500px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: archPulse 6s ease-in-out infinite;
}
.hero-arch--2 {
  width: 650px; height: 650px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: archPulse 6s ease-in-out 1s infinite;
}
.hero-arch--3 {
  width: 800px; height: 800px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: archPulse 6s ease-in-out 2s infinite;
}

@keyframes archPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 0.3em;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}

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

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: var(--rose-muted);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}

.hero-cta {
  display: inline-block;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--gold);
  padding: 1.1em 3em;
  text-decoration: none;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(201,169,110,0.5);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: fadeUp 1s 1.2s forwards;
  opacity: 0;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   PAGE HERO (sub pages)
   ══════════════════════════════════════ */
.page-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(160deg, var(--espresso) 0%, #3a2a1a 40%, #4a3525 100%);
  padding: 6rem 2rem 4rem;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 45%, rgba(201,169,110,0.12) 0%, transparent 70%),
    radial-gradient(circle at 20% 80%, rgba(196,131,122,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero .hero-eyebrow {
  animation: fadeUp 0.8s 0.1s forwards;
}
.page-hero .hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  animation: fadeUp 0.8s 0.25s forwards;
}
.page-hero .hero-subtitle {
  animation: fadeUp 0.8s 0.4s forwards;
}

/* ══════════════════════════════════════
   DIVIDER
   ══════════════════════════════════════ */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem 0;
}
.divider-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.divider-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}

/* ══════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════ */
.section {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--espresso);
}

.section-heading em { font-style: italic; color: var(--rose); }

.section-body {
  font-size: 1.15rem;
  line-height: 1.9;
  font-weight: 300;
  text-align: center;
  color: var(--espresso-light);
  max-width: 620px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   SERVICES
   ══════════════════════════════════════ */
.services-band {
  background: var(--espresso);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.services-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,169,110,0.06), transparent 70%);
  pointer-events: none;
}

.services-inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-band .section-label { color: var(--gold-light); }
.services-band .section-heading { color: var(--cream); }

.services-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  margin-top: 3rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.service-group {
  margin-bottom: 1rem;
}

.service-group-title {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,253,249,0.04);
  transition: background 0.3s;
}

.service-row:hover {
  background: rgba(201,169,110,0.04);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.service-row-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
}

.service-row-note {
  display: block;
  font-size: 0.85rem;
  color: var(--rose-muted);
  font-weight: 300;
  font-style: italic;
}

.service-row-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(201,169,110,0.2);
  margin: 0 0.75rem;
  min-width: 20px;
  position: relative;
  top: -4px;
}

.service-row-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .services-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-group[style*="grid-column"] > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

/* ══════════════════════════════════════
   LOCATION
   ══════════════════════════════════════ */
.location-section {
  padding: 5rem 2rem;
  background: var(--cream);
}

.location-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.location-details {
  padding: 2rem 0;
}

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

.location-block-label {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.location-block p,
.location-block a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 400;
  color: var(--espresso);
}

.location-block a {
  color: var(--rose);
  text-decoration: none;
  border-bottom: 1px solid rgba(196,131,122,0.3);
  transition: all 0.3s;
}

.location-block a:hover {
  color: var(--gold-dark);
  border-bottom-color: var(--gold-dark);
}

.phone-link {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.6rem !important;
  font-weight: 600;
  color: var(--espresso) !important;
  border: none !important;
  letter-spacing: 0.02em;
}

.phone-link:hover {
  color: var(--gold-dark) !important;
}

.phone-sub {
  font-size: 0.85rem;
  color: var(--rose-muted);
  font-weight: 300;
  margin-top: 0.2rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  max-width: 280px;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(42,31,20,0.06);
}

.hours-day { font-weight: 500; }
.hours-time { color: var(--espresso-light); font-weight: 300; }

.map-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.2);
  box-shadow: 0 20px 60px rgba(42,31,20,0.08);
}

.map-wrapper iframe {
  width: 100%;
  height: 420px;
  display: block;
}

/* ══════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════ */
.cta-band {
  background: linear-gradient(160deg, var(--espresso), #3a2a1a);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
}

.cta-heading em { font-style: italic; color: var(--gold); }

.cta-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--rose-muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-btn {
  display: inline-block;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--gold);
  padding: 1.1em 3em;
  text-decoration: none;
  transition: all 0.4s ease;
}

.cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.3);
}

/* ══════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════ */
.about-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.about-content p {
  font-size: 1.2rem;
  line-height: 2;
  font-weight: 300;
  color: var(--espresso-light);
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.about-value {
  text-align: center;
}

.about-value-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}

.about-value-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--espresso);
  margin-bottom: 0.5rem;
}

.about-value-desc {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  color: var(--espresso-light);
}

@media (max-width: 640px) {
  .about-values { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 2rem;
  align-items: start;
}

.contact-info { padding: 1rem 0; }

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

.contact-block-label {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.contact-block p,
.contact-block a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 400;
  color: var(--espresso);
}

.contact-block a {
  color: var(--rose);
  text-decoration: none;
  border-bottom: 1px solid rgba(196,131,122,0.3);
  transition: all 0.3s;
}

.contact-block a:hover {
  color: var(--gold-dark);
  border-bottom-color: var(--gold-dark);
}

.contact-map {
  border: 1px solid rgba(201,169,110,0.2);
  box-shadow: 0 20px 60px rgba(42,31,20,0.08);
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 500px;
  display: block;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map iframe { height: 300px; }
}

/* ══════════════════════════════════════
   BOOK PAGE
   ══════════════════════════════════════ */
.book-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.book-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 300;
  color: var(--espresso-light);
  margin-bottom: 2rem;
}

.book-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.book-option {
  background: var(--white);
  border: 1px solid rgba(201,169,110,0.15);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
}

.book-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(42,31,20,0.08);
  border-color: var(--gold);
}

.book-option-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.book-option-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--espresso);
  margin-bottom: 0.5rem;
}

.book-option-desc {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
  color: var(--espresso-light);
  margin-bottom: 1.5rem;
}

.book-option-link {
  display: inline-block;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--gold);
  padding: 0.8em 2em;
  text-decoration: none;
  transition: all 0.3s;
}

.book-option-link:hover {
  background: var(--gold-light);
}

.book-calendly {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.book-calendly iframe {
  width: 100%;
  height: 700px;
  border: 1px solid rgba(201,169,110,0.15);
  box-shadow: 0 20px 60px rgba(42,31,20,0.06);
}

@media (max-width: 640px) {
  .book-options { grid-template-columns: 1fr; }
  .book-calendly iframe { height: 500px; }
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
footer {
  background: var(--espresso);
  border-top: 1px solid rgba(201,169,110,0.1);
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.4);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .location-grid { grid-template-columns: 1fr; }
  .map-wrapper iframe { height: 300px; }
  .hero-arch { display: none; }
}
