/* ============================================
   AG SPA · SHARED STYLESHEET
   ============================================ */

:root {
  --cream: #F7EFE2;
  --cream-dark: #EDE0CC;
  --gold: #C9A96E;
  --gold-dark: #9A7340;
  --gold-light: rgba(201,169,110,0.15);
  --brown: #2C1810;
  --brown-mid: #5C3A24;
  --beige: #E8D5B7;
  --white: #FDFAF5;
  --text: #2C1810;
  --text-light: #7A6355;
  --shadow: 0 4px 40px rgba(44,24,16,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; background: var(--brown); overflow-x: clip; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text); overflow-x: clip; -webkit-font-smoothing: antialiased; max-width: 100vw; }
img, svg, video, iframe { max-width: 100%; }
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }
img { max-width: 100%; height: auto; display: block; }
a { transition: color 0.3s; }

/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 24px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
nav.scrolled {
  background: rgba(253,250,245,0.97); backdrop-filter: blur(16px);
  padding: 14px 60px;
  box-shadow: 0 1px 32px rgba(44,24,16,0.08);
}
.nav-logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img { height: 38px; width: 38px; object-fit: contain; transition: opacity 0.3s; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.95); transition: color 0.4s;
}
nav.scrolled .nav-logo-text { color: var(--brown); }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.3s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
nav.scrolled .nav-links a { color: var(--brown-mid); }
nav.scrolled .nav-links a:hover { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  font-family: 'DM Sans', sans-serif; font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.3); padding: 7px 14px;
  border-radius: 2px; background: none; color: rgba(255,255,255,0.7);
  transition: all 0.3s;
}
nav.scrolled .lang-toggle { border-color: var(--beige); color: var(--brown-mid); }
.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }
.btn-nav {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--gold); color: var(--white); padding: 11px 24px;
  border-radius: 2px; text-decoration: none; transition: all 0.3s; white-space: nowrap;
}
.btn-nav:hover { background: var(--gold-dark); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-hamburger span { width: 22px; height: 1px; background: rgba(255,255,255,0.8); display: block; transition: all 0.3s; }
nav.scrolled .nav-hamburger span { background: var(--brown); }

/* ===== HERO ===== */
.hero {
  height: 100vh; min-height: 680px; position: relative;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,8,4,0.5) 0%, rgba(20,8,4,0.25) 50%, rgba(20,8,4,0.65) 100%);
}
.hero-lines { position: absolute; inset: 0; pointer-events: none; }
.hero-lines span {
  position: absolute; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(201,169,110,0.2) 30%, rgba(201,169,110,0.2) 70%, transparent 100%);
}
.hero-lines span:nth-child(1) { left: 20%; }
.hero-lines span:nth-child(2) { right: 20%; }
.hero-corner { position: absolute; width: 50px; height: 50px; opacity: 0.25; }
.hero-corner.tl { top: 90px; left: 60px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.hero-corner.tr { top: 90px; right: 60px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.hero-corner.bl { bottom: 60px; left: 60px; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.hero-corner.br { bottom: 60px; right: 60px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.hero-content { position: relative; text-align: center; padding: 0 24px; z-index: 2; }
.hero-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: 10px; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
  animation: fadeUp 1.2s 0.1s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 36px; height: 1px; background: var(--gold); opacity: 0.6; }
.hero-h1 {
  font-size: clamp(52px, 9vw, 108px); font-weight: 300; color: var(--white);
  line-height: 1.02; letter-spacing: -0.01em; margin-bottom: 14px;
  animation: fadeUp 1.2s 0s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.25em;
  text-transform: uppercase; margin-bottom: 48px; font-weight: 300;
  animation: fadeUp 1.2s 0.2s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1.2s 0.3s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3); font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase;
  animation: scrollBob 2.8s 1.5s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }
@keyframes scrollBob {
  0%,100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.7; transform: translateX(-50%) translateY(8px); }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  margin-top: 72px; padding: 80px 60px 72px;
  background: linear-gradient(140deg, var(--brown) 0%, #3d1a0c 50%, #1e0c08 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.25;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,169,110,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(201,169,110,0.08) 0%, transparent 60%);
}
.page-hero-eyebrow { font-size: 10px; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; position: relative; }
.page-hero h1 { font-size: clamp(42px, 7vw, 78px); font-weight: 300; color: var(--white); line-height: 1.05; position: relative; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { position: relative; color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 300; margin-top: 12px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--gold); color: var(--white); padding: 15px 42px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; transition: all 0.3s; display: inline-block;
  font-family: 'DM Sans', sans-serif; border: 1px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(154,115,64,0.3); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); padding: 15px 42px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; transition: all 0.3s; display: inline-block;
  font-family: 'DM Sans', sans-serif;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark {
  border: 1px solid var(--beige); color: var(--brown-mid); padding: 13px 36px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; transition: all 0.3s; display: inline-block;
  font-family: 'DM Sans', sans-serif;
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); text-decoration: none;
  border-bottom: 1px solid rgba(201,169,110,0.3); padding-bottom: 3px; transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
}
.btn-ghost:hover { border-color: var(--gold); gap: 16px; }

/* ===== TYPOGRAPHY HELPERS ===== */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px; font-size: 10px;
  letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.section-title { font-size: clamp(36px, 4.5vw, 58px); font-weight: 300; line-height: 1.08; color: var(--text); }
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold); }
.section-rule { width: 52px; height: 1px; background: var(--gold); margin: 22px 0; }
.section-text { font-size: 15px; color: var(--text-light); line-height: 1.9; font-weight: 300; }

