/* Fonts loaded via <link> in HTML — no duplicate @import needed */

/* ───────────────────────────────────────────────── */
/*  CSS Variables & Reset                            */
/* ───────────────────────────────────────────────── */
:root {
  --gold-light: #e8c96a;
  --gold:       #c9982b;
  --gold-dark:  #9b7320;
  --cream:      #f5f0e8;
  --cream-deep: #ede5d4;
  --ivory:      #faf8f3;
  --text-dark:  #1a1208;
  --text-mid:   #4a3a1e;
  --text-muted: #8a7355;
  --nav-h:      80px;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body { font-family: var(--sans); background: var(--ivory); color: var(--text-dark); overflow-x: hidden; }

/* ───────────────────────────────────────────────── */
/*  Accessibility                                    */
/* ───────────────────────────────────────────────── */
.skip-link { position: absolute; left: -9999px; top: 8px; padding: .4rem .8rem; background: var(--gold); color: #fff; border-radius: 4px; z-index: 9999; }
.skip-link:focus { left: 8px; }

/* Screen-reader only — hides visually but keeps accessible */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ───────────────────────────────────────────────── */
/*  Scroll Progress                                  */
/* ───────────────────────────────────────────────── */
#scrollProgress { position: fixed; top: 0; left: 0; height: 2px; width: 0%; background: linear-gradient(90deg, var(--gold-light), var(--gold)); z-index: 9999; transition: width .12s linear; }

/* ───────────────────────────────────────────────── */
/*  Navbar                                           */
/* ───────────────────────────────────────────────── */
.navbar { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); display: flex; align-items: center; padding: 0 5%; background: rgba(250,248,243,0.6); backdrop-filter: blur(16px) saturate(1.2); border-bottom: 1px solid rgba(201,152,43,0.15); transition: background .3s, box-shadow .3s, transform .25s; z-index: 1000; }
.navbar.scrolled { background: rgba(250,248,243,0.97); box-shadow: 0 2px 30px rgba(155,115,32,0.12); }
.navbar.nav-hide { transform: translateY(-100%); }
.nav-brand img { height: 52px; width: 52px; object-fit: contain; display: block; }
.nav-brand .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand .brand-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; letter-spacing: .08em; color: var(--gold-dark); }
.nav-brand .brand-sub { font-family: var(--sans); font-size: .65rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); }
.nav-links { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; }
.nav-links a { font-family: var(--sans); font-size: .82rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--text-mid); text-decoration: none; padding: .5rem .75rem; border-radius: 4px; transition: color .2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: .3rem; left: .75rem; right: .75rem; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform .25s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-dark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.btn-appt { font-family: var(--sans); font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; padding: .6rem 1.4rem; border-radius: 2px; border: 1.5px solid var(--gold); color: var(--gold-dark); background: transparent; transition: background .25s, color .25s, box-shadow .25s; white-space: nowrap; }
.btn-appt:hover { background: var(--gold); color: var(--ivory); box-shadow: 0 4px 18px rgba(201,152,43,0.35); }
.nav-spacer { flex: 1; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--gold-dark); transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-nav { display: none; position: fixed; inset: var(--nav-h) 0 0 0; background: var(--ivory); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; color: var(--text-dark); text-decoration: none; letter-spacing: .05em; transition: color .2s; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn-appt { margin-top: .5rem; }

/* ───────────────────────────────────────────────── */
/*  Hero                                             */
/* ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  min-height: 100svh; /* iOS Safari address-bar fix */
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: var(--nav-h) 5% 4rem;
}
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(232,201,106,0.12) 0%, transparent 60%), radial-gradient(ellipse 50% 60% at 10% 80%, rgba(201,152,43,0.08) 0%, transparent 60%), var(--ivory); }
.hero-bg::before { content: ''; position: absolute; top: 10%; right: 8%; width: 320px; height: 320px; border: 1px solid rgba(201,152,43,0.18); border-radius: 50%; animation: pulse-ring 6s ease-in-out infinite; }
.hero-bg::after { content: ''; position: absolute; top: 18%; right: 14%; width: 200px; height: 200px; border: 1px solid rgba(201,152,43,0.12); border-radius: 50%; animation: pulse-ring 6s ease-in-out infinite .5s; }
@keyframes pulse-ring { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.04);opacity:.6} }

