:root {
  --bg: #fff8f9;
  --surface: #ffffff;
  --surface-soft: #fff2f4;
  --text: #1f2937;
  --muted: #5f6b76;
  --line: #eadce0;
  --accent: #ac3b58;
  --accent-soft: #f0aeb5;
  --accent-deep: #7f213d;
  --sage: #a6b8a1;
  --shadow: 0 18px 45px rgba(57, 34, 40, 0.08);
  --shadow-soft: 0 8px 20px rgba(57, 34, 40, 0.06);
  --radius: 24px;
  --radius-small: 16px;
  --max: 1120px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(240, 174, 181, 0.24), transparent 35%),
    radial-gradient(circle at 85% 10%, rgba(166, 184, 161, 0.14), transparent 28%),
    linear-gradient(180deg, #fff8f9 0%, #fffdfd 48%, #fff5f7 100%);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--accent-deep);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 100;
}
.skip-link:focus { top: 1rem; }

.shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 249, 0.82);
  border-bottom: 1px solid rgba(234, 220, 224, 0.85);
}

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

.brand {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--accent);
}

.button,
.button-secondary,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button-secondary:hover,
.chip:hover,
.button:focus-visible,
.button-secondary:focus-visible,
.chip:focus-visible {
  transform: translateY(-1px);
}

.button {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.button-secondary {
  background: var(--surface);
  color: var(--accent-deep);
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(172, 59, 88, 0.14);
  font-weight: 700;
}

.button-secondary.is-sage {
  color: #263228;
  border-color: rgba(166, 184, 161, 0.3);
  background: rgba(166, 184, 161, 0.18);
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1,
.section-head h2,
.gallery-head h1 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.65rem, 6vw, 4.9rem);
  max-width: 12ch;
}

.hero p {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 56ch;
}

.hero-actions,
.stack-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions { margin-top: 1.6rem; }

.meta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.meta-card,
.card,
.cta-panel,
.gallery-card,
.info-card,
.preview-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(234, 220, 224, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.meta-card {
  padding: 1rem 1rem 1.05rem;
}

.meta-card strong,
.kicker {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.meta-card span {
  color: var(--muted);
  font-weight: 600;
}

.hero-figure {
  position: relative;
}

.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 0.95rem 1rem;
  box-shadow: var(--shadow-soft);
  max-width: 16rem;
}

.hero-badge strong {
  display: block;
  margin-bottom: 0.2rem;
}

.section {
  padding: 2rem 0 1rem;
}

.section-head,
.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-head p,
.gallery-head p {
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.7;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  padding: 1.25rem;
}

.card h3 {
  margin: 0.8rem 0 0.65rem;
  font-size: 1.1rem;
}

.card p,
.info-card p,
.cta-panel p,
.preview-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.card-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(240, 174, 181, 0.18);
  color: var(--accent-deep);
  font-weight: 800;
}

.preview-grid,
.info-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.preview-card {
  overflow: hidden;
}

.preview-media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.6rem;
}

.preview-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
}

.preview-copy {
  padding: 1.4rem;
  border-top: 1px solid var(--line);
}

.info-card,
.cta-panel {
  padding: 1.4rem;
}

.cta-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,242,244,0.95) 100%);
}

.inline-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.inline-list strong {
  display: block;
  margin-bottom: 0.18rem;
}

.gallery-shell {
  padding: 2.25rem 0 4rem;
}

.gallery-intro {
  margin: 1.25rem 0 0;
  max-width: 55ch;
  color: var(--muted);
  line-height: 1.75;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.gallery-card {
  overflow: hidden;
}

.gallery-card button {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 1rem 1rem 1.15rem;
}

.gallery-card h3,
.gallery-card p {
  margin: 0;
}

.gallery-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

.gallery-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(166, 184, 161, 0.15);
  color: #3c5440;
  font-size: 0.83rem;
  font-weight: 700;
}

.footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
}

.footer .shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  padding: 1rem;
  background: rgba(20, 18, 20, 0.78);
  backdrop-filter: blur(10px);
}

.lightbox[aria-hidden="false"] {
  display: grid;
  place-items: center;
}

.lightbox-inner {
  width: min(1100px, 100%);
  background: #fff;
  border-radius: 28px;
  padding: 1rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0.2rem 1rem;
}

.lightbox-title { margin: 0; }
.lightbox-subtitle { margin: 0.3rem 0 0; color: var(--muted); }

.icon-button {
  min-width: 2.9rem;
  min-height: 2.9rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 41, 55, 0.12);
  background: #fff;
  color: var(--text);
  cursor: pointer;
}

.lightbox-frame {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.5rem;
  align-items: center;
}

.lightbox-frame img {
  width: 100%;
  max-height: min(74vh, 860px);
  object-fit: contain;
  border-radius: 22px;
  background: #fafafa;
}

.lightbox-nav {
  min-width: 3rem;
  min-height: 3rem;
  border-radius: 999px;
  border: none;
  background: rgba(31, 41, 55, 0.08);
  color: var(--text);
  cursor: pointer;
}

.hide-mobile { display: inline-flex; }
.muted { color: var(--muted); }
.center-note { text-align: center; margin-top: 1rem; color: var(--muted); }

@media (max-width: 960px) {
  .hero-grid,
  .preview-grid,
  .info-grid,
  .gallery-grid,
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .preview-grid,
  .info-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 { max-width: 100%; }
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 1.1rem), var(--max)); }
  .site-header { position: static; }
  .nav, .section-head, .gallery-head, .footer .shell, .lightbox-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links { width: 100%; justify-content: flex-start; }
  .meta-row,
  .gallery-grid,
  .card-grid,
  .preview-media {
    grid-template-columns: 1fr;
  }
  .lightbox-frame {
    grid-template-columns: 1fr;
  }
  .hide-mobile { display: none; }
  .hero { padding-top: 2.2rem; }
  .hero-figure img { aspect-ratio: 4 / 4.8; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}