/* ===== LAYOUT ===== */
.wrap { max-width: 1280px; margin: 0 auto; padding: 100px 60px; }
.wrap-sm { max-width: 900px; margin: 0 auto; padding: 100px 60px; }
.bg-cream { background: var(--cream); }
.bg-brown { background: var(--brown); }
.bg-white { background: var(--white); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--brown); padding: 28px 60px; }
.stats-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(201,169,110,0.1); }
.stat-item { background: var(--brown); padding: 28px 32px; text-align: center; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--gold); line-height: 1; display: block; }
.stat-lbl { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 6px; display: block; }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--beige); }
.service-card { background: var(--white); padding: 48px 40px; position: relative; overflow: hidden; transition: background 0.4s; cursor: pointer; text-decoration: none; display: block; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(0.22,1,0.36,1); }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { background: var(--cream); }
.svc-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--beige); line-height: 1; margin-bottom: 16px; display: block; transition: color 0.4s; }
.service-card:hover .svc-num { color: rgba(201,169,110,0.3); }
.svc-icon { font-size: 24px; margin-bottom: 18px; display: block; }
.svc-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; margin-bottom: 12px; transition: color 0.3s; color: var(--text); }
.service-card:hover .svc-name { color: var(--gold-dark); }
.svc-desc { font-size: 14px; color: var(--text-light); line-height: 1.75; font-weight: 300; margin-bottom: 24px; }
.svc-link { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); transition: gap 0.3s; font-family: 'DM Sans', sans-serif; }
.svc-link:hover { gap: 14px; }

/* ===== PHOTO GRID ===== */
.photo-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--beige); height: 440px; }
.photo-item { position: relative; overflow: hidden; }
.photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.photo-item:hover img { transform: scale(1.04); }
.photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,8,4,0.5) 0%, transparent 55%); }
.photo-caption { position: absolute; bottom: 24px; left: 28px; font-family: 'Cormorant Garamond', serif; font-size: 21px; font-style: italic; color: rgba(255,255,255,0.9); text-shadow: 0 2px 12px rgba(0,0,0,0.35); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.t-card { padding: 40px; border: 1px solid rgba(201,169,110,0.12); border-radius: 3px; position: relative; transition: border-color 0.3s, transform 0.3s; }
.t-card:hover { border-color: rgba(201,169,110,0.28); transform: translateY(-4px); }
.t-quote { font-family: 'Cormorant Garamond', serif; font-size: 68px; color: var(--gold); opacity: 0.18; position: absolute; top: 20px; left: 32px; line-height: 1; }
.t-stars { color: var(--gold); font-size: 11px; letter-spacing: 3px; margin-bottom: 10px; margin-top: 28px; }
.t-text { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.58); font-weight: 300; font-style: italic; margin-bottom: 24px; }
.t-author { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 56px; }
.why-item { display: flex; flex-direction: column; gap: 12px; }
.why-icon { width: 48px; height: 48px; border: 1px solid rgba(201,169,110,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; transition: all 0.3s; }
.why-item:hover .why-icon { background: var(--gold); border-color: var(--gold); }
.why-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; }
.why-text { font-size: 14px; color: var(--text-light); line-height: 1.8; font-weight: 300; }