.hero-content { position: relative; z-index: 1; max-width: 600px; }
.hero-eyebrow { font-family: var(--sans); font-size: .75rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp .7s .2s ease forwards; display: flex; align-items: center; gap: .75rem; }
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-title { font-family: var(--serif); font-size: clamp(2.8rem,6vw,4.8rem); font-weight: 300; line-height: 1.12; color: var(--text-dark); opacity: 0; animation: fadeUp .7s .35s ease forwards; }
.hero-title em { font-style: italic; color: var(--gold-dark); }
.hero-tagline { font-family: var(--serif); font-size: 1.1rem; font-weight: 300; font-style: italic; color: var(--text-muted); margin: 1.5rem 0 2.5rem; opacity: 0; animation: fadeUp .7s .5s ease forwards; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeUp .7s .65s ease forwards; }
.btn-primary-gold { font-family: var(--sans); font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; padding: .85rem 2rem; border-radius: 2px; background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--text-dark); border: none; box-shadow: 0 6px 24px rgba(201,152,43,0.35); transition: filter .2s, box-shadow .2s, transform .2s; cursor: pointer; }
.btn-primary-gold:hover { filter: brightness(1.06); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(201,152,43,0.45); }
.btn-outline-gold { font-family: var(--sans); font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; padding: .85rem 2rem; border-radius: 2px; background: transparent; color: var(--gold-dark); border: 1.5px solid var(--gold); transition: background .25s, color .25s; }
.btn-outline-gold:hover { background: var(--gold); color: var(--ivory); }
.hero-badges { display: flex; gap: 2rem; margin-top: 4rem; flex-wrap: wrap; opacity: 0; animation: fadeUp .7s .8s ease forwards; }
.hero-badge { display: flex; align-items: center; gap: .6rem; }
.hero-badge .badge-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(201,152,43,0.12); display: grid; place-items: center; color: var(--gold); }
.hero-badge .badge-text { font-size: .78rem; color: var(--text-muted); line-height: 1.3; }
.hero-badge .badge-text strong { display: block; font-weight: 600; color: var(--text-mid); }

/* ───────────────────────────────────────────────── */
/*  Hero Photo Panel                                 */
/* ───────────────────────────────────────────────── */
.hero-visual { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: min(400px, 38%); opacity: 0; animation: fadeRight .9s .4s ease forwards; z-index: 1; }
.hero-photo-wrap { width: 100%; aspect-ratio: 3/4; border-radius: 6px; position: relative; filter: drop-shadow(0 24px 60px rgba(155,115,32,0.25)); }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; border-radius: 6px; border: 4px solid rgba(232,201,106,0.35); }
.hero-photo-placeholder { display: none; position: absolute; inset: 0; background: linear-gradient(160deg,rgba(232,201,106,0.18),rgba(201,152,43,0.1)); flex-direction: column; align-items: center; justify-content: center; gap: 1rem; color: var(--text-muted); font-size: .9rem; border: 1px dashed rgba(201,152,43,0.4); border-radius: 6px; }
.hero-photo-placeholder i { font-size: 5rem; color: rgba(201,152,43,0.3); }
.hero-photo-badge { position: absolute; bottom: 2rem; left: -2rem; background: var(--ivory); border: 1px solid rgba(201,152,43,0.3); box-shadow: 0 8px 32px rgba(155,115,32,0.18); border-radius: 6px; padding: 1rem 1.25rem; display: flex; align-items: center; gap: .75rem; font-family: var(--serif); font-size: .95rem; font-style: italic; color: var(--text-mid); line-height: 1.4; z-index: 2; }
.hero-photo-badge-icon { color: var(--gold); font-size: 1.3rem; flex-shrink: 0; }

/* ───────────────────────────────────────────────── */
/*  Scroll Indicator                                 */
/* ───────────────────────────────────────────────── */
.scroll-indicator { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; color: var(--text-muted); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; animation: fadeUp .7s 1.2s ease forwards; opacity: 0; }
.scroll-indicator .mouse { width: 22px; height: 36px; border: 1.5px solid rgba(201,152,43,0.4); border-radius: 12px; position: relative; display: flex; justify-content: center; }
.scroll-indicator .mouse::after { content: ''; position: absolute; top: 6px; width: 2px; height: 8px; background: var(--gold); border-radius: 2px; animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0%,100%{transform:translateY(0);opacity:1} 80%{transform:translateY(12px);opacity:0} }

