/* ── Tokens ── */
:root {
  --navy:    #05050A;
  --dark:    #11111C;
  --dark2:   #1A1A28;
  --gold:    #D4AF37;
  --gold-lt: #F4D03F;
  --gray:    #6b6b7e;
  --gray-lt: #c4c4d0;
  --off:     #f7f6f3;
  --white:   #ffffff;
  --radius:  6px;
  --ease:    all .25s ease;

  --f-serif: 'Playfair Display', Georgia, serif;
  --f-sans:  'Inter', system-ui, sans-serif;
  --f-head:  'Oswald', 'Arial Narrow', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--f-sans); color: var(--dark); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Shared ── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.sec  { padding: 80px 0; }
.sec--dark { background: var(--dark);  color: var(--white); }
.sec--navy { background: var(--navy); color: var(--white); }
.sec--off  { background: var(--off); }

.eyebrow {
  display: block;
  font-family: var(--f-head);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow--dark { color: var(--dark); }

.sec-title {
  font-family: var(--f-serif);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 16px;
}
.sec-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.75;
}
.sec-sub--lt { color: var(--gray-lt); }

.rule {
  width: 44px; height: 3px;
  background: var(--gold);
  margin-bottom: 28px;
}
.rule--center { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--f-head);
  font-size: .95rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--ease);
}
.btn-gold  { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: var(--white); color: var(--navy); }
.btn-dark  { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark2); }
.gold { color: var(--gold); }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--white);
  border-bottom: 1px solid rgba(212,175,55,.25);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  gap: 16px;
}
.brand { display: flex; align-items: center; }
.brand-logo { width: 220px; height: auto; display: block; }
@media (max-width: 640px) { .brand-logo { width: 155px; } }
.header-phone {
  font-family: var(--f-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .03em;
  white-space: nowrap;
  transition: var(--ease);
}
.header-phone:hover { color: var(--gold-lt); filter: brightness(1.15); }
.header-nav { display: flex; align-items: center; gap: 24px; }
.header-nav a {
  font-family: var(--f-head);
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--ease);
}
.header-nav a:hover,
.header-nav a.active { color: var(--gold-lt); filter: brightness(1.15); }

/* ── Mobile nav toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transition: var(--ease);
}
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Page Hero (sub-pages) ── */
.page-hero {
  background: var(--navy);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(212,175,55,.025) 0, rgba(212,175,55,.025) 1px, transparent 1px, transparent 44px);
}
.page-hero-stripe {
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--gray-lt);
  max-width: 520px;
  line-height: 1.75;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  padding: 52px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand p {
  font-size: .875rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 14px 0 20px;
  max-width: 300px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--gray-lt);
  transition: var(--ease);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-col h4 {
  font-family: var(--f-head);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: .875rem; color: var(--gray); transition: var(--ease); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .78rem;
  color: var(--gray);
}

/* ── Floating call button — mobile only ── */
.float-call {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 800;
  white-space: nowrap;
  box-shadow: 0 6px 28px rgba(212,175,55,.45);
  border-radius: 100px;
  padding: 15px 32px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .header-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(212,175,55,.25);
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .site-header.nav-open .header-nav { max-height: 400px; }
  .header-nav a { padding: 16px 24px; border-top: 1px solid rgba(0,0,0,.06); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .sec { padding: 56px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-call { display: inline-flex; align-items: center; gap: 8px; }
}

/* ── Trust bar (shared) ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid #e8e6e0;
  padding: 28px 0;
}
.trust-bar-inner { display: flex; gap: 0; justify-content: space-between; flex-wrap: wrap; }
.trust-point { display: flex; align-items: center; gap: 12px; padding: 8px 20px; flex: 1; min-width: 180px; }
.trust-point + .trust-point { border-left: 1px solid #e8e6e0; }
.trust-icon {
  width: 36px; height: 36px;
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.25);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-text strong {
  display: block;
  font-family: var(--f-head);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
}
.trust-text span { font-size: .78rem; color: var(--gray); }

/* ── Final CTA band (shared) ── */
.cta-band { background: var(--gold); padding: 56px 0; text-align: center; }
.cta-band h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 10px;
}
.cta-band p { color: rgba(5,5,10,.65); margin-bottom: 28px; font-size: 1rem; }
.cta-band .btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.cta-band .btn-navy:hover { background: var(--dark); }
.cta-band .btn-outline-dark { background: transparent; color: var(--navy); border: 2px solid rgba(5,5,10,.35); }
.cta-band .btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* ── Service detail page: image + copy split ── */
.detail-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.detail-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e8e6e0;
  aspect-ratio: 4/3;
  position: relative;
}
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a28 0%, #0d0d18 100%);
  display: flex; align-items: center; justify-content: center;
}
.detail-ph span {
  font-family: var(--f-head);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.detail-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-media-example {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,.6);
  color: var(--gold-lt);
  font-family: var(--f-head);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid rgba(212,175,55,.3);
}
.detail-copy h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 14px;
}
.detail-copy p { color: var(--gray); font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; color: var(--gray); }
.feature-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ── Area chips ── */
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip {
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid #e8e6e0;
  background: var(--white);
  font-size: .85rem;
  color: var(--dark);
  font-family: var(--f-head);
  letter-spacing: .03em;
}

/* ── FAQ (native details/summary, no JS) ── */
.faq-list { display: flex; flex-direction: column; gap: 2px; margin-top: 8px; }
.faq-list details {
  border-bottom: 1px solid #e8e6e0;
  padding: 18px 0;
}
.faq-list summary {
  font-family: var(--f-head);
  font-size: .95rem;
  letter-spacing: .02em;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--ease);
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { color: var(--gray); font-size: .92rem; line-height: 1.75; margin-top: 12px; }

@media (max-width: 860px) {
  .detail-split { grid-template-columns: 1fr; }
}
