
:root {
  --sand: #f4ede4;
  --cream: #fbf8f3;
  --dune: #e7d7c4;
  --shell: #fffdfa;
  --clay: #b98a68;
  --sea: #95a8a7;
  --text: #4f4339;
  --text-soft: #7a6b5f;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(88, 68, 48, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(231,215,196,.45), transparent 26%),
    radial-gradient(circle at bottom right, rgba(149,168,167,.14), transparent 28%),
    var(--cream);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.page-shell {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.42) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .16;
}
.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 6vw;
  background-size: cover;
  background-position: center 42%;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(to bottom, rgba(251,248,243,0), var(--cream));
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 28px 30px;
  border-radius: 28px;
  backdrop-filter: blur(10px);
  background: rgba(255, 252, 248, 0.38);
  box-shadow: var(--shadow);
}
.eyebrow, .section-tag {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: var(--text-soft);
}
.hero h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: .98;
  font-weight: 600;
}
.hero h1 {
  font-size: clamp(3.6rem, 8vw, 6.6rem);
  margin: 0;
}
.hero h1 span { font-style: italic; font-weight: 400; }
.hero__lead {
  font-size: 1.08rem;
  max-width: 560px;
  line-height: 1.75;
  margin: 18px 0 0;
}
.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  padding: 64px 0 22px;
  align-items: center;
}
.intro h2, .section-head h2, .download h2 { font-size: clamp(2.35rem, 4.6vw, 4rem); margin: 0 0 16px; }
.intro p { line-height: 1.85; color: var(--text-soft); margin: 0 0 14px; }
.intro__card {
  position: relative;
  background: var(--shell);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.intro__card img {
  width: 100%;
  height: min(72vh, 780px);
  object-fit: cover;
  border-radius: calc(var(--radius) - 10px);
}
.intro__badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 14px 18px;
  background: rgba(255, 252, 248, .9);
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(66,51,38,.12);
}
.intro__badge strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.gallery-section { padding: 54px 0 24px; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.section-note { color: var(--text-soft); }
.gallery-grid {
  column-count: 4;
  column-gap: 18px;
}
.gallery-item {
  break-inside: avoid;
  margin: 0 0 18px;
  border: 0;
  background: transparent;
  width: 100%;
  padding: 0;
  cursor: pointer;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--shell);
  box-shadow: 0 12px 30px rgba(94, 74, 56, 0.08);
}
.gallery-card img {
  width: 100%;
  height: auto;
  transition: transform .5s ease, filter .35s ease;
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.025); filter: saturate(1.03); }
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(34,25,18,.14), transparent 40%);
  opacity: .45;
  pointer-events: none;
}
.download { padding: 46px 0 90px; }
.download__card {
  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(244,237,228,.88));
  border-radius: 30px;
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow);
  text-align: center;
}
.download__card p { max-width: 620px; margin: 0 auto 16px; color: var(--text-soft); line-height: 1.8; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  margin-top: 24px;
  background: rgba(255,255,255,.78);
  color: var(--text);
  box-shadow: 0 10px 28px rgba(70, 54, 39, .12);
}
.btn--secondary {
  background: var(--clay);
  color: white;
  margin-top: 8px;
  box-shadow: 0 14px 28px rgba(108, 73, 48, .18);
}
.footer {
  padding: 0 18px 34px;
  text-align: center;
  color: var(--text-soft);
  font-size: .95rem;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28, 24, 21, .85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 60;
}
.lightbox.is-open { display: flex; }
.lightbox__figure {
  margin: 0;
  max-width: min(86vw, 980px);
  max-height: 88vh;
  text-align: center;
}
.lightbox__figure img {
  max-width: 100%;
  max-height: calc(88vh - 54px);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.lightbox__figure figcaption {
  color: rgba(255,255,255,.85);
  margin-top: 12px;
  font-size: .95rem;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  border: 0;
  background: rgba(255,255,255,.12);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 2rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }
@media (max-width: 980px) {
  .intro { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: start; }
  .gallery-grid { column-count: 3; }
}
@media (max-width: 720px) {
  .hero { min-height: 88svh; padding: 18px; }
  .hero__inner { padding: 22px 20px; }
  .hero__lead { font-size: 1rem; }
  .gallery-grid { column-count: 2; }
}
@media (max-width: 520px) {
  .gallery-grid { column-count: 1; }
  .lightbox__nav { display: none; }
  .lightbox__figure { max-width: 100%; }
}