/* ───────────────────────────────────────────────── */
/*  Info Band                                        */
/* ───────────────────────────────────────────────── */
.info-band { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); padding: 3.5rem 5%; display: flex; align-items: center; justify-content: center; }
.info-band-inner { display: flex; gap: 4rem; flex-wrap: wrap; align-items: center; justify-content: center; }
.info-band-item { display: flex; flex-direction: column; align-items: center; gap: .4rem; color: var(--ivory); }
.info-band-icon { font-size: 1.5rem; opacity: .85; }
.info-band-label { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; opacity: .75; }
.info-band-value { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; text-align: center; }
.info-band-sep { width: 1px; height: 60px; background: rgba(255,255,255,.25); }

/* ───────────────────────────────────────────────── */
/*  Featured Category Cards                          */
/* ───────────────────────────────────────────────── */
.featured-services { background: var(--cream); padding: 5rem 5%; }
.featured-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; align-items: start; }

.feat-card { background: var(--ivory); border-radius: 6px; padding: 2.5rem 2rem; border: 1px solid rgba(201,152,43,0.15); box-shadow: 0 4px 24px rgba(155,115,32,0.07); display: flex; flex-direction: column; gap: 1rem; transition: transform .3s, box-shadow .3s; }
.feat-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(155,115,32,0.15); }

/* FIX: margin-top instead of transform so reveal animation can't reset the lift */
.feat-card--center { background: linear-gradient(160deg, var(--gold-dark), var(--gold)); border-color: transparent; margin-top: -12px; box-shadow: 0 20px 60px rgba(155,115,32,0.28); }
.feat-card--center:hover { transform: translateY(-8px); box-shadow: 0 28px 70px rgba(155,115,32,0.38); }

.feat-card-icon { width: 58px; height: 58px; border-radius: 50%; background: rgba(201,152,43,0.12); display: grid; place-items: center; color: var(--gold-dark); font-size: 1.4rem; flex-shrink: 0; }
.feat-card--center .feat-card-icon { background: rgba(255,255,255,0.22); color: var(--ivory); }
.feat-card-title { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; color: var(--text-dark); line-height: 1.2; }
.feat-card--center .feat-card-title { color: var(--ivory); }
.feat-card-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.75; flex: 1; }
.feat-card--center .feat-card-desc { color: rgba(250,248,243,0.88); }
.feat-card-link { font-family: var(--sans); font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dark); text-decoration: none; display: flex; align-items: center; gap: .5rem; transition: gap .2s; margin-top: .25rem; }
.feat-card--center .feat-card-link { color: rgba(250,248,243,0.95); }
.feat-card-link:hover { gap: .9rem; }

/* ───────────────────────────────────────────────── */
/*  Section Commons                                  */
/* ───────────────────────────────────────────────── */
section { padding: 6rem 5%; }
.section-label { font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.section-title { font-family: var(--serif); font-size: clamp(2rem,4vw,3.2rem); font-weight: 300; line-height: 1.2; color: var(--text-dark); margin-bottom: 1rem; }
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-sub { font-size: .95rem; color: var(--text-muted); max-width: 560px; line-height: 1.8; }
.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ───────────────────────────────────────────────── */
/*  Why Section                                      */
/* ───────────────────────────────────────────────── */
.why-section { background: var(--cream); position: relative; overflow: hidden; }
.why-section::before { content: 'SHARVAAYA'; position: absolute; right: -5%; top: 50%; transform: translateY(-50%); font-family: var(--serif); font-size: 12rem; font-weight: 700; color: rgba(201,152,43,0.04); letter-spacing: .1em; white-space: nowrap; pointer-events: none; user-select: none; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.why-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.why-card { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.75rem; background: var(--ivory); border-radius: 2px; border-left: 3px solid var(--gold); box-shadow: 0 2px 16px rgba(155,115,32,0.06); transition: transform .25s, box-shadow .25s; }
.why-card:hover { transform: translateX(4px); box-shadow: 0 6px 28px rgba(155,115,32,0.12); }
.why-card-icon { width: 48px; height: 48px; flex-shrink: 0; background: linear-gradient(135deg,rgba(232,201,106,0.2),rgba(201,152,43,0.15)); border-radius: 50%; display: grid; place-items: center; color: var(--gold-dark); font-size: 1.1rem; }
.why-card-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--text-dark); margin-bottom: .3rem; }
.why-card-text { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }
.why-visual { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; }
.why-quote-box { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--ivory); padding: 2.5rem; border-radius: 2px; text-align: center; position: relative; width: 100%; }
.why-quote-mark { font-family: var(--serif); font-size: 5rem; line-height: .7; opacity: .3; position: absolute; top: 1rem; left: 1.5rem; }
.why-quote-text { font-family: var(--serif); font-size: 1.3rem; font-weight: 300; font-style: italic; line-height: 1.6; position: relative; z-index: 1; }
.why-quote-sig { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; opacity: .75; margin-top: 1rem; }
.why-stat-row { display: flex; gap: 1.5rem; width: 100%; }
.why-stat { flex: 1; background: var(--ivory); padding: 1.25rem; border-radius: 2px; text-align: center; box-shadow: 0 2px 12px rgba(155,115,32,0.07); }
.why-stat-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 600; color: var(--gold-dark); line-height: 1; }
.why-stat-label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-top: .3rem; }

