:root {
  --bg: #f6efe6;
  --bg-soft: #efe4d6;
  --surface: rgba(255, 250, 245, 0.7);
  --surface-strong: rgba(255, 250, 245, 0.92);
  --text: #211915;
  --muted: #66554a;
  --line: rgba(55, 35, 24, 0.12);
  --accent: #b55c3b;
  --accent-dark: #7f3720;
  --accent-soft: #efc39c;
  --shadow: 0 24px 60px rgba(78, 44, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(239, 195, 156, 0.7), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(181, 92, 59, 0.2), transparent 18%),
    linear-gradient(180deg, #fbf7f2 0%, var(--bg) 48%, #f2e6da 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -1;
  border-radius: 999px;
  filter: blur(24px);
}

body::before {
  width: 280px;
  height: 280px;
  left: -70px;
  top: 120px;
  background: rgba(181, 92, 59, 0.12);
}

body::after {
  width: 340px;
  height: 340px;
  right: -110px;
  bottom: 100px;
  background: rgba(135, 111, 76, 0.12);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.hero,
.section,
.showcase-panel,
.contact-card {
  backdrop-filter: blur(16px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.94), rgba(243, 230, 216, 0.85)),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 92, 59, 0.22), transparent 70%);
}

.topbar,
.hero-grid,
.intro-grid,
.card-grid,
.showcase-panel,
.mini-stats,
.venture-grid,
.reels-grid,
.booking-panel,
.booking-points {
  display: grid;
  gap: 20px;
}

.topbar {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(127, 55, 32, 0.25);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.brand-mark {
  width: 54px;
  height: 54px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff8f2;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 10px 30px rgba(127, 55, 32, 0.25);
}

.brand h1,
.section-heading h2,
.hero-copy h2,
.showcase-copy h2,
.contact-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
}

.brand h1 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 800;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  margin-top: 40px;
}

.hero-copy h2,
.section-heading h2,
.showcase-copy h2,
.contact-card h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.hero-copy .lead,
.hero-card p,
.intro-grid p,
.info-card p,
.showcase-copy p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tag-row span,
.hero-note {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.82);
  color: var(--muted);
}

.tag-row span {
  padding: 9px 14px;
  font-size: 0.9rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fffaf5;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  box-shadow: 0 12px 24px rgba(127, 55, 32, 0.22);
}

.button:hover {
  transform: translateY(-2px);
}

.button-outline,
.button-soft {
  color: var(--text);
  background: rgba(255, 250, 245, 0.7);
  border-color: rgba(55, 35, 24, 0.12);
  box-shadow: none;
}

.hero-card,
.section,
.showcase-panel,
.contact-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface-strong);
}

.hero-card {
  padding: 28px;
}

.portrait-ring {
  display: grid;
  place-items: center;
  width: 200px;
  aspect-ratio: 1;
  margin: 0 auto 24px;
  border-radius: 50%;
  background:
    conic-gradient(from 180deg, rgba(181, 92, 59, 0.15), rgba(127, 55, 32, 0.65), rgba(239, 195, 156, 0.4));
}

