:root {
  --bg: #f8f4ee;
  --bg-soft: #fdf9f3;
  --surface: #fffdfa;
  --line: #e6dbce;
  --text: #302922;
  --text-soft: #5f574f;
  --primary: #bb7855;
  --primary-strong: #91593e;
  --accent: #cd8965;
  --radius: 20px;
  --shadow: 0 18px 38px rgba(39, 31, 23, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: "Inter", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 4%, #fff6ee 0%, transparent 35%),
    radial-gradient(circle at 92% 2%, #edf5f2 0%, transparent 32%),
    var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--bg) 82%, white 18%);
  border-bottom: 1px solid rgba(47, 41, 36, 0.08);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: "Baskervville", Georgia, serif;
  text-decoration: none;
  font-size: 1.36rem;
  font-weight: 700;
}

.logo span { color: var(--primary); }

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--text-soft);
  font-weight: 600;
  padding: 0.32rem 0.56rem;
  border-radius: 12px;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--text);
  background: rgba(187, 120, 85, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.93rem;
  padding: 0.78rem 1.12rem;
  cursor: pointer;
  transition: transform .2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 10px 24px rgba(145, 89, 62, .26);
}

.btn-secondary {
  color: var(--text);
  background: #fff;
  border-color: var(--line);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  background: rgba(205, 137, 101, 0.16);
  color: #7a4f36;
  border: 1px solid rgba(205, 137, 101, 0.26);
  border-radius: 999px;
  padding: 0.22rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero { padding: 4rem 0 2.2rem; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: stretch;
}

h1, h2 {
  font-family: "Baskervville", Georgia, serif;
  line-height: 1.08;
}

.hero h1 {
  margin: 0 0 .75rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.hero p {
  color: var(--text-soft);
  margin: 0 0 1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.section { padding: 2rem 0; }

.section h2 {
  margin: 0 0 .45rem;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.section-lead {
  margin: 0 0 1.2rem;
  color: var(--text-soft);
  max-width: 72ch;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 1rem;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.card h3 { margin: .6rem 0 .3rem; }
.card p { color: var(--text-soft); margin: 0 0 .8rem; }
.card ul { margin: 0; padding-left: 1rem; color: var(--text-soft); }

.card-media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}

.photo-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
  min-height: 320px;
}

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

.photo-card video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.photo-card.media-square {
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.photo-card.media-square video,
.photo-card.media-square img {
  min-height: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.cta-band {
  margin-top: 1.2rem;
  border: 1px solid #decec0;
  border-radius: var(--radius);
  background: linear-gradient(140deg, #fff, #f9efe4 48%, #ecf6f2);
  padding: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
}

.email-capture {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: .6rem;
}

.email-capture input {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .8rem 1rem;
  font: inherit;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

.site-footer .container { padding: 1.15rem 0 1.6rem; }

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-soft);
}

.motion-up {
  opacity: 0;
  transform: translateY(12px);
  animation: rise .7s ease forwards;
}

.motion-up:nth-child(2) { animation-delay: .08s; }
.motion-up:nth-child(3) { animation-delay: .16s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .grid-3 { grid-template-columns: 1fr; }

  .email-capture { grid-template-columns: 1fr; }

  .photo-card,
  .photo-card img { min-height: 260px; }
}