/* ───────────────────────────────────────────────── */
/*  Services                                         */
/* ───────────────────────────────────────────────── */
.services-section { background: var(--ivory); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.5rem; }
.service-card { padding: 2rem; border-radius: 2px; border: 1px solid rgba(201,152,43,0.18); background: var(--ivory); transition: border-color .25s, box-shadow .25s, transform .25s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg,var(--gold-light),var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.service-card:hover { border-color: rgba(201,152,43,0.4); box-shadow: 0 8px 32px rgba(155,115,32,0.12); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; margin-bottom: 1.25rem; background: rgba(201,152,43,0.1); border-radius: 50%; display: grid; place-items: center; color: var(--gold-dark); font-size: 1.2rem; }
.service-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--text-dark); margin-bottom: .5rem; line-height: 1.3; }
.service-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.7; }

/* ───────────────────────────────────────────────── */
/*  Team                                             */
/* ───────────────────────────────────────────────── */
.team-section { background: var(--cream); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 2rem; }
.team-card { background: var(--ivory); border-radius: 2px; overflow: hidden; box-shadow: 0 4px 20px rgba(155,115,32,0.08); transition: transform .25s, box-shadow .25s; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(155,115,32,0.15); }
.team-img-wrap { width: 100%; aspect-ratio: 3/4; background: linear-gradient(180deg,rgba(232,201,106,0.15),rgba(201,152,43,0.08)); display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; color: var(--text-muted); }
.team-img-wrap .placeholder-icon { font-size: 5rem; color: rgba(201,152,43,0.3); }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-info { padding: 1.5rem; border-top: 1px solid rgba(201,152,43,0.15); }
.team-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--text-dark); margin-bottom: .25rem; }
.team-role { font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.team-bio { font-size: .85rem; color: var(--text-muted); margin-top: .6rem; line-height: 1.6; }

/* ───────────────────────────────────────────────── */
/*  Contact                                          */
/* ───────────────────────────────────────────────── */
.contact-section { background: var(--ivory); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info-block { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(201,152,43,0.1); border-radius: 50%; display: grid; place-items: center; color: var(--gold-dark); }
.contact-item-label { font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }
.contact-item-value { font-size: .9rem; color: var(--text-mid); line-height: 1.7; }
.contact-item-value a { color: var(--text-mid); text-decoration: none; transition: color .2s; }
.contact-item-value a:hover { color: var(--gold-dark); }
.social-row { display: flex; gap: .75rem; margin-top: .5rem; }
.social-btn { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(201,152,43,0.4); background: none; display: grid; place-items: center; color: var(--gold-dark); text-decoration: none; font-size: 1rem; transition: background .2s, color .2s, border-color .2s; }
.social-btn:hover { background: var(--gold); color: var(--ivory); border-color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-label { font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); }
.form-control { font-family: var(--sans); font-size: .9rem; padding: .85rem 1rem; border-radius: 2px; border: 1px solid rgba(201,152,43,0.25); background: var(--ivory); color: var(--text-dark); transition: border-color .2s, box-shadow .2s; outline: none; }
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,152,43,0.12); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ───────────────────────────────────────────────── */
/*  Map                                              */
/* ───────────────────────────────────────────────── */
.map-strip { width: 100%; height: 340px; background: var(--cream-deep); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.map-strip iframe { width: 100%; height: 100%; border: 0; filter: sepia(.12) saturate(.85); }

/* ───────────────────────────────────────────────── */
/*  Footer                                           */
/* ───────────────────────────────────────────────── */
.footer { background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(201,152,43,0.14), transparent), #0e0c09; color: rgba(250,248,243,0.75); padding: 4rem 5% 2rem; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 5%; right: 5%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .4; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 44px; width: 44px; object-fit: contain; margin-bottom: 1rem; }
.footer-brand-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--gold-light); letter-spacing: .06em; margin-bottom: .3rem; }
.footer-brand-sub { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(250,248,243,0.4); margin-bottom: 1rem; }
.footer-brand-tagline { font-family: var(--serif); font-size: .9rem; font-style: italic; color: rgba(250,248,243,0.5); line-height: 1.6; }
.footer-col h4 { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-links a { font-size: .85rem; color: rgba(250,248,243,0.6); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .75rem; font-size: .85rem; color: rgba(250,248,243,0.6); }
.footer-contact-item i { color: var(--gold); margin-top: .1rem; flex-shrink: 0; }
.footer-contact-item a { color: rgba(250,248,243,0.6); text-decoration: none; transition: color .2s; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; font-size: .78rem; color: rgba(250,248,243,0.35); }
.footer-bottom a { color: rgba(250,248,243,0.45); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ───────────────────────────────────────────────── */
/*  Back to Top & Toast                              */
/* ───────────────────────────────────────────────── */
#backToTop { position: fixed; right: 24px; bottom: 24px; width: 44px; height: 44px; border-radius: 2px; background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--text-dark); border: none; cursor: pointer; display: grid; place-items: center; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .25s, transform .25s, box-shadow .25s; box-shadow: 0 4px 16px rgba(201,152,43,0.3); z-index: 900; }
#backToTop.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
#backToTop:hover { box-shadow: 0 8px 24px rgba(201,152,43,0.45); }
#toast { position: fixed; bottom: 80px; right: 24px; background: var(--text-dark); color: var(--ivory); padding: .5rem 1rem; border-radius: 2px; font-size: .82rem; opacity: 0; transform: translateY(8px); transition: opacity .2s, transform .2s; z-index: 1100; border-left: 3px solid var(--gold); }
#toast.show { opacity: 1; transform: translateY(0); }

/* ───────────────────────────────────────────────── */
/*  Animations                                       */
/* ───────────────────────────────────────────────── */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeRight { from{opacity:0;transform:translate(20px,-50%)} to{opacity:1;transform:translate(0,-50%)} }

/* Reveal: visible by default (no JS = no blank page).
   JS adds .js-ready to <body>, then animates in on scroll. */
.reveal { opacity: 1; transform: none; transition: opacity .65s ease, transform .65s ease; }
.js-ready .reveal { opacity: 0; transform: translateY(24px); }
.js-ready .reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ───────────────────────────────────────────────── */
/*  Misc Utility                                     */
/* ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1{margin-top:.5rem} .mt-2{margin-top:1rem} .mt-3{margin-top:1.5rem} .mt-4{margin-top:2rem}

/* ───────────────────────────────────────────────── */
/*  Responsive                                       */
/* ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .featured-services-grid { grid-template-columns: 1fr 1fr; }
  .feat-card--center { grid-column: 1 / -1; margin-top: 0; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .navbar { padding: 0 4%; }
  .nav-links, .btn-appt { display: none; }
  .hamburger { display: flex; }
  section { padding: 4rem 4%; }
  .featured-services { padding: 3rem 4%; }
  .featured-services-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .feat-card--center { grid-column: auto; margin-top: 0; }
  .form-row { grid-template-columns: 1fr; }
  .info-band-sep { display: none; }
  .info-band-inner { gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 1.25rem; }
  .why-stat-row { flex-direction: column; }
  .hero { padding-bottom: 4rem; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary-gold, .hero-ctas .btn-outline-gold { text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .js-ready .reveal, .js-ready .reveal.visible { opacity: 1 !important; transform: none !important; }
}