/* ============================================
   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; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
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;
}
