/* ---------- Tokens ---------- */
:root {
  --baby-blue: #BFE0E8;
  --baby-blue-soft: #DCEEF2;
  --baby-blue-pale: #F1F8FA;
  --baby-blue-mist: #F8FCFD;
  --turquoise: #0F5A6B;
  --turquoise-deep: #093E4A;
  --turquoise-darker: #052831;
  --ink: #1A2C30;
  --ink-soft: #4A5C60;
  --muted: #829498;
  --paper: #FFFFFF;
  --line: #E5EEF0;
  --line-soft: #F0F5F6;
  --shadow-soft: 0 1px 2px rgba(9, 62, 74, 0.03), 0 4px 16px rgba(9, 62, 74, 0.04);
  --shadow-md: 0 4px 24px rgba(9, 62, 74, 0.08);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --container: 1200px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--turquoise-darker);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.3rem); font-weight: 500; }

.serif { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--turquoise);
}

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
section { padding: clamp(80px, 10vw, 140px) 0; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; max-width: var(--container); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; transition: opacity .2s; }
.brand:hover { opacity: 0.85; }
.brand-logo { height: 78px; width: auto; display: block; }
.brand-logo.invert { filter: brightness(0) invert(1); opacity: 0.95; }
@media (max-width: 560px) { .brand-logo { height: 56px; } }

.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a { font-size: 0.9rem; color: var(--ink-soft); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--turquoise); }
.nav-cta {
  background: var(--turquoise-deep); color: var(--paper);
  padding: 10px 20px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600;
  transition: all .25s ease;
}
.nav-cta:hover { background: var(--turquoise-darker); }
.menu-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: clamp(70px, 10vw, 120px) 0 clamp(60px, 9vw, 110px);
  background: var(--paper);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -10%; right: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse, var(--baby-blue-soft) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 920px; margin: 0 auto; text-align: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; background: var(--baby-blue-pale);
  border-radius: 999px; margin-bottom: 28px;
  font-size: 0.78rem; font-weight: 500; color: var(--turquoise);
  letter-spacing: 0.04em;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--turquoise); }
.hero h1 { margin-bottom: 28px; }
.hero h1 .serif { color: var(--turquoise); }
.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink-soft); max-width: 620px; margin: 0 auto;
  font-weight: 400; line-height: 1.6;
}
.hero-ctas { display: flex; gap: 12px; margin-top: 38px; justify-content: center; flex-wrap: wrap; }
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 28px; border-radius: 999px;
  font-size: 0.92rem; font-weight: 600;
  transition: all .25s ease;
}
.btn-primary { background: var(--turquoise-deep); color: var(--paper); }
.btn-primary:hover { background: var(--turquoise-darker); transform: translateY(-1px); }
.btn-secondary { background: var(--baby-blue-soft); color: var(--turquoise-darker); }
.btn-secondary:hover { background: var(--baby-blue); }

/* hero stats row */
.hero-stats {
  display: flex; justify-content: center; gap: clamp(28px, 5vw, 60px);
  margin-top: 70px; flex-wrap: wrap;
  padding-top: 40px; border-top: 1px solid var(--line);
}
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 1.8rem; font-weight: 500; color: var(--turquoise-darker); letter-spacing: -0.02em; }
.hero-stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 4px; font-weight: 500; }

/* ---------- About ---------- */
.about { background: var(--baby-blue-mist); }
.about-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.about-text .eyebrow { margin-bottom: 18px; display: block; }
.about-text h2 { margin-bottom: 24px; }
.about-text h2 .serif { color: var(--turquoise); }
.about-text > p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; margin-bottom: 28px; }
.about-bullets { list-style: none; display: grid; gap: 14px; margin-top: 28px; }
.about-bullets li { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: var(--ink); font-weight: 500; }
.about-bullets li svg { width: 20px; height: 20px; color: var(--turquoise); flex-shrink: 0; }

.about-visual {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--baby-blue) 0%, var(--turquoise) 100%);
  overflow: hidden;
  /* Replace with your own image */
}
.about-visual::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(60deg, transparent 0 18px, rgba(255,255,255,0.04) 18px 19px);
}
.price-tile {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--paper);
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.price-tile-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.price-tile-amount { font-size: 2rem; font-weight: 500; color: var(--turquoise-darker); letter-spacing: -0.02em; }
.price-tile-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 4px; }

/* ---------- Values (numbered grid) ---------- */
.values-head { text-align: center; max-width: 640px; margin: 0 auto 70px; }
.values-head h2 { margin: 14px 0 0; }
.values-head h2 .serif { color: var(--turquoise); }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.value {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease;
}
.value:hover { background: var(--baby-blue-mist); }
.value-num {
  font-size: 0.78rem; font-weight: 500;
  color: var(--turquoise); letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.value h3 { font-size: 1.1rem; font-weight: 500; margin-bottom: 10px; letter-spacing: -0.015em; }
.value p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; }

/* ---------- Services ---------- */
.services { background: var(--paper); }
.services-head { text-align: center; max-width: 640px; margin: 0 auto 70px; }
.services-head h2 { margin: 14px 0 18px; }
.services-head h2 .serif { color: var(--turquoise); }
.services-head p { color: var(--ink-soft); }

