/* ── Tokens ────────────────────────────────────────────── */

:root {
  --ink:        #18231d;
  --muted:      #617268;
  --line:       rgba(24, 35, 29, 0.08);
  --accent:     #db6c3f;
  --green:      #21473a;
  --green-dark: #1d4333;
  --sh-sm:  0 2px 8px  rgba(18, 34, 27, 0.06);
  --sh-md:  0 12px 40px rgba(18, 34, 27, 0.10);
  --sh-lg:  0 24px 64px rgba(18, 34, 27, 0.14);
  --r-md: 20px;
  --r-lg: 28px;
}

/* ── Reset ─────────────────────────────────────────────── */

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

body, h1, h2, h3, p, figure, blockquote, ul { margin: 0; padding: 0; }

img { display: block; max-width: 100%; }

/* ── Base ──────────────────────────────────────────────── */

body.site {
  min-height: 100dvh;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(circle at top left,  rgba(242, 198, 144, 0.38) 0%, transparent 28%),
    radial-gradient(circle at 85% 8%,    rgba(195, 223, 208, 0.72) 0%, transparent 22%),
    linear-gradient(180deg, #f8f4ee 0%, #ede4d6 100%);
  background-attachment: fixed;
}

/* ── Container ─────────────────────────────────────────── */

.container {
  width: min(1160px, 100% - 48px);
  margin-inline: auto;
}

/* ── Shared typography ─────────────────────────────────── */

.eyebrow {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green);
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  word-break: break-word;
}

.section-intro {
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 58ch;
}

/* ── Header ────────────────────────────────────────────── */

.s-header {
  padding-block: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.site-brand {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green);
}

/* ── Hero ──────────────────────────────────────────────── */

.s-hero {
  padding-block: clamp(40px, 6vw, 80px);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.hero-copy { min-width: 0; }

.hero-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  word-break: break-word;
}

.hero-emphasis {
  display: block;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.96;
  margin-top: 4px;
  word-break: break-word;
}

.hero-desc {
  margin-top: 20px;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 15px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #e8935a 100%);
  color: #fff;
  text-decoration: none;
  font-family: inherit;
  font-size: 1rem;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(219, 108, 63, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(219, 108, 63, 0.36);
}

.hero-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-visual {
  min-width: 0;
}

/* single image */
.hero-photo--only {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--sh-lg);
}

/* two images */
.hero-visual--duo {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  overflow: hidden;
}

.hero-photo--main {
  flex: 3;
  margin: 0;
  min-width: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--sh-lg);
}

.hero-photo--accent {
  flex: 2;
  margin: 0;
  min-width: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--sh-md);
  margin-top: 48px;
  transform: rotate(2.5deg);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Benefits ──────────────────────────────────────────── */

.s-benefits {
  padding-block: clamp(56px, 8vw, 96px);
  background: rgba(255, 255, 255, 0.36);
  border-block: 1px solid rgba(255, 255, 255, 0.55);
}

.benefits-header { margin-bottom: 36px; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.benefit-card {
  padding: 26px 20px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--sh-sm);
}

.benefit-icon {
  display: block;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.benefit-name {
  font-size: 0.97rem;
  line-height: 1.45;
}

/* ── About ─────────────────────────────────────────────── */

.s-about {
  padding-block: clamp(56px, 8vw, 96px);
}

.about-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.about-visual {
  min-width: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-height: 360px;
  box-shadow: var(--sh-md);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.about-copy { min-width: 0; }

.about-copy .section-heading { margin-bottom: 16px; }

.about-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
}

.about-contact {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
  color: var(--muted);
}

.about-contact a {
  color: var(--accent);
  text-decoration: none;
}

.about-contact a:hover { text-decoration: underline; }

/* ── Testimonials ──────────────────────────────────────── */

.s-testimonials {
  padding-block: clamp(56px, 8vw, 96px);
}

.testimonials-header { margin-bottom: 36px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.testimonial {
  position: relative;
  overflow: hidden;
  padding: 34px 34px 28px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 1);
  box-shadow: var(--sh-md);
}

.t-deco {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 48px;
  height: 48px;
  color: var(--ink);
  opacity: 0.05;
  pointer-events: none;
}

.t-stars {
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: #f4a520;
  margin-bottom: 16px;
}

.t-quote {
  font-size: 1.04rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 22px;
}

.t-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.t-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(219, 108, 63, 0.09);
  border: 1px solid rgba(219, 108, 63, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.t-avatar svg { width: 15px; height: 15px; }

.t-author {
  font-size: 0.88rem;
  color: var(--muted);
}

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

.s-cta {
  padding-block: clamp(64px, 10vw, 100px);
  background: linear-gradient(145deg, var(--green) 0%, #2a5a47 55%, var(--green-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.s-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.s-cta .container { position: relative; }

.cta-eyebrow {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 14px;
}

.cta-date {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  word-break: break-word;
  margin-bottom: 40px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 17px 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--green);
  text-decoration: none;
  font-family: inherit;
  font-size: 1rem;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.cta-note {
  display: block;
  margin-top: 22px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.42);
}

/* ── Footer ────────────────────────────────────────────── */

.s-footer {
  padding-block: clamp(28px, 4vw, 44px);
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer-contact {
  font-size: 0.94rem;
  color: var(--muted);
}

.footer-contact a {
  color: var(--accent);
  text-decoration: none;
}

.footer-contact a:hover { text-decoration: underline; }

/* ── Responsive: tablet / large mobile (≤ 768px) ──────── */

@media (max-width: 768px) {
  .container { width: min(100%, 100% - 32px); }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* images above text on mobile */
  .hero-visual {
    order: -1;
  }

  .hero-photo--only {
    aspect-ratio: 4 / 3;
  }

  .hero-visual--duo {
    gap: 7px;
  }

  .hero-photo--accent {
    margin-top: 28px;
    transform: rotate(1.5deg);
  }

  .hero-actions { gap: 12px; }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* image above text on mobile */
  .about-visual {
    aspect-ratio: unset;
    height: clamp(180px, 48vw, 260px);
    max-height: 260px;
  }

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

/* ── Responsive: small mobile (≤ 480px) ───────────────── */

@media (max-width: 480px) {
  .container { width: min(100%, 100% - 24px); }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary {
    text-align: center;
    justify-content: center;
  }

  .testimonial {
    padding: 26px 22px 22px;
  }
}