/* ===== VIDEO SECTION ===== */
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(201,169,110,0.1); }
.video-wrap { position: relative; overflow: hidden; aspect-ratio: 9/16; background: #1a0a06; cursor: pointer; }
.video-wrap video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.video-wrap:hover video { transform: scale(1.03); }
.video-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,8,4,0.5) 0%, transparent 50%); pointer-events: none; }
.video-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 60px; height: 60px; border: 2px solid rgba(255,255,255,0.65); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: rgba(255,255,255,0.8); transition: all 0.3s; pointer-events: none; backdrop-filter: blur(4px); }
.video-wrap:hover .video-play { background: var(--gold); border-color: var(--gold); color: white; transform: translate(-50%,-50%) scale(1.1); }
.video-label { position: absolute; bottom: 20px; left: 22px; font-family: 'Cormorant Garamond', serif; font-size: 19px; font-style: italic; color: rgba(255,255,255,0.85); pointer-events: none; }

/* ===== CONTACT FORM ===== */
.form-wrap { background: var(--white); padding: 52px; border-radius: 3px; box-shadow: var(--shadow); }
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; margin-bottom: 6px; }
.form-title em { font-style: italic; color: var(--gold-dark); }
.form-sub { font-size: 14px; color: var(--text-light); font-weight: 300; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); font-weight: 500; font-family: 'DM Sans', sans-serif; }
.form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border: 1px solid var(--beige); border-radius: 2px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text); background: var(--white); transition: border-color 0.3s; outline: none; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit { width: 100%; background: var(--gold); color: var(--white); border: none; padding: 16px; font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: all 0.3s; margin-top: 8px; }
.btn-submit:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* ===== LOCATIONS ===== */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--beige); }
.loc-card { background: var(--white); padding: 56px 48px; position: relative; overflow: hidden; transition: background 0.4s; }
.loc-card:hover { background: var(--cream); }
.loc-num { font-family: 'Cormorant Garamond', serif; font-size: 88px; font-weight: 300; color: rgba(232,213,183,0.55); position: absolute; top: 14px; right: 30px; line-height: 1; transition: color 0.4s; }
.loc-card:hover .loc-num { color: rgba(201,169,110,0.18); }
.loc-city { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; margin-bottom: 6px; }
.loc-address { font-size: 14px; color: var(--text-light); line-height: 1.7; font-weight: 300; margin-bottom: 16px; }
.loc-detail { font-size: 13px; color: var(--text-light); margin-bottom: 8px; display: flex; gap: 8px; font-weight: 300; }
.loc-detail strong { color: var(--brown); font-weight: 500; min-width: 80px; }
.loc-detail a { color: var(--text-light); text-decoration: none; }
.loc-detail a:hover { color: var(--gold); }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(140deg, var(--brown) 0%, #4a2015 100%); text-align: center; padding: 96px 60px; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.08) 0%, transparent 50%), radial-gradient(ellipse at 80% 50%, rgba(201,169,110,0.06) 0%, transparent 50%); }
.cta-banner h2 { position: relative; color: var(--white); font-size: clamp(32px, 5vw, 60px); font-weight: 300; margin-bottom: 12px; }
.cta-banner h2 em { color: var(--gold); font-style: italic; }
.cta-banner p { position: relative; color: rgba(255,255,255,0.4); font-size: 13px; letter-spacing: 0.12em; margin-bottom: 40px; font-weight: 300; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== FOOTER ===== */
footer { background: #1a0b06; color: rgba(255,255,255,0.4); padding: 72px 60px 36px; border-top: 1px solid rgba(201,169,110,0.07); }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: 60px; margin-bottom: 52px; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 300; color: var(--white); letter-spacing: 0.15em; display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 36px; width: 36px; object-fit: contain; }
.footer-tagline { font-size: 13px; line-height: 1.85; font-weight: 300; margin-bottom: 28px; max-width: 280px; }
.social-row { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(201,169,110,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.35); text-decoration: none; font-size: 11px; font-weight: 500; transition: all 0.3s; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; font-family: 'DM Sans', sans-serif; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col ul li { font-size: 13px; margin-bottom: 11px; font-weight: 300; }
.footer-col ul li a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.04); display: flex; justify-content: space-between; font-size: 11px; flex-wrap: wrap; gap: 10px; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--beige); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--text); font-weight: 400; transition: color 0.3s; }
.faq-q:hover { color: var(--gold-dark); }
.faq-icon { font-size: 20px; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1), padding 0.3s; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding-bottom: 24px; font-size: 15px; color: var(--text-light); line-height: 1.85; font-weight: 300; max-width: 720px; }