.portrait-photo {
  width: calc(100% - 20px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.profile-meta h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.mini-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.hero-note {
  margin-top: 18px;
  padding: 14px 16px;
  font-size: 0.94rem;
  line-height: 1.6;
}

.hero-note span {
  font-weight: 800;
  color: var(--text);
}

.mini-stats article,
.info-card {
  padding: 18px;
  background: rgba(255, 247, 239, 0.9);
}

.mini-stats span,
.card-index {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mini-stats strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.section {
  padding: 34px;
  margin-top: 24px;
}

.stat-band {
  padding: 22px 26px;
}

.stat-band-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stat-band-grid article {
  padding: 18px 4px;
}

.stat-band-grid span {
  display: block;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 800;
}

.stat-band-grid strong {
  display: block;
  margin-top: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.stat-band-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.venture-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.info-card h3 {
  margin: 14px 0 10px;
  font-size: 1.25rem;
}

.venture-card,
.reel-tile,
.booking-points div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 247, 239, 0.9);
}

.venture-card h3 {
  margin: 0 0 12px;
  font-size: 1.32rem;
}

.venture-card p,
.booking-copy p,
.booking-points span {
  color: var(--muted);
  line-height: 1.75;
}

.showcase-panel {
  align-items: center;
  padding: 30px;
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.swatch {
  min-height: 140px;
  padding: 18px;
  border-radius: 24px;
  color: #fff9f4;
  display: flex;
  align-items: end;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.swatch-1 { background: linear-gradient(135deg, #f0d8bc, #d7b48c); color: #3a2a1f; }
.swatch-2 { background: linear-gradient(135deg, #c67754, #8a452b); }
.swatch-3 { background: linear-gradient(135deg, #e4b86a, #ae7f30); color: #39260a; }
.swatch-4 { background: linear-gradient(135deg, #30221d, #161110); }

.contact-card {
  padding: 34px;
  text-align: center;
}

.visitor-card {
  padding: 28px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.96), rgba(242, 229, 211, 0.92));
}

.visitor-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.visitor-badge {
  display: inline-block;
  margin: 20px auto 10px;
  min-height: 32px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(127, 55, 32, 0.12);
}

.visitor-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.bio-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 248, 240, 0.95), rgba(244, 228, 209, 0.88));
}

.bio-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
  text-align: center;
}

.bio-card p + p {
  margin-top: 6px;
}

.reels-grid {
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-template-areas:
    "tall small1 small2"
    "wide wide wide";
  margin-top: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 32px;
  border: 1px solid var(--line);
  color: #fff9f3;
  text-decoration: none;
  background: #241711;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(20, 12, 9, 0.78) 100%);
}

.gallery-card-large {
  grid-row: span 2;
  min-height: 578px;
}

.gallery-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.gallery-copy span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 242, 230, 0.8);
}

.gallery-copy strong {
  display: block;
  margin-top: 10px;
  font-size: 1.15rem;
  line-height: 1.4;
}

.highlight-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.highlight-item {
  text-align: center;
}

.highlight-item img {
  width: 124px;
  height: 124px;
  object-fit: cover;
  border-radius: 50%;
  padding: 6px;
  border: 1px solid rgba(127, 55, 32, 0.18);
  background: rgba(255, 248, 240, 0.92);
}

.highlight-item span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.reel-tile {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(145deg, rgba(255, 245, 232, 0.98), rgba(236, 212, 184, 0.92));
}

.reel-tile span {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 800;
}

.reel-tile strong {
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1.4;
}

.reel-tile-tall {
  grid-area: tall;
  min-height: 320px;
  background:
    radial-gradient(circle at top left, rgba(228, 184, 106, 0.5), transparent 36%),
    linear-gradient(145deg, #7f3720, #2a1c16);
  color: #fff7f0;
}

.reel-tile-tall span {
  color: rgba(255, 241, 226, 0.82);
}

.reel-tile-wide {
  grid-area: wide;
  min-height: 150px;
}

.booking-panel {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 249, 241, 0.96), rgba(241, 224, 202, 0.92));
}

.booking-copy h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.booking-points {
  grid-template-columns: 1fr;
}

.booking-points div strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
}

.contact-card .button {
  margin-top: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 920px) {
  .topbar,
  .hero-grid,
  .intro-grid,
  .card-grid,
  .showcase-panel,
  .venture-grid,
  .booking-panel,
  .gallery-grid,
  .highlight-strip,
  .stat-band-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    gap: 14px;
  }

  .topbar > a {
    justify-self: start;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .nav-actions {
    justify-content: start;
  }

  .reels-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "tall"
      "small1"
      "small2"
      "wide";
  }

  .gallery-card-large {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 18px, 1180px);
    padding-top: 10px;
  }

  .hero,
  .section,
  .showcase-panel,
  .contact-card,
  .hero-card {
    border-radius: 26px;
  }

  .hero,
  .section,
  .showcase-panel,
  .contact-card {
    padding: 20px;
  }

  .portrait-ring {
    width: 160px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
