:root {
  --page-bg: #eef0fa;       /* lavender page background */
  --hero-bg: #d6e8d2;       /* mint hero band */
  --card-bg: #ffffff;
  --ink: #2a3d2a;           /* deep green text */
  --ink-soft: #4a5a4a;
  --muted: #6b7a6b;
  --line: #d8dceb;
  --accent: #2f5d3a;        /* deep green accent */
  --accent-hover: #1f4128;
  --mint: #c9e2c4;           /* circle bg */
  --mint-soft: #e6f1e3;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--page-bg);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; line-height: 1.15; color: var(--ink);
  letter-spacing: -0.5px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
.lead { color: var(--ink-soft); max-width: 640px; margin: 0 auto; }

/* Header */
header {
  position: sticky; top: 0;
  background: var(--page-bg);
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.logo {
  display: flex; align-items: center; gap: 4px;
  font-family: 'Playfair Display', serif; font-weight: 700;
}
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 14px; color: var(--accent);
  letter-spacing: 1px;
}
.logo-text { font-size: 22px; color: var(--ink); margin-left: 10px; }
nav ul { display: flex; gap: 40px; list-style: none; }
nav a {
  font-size: 16px; font-weight: 400; color: var(--ink);
  padding: 8px 0; transition: color 0.2s;
}
nav a:hover, nav a.active { color: var(--accent); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 26px; color: var(--ink); }

/* Hero */
.hero { padding: 0; }
.hero-band {
  background: var(--hero-bg);
  padding: 120px 24px;
  text-align: center;
}
.hero-band h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  margin-bottom: 28px;
}
.hero-band h1 em {
  font-style: italic;
  font-weight: 700;
}
.hero-band p {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--ink);
  max-width: 720px; margin: 0 auto;
}

/* Section heading */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  font-style: italic;
}

/* Why Choose */
.why { background: var(--page-bg); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.why-card {
  background: #fff; padding: 36px 28px;
  text-align: center;
  border-radius: 6px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.06); }
.why-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--mint); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 26px; font-weight: 700;
}
.why-card h3 { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 600; font-style: normal; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--ink-soft); }

/* Services - matches reference image */
.services { padding: 0; }
.services-bg {
  position: relative;
  background:
    linear-gradient(rgba(255,255,255,0.55), rgba(255,255,255,0.55)),
    url('https://images.unsplash.com/photo-1494412519320-aa613dfb7738?auto=format&fit=crop&w=2000&q=70') center/cover no-repeat;
  padding: 96px 0 128px;
}
.services .section-head h2 { color: var(--ink); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff; padding: 56px 32px 36px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  text-align: center;
  margin-top: 36px;
}
.service-num {
  position: absolute; top: -36px; left: 50%; transform: translateX(-50%);
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--mint); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 700;
  border: 4px solid #fff;
}
.service-card h3 { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 600; font-style: normal; margin-bottom: 14px; }
.service-card p { font-size: 14px; color: var(--ink-soft); text-align: left; }

/* Process */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  align-items: start;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--mint); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700;
}
.step h3 { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 600; font-style: normal; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--ink-soft); }
.step:not(:last-child)::after {
  content: '→'; position: absolute; top: 22px; right: -16px;
  font-size: 22px; color: var(--accent);
}

/* Offerings */
.offerings { background: #fff; }
.offerings-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.offering {
  aspect-ratio: 4/5; position: relative; overflow: hidden;
  border-radius: 6px;
}
.offering .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s;
}
.offering:hover .img { transform: scale(1.06); }
.offering .label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.75));
}
.offering .label h3 { font-family: 'Poppins', sans-serif; color: #fff; font-size: 20px; font-weight: 600; font-style: normal; }

/* Buttons */
.btn {
  display: inline-block; padding: 14px 32px;
  background: var(--accent); color: #fff;
  font-weight: 500; font-size: 15px; letter-spacing: 0.5px;
  border: 1px solid var(--accent); border-radius: 4px;
  transition: all 0.25s; cursor: pointer;
}
.btn:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }

/* CTA */
.cta {
  background: var(--hero-bg);
  text-align: center;
}
.cta h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; font-style: italic; }
.cta p { color: var(--ink-soft); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* Contact */
#contact { background: var(--page-bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info h3 { font-size: 22px; margin-bottom: 8px; font-style: italic; }
.contact-info p { color: var(--ink-soft); margin-bottom: 24px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.contact-item .ic {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--mint); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 18px;
}
.contact-item strong { display: block; font-size: 14px; margin-bottom: 2px; }
.contact-item span { color: var(--ink-soft); font-size: 14px; }
form { display: flex; flex-direction: column; gap: 16px; position: relative; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
input, textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line); background: #fff;
  border-radius: 4px;
  font-family: inherit; font-size: 15px;
  transition: border-color 0.2s;
}
input:focus, textarea:focus { outline: none; border-color: var(--accent); }
textarea { resize: vertical; min-height: 140px; }
form .btn { border: none; cursor: pointer; }

/* About page */
.about-page {
  padding: 120px 24px 96px;
  text-align: center;
}
.about-page h1 {
  font-size: clamp(40px, 5vw, 56px);
  font-style: italic;
  margin-bottom: 16px;
}
.about-page .eyebrow {
  text-transform: uppercase; letter-spacing: 3px;
  font-size: 12px; color: var(--accent); font-weight: 600;
  margin-bottom: 12px;
}
.about-content {
  max-width: 760px; margin: 48px auto 0;
  text-align: left;
}
.about-content h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-style: italic;
  margin: 32px 0 14px;
}
.about-content p { color: var(--ink-soft); margin-bottom: 16px; font-size: 16px; }

/* Footer */
footer {
  background: #1a2a1a; color: #aaa;
  padding: 64px 0 24px; font-size: 14px;
}
footer .logo-mark { background: transparent; border-color: rgba(255,255,255,0.2); color: #fff; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-grid h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a:hover { color: #fff; }
.footer-brand p { margin-top: 12px; color: #888; }
.copyright {
  border-top: 1px solid #2e3e2e; padding-top: 24px;
  text-align: center; color: #888; font-size: 13px;
}

/* Responsive */
@media (max-width: 880px) {
  section { padding: 64px 0; }
  .hero-band { padding: 80px 24px; }
  .menu-toggle { display: block; }
  nav ul {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: #fff;
    padding: 16px 24px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  }
  nav ul.open { display: flex; }
  nav li { padding: 12px 0; border-bottom: 1px solid var(--line); }
  nav li:last-child { border-bottom: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .step:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .logo-mark { width: 48px; height: 48px; }
}