.service-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  max-width: 920px; margin: 0 auto 60px;
  justify-content: center;
}
.service-pill {
  padding: 12px 22px;
  background: var(--baby-blue-pale);
  border-radius: 999px;
  font-size: 0.92rem; font-weight: 500;
  color: var(--turquoise-darker);
  border: 1px solid transparent;
  transition: all .25s;
}
.service-pill:hover { background: var(--baby-blue-soft); border-color: var(--baby-blue); }

.services-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-card {
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  background: var(--baby-blue-pale);
  border: 1px solid var(--line-soft);
  transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-4px); }
.service-card.dark { background: var(--turquoise-darker); color: var(--baby-blue-soft); border: none; }
.service-card.dark h3 { color: var(--paper); }
.service-card.dark .service-tag { color: var(--baby-blue); }
.service-card.dark .service-list li { color: var(--baby-blue-soft); border-color: rgba(191, 224, 232, 0.18); }
.service-card.dark .service-list li::before { background: var(--baby-blue); }
.service-card.dark > p { color: var(--baby-blue-soft); opacity: 0.85; }
.service-tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--turquoise); margin-bottom: 18px; display: block;
}
.service-card h3 { margin-bottom: 14px; font-size: 1.55rem; font-weight: 500; }
.service-card > p { color: var(--ink-soft); margin-bottom: 28px; font-size: 1rem; }
.service-list { list-style: none; }
.service-list li {
  padding: 13px 0 13px 22px; position: relative;
  border-top: 1px solid var(--line);
  font-size: 0.95rem; color: var(--ink-soft);
}
.service-list li::before {
  content: ''; position: absolute; left: 0; top: 19px;
  width: 6px; height: 6px; background: var(--turquoise); border-radius: 50%;
}

/* ---------- Call out band ---------- */
.callout {
  background: var(--turquoise-darker); color: var(--baby-blue-soft);
  padding: 70px 0; position: relative; overflow: hidden;
}
.callout::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(191, 224, 232, 0.06) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.callout-inner { position: relative; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 32px; }
.callout h2 { color: var(--paper); max-width: 580px; }
.callout h2 .serif { color: var(--baby-blue); }
.callout-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.callout-phone {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400; color: var(--paper); letter-spacing: -0.02em;
}
.callout-phone:hover { color: var(--baby-blue); }
.callout-label { font-size: 0.78rem; color: var(--baby-blue); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }

/* ---------- Process ---------- */
.process-head { text-align: center; max-width: 640px; margin: 0 auto 70px; }
.process-head h2 { margin: 14px 0 18px; }
.process-head h2 .serif { color: var(--turquoise); }
.process-head p { color: var(--ink-soft); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--baby-blue-pale);
  color: var(--turquoise-darker);
  display: grid; place-items: center;
  font-size: 1.05rem; font-weight: 500;
  margin: 0 auto 22px;
  letter-spacing: -0.01em;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; font-weight: 500; }
.step p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; }

/* ---------- FAQ ---------- */
.faq { background: var(--baby-blue-mist); }
.faq-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.faq-text .eyebrow { display: block; margin-bottom: 16px; }
.faq-text h2 { margin-bottom: 18px; }
.faq-text h2 .serif { color: var(--turquoise); }
.faq-text p { color: var(--ink-soft); margin-bottom: 28px; }
.faq-text a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--turquoise-deep); font-weight: 600; font-size: 0.95rem;
  border-bottom: 1.5px solid var(--turquoise-deep);
  padding-bottom: 4px;
  transition: gap .2s;
}
.faq-text a:hover { gap: 12px; }

.faq-list { list-style: none; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 4px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 22px 0;
  font-size: 1.05rem; font-weight: 500;
  color: var(--turquoise-darker);
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}
.faq-q:hover { color: var(--turquoise); }
.faq-toggle {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--baby-blue-pale);
  border-radius: 50%;
  color: var(--turquoise-deep);
  flex-shrink: 0; margin-left: 16px;
  transition: transform .3s, background .2s;
  font-size: 14px; font-weight: 400;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--baby-blue); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  color: var(--ink-soft); font-size: 0.96rem; line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 240px; padding: 0 0 22px; }

/* ---------- Service Areas ---------- */
.areas { background: var(--paper); }
.areas-inner { text-align: center; }
.areas-head { max-width: 640px; margin: 0 auto 50px; }
.areas-head h2 { margin: 14px 0 18px; }
.areas-head h2 .serif { color: var(--turquoise); }
.areas-head p { color: var(--ink-soft); }
.area-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 800px; margin: 0 auto; }
.area-tag {
  padding: 10px 20px; border-radius: 999px;
  background: var(--baby-blue-pale);
  font-size: 0.92rem; color: var(--turquoise-darker); font-weight: 500;
}