/* ===== MOBILE NAV ===== */
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--brown); z-index: 190; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.3s; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close { position: absolute; top: 28px; right: 28px; background: none; border: none; color: rgba(255,255,255,0.6); font-size: 28px; cursor: pointer; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .btn-nav { display: none; }
  .wrap, .wrap-sm { padding: 70px 24px; }
  .page-hero { padding: 64px 24px 56px; }
  .hero-corner { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .locations-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr; height: auto; }
  .photo-item { height: 260px; }
  .video-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 72px 24px; }
  footer { padding: 60px 24px 32px; }
  .stats-bar { padding: 0 24px; }
  .form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 48px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

/* ===== LOGO TEXT ONLY (no image) ===== */
.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.55em;
  color: rgba(255,255,255,0.95);
  transition: color 0.4s;
  text-transform: uppercase;
  position: relative;
  padding-left: 38px;
}
.nav-logo-text::before {
  content: 'AG';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-indent: 0;
}
nav.scrolled .nav-logo-text { color: var(--brown); }

/* Footer brand text fix */
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.55em;
  color: var(--white);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding-left: 38px;
  position: relative;
  margin-bottom: 16px;
}
.footer-brand::before {
  content: 'AG';
  position: absolute;
  left: 0;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(201,169,110,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ============================================================
   INDEX-ALIGNMENT OVERRIDES (Phase 2)
   These rules level up every page to match the index's premium aesthetic.
   The new topbar is position:absolute, so the page-hero must butt up
   against the top of the viewport (not have a 72px margin).
   ============================================================ */

:root {
  --espresso: #1A0D07;
  --gold-soft: #E0C79A;
  --gold-dark: #9C7F4F;
  --parchment: #EDE2CF;
  --ease-out: cubic-bezier(.2, .7, .2, 1);
}

/* Body fixes · page background should be cream, not pure white,
   so it visually matches the index palette. */
body {
  background: var(--cream);
  color: var(--brown);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: -.012em;
  line-height: 1.08;
}
::selection { background: var(--gold); color: var(--brown); }

/* Cinematic page hero · full-bleed dark bg with content in a centered 1200px column.
   The padding trick (max(28px, calc(50vw - 600px))) creates a centered content
   gutter while keeping the bg full-width. All children naturally left-align. */
.page-hero {
  margin-top: 0;
  min-height: min(78vh, 720px);
  padding-top: 160px;
  padding-bottom: 90px;
  padding-left: max(28px, calc(50vw - 600px));
  padding-right: max(28px, calc(50vw - 600px));
  background: var(--espresso);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.page-hero > * {
  position: relative;
  z-index: 2;
  margin-left: 0;
  margin-right: 0;
}
.page-hero-photo {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  padding: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
  transform: scale(1.04);
  animation: agKenburns 22s ease-in-out infinite alternate;
  z-index: 0;
  max-width: none;
}
@keyframes agKenburns {
  0%   { transform: scale(1.02) translate(0,0); }
  100% { transform: scale(1.10) translate(-14px,-10px); }
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to top, rgba(26,13,7,.92) 0%, rgba(26,13,7,.5) 40%, rgba(26,13,7,.15) 70%, rgba(26,13,7,.6) 100%),
    linear-gradient(to right, rgba(26,13,7,.55) 0%, rgba(26,13,7,.15) 50%, rgba(26,13,7,.1) 100%);
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  font-weight: 600; color: var(--gold);
  margin: 0 0 22px 0 !important;
  text-align: left;
}
.page-hero-eyebrow::before {
  content: ""; width: 36px; height: 1px; background: var(--gold);
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 500;
  color: #fff;
  margin: 0 0 22px 0 !important;
  line-height: 1.02;
  max-width: 22ch;
  text-align: left;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}
.page-hero p {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,.85);
  max-width: 60ch;
  line-height: 1.6;
  font-weight: 400;
  margin: 0 0 14px 0 !important;
  padding: 0;
  text-align: left;
}
.page-hero p:last-child { margin-bottom: 0 !important; }
@media (max-width: 720px) {
  .page-hero {
    padding-top: 140px;
    padding-bottom: 70px;
    min-height: min(72vh, 600px);
  }
  .page-hero h1 { max-width: none; }
}

/* Premium gold-gradient button (matches index .btn-primary) */
.btn-primary, .btn-submit {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brown);
  padding: 18px 32px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255,255,255,.35) 0%, rgba(255,255,255,0) 42%, rgba(0,0,0,.08) 100%),
    linear-gradient(135deg, #E8CC96 0%, #C9A96E 48%, #A9884F 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.55) inset,
    0 -1px 0 rgba(120,86,42,.35) inset,
    0 18px 40px -14px rgba(201,169,110,.65),
    0 2px 6px rgba(44,24,16,.18);
  transition: transform .35s var(--ease-out), filter .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.btn-primary::after, .btn-submit::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.55) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 1s var(--ease-out);
}
.btn-primary:hover, .btn-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 -1px 0 rgba(120,86,42,.35) inset,
    0 28px 60px -18px rgba(201,169,110,.8),
    0 4px 10px rgba(44,24,16,.22);
}
.btn-primary:hover::after, .btn-submit:hover::after {
  transform: translateX(130%);
}

