:root {
  --navy: #07314b;
  --teal: #4f9287;
  --gold: #d0ad72;
  --cream: #fbf8f1;
  --text: #20313a;
  --muted: #65757c;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 49, 75, 0.14);
  --radius: 26px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(7,49,75,.08);
}
.brand {
  width: 280px;
  height: 135px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.brand img {
  width: 280px;
  display: block;
  transform: scale(1.15) translateY(12px);
  transform-origin: center center;
}
.nav { display: flex; align-items: center; gap: 22px; font-weight: 700; font-size: 14px; }
.nav a { color: var(--navy); }
.nav-button { padding: 10px 16px; border-radius: 999px; background: rgba(79,146,135,.12); }
.nav-call { color: var(--teal); }
.nav-toggle { display: none; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }
.section-pad { padding: clamp(64px, 9vw, 112px) clamp(20px, 6vw, 84px); }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  min-height: 78vh;
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  right: -180px;
  top: -160px;
  background: radial-gradient(circle, rgba(79,146,135,.2), transparent 66%);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  font-weight: 800;
}
h1, h2, h3 { color: var(--navy); line-height: 1.05; margin: 0; }
h1 { font-family: "Playfair Display", serif; font-size: clamp(48px, 8vw, 92px); max-width: 820px; }
h2 { font-size: clamp(32px, 5vw, 56px); letter-spacing: -.04em; }
h3 { font-size: 24px; }
.hero-text, .section-heading p, .why-panel p, .quote-copy p { color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-text { max-width: 660px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { background: var(--navy); color: var(--white); box-shadow: 0 12px 30px rgba(7,49,75,.22); }
.secondary { color: var(--navy); border: 2px solid rgba(7,49,75,.14); background: var(--white); }
.hero-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 52px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(208,173,114,.28);
}
.hero-card .hero-card-title { font-size: clamp(28px, 4vw, 46px); color: var(--navy); line-height: 1.05; font-weight: 700; margin: 0; }
.hero-card ul { padding-left: 20px; margin: 28px 0 0; color: var(--muted); line-height: 2; font-weight: 700; }
.sparkle { color: var(--gold); font-size: 48px; margin-bottom: 18px; }
.services { background: var(--white); }
.section-heading { max-width: 780px; margin-bottom: 38px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  background: linear-gradient(180deg, #fff, #fbf8f1);
  border: 1px solid rgba(7,49,75,.08);
  border-radius: 22px;
  padding: 28px;
  min-height: 260px;
}
.service-card span { color: var(--gold); font-weight: 900; letter-spacing: .12em; }
.service-card h3 { margin: 26px 0 12px; }
.service-card p { color: var(--muted); line-height: 1.65; }
.why { background: linear-gradient(135deg, var(--navy), #0e465c); }
.why-panel {
  background: rgba(255,255,255,.96);
  border-radius: var(--radius);
  padding: clamp(32px, 6vw, 64px);
  box-shadow: var(--shadow);
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.feature-list div {
  border-left: 4px solid var(--gold);
  background: var(--cream);
  padding: 18px;
  border-radius: 16px;
  color: var(--muted);
  line-height: 1.6;
}
.feature-list strong { color: var(--navy); }
.quote {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
}
.quote-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
.quote-form label { display: grid; gap: 8px; font-weight: 800; color: var(--navy); }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  border: 1px solid rgba(7,49,75,.16);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: 3px solid rgba(79,146,135,.2);
  border-color: var(--teal);
}
.hidden { display: none; }
.notice { min-height: 68vh; display: grid; place-items: center; text-align: center; padding: clamp(48px, 10vw, 120px) 20px; }
.notice-card { max-width: 560px; }
.notice h1 { font-family: "Playfair Display", serif; font-size: clamp(40px, 7vw, 72px); margin: 8px 0 16px; }
.notice p { color: var(--muted); font-size: 18px; line-height: 1.75; margin: 0 0 28px; }
.notice-card a:not(.button) { color: var(--teal); font-weight: 700; }
.faq-list { max-width: 820px; display: grid; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid rgba(7,49,75,.1); border-radius: 16px; padding: 2px 22px; }
.faq-item summary {
  cursor: pointer; list-style: none; font-weight: 800; color: var(--navy);
  font-size: 18px; padding: 18px 0; display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--teal); font-weight: 800; font-size: 22px; line-height: 1; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { color: var(--muted); line-height: 1.7; margin: 0 0 18px; }
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(20px, 6vw, 84px);
  color: var(--muted);
  border-top: 1px solid rgba(7,49,75,.08);
  background: var(--white);
}
.footer img { width: 120px; }
.footer a { color: var(--teal); font-weight: 800; }
.footer-contact { display: grid; gap: 4px; }
.footer-contact p { margin: 0; }
.footer-contact a { color: var(--teal); font-weight: 800; }
.quote-phone { font-size: 16px; }
.quote-phone a { color: var(--teal); font-weight: 800; }
@media (max-width: 980px) {
  .hero, .quote { grid-template-columns: 1fr; }
  .service-grid, .feature-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .site-header { align-items: center; flex-wrap: wrap; }
  .brand img { width: 135px; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 9px; border: 0; background: transparent; cursor: pointer;
  }
  .nav-toggle span { display: block; height: 3px; width: 100%; background: var(--navy); border-radius: 2px; }
  .nav {
    display: none; flex-basis: 100%; flex-direction: column; align-items: stretch;
    gap: 2px; margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(7,49,75,.08);
  }
  .nav[data-open="true"] { display: flex; }
  .nav a { padding: 12px 6px; }
  .nav-button, .nav-call { align-self: flex-start; }
  .service-grid, .feature-list { grid-template-columns: 1fr; }
  .footer { flex-direction: column; text-align: center; }
  .footer-contact { justify-items: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .button:hover { transform: none; }
}
