/* GOE local-SEO landing pages — shared styles.
   Reuses the exact design tokens, fonts, nav + footer treatment from index.html
   so the pages are visually continuous with the homepage. New file: does not
   touch the homepage's inline <style>. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: Georgia, 'Times New Roman', serif;
  background: #0d2240;
  color: #f0ead6;
  line-height: 1.6;
  overflow-x: hidden;
}
:root {
  --navy: #0d2240; --navy-light: #112b52; --navy-card: #0a1628;
  --gold: #c9a227; --gold-light: #e8c84a; --gold-dim: #7a6015;
  --green: #2d5a27; --green-bright: #2ecc71;
  --lavender: #9b8ec4; --cream: #f0ead6; --cream-dim: #c4baa4;
}
a { color: var(--gold); }
img { max-width: 100%; }

/* ── Nav (matches homepage) ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,0.2); height: 64px;
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-name { font-size: 14px; color: var(--gold); letter-spacing: 1.5px; font-weight: bold; white-space: nowrap; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--cream-dim); text-decoration: none; font-size: 13px;
  letter-spacing: 0.5px; transition: color 0.2s; position: relative; padding-bottom: 3px;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: 8px 18px !important; border-radius: 24px !important; font-weight: bold !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-hamburger { display: none; background: none; border: none; color: var(--gold); font-size: 26px; cursor: pointer; }
@media (max-width: 768px) {
  .nav-links { display: none; } .nav-hamburger { display: block; }
  .nav-links.open {
    display: flex; position: fixed; top: 64px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: rgba(10,22,40,0.98); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,162,39,0.2); padding: 8px 0;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a { display: block; padding: 14px 24px; font-size: 15px; }
  .nav-links.open .nav-cta { margin: 8px 24px; text-align: center; }
}

/* ── Layout ── */
.container { max-width: 1140px; margin: 0 auto; }
.container-narrow { max-width: 820px; margin: 0 auto; }
section { padding: 100px 24px; }
@media (max-width: 640px) { section { padding: 72px 20px; } }
.section-eyebrow { font-size: 10px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 4vw, 44px); font-family: 'Playfair Display', Georgia, serif; font-weight: bold; color: var(--cream); line-height: 1.15; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--cream-dim); max-width: 640px; line-height: 1.7; margin-bottom: 52px; }
.section-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); margin-bottom: 20px; border-radius: 2px; }

/* ── Hero ── */
.page-hero {
  padding: 150px 24px 90px; text-align: center; position: relative;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,162,39,0.10), transparent 60%), #0a1628;
  border-bottom: 1px solid rgba(201,162,39,0.15);
}
.page-hero .breadcrumb { font-size: 12px; color: var(--cream-dim); opacity: 0.6; margin-bottom: 20px; letter-spacing: 0.5px; }
.page-hero .breadcrumb a { color: var(--cream-dim); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.hero-eyebrow { font-size: 11px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 18px; display: block; }
.page-hero h1 {
  font-size: clamp(32px, 6vw, 58px); font-family: 'Playfair Display', Georgia, serif; font-weight: bold;
  line-height: 1.12; margin: 0 auto 22px; max-width: 900px;
  background: linear-gradient(90deg, #c9a227 0%, #f0e68c 45%, #c9a227 70%, #f0e68c 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.page-hero .hero-sub { font-size: clamp(15px, 2.4vw, 20px); color: var(--cream-dim); max-width: 620px; margin: 0 auto 36px; line-height: 1.7; }

/* ── Buttons ── */
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-block; padding: 16px 36px; background: var(--gold); color: var(--navy);
  text-decoration: none; border-radius: 50px; font-size: 15px; font-weight: bold; letter-spacing: 0.5px;
  border: none; cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(201,162,39,0.35);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,162,39,0.45); }
.btn-outline {
  display: inline-block; padding: 16px 36px; background: transparent; color: var(--cream);
  text-decoration: none; border-radius: 50px; font-size: 15px; border: 1px solid rgba(240,234,214,0.3);
  cursor: pointer; transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
@media (max-width: 640px) { .hero-ctas { flex-direction: column; align-items: center; } .btn-primary, .btn-outline { width: 100%; max-width: 320px; text-align: center; } }

/* ── Cards / value props ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px,100%), 1fr)); gap: 24px; }
.card {
  background: var(--navy-card); border: 1px solid rgba(201,162,39,0.15); border-radius: 16px;
  padding: 32px 28px; transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(201,162,39,0.4); transform: translateY(-3px); }
.card .icon { font-size: 30px; margin-bottom: 14px; display: block; }
.card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; color: var(--cream); margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--cream-dim); line-height: 1.7; }

/* ── Process steps ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px,100%), 1fr)); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 28px 24px 24px; background: rgba(201,162,39,0.04); border-radius: 14px; border: 1px solid rgba(201,162,39,0.12); }
.step::before {
  counter-increment: step; content: counter(step); position: absolute; top: -16px; left: 24px;
  width: 34px; height: 34px; border-radius: 50%; background: var(--gold); color: var(--navy);
  font-weight: bold; display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.step h3 { font-size: 17px; color: var(--cream); margin: 8px 0 8px; }
.step p { font-size: 14px; color: var(--cream-dim); line-height: 1.65; }

/* ── Gallery ── */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px,100%), 1fr)); gap: 18px; }
.gallery figure {
  background: var(--navy-card); border: 1px dashed rgba(201,162,39,0.3); border-radius: 12px;
  overflow: hidden; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--cream-dim);
}
.gallery figure.filled { border-style: solid; display: block; aspect-ratio: auto; }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery .ph { padding: 24px; font-size: 13px; opacity: 0.65; }
.gallery .ph b { color: var(--gold); display: block; margin-bottom: 6px; font-family: 'Playfair Display', serif; }
.ig-cta { text-align: center; margin-top: 26px; font-size: 14px; color: var(--cream-dim); }