.btn-outline, .btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  padding: 17px 30px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
  text-decoration: none;
  transition: background .25s var(--ease-out), color .25s var(--ease-out), transform .25s var(--ease-out);
}
.btn-outline:hover, .btn-ghost:hover {
  background: #fff;
  color: var(--brown);
  border-color: #fff;
  transform: translateY(-2px);
}
/* When .btn-outline appears against a light bg (e.g. CTA banner with cream),
   give it a dark variant. */
.bg-white .btn-outline, .bg-cream .btn-outline {
  color: var(--brown);
  border-color: rgba(44,24,16,0.4);
  background: transparent;
}
.bg-white .btn-outline:hover, .bg-cream .btn-outline:hover {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}

/* Section eyebrows + titles · premium serif */
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-dark);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  color: var(--brown);
  letter-spacing: -.012em;
  line-height: 1.06;
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}
.section-rule {
  width: 36px; height: 1px;
  background: var(--gold);
  margin: 22px 0;
}
.section-text {
  font-size: 17px;
  color: var(--brown-mid, #4A2F22);
  line-height: 1.65;
  max-width: 56ch;
}

/* Section background variants */
.bg-white { background: var(--cream); padding: 110px 0; }
.bg-cream { background: var(--parchment); padding: 110px 0; }

/* Premium service cards (replaces old .service-card / .why-item) */
.service-card, .why-item {
  display: block;
  position: relative;
  background: var(--cream);
  border: 1px solid rgba(44,24,16,.12);
  padding: 42px 32px 36px;
  text-decoration: none;
  color: var(--brown);
  transition: background .5s var(--ease-out), transform .35s var(--ease-out), border-color .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.service-card:hover, .why-item:hover {
  background: var(--parchment);
  transform: translateY(-4px);
  border-color: var(--gold-dark);
  box-shadow: 0 28px 50px -28px rgba(44,24,16,.25);
}
.svc-num, .why-icon {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 20px;
  display: flex; align-items: baseline; gap: 10px;
}
.svc-num::after, .why-icon::after {
  content: ""; flex: 1; height: 1px; background: rgba(44,24,16,.12);
  margin-top: .5em;
}
.svc-icon { display: none; }
.svc-name, .why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 12px;
}
.svc-name em, .why-title em {
  font-style: italic;
  color: var(--gold-dark);
}
.svc-desc, .why-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--brown-mid, #4A2F22);
  line-height: 1.65;
}
.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-dark);
  transition: color .25s, transform .25s;
}
.service-card:hover .svc-link {
  color: var(--brown);
  transform: translateX(4px);
}

