/* ============================================================
   VERNWELL LTD — BRAND STYLESHEET
   Palette: Slate #2C3E50, Gold #C9A84C, Off-white #F7F5F0, Mid #6B7B8D
   Type: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --slate:    #2C3E50;
  --slate-dk: #1a2635;
  --slate-md: #3d5163;
  --gold:     #C9A84C;
  --gold-lt:  #e0c070;
  --off-white:#F7F5F0;
  --mid:      #6B7B8D;
  --light:    #EAE8E3;
  --white:    #ffffff;
  --text:     #1e2a36;
  --radius:   4px;
  --nav-h:    72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  color: var(--slate);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-lt); }

strong { font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ── LAYOUT ──────────────────────────────────────────────── */

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

.section-header {
  max-width: 680px;
  margin-bottom: 56px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--mid);
  margin-top: 16px;
}

/* ── NAVIGATION ─────────────────────────────────────────── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--slate-dk);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 20px;
  background: var(--gold);
  color: var(--slate-dk) !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  border-radius: var(--radius);
  transition: background 0.2s !important;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--gold-lt) !important;
  color: var(--slate-dk) !important;
}

/* ── HERO ────────────────────────────────────────────────── */

.hero {
  background: var(--slate-dk);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-eyebrow { color: var(--gold); }

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  max-width: 760px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ── BUTTONS ────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--slate-dk);
}

.btn-primary:hover {
  background: var(--gold-lt);
  color: var(--slate-dk);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline-dark {
  background: transparent;
  border: 1.5px solid var(--slate-md);
  color: var(--slate);
}

.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

/* ── PAGE HERO (inner pages) ────────────────────────────── */

.page-hero {
  background: var(--slate-dk);
  padding: 64px 0 56px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.page-hero h1 {
  color: var(--white);
  margin-top: 8px;
  max-width: 700px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin-top: 16px;
  font-size: 1.1rem;
}

/* ── STAT BAR ───────────────────────────────────────────── */

.stat-bar {
  background: var(--slate);
  padding: 32px 0;
}

.stat-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: space-around;
}

.stat-item {
  text-align: center;
  padding: 8px 24px;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  font-weight: 400;
}

/* ── INTRO / ABOUT STRIP ────────────────────────────────── */

.intro-strip {
  background: var(--off-white);
  padding: 72px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-grid img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}

/* ── SERVICE CARDS ──────────────────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--off-white);
  border: 1px solid var(--light);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--slate);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.6;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.2s;
}

.service-card .card-link:hover { gap: 10px; }

/* ── DIFFERENTIATOR STRIP ───────────────────────────────── */

.diff-strip {
  background: var(--slate);
  padding: 72px 0;
}

.diff-strip h2,
.diff-strip h3 { color: var(--white); }

.diff-strip p { color: rgba(255,255,255,0.7); }

.diff-strip .eyebrow { color: var(--gold); }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.diff-item {
  padding: 28px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
}

.diff-item h4 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.diff-item p {
  font-size: 0.92rem;
}

/* ── TESTIMONIAL / QUOTE ────────────────────────────────── */

.testimonial-strip {
  background: var(--off-white);
  padding: 72px 0;
}

.testimonial-card {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--slate);
  line-height: 1.4;
  margin-bottom: 24px;
}

.testimonial-card cite {
  font-size: 0.88rem;
  font-style: normal;
  color: var(--mid);
  font-weight: 500;
}

/* ── CTA BAND ───────────────────────────────────────────── */

.cta-band {
  background: var(--gold);
  padding: 64px 0;
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band h2 {
  color: var(--slate-dk);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 560px;
}

.cta-band p {
  color: rgba(26,38,53,0.75);
  margin-top: 8px;
  max-width: 480px;
}

.btn-dark {
  background: var(--slate-dk);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--slate);
  color: var(--white);
}

/* ── PROCESS STEPS ──────────────────────────────────────── */

.process-steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.process-step {
  position: relative;
  padding-left: 56px;
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: -2px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.process-step h4 {
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.92rem;
  color: var(--mid);
}

/* ── TWO-COL TEXT ───────────────────────────────────────── */

.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.two-col-text p { color: var(--mid); font-size: 0.97rem; }

/* ── CHECKLIST ──────────────────────────────────────────── */

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.97rem;
  color: var(--mid);
}

.checklist li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── BREADCRUMB ─────────────────────────────────────────── */

.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* ── FOOTER ─────────────────────────────────────────────── */

footer {
  background: var(--slate-dk);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.6;
}

.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}

.footer-bottom a:hover { color: var(--gold); }

/* ── CONTACT FORM ───────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--light);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--slate);
}

.contact-info-item p,
.contact-info-item a {
  color: var(--mid);
  font-size: 0.97rem;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 900px) {
  .intro-grid,
  .two-col-text,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .nav-links { display: none; }
}

@media (max-width: 640px) {
  section { padding: 56px 0; }
  .hero { padding: 64px 0 56px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; }
  .stat-bar-inner { gap: 16px; }
}
