:root {
  --ink: #101418;
  --ink-2: #171d22;
  --paper: #f7f3ea;
  --paper-2: #ece5d7;
  --white: #fffdf8;
  --gold: #c5a264;
  --gold-2: #e3c98e;
  --muted: #657078;
  --line: rgba(16, 20, 24, .12);
  --shadow: 0 28px 70px rgba(16, 20, 24, .14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.page-noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 1000; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; padding: 16px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { background: rgba(16, 20, 24, .94); backdrop-filter: blur(14px); padding: 10px 0; box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: white; min-width: 0; }
.brand-mark {
  display: grid; place-items: center; width: 48px; height: 48px; flex: 0 0 auto;
  border: 1px solid rgba(227, 201, 142, .6); border-radius: 14px; color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif; font-size: 19px; letter-spacing: -1px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.015));
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 600; letter-spacing: .2px; }
.brand-copy small { color: rgba(255,255,255,.62); margin-top: 5px; font-size: 11px; letter-spacing: .04em; }
.main-nav { display: flex; align-items: center; gap: 28px; color: rgba(255,255,255,.78); font-size: 14px; }
.main-nav a { position: relative; transition: color .25s ease; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--gold-2); transition: right .25s ease; }
.main-nav a:hover { color: white; }
.main-nav a:hover::after { right: 0; }
.nav-cta { border: 1px solid rgba(227,201,142,.45); padding: 10px 16px; border-radius: 999px; color: var(--gold-2) !important; }
.menu-toggle { display: none; width: 46px; height: 46px; border-radius: 14px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); padding: 0 12px; cursor: pointer; }
.menu-toggle span { display: block; height: 1.5px; margin: 5px 0; background: white; transition: transform .3s ease, opacity .3s ease; }
.menu-toggle.active span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2){ opacity: 0; }
.menu-toggle.active span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

.section-dark { position: relative; color: white; background: var(--ink); }
.hero { min-height: 100svh; display: grid; align-items: center; overflow: hidden; padding: 130px 0 80px; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, black, transparent 84%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(4px); opacity: .16; border: 1px solid var(--gold-2); }
.hero-orb-one { width: 480px; height: 480px; right: -160px; top: -90px; box-shadow: inset 0 0 120px rgba(197,162,100,.22); }
.hero-orb-two { width: 220px; height: 220px; left: -90px; bottom: 60px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.eyebrow { margin: 0 0 18px; color: var(--gold-2); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; }
.eyebrow.dark { color: #846a3d; }
.hero h1 { margin: 0; font: 500 clamp(58px, 8vw, 112px)/.9 Georgia, "Times New Roman", serif; letter-spacing: -.055em; }
.hero-subtitle { max-width: 650px; margin: 24px 0 0; font: 400 clamp(20px, 2.2vw, 30px)/1.25 Georgia, "Times New Roman", serif; color: var(--gold-2); }
.hero-text { max-width: 680px; margin: 28px 0 0; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.7; color: rgba(255,255,255,.7); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border-radius: 999px; font-weight: 700; font-size: 14px; transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold-2); color: var(--ink); box-shadow: 0 12px 30px rgba(197,162,100,.15); }
.btn-primary:hover { background: #f0d8a2; }
.btn-secondary { border: 1px solid rgba(255,255,255,.17); color: white; background: rgba(255,255,255,.035); }
.btn-secondary:hover { border-color: rgba(227,201,142,.55); color: var(--gold-2); }
.btn-dark { background: var(--ink); color: white; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 28px; color: rgba(255,255,255,.58); font-size: 13px; }
.note-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 0 6px rgba(227,201,142,.08); }
.hero-panel { position: relative; padding: 42px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.025)); backdrop-filter: blur(16px); box-shadow: 0 40px 100px rgba(0,0,0,.25); }
.panel-topline { position: absolute; top: 0; left: 36px; right: 36px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-2), transparent); }
.panel-emblem { width: 84px; height: 84px; display: grid; place-items: center; margin-bottom: 34px; border-radius: 24px; background: rgba(227,201,142,.08); color: var(--gold-2); border: 1px solid rgba(227,201,142,.2); }
.panel-emblem svg { width: 50px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.panel-label { margin: 0; color: rgba(255,255,255,.45); font-size: 12px; text-transform: uppercase; letter-spacing: .18em; }
.hero-panel h2 { margin: 9px 0 26px; font: 500 30px/1.2 Georgia, "Times New Roman", serif; }
.panel-list { display: flex; flex-wrap: wrap; gap: 9px; }
.panel-list span { padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.7); font-size: 12px; }