/* Service / why grids · clean column layout */
.services-grid, .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(44,24,16,.12);
  margin-top: 56px;
}
.services-grid > *, .why-grid > * {
  background: var(--cream);
}
@media (max-width: 980px) {
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .services-grid, .why-grid { grid-template-columns: 1fr; }
}

/* CTA banner · matches index espresso section */
.cta-banner {
  background: var(--espresso);
  padding: 130px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201,169,110,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.05;
  letter-spacing: -.012em;
}
.cta-banner h2 em {
  font-style: italic;
  color: var(--gold-soft);
}
.cta-banner p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: .12em;
  color: rgba(247,239,226,.6);
  margin-bottom: 38px;
  text-transform: uppercase;
  font-weight: 600;
}
.cta-btns {
  display: flex; gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FAQ accordion · matches index */
.faq-item {
  border-bottom: 1px solid rgba(44,24,16,.12);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--brown);
  text-align: left;
  transition: color .3s;
}
.faq-q:hover { color: var(--gold-dark); }
.faq-icon {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  color: var(--gold-dark);
  font-weight: 300;
  transition: transform .35s var(--ease-out);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a-inner {
  font-size: 16px;
  color: var(--brown-mid, #4A2F22);
  line-height: 1.7;
  max-width: 72ch;
}

/* Locations / loc-card · index-aligned */
.locations-grid {
  background: rgba(44,24,16,.12);
}
.loc-card {
  background: var(--cream);
  padding: 56px 44px;
}
.loc-card:hover {
  background: var(--parchment);
}
.loc-num {
  color: rgba(201,169,110,.35);
}
.loc-city {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--brown);
}

/* Footer is already set by the inline styles in each page's <head>;
   neutralize old footer styles that might clash. */
.footer-inner, .footer-grid, .footer-brand, .footer-tagline,
.footer-col, .footer-bottom {
  /* The new footer in the page <head> takes over; these legacy classes
     no longer apply because the markup uses .foot-grid / .foot-nav now. */
}

/* Reveal animations (matches index .reveal) */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* Wrap container · match index */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Split-grid (image + text) · premium */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* Form styles · premium look (used on contact + book pages) */
.form-card {
  background: var(--cream);
  border: 1px solid rgba(44,24,16,.12);
  border-radius: 4px;
  padding: 48px;
  box-shadow: 0 28px 60px -36px rgba(44,24,16,.2);
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--brown);
}
.form-group label {
  font-family: 'DM Sans', sans-serif;
  color: var(--brown);
}
.form-group input,
.form-group select,
.form-group textarea {
  border-color: rgba(44,24,16,.18);
  background: #fff;
  border-radius: 2px;
  font-size: 15px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(201,169,110,.2);
}

/* Hide legacy desktop nav and mobile-nav remnants if any page still has them */
nav#navbar, .mobile-nav { display: none !important; }
