﻿:root {
  --ink: #171412;
  --muted: #71675f;
  --paper: #fbf7f0;
  --surface: #fffdf9;
  --line: rgba(55, 37, 24, 0.14);
  --wine: #75152f;
  --wine-dark: #3f0a1a;
  --gold: #bd8e46;
  --olive: #607044;
  --rose: #e8b7a8;
  --shadow: 0 24px 70px rgba(63, 38, 20, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(189, 142, 70, 0.18), transparent 32rem),
    linear-gradient(180deg, #fffaf3 0%, var(--paper) 48%, #f7efe5 100%);
  font-family: "Manrope", system-ui, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(189, 142, 70, 0.72);
  outline-offset: 4px;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 4.5rem);
  background: rgba(251, 247, 240, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.main-nav,
.hero-actions,
.hero-metrics,
.event-panel,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.75rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--wine), var(--gold));
  border-radius: 50%;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.main-nav {
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--wine);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-action {
  padding: 0 1.15rem;
  color: #fff;
  background: var(--wine);
  box-shadow: 0 14px 30px rgba(117, 21, 47, 0.18);
}

.button {
  padding: 0 1.35rem;
}

.button:hover,
.header-action:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--wine), #9b2545);
  box-shadow: 0 18px 38px rgba(117, 21, 47, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
}

.hero,
.experience,
.pairings,
.gallery,
.members,
.event-band {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  min-height: calc(100vh - 4.4rem);
  grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.92fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: 4rem 0 3rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(4rem, 9vw, 8rem);
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 5vw, 4.6rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
}

.hero-copy {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.8;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.9rem 0 2rem;
}

.hero-metrics {
  flex-wrap: wrap;
  gap: 0.85rem;
  padding: 0;
}