/* ---------- Contact / Quote ---------- */
.contact { background: var(--paper); }
.contact-inner {
  background: var(--baby-blue-mist);
  border-radius: var(--radius-lg);
  padding: clamp(44px, 6vw, 72px);
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px;
  border: 1px solid var(--line-soft);
}
.contact-text .eyebrow { display: block; margin-bottom: 16px; }
.contact-text h2 { margin-bottom: 18px; }
.contact-text h2 .serif { color: var(--turquoise); }
.contact-text > p { color: var(--ink-soft); margin-bottom: 36px; line-height: 1.65; }
.contact-method { display: flex; align-items: center; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line); }
.contact-method svg { width: 18px; height: 18px; color: var(--turquoise); flex-shrink: 0; }
.contact-method-label { font-size: 0.72rem; color: var(--muted); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 2px; }
.contact-method-value { font-size: 1rem; font-weight: 500; color: var(--turquoise-darker); }
.contact-method-value:hover { color: var(--turquoise); }

.quote-form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.form-field input, .form-field select, .form-field textarea {
  padding: 13px 16px; border: 1px solid var(--line);
  border-radius: 10px; background: var(--paper);
  font-family: inherit; font-size: 0.96rem; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--turquoise);
  box-shadow: 0 0 0 4px rgba(15, 90, 107, 0.08);
}
.form-field textarea { resize: vertical; min-height: 100px; font-family: inherit; }
.quote-form button {
  margin-top: 6px; padding: 15px 24px;
  background: var(--turquoise-deep); color: var(--paper);
  border-radius: 12px; font-weight: 600; font-size: 0.95rem;
  transition: all .25s;
}
.quote-form button:hover { background: var(--turquoise-darker); transform: translateY(-1px); }
.form-consent { font-size: 0.75rem; color: var(--muted); line-height: 1.5; margin-top: 6px; }

/* ---------- Footer ---------- */
.footer { background: var(--turquoise-darker); color: var(--baby-blue-soft); padding: 70px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { margin-top: 20px; max-width: 320px; color: var(--baby-blue-soft); font-size: 0.92rem; opacity: 0.85; line-height: 1.6; }
.footer h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--baby-blue); margin-bottom: 18px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; font-size: 0.92rem; }
.footer ul a { color: var(--baby-blue-soft); transition: color .2s; opacity: 0.85; }
.footer ul a:hover { color: var(--paper); opacity: 1; }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(191, 224, 232, 0.18); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 0.82rem; color: var(--baby-blue-soft); opacity: 0.7; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .menu-toggle { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: var(--baby-blue-pale); color: var(--turquoise-darker); }
  .about-inner, .faq-inner, .contact-inner, .callout-inner { grid-template-columns: 1fr; gap: 48px; }
  .callout-cta { align-items: flex-start; }
  .values-grid, .process-grid { grid-template-columns: 1fr 1fr; }
  .services-split { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-visual { aspect-ratio: 4/3; }
}
@media (max-width: 560px) {
  .values-grid, .process-grid, .footer-inner, .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .contact-inner { padding: 32px 22px; }
  .service-card { padding: 32px 24px; }
  .hero-stats { gap: 24px; }
  .callout { padding: 50px 0; }
}

/* ---------- Home page hero with photo background ---------- */
body.home .hero {
  background:
    linear-gradient(135deg, rgba(5, 40, 49, 0.88) 0%, rgba(9, 62, 74, 0.92) 60%, rgba(15, 90, 107, 0.85) 100%),
    url('https://images.unsplash.com/photo-1768609239321-1cfe14893e80?fm=jpg&q=70&w=2400&auto=format&fit=crop') center/cover no-repeat;
  color: var(--paper);
}
body.home .hero::before {
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(191, 224, 232, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(191, 224, 232, 0.08), transparent 60%);
  width: 100%; height: 100%; top: 0; right: 0;
}
body.home .hero h1 { color: var(--paper); }
body.home .hero h1 .serif { color: var(--baby-blue); }
body.home .hero-sub { color: var(--baby-blue-soft); opacity: 0.95; }
body.home .hero-eyebrow {
  background: rgba(191, 224, 232, 0.14);
  color: var(--baby-blue);
  border: 1px solid rgba(191, 224, 232, 0.2);
  backdrop-filter: blur(6px);
}
body.home .hero-eyebrow .dot { background: var(--baby-blue); }
body.home .btn-primary { background: var(--baby-blue); color: var(--turquoise-darker); }
body.home .btn-primary:hover { background: var(--paper); }
body.home .btn-secondary { background: rgba(255, 255, 255, 0.1); color: var(--paper); border: 1px solid rgba(191, 224, 232, 0.35); backdrop-filter: blur(6px); }
body.home .btn-secondary:hover { background: rgba(255, 255, 255, 0.18); }
body.home .hero-stats { border-top-color: rgba(191, 224, 232, 0.2); }
body.home .hero-stat-num { color: var(--paper); }
body.home .hero-stat-label { color: var(--baby-blue); opacity: 0.85; }

/* Form submission status */
.form-status { padding: 10px 0 0; font-size: 0.92rem; min-height: 1.2em; }
.form-status.success { color: var(--turquoise); font-weight: 500; }
.form-status.error { color: #c04040; font-weight: 500; }