/* ── Service-area chips ── */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-size: 13px; padding: 7px 15px; border-radius: 40px; border: 1px solid rgba(201,162,39,0.3); color: var(--cream-dim); background: rgba(201,162,39,0.05); }

/* ── FAQ ── */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid rgba(201,162,39,0.15); padding: 8px 0; }
.faq summary {
  cursor: pointer; list-style: none; padding: 16px 40px 16px 4px; position: relative;
  font-size: 17px; color: var(--cream); font-family: 'Playfair Display', Georgia, serif;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 6px; top: 14px; color: var(--gold); font-size: 24px; transition: transform 0.2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 4px 18px; color: var(--cream-dim); font-size: 15px; line-height: 1.75; }

/* ── Related links ── */
.related { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px,100%),1fr)); gap: 16px; }
.related a {
  display: block; padding: 22px 24px; background: var(--navy-card); border: 1px solid rgba(201,162,39,0.15);
  border-radius: 12px; text-decoration: none; transition: border-color 0.2s, transform 0.2s;
}
.related a:hover { border-color: rgba(201,162,39,0.45); transform: translateY(-2px); }
.related a b { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 17px; display: block; margin-bottom: 5px; }
.related a span { color: var(--cream-dim); font-size: 13.5px; }

/* ── CTA band ── */
.cta-band { text-align: center; background: radial-gradient(ellipse at 50% 100%, rgba(201,162,39,0.12), transparent 65%), var(--navy-card); border-top: 1px solid rgba(201,162,39,0.15); border-bottom: 1px solid rgba(201,162,39,0.15); }
.cta-band h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(26px, 4vw, 40px); color: var(--cream); margin-bottom: 16px; }
.cta-band p { color: var(--cream-dim); max-width: 520px; margin: 0 auto 32px; line-height: 1.7; }

/* ── Prose ── */
.prose p { color: var(--cream-dim); font-size: 16px; line-height: 1.8; margin-bottom: 18px; max-width: 760px; }
.prose h2 { font-family: 'Playfair Display', Georgia, serif; color: var(--cream); font-size: clamp(24px,3.5vw,34px); margin: 8px 0 18px; }
.lead { font-size: 18px !important; color: var(--cream) !important; }

/* ── Contact strip ── */
.contact-strip { display: flex; flex-wrap: wrap; gap: 18px 34px; justify-content: center; font-size: 15px; }
.contact-strip a { color: var(--cream-dim); text-decoration: none; }
.contact-strip a:hover { color: var(--gold); }

/* ── Footer (matches homepage) ── */
footer { background: #060e1a; border-top: 2px solid var(--gold); padding: 64px 24px 36px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px,100%),1fr)); gap: 32px 40px; max-width: 1140px; margin: 0 auto 40px; }
.footer-logo { height: 64px; width: auto; display: block; margin: 0 0 12px; filter: drop-shadow(0 0 12px rgba(201,162,39,0.3)); }
.footer-brand { font-size: 20px; font-weight: bold; color: var(--gold); letter-spacing: 2px; margin-bottom: 6px; }
.footer-tagline { font-size: 13px; color: var(--cream-dim); opacity: 0.5; letter-spacing: 1px; font-style: italic; }
.footer-col-label { font-size: 11px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; font-weight: bold; }
.footer-col-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { color: var(--cream-dim); text-decoration: none; font-size: 13px; opacity: 0.65; transition: color 0.2s, opacity 0.2s; }
.footer-col-links a:hover { color: var(--gold); opacity: 1; }
.footer-col-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-col-contact a, .footer-col-contact span { color: var(--cream-dim); text-decoration: none; font-size: 13px; opacity: 0.65; transition: color 0.2s, opacity 0.2s; }
.footer-col-contact a:hover { color: var(--gold); opacity: 1; }
.footer-social { display: flex; gap: 13px; margin: 16px 0 4px; flex-wrap: wrap; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(201,162,39,0.35); color: var(--gold); background: transparent; text-decoration: none; transition: background .2s, color .2s, transform .2s; }
.footer-social a:hover { background: var(--gold); color: #0d2240; transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; fill: currentColor; display: block; }
.footer-social-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cream-dim); opacity: 0.5; margin: 18px 0 0; }
.footer-copy { font-size: 12px; color: var(--cream-dim); opacity: 0.35; letter-spacing: 0.5px; text-align: center; }
