/* Color palette */
:root {
  --header-height: 76px;
  --cream: #f7f2eb;
  --off-white: #fdfbf6;
  --sand: #e8ddce;
  --tan: #d6c1a6;
  --brown: #4a3728;
  --rich-brown: #2d2219;
  --accent: #c48a4e;
  --accent-soft: #d9a56a;
  --shadow: rgba(45, 34, 25, 0.08);
  --shadow-strong: rgba(45, 34, 25, 0.16);
  --bg-hero: #f7f0e6;
  --bg-photos: #f5ede3;
  --bg-reels: #f1e6d9;
  --bg-about: #fbf7f0;
  --bg-sets: #eee2d4;
  --bg-booking: #f8f2e9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--off-white);
  color: var(--rich-brown);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  scroll-snap-type: y proximity;
}

@keyframes heroGlow {
  0% { transform: translateY(8px) scale(0.98); opacity: 0.34; }
  50% { transform: translateY(0) scale(1); opacity: 0.55; }
  100% { transform: translateY(8px) scale(0.98); opacity: 0.34; }
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", "Inter", serif;
  margin: 0;
  color: var(--rich-brown);
  text-wrap: balance;
}

.ms-madi-regular {
  font-family: "Ms Madi", cursive;
  font-weight: 400;
  font-style: normal;
}

p {
  margin: 0;
}

a {
  color: var(--rich-brown);
  text-decoration: none;
}

.shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--brown);
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  min-height: var(--header-height);
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 18px 20px;
  position: relative;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--brown);
  color: var(--off-white);
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.site-header .brand-mark {
  background: rgba(255, 255, 255, 0.14);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--rich-brown);
}

.brand-role {
  font-size: 0.9rem;
  color: rgba(45, 34, 25, 0.7);
}

.brand-link {
  text-decoration: none;
  color: inherit;
}

.site-header .brand-name {
  color: #fff;
  font-family: "Ms Madi", cursive;
  font-weight: 400;
  letter-spacing: 0;
  font-size: clamp(3rem, 4.5vw, 4rem);
  line-height: 1;
}

.site-header .brand-text {
  display: flex;
  align-items: center;
}

.site-header .brand-role {
  color: rgba(255, 255, 255, 0.8);
}

.site-nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
  align-items: center;
}

.site-nav a {
  font-weight: 600;
  font-size: 1.05rem;
  padding: 8px 0;
  position: relative;
}

.site-header a {
  color: #fff;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.site-nav a:focus-visible,
.footer-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 6px;
}

.cta-inline .button {
  padding: 10px 16px;
}

.site-header .button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid var(--brown);
  color: var(--rich-brown);
  padding: 12px 20px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px var(--shadow);
}

.button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  box-shadow: 0 12px 26px var(--shadow-strong);
}

.button.solid {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-soft) 100%);
  color: var(--off-white);
  border: none;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(45, 34, 25, 0.14);
}

.hero {
  padding: 10px 0 40px;
  display: grid;
  gap: 22px;
  min-height: calc(100vh - var(--header-height));
  align-content: center;
  align-items: center;
  background: radial-gradient(circle at 20% 30%, rgba(196, 138, 78, 0.08), transparent 28%), linear-gradient(135deg, var(--bg-hero) 0%, var(--off-white) 100%);
  border-bottom: 1px solid rgba(45, 34, 25, 0.06);
  scroll-snap-align: start;
  scroll-margin-top: var(--header-height);
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(196, 138, 78, 0.18), transparent 32%), radial-gradient(circle at 78% 60%, rgba(214, 193, 166, 0.25), transparent 36%);
  filter: blur(24px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 720ms ease, transform 780ms ease;
  pointer-events: none;
  z-index: 0;
}

.hero-visual {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -4% -12% -4% 12%;
  background: radial-gradient(circle at 60% 50%, rgba(0, 0, 0, 0.18), transparent 58%);
  filter: blur(14px);
  z-index: 0;
  pointer-events: none;
}

