:root {
  --bg: #fffdf8;
  --panel: #ffffff;
  --ink: #17301c;
  --text: #2b342e;
  --muted: #637066;
  --green: #68ad47;
  --green-dark: #3f8b34;
  --yellow: #f8bd32;
  --yellow-soft: #fff1c4;
  --line: #e8dfcf;
  --shadow: 0 18px 48px rgba(36, 54, 37, 0.14);
  --radius: 8px;
  font-family: "Nunito", "Trebuchet MS", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 88px;
  padding: 14px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid rgba(232, 223, 207, 0.72);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 190px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: #1f2b23;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--green-dark);
}

.site-nav a.active::after,
.site-nav a:hover::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--yellow);
  color: #19271d;
  font-weight: 900;
  line-height: 1.1;
  box-shadow: 0 10px 24px rgba(248, 189, 50, 0.28);
}

.button.green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(104, 173, 71, 0.28);
}

.button.secondary {
  border-color: var(--green);
  background: #fff;
  color: var(--green-dark);
  box-shadow: none;
}

.button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.mobile-menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: #edf6e9;
  color: var(--green-dark);
  font-size: 26px;
  font-weight: 900;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.93fr) minmax(420px, 1.22fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: clamp(42px, 6vw, 82px) clamp(20px, 5vw, 76px) 34px;
}

.hero-copy {
  max-width: 690px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: #142019;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p,
.page-hero p {
  max-width: 650px;
  margin: 26px 0 0;
  color: #3d4a40;
  font-size: clamp(19px, 2vw, 25px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-item {
  display: grid;
  gap: 4px;
  min-height: 86px;
  padding: 18px 16px;
  background: var(--panel);
}

.trust-item strong {
  color: var(--ink);
  font-size: 18px;
}

.trust-item span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.hero-media {
  display: grid;
  gap: 18px;
}

.photo-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: #f5eee3;
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main-photo {
  aspect-ratio: 1.55 / 1;
}

.hero-main-photo img {
  object-position: center 46%;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mini-card {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(36, 54, 37, 0.12);
}

.mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-card span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px 14px;
  background: rgba(63, 139, 52, 0.92);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.section {
  padding: clamp(56px, 7vw, 104px) clamp(20px, 5vw, 76px);
}

.identity-band {
  background: #fffaf0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.identity-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.identity-layout h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4.3vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.identity-layout p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.identity-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.identity-list li {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.identity-list strong,
.identity-note strong {
  color: var(--green-dark);
  font-weight: 900;
}

.identity-list span {
  color: var(--muted);
}

.section.soft {
  background: #f2f8ee;
}

.section.yellow {
  background: linear-gradient(180deg, #fff7dc 0%, #fffdf8 100%);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.page-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p,
.page-section > p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.proof-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(36, 54, 37, 0.08);
}

.proof-card .icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #ecf7e8;
  color: var(--green-dark);
  font-size: 28px;
  font-weight: 900;
}

.proof-card h3,
.story-card h3,
.faq-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
}

.proof-card p,
.story-card p,
.faq-card p {
  margin: 0;
  color: var(--muted);
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.day-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(36, 54, 37, 0.1);
}

.day-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
}

.day-card strong {
  display: block;
  padding: 15px;
  color: var(--ink);
  font-size: 17px;
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(380px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.quote {
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.quote p {
  margin: 0;
  color: #27332b;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.25;
}

.quote cite {
  display: block;
  margin-top: 24px;
  color: var(--green-dark);
  font-style: normal;
  font-weight: 900;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(30px, 5vw, 48px);
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.cta-band p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(42px, 6vw, 80px) clamp(20px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
}

.page-hero .photo-frame {
  aspect-ratio: 1.65 / 1;
}

.page-section {
  padding: clamp(50px, 6vw, 90px) clamp(20px, 5vw, 76px);
}

.section-heading.left-heading {
  margin-left: 0;
  text-align: left;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.timeline-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.timeline-item strong {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 900;
}

.timeline-item h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.story-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(36, 54, 37, 0.08);
}

.program-row {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.program-row .photo-frame {
  min-height: 430px;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text);
  font-weight: 800;
}

.check-list li::before {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e7f4df;
  color: var(--green-dark);
  font-size: 16px;
  content: "✓";
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-strip .photo-frame {
  aspect-ratio: 1.18 / 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.86fr);
  gap: 24px;
  align-items: start;
}

.form-card,
.contact-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.hidden-field {
  display: none;
}

.form-status {
  margin: 12px 0 0;
  color: #8a3b1d;
  font-size: 15px;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d8cfbe;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 122px;
  resize: vertical;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}

.contact-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #edf6e9;
  color: var(--green-dark);
  font-weight: 900;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.faq-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.identity-note {
  max-width: 980px;
  margin: 28px auto 0;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
}

.identity-note p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 28px clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}

.site-footer img {
  width: 132px;
}

@media (max-width: 1020px) {
  .site-nav,
  .site-header > .button {
    display: none;
  }

  .mobile-menu {
    display: inline-grid;
    place-items: center;
  }

  .brand img {
    width: 170px;
  }

  .hero,
  .page-hero,
  .split,
  .program-row,
  .identity-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .proof-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .day-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .story-grid,
  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 78px;
  }

  .brand img {
    width: 145px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero-main-photo {
    aspect-ratio: 1 / 1;
  }

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

  .button {
    width: 100%;
  }

  .trust-strip,
  .mini-gallery,
  .identity-list li,
  .proof-grid,
  .day-grid,
  .story-grid,
  .gallery-strip,
  .form-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .mini-card {
    min-height: 210px;
  }

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