:root {
  --color-primary: #059669;
  --color-secondary: #10B981;
  --color-accent: #F97316;
  --color-neutral-dark: #064E3B;
  --color-neutral-light: #ECFDF5;
  --color-text: #0B2A21;
  --color-muted: #4A6B60;
  --color-border: rgba(6, 78, 59, 0.14);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: #fff;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* === Typography === */
h1, h2, h3 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; margin: 0 0 1rem; font-weight: 600; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
  margin: 0 0 1rem;
}
.sub { color: var(--color-muted); font-size: 1.1rem; }

/* === Layout === */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.narrow { max-width: 720px; margin-inline: auto; }
.center { text-align: center; }
.section { padding-block: 4rem; }
.section.alt { background: var(--color-neutral-light); }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head .sub { max-width: 52ch; margin-inline: auto; }
.section-foot { text-align: center; margin-top: 2rem; }
.section-figure { margin-top: 3rem; border-radius: 12px; overflow: hidden; }
.section-figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

@media (min-width: 768px) {
  .section { padding-block: 6rem; }
}

/* === Header === */
.site-header {
  border-bottom: 1px solid var(--color-border);
  background: #fff;
  position: sticky; top: 0; z-index: 40;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1rem;
  gap: 1rem;
}
.logo img { height: 72px; width: auto; display: block; }
.logo, .logo:hover { text-decoration: none; }
@media (min-width: 768px) {
  .logo img { height: 96px; }
}
.nav-toggle {
  background: none; border: none; color: var(--color-neutral-dark);
  cursor: pointer; padding: 0.5rem; display: inline-flex;
}
.primary-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff;
  padding: 1rem 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.primary-nav.is-open { display: flex; }
.primary-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  padding: 0.35rem 0;
}
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex;
    flex-direction: row;
    position: static;
    padding: 0;
    border: none;
    gap: 2rem;
  }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 4px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 1rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.15s, color 0.15s, transform 0.15s;
  text-decoration: none;
  line-height: 1.2;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-neutral-dark); text-decoration: none; }
.btn-accent { background: var(--color-accent); color: #fff; }
.btn-accent:hover { background: #d95a09; text-decoration: none; }
.btn-ghost { background: transparent; color: var(--color-neutral-dark); border-color: var(--color-neutral-dark); }
.btn-ghost:hover { background: var(--color-neutral-dark); color: #fff; text-decoration: none; }

/* === Hero (split) === */
.hero { padding-block: 3rem; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.hero-copy h1 { margin-bottom: 1.25rem; }
.hero-copy .sub { max-width: 48ch; margin-bottom: 2rem; }
.hero-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .hero { padding-block: 5rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* === Intro === */
.intro h2 { text-align: center; }
.intro p { font-size: 1.05rem; }

/* === Grid & Cards === */
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-muted); margin: 0; font-size: 0.98rem; }
.card-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--color-neutral-light);
  color: var(--color-primary);
  margin-bottom: 1rem;
}
a.card-link { color: inherit; display: block; }
a.card-link:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -18px rgba(6, 78, 59, 0.35);
}

/* === Testimonial === */
.testimonial { background: var(--color-neutral-light); }
.testimonial blockquote {
  margin: 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.4;
  color: var(--color-neutral-dark);
}
.testimonial blockquote p { margin-bottom: 1.25rem; }
.testimonial cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--color-muted);
  font-weight: 500;
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: #fff;
  padding-block: 3.5rem;
}
.cta-band h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-band p { color: rgba(255,255,255,0.9); margin: 0; }
.cta-band .contact-inline { margin-top: 0.75rem; font-size: 0.95rem; }
.cta-inner {
  display: flex; flex-direction: column;
  gap: 1.5rem; align-items: flex-start;
}
@media (min-width: 768px) {
  .cta-inner { flex-direction: row; justify-content: space-between; align-items: center; gap: 2.5rem; }
}

/* === Service detail === */
.service-detail { padding-block: 4rem; }
.service-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
}
.service-media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px;
}
.service-copy h2 { margin-bottom: 0.75rem; }
@media (min-width: 900px) {
  .service-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .service-grid.reverse .service-copy { order: 2; }
  .service-grid.reverse .service-media { order: 1; }
}

/* === Contact === */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 2fr 1fr; gap: 3rem; }
}
.contact-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
}
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-weight: 500; font-size: 0.95rem; color: var(--color-neutral-dark); }
.field input, .field textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #fff;
  color: var(--color-text);
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
  border-color: transparent;
}
.form-consent {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.9rem; color: var(--color-muted);
  margin: 1rem 0 1.4rem;
}
.form-consent input { margin-top: 0.25rem; flex-shrink: 0; }
.contact-info h3 { margin-top: 1rem; font-family: var(--font-body); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-primary); }
.contact-info address { font-style: normal; margin-bottom: 1.5rem; }
.hours { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours th, .hours td { text-align: left; padding: 0.4rem 0; border-bottom: 1px solid var(--color-border); font-weight: 400; }
.hours th { color: var(--color-neutral-dark); font-weight: 500; }

/* === FAQ === */
.faq details {
  border-bottom: 1px solid var(--color-border);
  padding: 1.1rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-neutral-dark);
  font-size: 1.05rem;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: 0;
  color: var(--color-primary); font-size: 1.4rem; line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 0.85rem; color: var(--color-muted); }

/* === Thank you === */
.thank-you { padding-block: 5rem; text-align: center; }
.thank-you .sub { max-width: 52ch; margin-inline: auto; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(236, 253, 245, 0.85);
  padding-block: 3rem 1.5rem;
  margin-top: 0;
}
.site-footer a { color: var(--color-neutral-light); }
.site-footer h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; gap: 3rem; }
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.5rem; }
.site-footer address { font-style: normal; margin-bottom: 1rem; line-height: 1.7; }
.logo-footer img { height: 64px; filter: brightness(0) invert(1); }
.legal-links { margin-top: 1rem; font-size: 0.9rem; }
.copyright {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  color: rgba(236, 253, 245, 0.65);
}

/* === Cookie banner === */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem;
  display: none;
  z-index: 9999;
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.4);
  max-width: 720px;
  margin: 0 auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.92rem; }
.cookie-banner__actions {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.cookie-banner__actions button {
  font: inherit; cursor: pointer;
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent; color: var(--color-neutral-light);
  font-size: 0.9rem;
}
.cookie-banner__actions [data-cookie-accept] {
  background: var(--color-accent); color: #fff; border-color: var(--color-accent);
  font-weight: 600;
}
.cookie-banner__actions button:hover { background: rgba(255,255,255,0.08); }
.cookie-banner__actions [data-cookie-accept]:hover { background: #d95a09; }
.cookie-banner__prefs {
  margin-top: 1rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  font-size: 0.9rem;
}
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; }
.cookie-banner__prefs [data-cookie-save] {
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-primary); color: #fff;
  border: none; border-radius: 4px; cursor: pointer;
  font: inherit; font-weight: 600;
}
