:root {
  --bg: #f4f1e8;
  --surface: #fbf9f1;
  --ink: #1f2a22;
  --ink-soft: #3a463c;
  --muted: #6a7568;
  --moss: #4a6b48;
  --moss-deep: #2f4a30;
  --sage: #8aa384;
  --sage-soft: #c7d4bf;
  --olive: #7a8b4a;
  --terracotta: #c97a4a;
  --ochre: #d6a45c;
  --line: #dfd8c5;
  --shadow: 0 14px 40px rgba(31, 42, 34, 0.08);
  --shadow-lg: 0 24px 60px rgba(31, 42, 34, 0.14);
  --radius: 18px;
  --radius-lg: 28px;
  --display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 0.4em;
  color: var(--ink);
}

h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

h1 em {
  font-style: italic;
  color: var(--moss);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  text-align: center;
  font-weight: 500;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
}

p {
  margin: 0 0 1em;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: stretch;
  background:
    radial-gradient(ellipse at 85% 5%, rgba(138, 163, 132, 0.28), transparent 55%),
    radial-gradient(ellipse at 5% 95%, rgba(214, 164, 92, 0.18), transparent 55%),
    linear-gradient(180deg, #eef0e1 0%, #f4f1e8 100%);
  overflow: hidden;
}

.hero-content {
  padding: 5rem 3.5rem 5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  position: relative;
  z-index: 2;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 14%;
  right: -120px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 164, 92, 0.35), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

.hero-media {
  position: relative;
  margin: 2.5rem 2.5rem 2.5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 60%, rgba(47, 74, 48, 0.18));
  z-index: 1;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 540px;
}

.hero-media::after {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--ochre);
  opacity: 0.85;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(214, 164, 92, 0.4);
}

.subhead {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--moss-deep);
  margin-bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.subhead::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--moss);
}

.tagline {
  max-width: 520px;
  font-size: 1.18rem;
  color: var(--ink-soft);
  margin: 0.8rem 0 2.6rem;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-start;
}

.buttons a {
  padding: 0.9rem 1.6rem;
  border: 1.5px solid var(--moss-deep);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  background: transparent;
  color: var(--moss-deep);
}

.buttons a:hover {
  background: var(--moss-deep);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(47, 74, 48, 0.22);
}

.buttons a.primary {
  background: var(--moss-deep);
  border-color: var(--moss-deep);
  color: var(--bg);
}

.buttons a.primary:hover {
  background: var(--moss);
  border-color: var(--moss);
}

/* Sections */
.section {
  padding: 6.5rem 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

.section .mt {
  margin-top: 4.5rem;
}

/* Gallery — masonry, preserves natural aspect ratios */
.gallery {
  column-count: 3;
  column-gap: 18px;
  padding: 4rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  background: transparent;
}

.photo {
  display: block;
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  background: var(--surface);
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  break-inside: avoid;
  box-shadow: 0 8px 22px rgba(31, 42, 34, 0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.7s ease;
  opacity: 0;
  transform: translateY(28px);
  font: inherit;
  color: inherit;
  position: relative;
}

.photo.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(31, 42, 34, 0.16);
}

.photo:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 4px;
}

.photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}

.photo:hover img {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .gallery {
    column-count: 2;
    column-gap: 12px;
    padding: 3rem 1rem;
  }
  .photo {
    margin-bottom: 12px;
  }
}

@media (max-width: 540px) {
  .gallery {
    column-count: 1;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 17, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-image {
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.96);
  transition: transform 0.35s ease;
}

.lightbox.is-open .lightbox-image {
  transform: scale(1);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  color: #fbf9f1;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}

.lightbox-close {
  top: 1.4rem;
  right: 1.4rem;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2rem;
  line-height: 1;
  font-family: Georgia, serif;
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.06);
}

.lightbox-prev {
  left: 1.4rem;
}

.lightbox-next {
  right: 1.4rem;
}

@media (max-width: 600px) {
  .lightbox-close {
    top: 0.8rem;
    right: 0.8rem;
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }
  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 1.6rem;
  }
  .lightbox-prev { left: 0.6rem; }
  .lightbox-next { right: 0.6rem; }
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 1.7rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card > * {
  width: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage);
}

.card h3 {
  color: var(--moss-deep);
  margin-bottom: 0.6rem;
}

.price {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--terracotta);
  margin: 0.2rem 0 0.7rem;
  letter-spacing: -0.02em;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Reasons (Why Families Love) — minimal editorial */
.reasons-list {
  list-style: none;
  padding: 0;
  margin: 3.5rem auto 0;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.reasons-list li {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  line-height: 1.4;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  padding: 0 0.5rem;
  position: relative;
}

.reasons-list li + li::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40%;
  background: var(--line);
}

@media (max-width: 800px) {
  .reasons-list {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    margin-top: 2.5rem;
  }
  .reasons-list li + li::before {
    left: 50%;
    top: -1.1rem;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
  }
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.2fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  align-self: center;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 5;
}

.about-text {
  max-width: 560px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.75;
  text-align: center;
}

.about-text p {
  margin: 0 0 1.2em;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.center-text {
  max-width: 720px;
  margin: 1.6rem auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Contact */
.contact {
  background: var(--moss-deep);
  color: var(--bg);
  padding: 6.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 164, 92, 0.18), transparent 70%);
}

.contact h2 {
  font-style: italic;
  color: var(--bg);
}

.contact p {
  color: #d8d6c1;
  font-size: 1.05rem;
  margin: 0.4rem 0;
}

/* Responsive */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    align-items: center;
  }
  .hero-content::before {
    display: none;
  }
  .subhead {
    justify-content: center;
  }
  .buttons {
    justify-content: center;
  }
  .hero-media {
    margin: 0 1.5rem 3rem;
    order: 2;
  }
  .hero-media img {
    min-height: 360px;
  }
  .hero-media::after {
    width: 80px;
    height: 80px;
    top: -25px;
    left: -25px;
  }
}

@media (max-width: 800px) {
  .cards {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 4.5rem 1.25rem;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-photo {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .buttons a {
    padding: 0.78rem 1.2rem;
    font-size: 0.74rem;
  }
  .tagline {
    font-size: 1.05rem;
  }
}