.hero-metrics div {
  min-width: 8.5rem;
  padding: 1rem;
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-metrics dt {
  color: var(--wine-dark);
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-visual {
  position: relative;
  min-height: 34rem;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: -2rem -1.5rem 0 -2rem;
  z-index: -1;
  background: radial-gradient(circle at 68% 42%, rgba(254, 248, 241, 0.98) 0 16rem, rgba(254, 248, 241, 0.62) 22rem, rgba(254, 248, 241, 0) 30rem);
  content: "";
}

.hero-logo {
  position: absolute;
  inset: 0.5rem 0 auto auto;
  display: grid;
  width: min(30rem, 82vw);
  aspect-ratio: 1;
  margin: 0;
  place-items: center;
  border-radius: 50%;
  filter: drop-shadow(0 24px 42px rgba(63, 38, 20, 0.18));
}

.hero-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.experience,
.pairings,
.gallery,
.members {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-heading {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.experience-grid,
.pairing-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.pairing-card {
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(63, 38, 20, 0.08);
}

.feature-card {
  padding: 1.35rem;
}

.feature-card p,
.pairing-card p,
.event-band p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-icon {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  margin-bottom: 1.2rem;
  place-items: center;
  color: #fff;
  background: var(--wine);
  border-radius: 50%;
  font-weight: 900;
}

.event-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3.2rem);
  background: linear-gradient(135deg, var(--wine-dark), var(--wine));
  border-radius: var(--radius);
  color: #fff;
  box-shadow: var(--shadow);
}

.event-band .eyebrow,
.event-band p {
  color: #f4d9b4;
}

.event-panel {
  gap: 0.75rem;
  flex-wrap: wrap;
}

.event-panel div {
  min-width: 8.4rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.event-panel span {
  display: block;
  margin-bottom: 0.3rem;
  color: #f4d9b4;
  font-size: 0.78rem;
}

.event-panel strong {
  font-size: 1.1rem;
}

.pairing-card {
  overflow: hidden;
}

.pairing-card h3,
.pairing-card p {
  padding: 0 1.15rem;
}

.pairing-card p {
  padding-bottom: 1.15rem;
}

.food-visual {
  min-height: 13rem;
  margin-bottom: 1.15rem;
}

.cheese-board {
  background:
    radial-gradient(circle at 32% 42%, #f3d27c 0 2.2rem, transparent 2.25rem),
    radial-gradient(circle at 58% 55%, #9a263d 0 0.75rem, transparent 0.8rem),
    radial-gradient(circle at 66% 42%, #9a263d 0 0.75rem, transparent 0.8rem),
    radial-gradient(circle at 48% 38%, #7d1f33 0 0.65rem, transparent 0.7rem),
    linear-gradient(135deg, #d09a6c, #7d4f36);
}

.pasta-plate {
  background:
    radial-gradient(circle at 50% 52%, #f3d89c 0 4.2rem, transparent 4.25rem),
    radial-gradient(circle at 50% 52%, #bf4933 0 2.5rem, transparent 2.55rem),
    linear-gradient(135deg, #f7eee2, #cfb08f);
}

.seafood-plate {
  background:
    radial-gradient(circle at 52% 50%, #f6f2e8 0 4.7rem, transparent 4.75rem),
    radial-gradient(ellipse at 52% 50%, #df846b 0 2.1rem, transparent 2.15rem),
    linear-gradient(135deg, #b6d1ca, #486e73);
}

.gallery-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
}

.media-tile {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.15rem;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, transparent, rgba(23, 20, 18, 0.72)),
    radial-gradient(circle at 36% 32%, rgba(255, 255, 255, 0.42), transparent 16%),
    linear-gradient(135deg, #6d2032, #c18b47 52%, #263b34);
  box-shadow: var(--shadow);
}

.media-tile.large {
  grid-row: span 2;
  min-height: 31rem;
}

.photo-tile {
  position: relative;
  background: #171412;
}

.photo-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 20, 18, 0.06), rgba(23, 20, 18, 0.74));
  content: "";
}

.photo-tile span,
.photo-tile strong {
  position: relative;
  z-index: 1;
}

.media-tile.video {
  position: relative;
}

.media-tile.video::before {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "â–¶";
}

.media-tile span {
  opacity: 0.78;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.media-tile strong {
  margin-top: 0.35rem;
  font-size: 1.35rem;
}

.members-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.members-list span {
  padding: 0.95rem 1rem;
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.site-footer {
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: 2rem clamp(1rem, 4vw, 4.5rem);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-bottom: 0;
}

.section-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }

  .hero-visual {
    min-height: 34rem;
  }

  .hero-logo {
    right: 50%;
    transform: translateX(50%);
  }

  .experience-grid,
  .pairing-grid,
  .gallery-grid,
  .members-list,
  .event-band {
    grid-template-columns: 1fr 1fr;
  }

  .event-band {
    align-items: start;
  }

  .media-tile.large {
    grid-row: auto;
    min-height: 18rem;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
  }

  .brand {
    max-width: 13rem;
  }

  .header-action {
    min-height: 2.45rem;
    padding: 0 0.85rem;
    font-size: 0.82rem;
  }

  .hero,
  .experience,
  .pairings,
  .gallery,
  .members,
  .event-band {
    width: min(100% - 1rem, 1180px);
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero-visual {
    min-height: 29rem;
  }

  .hero-logo {
    width: min(24rem, 96vw);
  }

  .experience-grid,
  .pairing-grid,
  .gallery-grid,
  .members-list,
  .event-band {
    grid-template-columns: 1fr;
  }

  .members-list span,
  .feature-card,
  .event-panel div {
    min-width: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}


.video-carousel {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 clamp(3.5rem, 7vw, 5.5rem);
}

.video-carousel-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 249, 0.56);
  border-radius: var(--radius);
  background: #171412;
  box-shadow: 0 30px 90px rgba(63, 38, 20, 0.2);
}

.video-carousel-shell::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(23, 20, 18, 0.82), rgba(23, 20, 18, 0.2) 42%, rgba(23, 20, 18, 0.58));
  content: "";
  pointer-events: none;
}

.video-copy {
  position: absolute;
  top: clamp(1.25rem, 3vw, 2.5rem);
  left: clamp(1.25rem, 4vw, 3rem);
  z-index: 2;
  max-width: 34rem;
  color: #fff;
}

.video-copy .eyebrow {
  color: #f4d9b4;
}

.video-copy h2 {
  max-width: 10ch;
  font-size: clamp(2.2rem, 6vw, 5rem);
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}

.video-frame {
  aspect-ratio: 21 / 8;
  min-height: 22rem;
}

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

@media (max-width: 680px) {
  .video-carousel {
    width: min(100% - 1rem, 1180px);
  }

  .video-frame {
    aspect-ratio: 4 / 5;
    min-height: 24rem;
  }

  .video-copy {
    right: 1rem;
    max-width: 18rem;
  }
}