.section { padding: clamp(84px, 10vw, 140px) 0; }
.section-light { background: var(--paper); }
.section-warm { background: var(--paper-2); }
.section-heading { max-width: 680px; margin-bottom: 52px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading h2, .appointment-copy h2, .contact-copy h2 { margin: 0; font: 500 clamp(38px, 5vw, 64px)/1.04 Georgia, "Times New Roman", serif; letter-spacing: -.03em; }
.section-heading p:not(.eyebrow), .appointment-copy > p:not(.eyebrow), .contact-copy p { color: var(--muted); margin: 18px 0 0; }
.professionals-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.professional-card { position: relative; overflow: hidden; min-height: 330px; padding: 38px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); box-shadow: 0 18px 60px rgba(16,20,24,.06); transition: transform .3s ease, box-shadow .3s ease; }
.professional-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.professional-card::after { content: ""; position: absolute; width: 190px; height: 190px; right: -70px; bottom: -80px; border: 1px solid rgba(197,162,100,.25); border-radius: 50%; }
.professional-index { position: absolute; right: 26px; top: 22px; font: 500 58px/1 Georgia, serif; color: rgba(16,20,24,.045); }
.professional-icon, .service-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: #efe7d7; color: #896f40; }
.professional-icon svg, .service-icon svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.card-kicker { margin: 34px 0 9px; color: #8a744d; font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.professional-card h3 { max-width: 430px; margin: 0; font: 500 clamp(27px, 3vw, 38px)/1.12 Georgia, "Times New Roman", serif; }
.credential { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-top: 38px; padding-top: 20px; border-top: 1px solid var(--line); }
.credential span { color: var(--muted); font-size: 13px; }
.credential strong { font-size: 19px; letter-spacing: .06em; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { position: relative; min-height: 265px; padding: 30px; border-radius: 24px; border: 1px solid rgba(16,20,24,.1); background: rgba(255,253,248,.66); transition: transform .3s ease, background .3s ease, border-color .3s ease; overflow: hidden; }
.service-card:hover { transform: translateY(-5px); background: var(--white); border-color: rgba(197,162,100,.45); }
.service-number { position: absolute; right: 24px; top: 22px; color: rgba(16,20,24,.28); font-size: 11px; letter-spacing: .15em; }
.service-card h3 { margin: 28px 0 8px; font: 500 30px/1.1 Georgia, "Times New Roman", serif; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }

.appointment-section { color: white; background: linear-gradient(135deg, #11171c, #1b2227); position: relative; overflow: hidden; }
.appointment-section::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; right: -160px; top: -240px; border: 1px solid rgba(227,201,142,.18); box-shadow: inset 0 0 120px rgba(197,162,100,.05); }
.appointment-grid { position: relative; display: grid; grid-template-columns: 1fr .75fr; gap: clamp(50px, 8vw, 100px); align-items: center; }
.appointment-copy > p:not(.eyebrow) { color: rgba(255,255,255,.6); max-width: 530px; margin-bottom: 30px; }
.schedule-card { padding: 42px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.045); backdrop-filter: blur(16px); }
.schedule-label { margin: 0; color: var(--gold-2); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.schedule-card h3 { margin: 10px 0 34px; font: 500 34px/1.15 Georgia, serif; }
.time-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; font-size: clamp(30px, 4vw, 48px); font-family: Georgia, serif; }
.time-row i { height: 1px; background: linear-gradient(90deg, rgba(255,255,255,.1), rgba(227,201,142,.6), rgba(255,255,255,.1)); }
.time-divider { text-align: center; color: rgba(255,255,255,.38); font-size: 13px; margin: 12px 0; }
.schedule-foot { margin: 28px 0 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.52); font-size: 13px; }

.contact-section { background: #f7f3ea; }
.contact-shell { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: clamp(34px, 5vw, 60px); border: 1px solid rgba(16,20,24,.12); border-radius: 30px; background: var(--white); box-shadow: 0 24px 70px rgba(16,20,24,.07); }
.contact-copy { max-width: 760px; }
.contact-copy h2 { font-size: clamp(34px, 4.6vw, 58px); }
.contact-detail { font-weight: 700; color: var(--ink) !important; word-break: break-word; }

.site-footer { padding: 38px 0 46px; background: var(--ink); color: rgba(255,255,255,.55); }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr auto; gap: 28px; align-items: center; font-size: 12px; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: white; }
.brand-mark.small { width: 42px; height: 42px; border-radius: 12px; font-size: 16px; }
.footer-brand strong { font-family: Georgia, serif; font-size: 18px; font-weight: 500; }
.footer-brand p { margin: 2px 0 0; color: rgba(255,255,255,.42); }
.footer-meta { margin: 0; text-align: center; }
.site-footer a { color: var(--gold-2); word-break: break-word; text-align: right; }

.back-top { position: fixed; right: 20px; bottom: 20px; z-index: 80; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; background: var(--ink); color: white; cursor: pointer; opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .25s ease, transform .25s ease; box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.back-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }

.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 76px 20px auto; display: grid; gap: 0; padding: 12px; border-radius: 20px; background: #171d22; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 30px 80px rgba(0,0,0,.4); opacity: 0; visibility: hidden; transform: translateY(-12px) scale(.98); transition: .25s ease; }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { padding: 15px 14px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .main-nav a:last-child { border-bottom: 0; }
  .nav-cta { border: 0; border-radius: 12px; }
  .hero-grid, .appointment-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 150px; }
  .hero-panel { max-width: 650px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-meta, .site-footer a { text-align: left; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand-copy small { display: none; }
  .brand-copy strong { font-size: 17px; }
  .brand-mark { width: 44px; height: 44px; }
  .hero { padding-top: 126px; padding-bottom: 66px; }
  .hero h1 { font-size: clamp(52px, 17vw, 76px); }
  .hero-subtitle { font-size: 22px; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-panel { padding: 30px 24px; }
  .professionals-grid, .services-grid { grid-template-columns: 1fr; }
  .professional-card { min-height: 0; padding: 28px; }
  .credential { align-items: start; flex-direction: column; gap: 8px; }
  .service-card { min-height: 220px; }
  .schedule-card { padding: 28px 22px; }
  .time-row { font-size: clamp(28px, 11vw, 42px); }
  .contact-shell { align-items: stretch; flex-direction: column; }
  .contact-shell .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
