:root {
  --bg: #f4f1e8;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #fffaf0;
  --text: #193527;
  --muted: #4b6758;
  --line: rgba(25, 53, 39, 0.12);
  --brand: #1f6b47;
  --brand-deep: #123827;
  --accent: #d5b56d;
  --shadow: 0 18px 50px rgba(18, 56, 39, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(213, 181, 109, 0.25), transparent 30%),
    radial-gradient(circle at top right, rgba(31, 107, 71, 0.18), transparent 26%),
    linear-gradient(180deg, #f8f5ee 0%, #f3efe4 55%, #eef3e7 100%);
  color: var(--text);
}

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

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

.hero,
.section,
.footer,
.strip {
  padding-left: 24px;
  padding-right: 24px;
}

.topbar,
.hero-content,
.section-grid,
.card-grid,
.story-grid,
.contact-layout,
.footer,
.strip p {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero {
  padding-top: 28px;
  padding-bottom: 72px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  z-index: -1;
}

.hero::before {
  width: 380px;
  height: 380px;
  background: rgba(31, 107, 71, 0.12);
  top: -120px;
  right: -120px;
}

.hero::after {
  width: 280px;
  height: 280px;
  background: rgba(213, 181, 109, 0.16);
  left: -80px;
  bottom: 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 68px;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--brand), #2c8b5d);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong,
.brand-text span {
  font-size: 0.95rem;
}

.brand-text span {
  color: var(--muted);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

.button-link,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 22px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button-link,
.primary-button {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 30px rgba(31, 107, 71, 0.22);
}

.button-link:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--brand-deep);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 800;
}

.hero-copy h1,
.section-heading h2 {
  font-family: "Fraunces", serif;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
}

.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  max-width: 12ch;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 60ch;
  margin: 22px 0 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.54)),
    url("https://images.unsplash.com/photo-1512621776951-a57141f2eefd?auto=format&fit=crop&w=900&q=80")
      center/cover;
  min-height: 420px;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.panel-label {
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-deep);
  font-size: 0.75rem;
}

.hero-panel ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--brand-deep);
  font-weight: 600;
  line-height: 1.6;
}

.strip {
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.strip p {
  text-align: center;
  font-weight: 700;
  color: var(--brand-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 14ch;
}

.about-copy {
  display: grid;
  gap: 18px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.info-card,
.story-card,
.contact-form,
.contact-copy {
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.info-card {
  padding: 26px;
}

.card-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.stories {
  padding-top: 40px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 20px;
}

.story-card {
  overflow: hidden;
}

.story-card img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.story-card figcaption {
  padding: 18px 20px 22px;
  color: var(--brand-deep);
  font-weight: 600;
  line-height: 1.6;
}

.story-large img {
  min-height: 440px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 20px;
  align-items: start;
}

.contact-copy {
  padding: 28px;
}

.contact-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-note {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(213, 181, 109, 0.18);
  color: var(--brand-deep);
  line-height: 1.7;
}

.contact-form {
  padding: 28px;
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.contact-form input {
  width: 100%;
  border: 1px solid rgba(25, 53, 39, 0.12);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus {
  border-color: rgba(31, 107, 71, 0.45);
  box-shadow: 0 0 0 4px rgba(31, 107, 71, 0.12);
}

.full-width {
  width: 100%;
  border: 0;
  cursor: pointer;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 700;
}

.form-status.success {
  color: var(--brand);
}

.form-status.error {
  color: #9a3c21;
}

.footer {
  padding-top: 24px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 960px) {
  .hero-content,
  .section-grid,
  .card-grid,
  .story-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 48px;
  }

  .topbar,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section-heading h2,
  .hero-copy h1 {
    max-width: none;
  }

  .story-large img,
  .story-card img,
  .hero-panel {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .footer,
  .strip {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-links {
    gap: 12px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 14vw, 3.7rem);
  }

  .hero-text,
  .about-copy,
  .contact-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .nav-links {
    width: 100%;
  }

  .button-link,
  .primary-button,
  .secondary-button {
    width: 100%;
  }
}