.hero-visual-frame {
  width: 100%;
  max-width: 380px;
  --frame-min-height: clamp(240px, 40vw, 420px);
  --frame-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.hero-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  background: linear-gradient(120deg, rgba(214, 193, 166, 0.5), rgba(247, 242, 235, 0.9));
  color: var(--rich-brown);
}

.visual-fallback .fallback-title {
  font-weight: 800;
  letter-spacing: 0.4px;
}

.visual-fallback .fallback-copy {
  max-width: 520px;
  color: rgba(45, 34, 25, 0.78);
}

.hero-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 0.9fr);
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3vw, 3rem);
  line-height: 1.15;
  margin: 12px 0 12px;
}

.lede {
  font-size: 1.05rem;
  color: rgba(45, 34, 25, 0.8);
  margin-bottom: 18px;
}

.eyebrow {
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
  color: rgba(45, 34, 25, 0.6);
  margin-bottom: 8px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0 18px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.hero-copy,
.hero-visual,
.hero-actions,
.hero-highlights {
  position: relative;
  z-index: 1;
  transition: transform 680ms cubic-bezier(0.16, 1, 0.3, 1), opacity 520ms ease, filter 520ms ease;
}

body.motion-ready .hero-copy,
body.motion-ready .hero-visual,
body.motion-ready .hero-actions,
body.motion-ready .hero-highlights {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(1px);
}

body.is-loaded .hero-copy,
body.is-loaded .hero-visual,
body.is-loaded .hero-actions,
body.is-loaded .hero-highlights {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

body.is-loaded .hero-visual {
  transition-delay: 90ms;
}

body.is-loaded .hero-actions {
  transition-delay: 140ms;
}

body.is-loaded .hero-highlights {
  transition-delay: 190ms;
}

body.is-loaded .hero::after {
  opacity: 1;
  transform: translateY(0);
  animation: heroGlow 16s ease-in-out infinite;
}

.stat {
  padding: 12px 14px;
  border: 1px solid rgba(45, 34, 25, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px var(--shadow);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(45, 34, 25, 0.65);
}

.stat-value {
  display: block;
  font-weight: 700;
  margin-top: 4px;
}

.section {
  padding: 72px 0;
  position: relative;
  scroll-snap-align: start;
  scroll-margin-top: var(--header-height);
}

.section.alt {
  border-block: 1px solid rgba(45, 34, 25, 0.06);
}

.section.photos {
  background: var(--bg-photos);
  border-block: 1px solid rgba(45, 34, 25, 0.05);
}

#reels.section {
  background: var(--bg-reels);
}

#about.section {
  background: var(--bg-about);
  border-block: 1px solid rgba(45, 34, 25, 0.05);
}

#sets.section {
  background: var(--bg-sets);
}

#booking.section {
  background: var(--bg-booking);
  border-top: 1px solid rgba(45, 34, 25, 0.08);
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.reel-card {
  border: 1px solid rgba(45, 34, 25, 0.08);
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(232, 221, 206, 0.35));
  box-shadow: 0 14px 32px var(--shadow);
}

.reel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(45, 34, 25, 0.08);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

.timestamp {
  font-weight: 700;
  color: rgba(45, 34, 25, 0.6);
}

.reel-card h3 {
  margin: 6px 0 6px;
}

.reel-meta {
  color: rgba(45, 34, 25, 0.75);
  margin-bottom: 10px;
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0 12px;
}

.tag {
  padding: 6px 10px;
  background: rgba(196, 138, 78, 0.12);
  color: var(--brown);
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
}

.reel-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.note {
  font-size: 0.95rem;
  color: rgba(45, 34, 25, 0.65);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  justify-items: center;
}

