:root {
  --cream: #f7f2ea;
  --paper: #fffdf9;
  --rose: #c9928d;
  --sage: #7e8f7b;
  --forest: #31473a;
  --ink: #302b28;
  --muted: #6f655f;
  --line: #ded4c9;
  --shadow: 0 18px 45px rgba(66, 49, 38, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Nunito", system-ui, sans-serif;
  line-height: 1.7;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(22px, 5vw, 72px);
  background: rgba(255, 253, 249, 0.93);
  border-bottom: 1px solid rgba(222, 212, 201, 0.8);
  backdrop-filter: blur(12px);
}
.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 700;
}
nav { display: flex; gap: 22px; font-size: 0.95rem; }
nav a:hover { color: var(--rose); }

.hero {
  min-height: 82vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(35,32,29,.76) 0%, rgba(35,32,29,.45) 48%, rgba(35,32,29,.08) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 88px clamp(24px, 8vw, 120px);
  color: white;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
}
.hero .eyebrow { color: #f6d6d2; }
h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
  margin-top: 0;
}
h1 { font-size: clamp(3.2rem, 8vw, 6.7rem); margin-bottom: 22px; }
h2 { font-size: clamp(2.45rem, 5vw, 4.6rem); margin-bottom: 22px; }
h3 { font-size: 1.7rem; margin-bottom: 8px; }
.hero-copy { max-width: 650px; font-size: 1.15rem; margin-bottom: 30px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  cursor: pointer;
}
.button.primary { background: var(--rose); color: white; }
.button.primary:hover { filter: brightness(.94); }

.band {
  padding: 30px clamp(24px, 10vw, 160px);
  text-align: center;
  background: var(--forest);
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.section {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
  padding: 96px 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.65fr .8fr;
  gap: 70px;
  align-items: start;
}
.story-grid p { color: var(--muted); }
blockquote {
  margin: 38px 0 0;
  padding-left: 24px;
  border-left: 4px solid var(--rose);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  line-height: 1.35;
}
.story-card {
  position: sticky;
  top: 110px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: var(--shadow);
}
.story-card ul { padding-left: 20px; margin-bottom: 0; }
.story-card li { margin: 10px 0; }

.vision { border-top: 1px solid var(--line); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading p { color: var(--muted); }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}
.gallery-card img {
  height: 390px;
  object-fit: cover;
}
.gallery-card div { padding: 24px; }
.gallery-card p { color: var(--muted); margin-bottom: 0; }

.journey { border-top: 1px solid var(--line); }
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pillars article {
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
}
.pillars span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--rose);
  font-weight: 800;
}
.pillars p { color: var(--muted); }

.quote-section {
  min-height: 440px;
  display: grid;
  place-items: center;
  padding: 70px 24px;
  background:
    linear-gradient(rgba(49,71,58,.85), rgba(49,71,58,.85)),
    url("assets/backyard.jpg") center/cover;
  color: white;
  text-align: center;
}
.quote-section p {
  max-width: 900px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.2;
}

.signup {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
}
.signup p { color: var(--muted); }
form {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--cream);
}
label { display: block; font-weight: 800; margin-bottom: 8px; }
.form-row { display: flex; gap: 10px; }
input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
}
.form-note { margin-bottom: 0; font-size: .9rem; }

footer {
  padding: 42px clamp(24px, 5vw, 72px);
  background: #28231f;
  color: #eee6dc;
  display: grid;
  gap: 18px;
}
footer strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
}
footer p { margin: 4px 0; }
.disclaimer { max-width: 900px; color: #cfc4b8; font-size: .9rem; }

@media (max-width: 900px) {
  nav { display: none; }
  .story-grid, .signup, .contact-section { grid-template-columns: 1fr; }
  .story-card { position: static; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
  .hero { min-height: 75vh; }
  .hero-content { padding-top: 78px; }
  .gallery, .pillars { grid-template-columns: 1fr; }
  .gallery-card img { height: 300px; }
  .form-row { flex-direction: column; }
  .site-header { padding: 15px 20px; }
}


.contact-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.contact-section p { color: var(--muted); }
.contact-card {
  padding: 32px;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-label {
  margin: 0 0 8px;
  font-weight: 800;
  color: var(--forest) !important;
}
.contact-email {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--rose);
  overflow-wrap: anywhere;
}
.contact-email:hover { text-decoration: underline; }
.contact-note { margin: 16px 0 0; font-size: .95rem; }
footer a:hover { color: #f6d6d2; text-decoration: underline; }


/* MailerLite form theme overrides */
.mailerlite-wrap {
  width: 100%;
}
#mlb2-43330825.ml-form-embedContainer {
  margin: 0 !important;
}
#mlb2-43330825.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
  max-width: none !important;
  width: 100% !important;
  background: var(--cream) !important;
  border: 1px solid var(--line) !important;
  border-radius: 0 !important;
  box-shadow: var(--shadow);
}
#mlb2-43330825.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
#mlb2-43330825.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
  padding: 30px !important;
}
#mlb2-43330825.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,
#mlb2-43330825.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
}
#mlb2-43330825.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
#mlb2-43330825.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  font-family: "Nunito", system-ui, sans-serif !important;
  color: var(--muted) !important;
  line-height: 1.7 !important;
}
#mlb2-43330825.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  border-radius: 999px !important;
  padding: 14px 16px !important;
  font-family: "Nunito", system-ui, sans-serif !important;
}
#mlb2-43330825.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
  background-color: var(--rose) !important;
  border-radius: 999px !important;
  padding: 14px 18px !important;
  font-family: "Nunito", system-ui, sans-serif !important;
}
#mlb2-43330825.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
  background-color: #b77f7a !important;
}
