:root {
  --cream: #fff8ef;
  --paper: #ffffff;
  --sage: #8fa98b;
  --sage-dark: #526f50;
  --terracotta: #c9785b;
  --rose: #b95870;
  --ink: #3d342f;
  --muted: #756b64;
  --border: #eadfd3;
  --shadow: 0 18px 50px rgba(61, 52, 47, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; }

a { color: inherit; }

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 16px 7%;
  background: rgba(255, 248, 239, 0.96);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--rose);
  text-decoration: none;
}

.header-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.site-title {
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: 0.01em;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
}

nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 1rem;
}

nav a:hover,
nav a:focus-visible {
  color: var(--terracotta);
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: 4px;
}

.social-links a {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  transition: transform 0.18s ease, color 0.18s ease;
}

.social-links svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--terracotta);
  transform: translateY(-1px);
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 52px;
  align-items: center;
  padding: 74px 7%;
  background: radial-gradient(circle at top right, #f5ded2, transparent 34%), var(--cream);
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.04;
  margin: 0 0 22px;
}

.hero p,
.page-hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem !important;
  color: var(--terracotta) !important;
  font-weight: 700;
}

.buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-block;
  background: var(--sage-dark);
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--sage-dark);
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(82, 111, 80, 0.18);
}

.button.secondary {
  background: transparent;
  color: var(--sage-dark);
  border: 1px solid var(--sage-dark);
}

.hero-card,
.contact-box,
article,
.checklist ul {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-card,
.contact-box,
article {
  padding: 28px;
}

.photo-card {
  padding: 0;
  overflow: hidden;
}

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

.photo-card-text {
  padding: 28px;
}

.photo-card-text h2 {
  margin-top: 0;
}

.section {
  padding: 58px 7%;
}

.section h2 {
  font-size: 2.15rem;
  line-height: 1.1;
  margin-top: 0;
}

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

.cards article h3 {
  margin-top: 0;
}

.cta {
  margin: 40px 7% 70px;
  padding: 46px;
  background: var(--sage);
  color: white;
  border-radius: 32px;
  text-align: center;
}

.cta p { color: #fff8ef; }
.cta .button { background: white; color: var(--sage-dark); border-color: white; }

.page {
  padding-bottom: 40px;
}

.page-hero {
  padding: 70px 7% 30px;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.founder-photo {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: block;
}

.checklist ul {
  padding: 28px 28px 28px 48px;
}

.checklist li + li {
  margin-top: 4px;
}

.form-section {
  padding-top: 38px;
}

.form-section iframe {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

.note a {
  color: var(--sage-dark);
  font-weight: 700;
}

footer {
  padding: 34px 7%;
  color: var(--muted);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-logo {
  width: 82px;
  height: 82px;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
}

.footer-note {
  margin-top: -8px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.footer-links a {
  color: var(--sage-dark);
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--terracotta);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 48px;
  }

  .hero-card {
    max-width: 620px;
  }
}

@media (max-width: 850px) {
  .site-header {
    align-items: center;
    flex-direction: column;
    gap: 12px;
    padding: 14px 5%;
  }

  nav {
    justify-content: center;
    gap: 15px;
  }

  .header-logo {
    width: 54px;
    height: 54px;
  }

  .cards,
  .two-column {
    grid-template-columns: 1fr;
  }

  .section,
  .page-hero,
  .hero {
    padding-left: 6%;
    padding-right: 6%;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.7rem);
  }

  .founder-photo {
    max-width: 320px;
  }
}

@media (max-width: 520px) {
  .site-title {
    font-size: 1.45rem;
  }

  nav a {
    font-size: 0.95rem;
  }

  .social-links {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .photo-card img {
    height: 230px;
  }

  .cta {
    margin-left: 6%;
    margin-right: 6%;
    padding: 34px 24px;
  }
}