.photo-card {
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(45, 34, 25, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px var(--shadow);
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 340px;
  text-align: center;
}

.image-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(45, 34, 25, 0.04);
  border: 1px solid rgba(45, 34, 25, 0.12);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.12),
    0 3px 8px rgba(0, 0, 0, 0.1);
  min-height: var(--frame-min-height, 180px);
  aspect-ratio: var(--frame-ratio, 4 / 5);
}

.photo-frame img,
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 240ms ease, filter 240ms ease;
}

.image-frame:hover img {
  transform: scale(1.025);
}

.photo-frame {
  --frame-ratio: 4 / 5;
  --frame-min-height: 320px;
}

.photo-frame.wide,
.photo-frame.square {
  --frame-ratio: 4 / 5;
}

.frame-fallback,
.image-frame .visual-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  background: repeating-linear-gradient(
    45deg,
    rgba(232, 221, 206, 0.35),
    rgba(232, 221, 206, 0.35) 12px,
    rgba(253, 251, 246, 0.9) 12px,
    rgba(253, 251, 246, 0.9) 24px
  );
}

.frame-fallback .fallback-title,
.image-frame .visual-fallback .fallback-title {
  font-weight: 800;
  letter-spacing: 0.35px;
}

.frame-fallback .fallback-copy,
.image-frame .visual-fallback .fallback-copy {
  color: rgba(45, 34, 25, 0.75);
}

.image-frame.has-image .frame-fallback,
.image-frame.has-image .visual-fallback {
  display: none;
}

.image-frame.is-missing img {
  opacity: 0;
}

.two-col {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.bullet-grid {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.bullet-grid li {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(45, 34, 25, 0.04);
  border: 1px solid rgba(45, 34, 25, 0.08);
  font-weight: 600;
}

.card-list {
  display: grid;
  gap: 12px;
}

.detail-card {
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(45, 34, 25, 0.08);
  box-shadow: 0 12px 28px var(--shadow);
}

.detail-card h3 {
  margin: 6px 0 8px;
}

.set-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.set-card {
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(45, 34, 25, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(214, 193, 166, 0.25));
  box-shadow: 0 12px 28px var(--shadow);
}

.set-card h3 {
  margin: 6px 0 6px;
}

.set-card ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 6px;
  color: rgba(45, 34, 25, 0.8);
  font-weight: 600;
}

.booking {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0;
}

.booking-card {
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(45, 34, 25, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px var(--shadow);
}

.booking-card ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 18px;
  display: grid;
  gap: 8px;
}

.booking-card li strong {
  color: var(--brown);
}

.calendar-preview {
  padding: 14px;
  border-radius: 12px;
  background: rgba(45, 34, 25, 0.04);
  border: 1px dashed rgba(45, 34, 25, 0.16);
  display: grid;
  gap: 8px;
}

.calendar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: rgba(45, 34, 25, 0.75);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.dot.open { background: var(--accent); }
.dot.limited { background: var(--tan); }
.dot.hold { background: rgba(45, 34, 25, 0.6); }

.pill.soft {
  background: rgba(196, 138, 78, 0.16);
}

.site-footer {
  background: var(--brown);
  color: rgba(255, 255, 255, 0.9);
  padding: 40px 0 30px;
  margin-top: 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.site-footer .brand-mark {
  background: rgba(255, 255, 255, 0.12);
}

.site-footer .brand-name {
  color: #fff;
}

.site-footer .brand-role {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-copy a {
  color: inherit;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.78);
  margin: 6px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .site-header .shell {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brown);
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 6px 0;
  }

  .hero-actions,
  .booking-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: 2;
    justify-content: center;
  }

  .hero-visual-frame {
    max-width: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero-visual,
  .hero-actions,
  .hero-highlights {
    transition: none;
    transform: none;
    opacity: 1;
    filter: none;
  }

  .hero-visual-frame {
    animation: none;
  }

  .hero::after {
    animation: none;
    opacity: 0.4;
    transform: none;
  }
}
