:root {
  --bg: #efe4ce;
  --paper: #fff7ec;
  --ink: #1c1208;
  --muted: #6b5644;
  --saffron: #c24a0a;
  --gold: #b8892a;
  --line: rgba(28, 18, 8, 0.12);
  --max: 1180px;
  --sans: "Outfit", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 8% -8%, rgba(194, 74, 10, 0.13), transparent 55%),
    radial-gradient(700px 380px at 100% 0%, rgba(184, 137, 42, 0.16), transparent 50%),
    var(--bg);
}
img, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

.skip {
  position: absolute;
  left: 1rem;
  top: -40px;
  background: var(--ink);
  color: var(--paper);
  padding: 0.5rem 0.8rem;
  z-index: 40;
}
.skip:focus { top: 0.6rem; }

.wrap { width: min(var(--max), calc(100% - 2.4rem)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(239, 228, 206, 0.92);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}
.logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}
.mark {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 0 3px rgba(194, 74, 10, 0.18);
  vertical-align: 1px;
}
.nav-links { display: flex; gap: 0.15rem; margin-left: auto; }
.nav-links a, .nav-cta {
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
}
.nav-links a[aria-current="page"], .nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
}
.nav-toggle { display: none; width: 42px; height: 42px; }
.nav-toggle span { display: block; height: 1.5px; margin: 7px 8px; background: var(--ink); }

.hero { padding: 3.2rem 0 2.4rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.kicker {
  color: var(--saffron);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 600;
  margin: 0 0 0.85rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(4rem, 11vw, 8rem);
  line-height: 0.82;
  letter-spacing: -0.045em;
  margin: 0 0 1.15rem;
  font-weight: 600;
}
.lede { max-width: 38rem; color: var(--muted); margin: 0 0 1.6rem; }
.actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.btn {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
}
.btn-fill { background: var(--saffron); color: #fff; }
.btn-fill:hover { background: #a63d08; }
.btn-line { border: 1px solid var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--paper); }
.btn-ghost { color: var(--saffron); }
.btn-ghost:hover { text-decoration: underline; }

.mosaic {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-template-rows: 168px 118px 148px;
  gap: 8px;
}
.mosaic a { overflow: hidden; border-radius: 6px; }
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mosaic a:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.mosaic a:nth-child(2) { grid-column: 2 / 4; }
.mosaic a:nth-child(6) { grid-column: 2 / 4; }

.ornament {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--gold);
  margin: 2.4rem 0 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.ornament::before, .ornament::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: 2rem;
}
.stat {
  padding: 1.05rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat span { color: var(--muted); font-size: 0.88rem; }

.section { padding: 2.6rem 0 3.4rem; }
.display {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.4vw, 3.8rem);
  margin: 0 0 0.45rem;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.featured {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}
.feat {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.feat img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.feat div { padding: 0.9rem 1rem 1.1rem; }
.feat small { color: var(--saffron); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.feat h3 { margin: 0.2rem 0 0; font-size: 1rem; font-weight: 600; line-height: 1.35; }
.feat:hover { border-color: var(--saffron); }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.95rem; }
.card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 1.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(28, 18, 8, 0.72));
  pointer-events: none;
}
.card.has-photo { color: #fff7ec; border: 0; }
.card.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card small, .card h3, .card p { position: relative; z-index: 1; }
.card h3 { margin: 0.25rem 0 0.35rem; font-family: var(--serif); font-size: 2rem; }
.card p { margin: 0; color: inherit; opacity: 0.88; }
.card:not(.has-photo) p { color: var(--muted); }
.card:hover { transform: translateY(-2px); }

.list { display: grid; gap: 0.7rem; }
.row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.7rem 0.9rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.row img, .row .ph {
  width: 88px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  background: #e8d8be;
}
.row:hover { border-color: var(--saffron); }
.row small { color: var(--saffron); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.row h3 { margin: 0.15rem 0 0; font-size: 1.05rem; font-weight: 600; }
.row > span { color: var(--gold); font-size: 1.2rem; }

.masonry { columns: 4 180px; column-gap: 0.8rem; }
.masonry a, .masonry img {
  width: 100%;
  margin: 0 0 0.8rem;
  border-radius: 14px;
  break-inside: avoid;
}
.masonry img { background: #ddd; }

.thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 0.85rem;
}
.thumb {
  display: grid;
  gap: 0.5rem;
  padding: 0.7rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.thumb span:last-child { font-size: 0.82rem; color: var(--muted); }
.cover {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: #ead8bf;
}
.cover .ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--saffron);
}
.cover img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb:hover { border-color: var(--saffron); }

.play {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(194, 74, 10, 0.45), transparent 40%),
    #1c1208;
  color: #fff7ec;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
}
.play::before {
  content: "▶";
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255, 247, 236, 0.4);
  border-radius: 50%;
}
.play.is-on::before { display: none; }
.play iframe { width: 100%; height: 100%; border: 0; position: absolute; inset: 0; }
.grid-vid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 0.9rem; }

.shots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; margin-top: 1.5rem; }
.shots:has(:only-child) { grid-template-columns: 1fr; max-width: 36rem; }
.shots img { width: 100%; border-radius: 16px; }

.mantra {
  margin-top: 2.6rem;
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--saffron);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.45;
  text-align: center;
}
.tiny {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-footer {
  padding: 1.6rem 0 2.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}
.foot { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.foot a:hover { color: var(--saffron); }

.back { color: var(--saffron); font-size: 0.92rem; }
.mobile { display: none; }

@media (max-width: 980px) {
  .hero-grid, .featured, .stats { grid-template-columns: 1fr 1fr; }
  .mosaic { grid-template-rows: 140px 110px 130px; }
}
@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  body.is-open .mobile {
    display: grid;
    position: fixed;
    inset: 72px 0 0;
    background: var(--bg);
    padding: 1.2rem;
    gap: 0.35rem;
    z-index: 19;
  }
  .mobile a { font-family: var(--serif); font-size: 2.1rem; }
  .hero-grid, .featured, .stats, .cards, .shots, .row { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 140px 120px 140px; }
  .mosaic a:nth-child(1), .mosaic a:nth-child(2), .mosaic a:nth-child(6) { grid-column: auto; grid-row: auto; }
  .hero { padding-top: 2rem; }
}
