:root {
  --navy: #171c33;
  --navy-2: #232a4d;
  --gold: #c9932f;
  --gold-light: #e3b563;
  --maroon: #7a2632;
  --cream: #f7f4ec;
  --card: #ffffff;
  --border: #e7e2d3;
  --text: #23252b;
  --muted: #6b6f7a;
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--cream); color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif; line-height: 1.6;
}
h1, h2, h3, .brand-text strong { font-family: 'Cormorant Garamond', serif; font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.15; margin: 0 0 16px; color: var(--navy); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0 0 16px; color: var(--navy); }
h3 { font-size: 1.25rem; margin: 0 0 8px; color: var(--navy); }
a { color: var(--maroon); }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff; padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 10px; top: 10px; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }
.section { padding: 64px 0; }
.section-alt { background: #fff; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .12em; font-size: 13px; font-weight: 600;
  color: var(--gold); margin: 0 0 8px;
}

/* Header */
.site-header { background: var(--navy); position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.brand-mark { font-size: 26px; color: var(--gold); }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { color: #fff; font-size: 20px; }
.brand-text small { color: #b9bdd4; font-size: 12px; }

.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a { color: #d7d9ea; text-decoration: none; font-size: 14.5px; }
.main-nav a:hover { color: var(--gold-light); }
.nav-dropdown { position: relative; }
.nav-dropdown > span { color: #d7d9ea; font-size: 14.5px; cursor: default; }
.nav-dropdown-panel {
  position: absolute; top: 100%; left: 0; background: #fff; min-width: 220px; padding: 10px 0;
  border-radius: 8px; box-shadow: 0 12px 30px rgba(0,0,0,.18); display: none;
}
.nav-dropdown:hover .nav-dropdown-panel { display: block; }
.nav-dropdown-panel a { display: block; padding: 8px 18px; color: var(--navy); }
.nav-dropdown-panel a:hover { background: var(--cream); }

.header-cta { display: flex; gap: 10px; }
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; }

.btn {
  display: inline-block; padding: 12px 24px; border-radius: 6px; text-decoration: none;
  font-size: 14.5px; font-weight: 600; border: 1.5px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.section .btn-outline { border-color: var(--navy); color: var(--navy); }

/* Hero */
.hero { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; padding: 72px 0; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 { color: #fff; }
.hero-sub { color: #cfd2e6; font-size: 17px; max-width: 52ch; }
.hero-actions { display: flex; gap: 14px; margin: 26px 0; flex-wrap: wrap; }
.trust-strip { list-style: none; display: flex; gap: 22px; padding: 0; margin: 8px 0 0; flex-wrap: wrap; color: #cfd2e6; font-size: 14px; }
.hero-media img { border-radius: 14px; border: 3px solid rgba(201,147,47,.5); }

/* Fact grid */
.fact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.fact-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.fact-card span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.fact-card strong { color: var(--navy); }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 24px; }
.service-card, .blog-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; text-decoration: none; color: var(--text); display: block; transition: box-shadow .15s, transform .15s;
}
.service-card:hover, .blog-card:hover { box-shadow: 0 12px 26px rgba(23,28,51,.12); transform: translateY(-2px); }
.service-card img, .blog-card img { border-radius: 8px; margin-bottom: 12px; height: 160px; width: 100%; object-fit: cover; }
.service-link { color: var(--gold); font-weight: 600; font-size: 14px; }
.blog-card time { color: var(--muted); font-size: 13px; }

.testimonial-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.testimonial-card .stars { color: var(--gold); margin-bottom: 8px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; }
.faq-item summary { cursor: pointer; font-weight: 600; color: var(--navy); }
.faq-item p { margin: 10px 0 0; color: var(--muted); }

/* Chips */
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chip {
  background: #fff; border: 1px solid var(--border); border-radius: 30px; padding: 8px 18px;
  text-decoration: none; color: var(--navy); font-size: 14px;
}
.chip:hover { border-color: var(--gold); color: var(--maroon); }

/* Forms */
.lead-form, .admin-form { }
.lead-form { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 14px; color: var(--navy); }
.lead-form input, .lead-form select, .lead-form textarea {
  display: block; width: 100%; margin-top: 6px; padding: 10px 12px; border: 1px solid var(--border);
  border-radius: 6px; font-family: inherit; font-size: 14.5px;
}
.form-success { background: #e6f4ea; color: #1e7b34; padding: 14px 18px; border-radius: 8px; }
.form-error { color: var(--maroon); font-size: 14px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 12px; }

.rich-content { margin: 20px 0; }
.rich-content p { margin: 0 0 16px; }
.detail-hero-img { border-radius: var(--radius); margin-bottom: 20px; max-height: 380px; object-fit: cover; width: 100%; }
.post-meta { color: var(--muted); font-size: 14px; }

.breadcrumbs { margin: 0 0 18px; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; font-size: 13px; color: var(--muted); }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 6px; color: var(--border); }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--maroon); }
.breadcrumbs [aria-current="page"] { color: var(--navy); font-weight: 600; }

.tldr-box {
  background: #fbf3e2; border-left: 4px solid var(--gold); border-radius: 6px;
  padding: 14px 18px; margin: 0 0 22px; font-size: 15px; color: var(--navy);
}

/* Footer */
.site-footer { background: var(--navy); color: #cfd2e6; padding: 56px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-grid h3 { color: #fff; font-size: 16px; margin-bottom: 14px; }
.footer-grid a { display: block; color: #cfd2e6; text-decoration: none; margin-bottom: 8px; font-size: 14px; }
.footer-grid a:hover { color: var(--gold-light); }
.brand-footer .brand-text strong, .brand-footer .brand-text small { color: #fff; }
.footer-about { color: #b9bdd4; font-size: 14px; max-width: 40ch; }
.footer-social { display: flex; gap: 14px; margin-top: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0 24px; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 8px; font-size: 12.5px; color: #9599b4;
}
.footer-disclaimer { max-width: 60ch; }

.whatsapp-float {
  position: fixed; bottom: 22px; right: 22px; background: #25D366; color: #fff; width: 54px; height: 54px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0,0,0,.25);
  z-index: 60; text-decoration: none;
}

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

@media (max-width: 860px) {
  .hero-grid, .footer-grid, .contact-grid { grid-template-columns: 1fr; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy);
    flex-direction: column; padding: 10px 24px 20px; gap: 4px;
  }
  .main-nav.open { display: flex; }
  .nav-dropdown-panel { position: static; box-shadow: none; display: block; padding-left: 12px; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .service-card, .blog-card { transition: none; }
}
