:root {
  --bg: #120d0b;
  --bg-soft: #1d1511;
  --surface: #fff8ec;
  --surface-muted: #f4e7d2;
  --ink: #fff8ec;
  --ink-dark: #1c130f;
  --muted: #cdbba1;
  --gold: #f0bd6c;
  --gold-deep: #b9772f;
  --wine: #8e1d2a;
  --wine-bright: #bd273b;
  --shadow: 0 24px 70px rgba(0, 0, 0, .36);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1180px;
  --header-h: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(189, 39, 59, .34), transparent 34rem),
    radial-gradient(circle at 88% 12%, rgba(240, 189, 108, .16), transparent 28rem),
    linear-gradient(145deg, #100b09 0%, #1c1110 46%, #090706 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: .8rem;
  z-index: 1000;
  transform: translateY(-160%);
  padding: .75rem 1rem;
  border-radius: 999px;
  color: var(--ink-dark);
  background: var(--gold);
  font-weight: 800;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-h);
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  color: var(--ink);
  background: rgba(18, 13, 11, .72);
  border-bottom: 1px solid rgba(255, 248, 236, .1);
  backdrop-filter: blur(18px);
  transition: background .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  background: rgba(18, 13, 11, .94);
  box-shadow: 0 14px 45px rgba(0, 0, 0, .22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .82rem;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(240, 189, 108, .65);
  border-radius: 50%;
  color: var(--gold);
  background: linear-gradient(145deg, rgba(240, 189, 108, .15), rgba(142, 29, 42, .18));
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  letter-spacing: -.04em;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong,
.footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  letter-spacing: .02em;
}

.brand-text small {
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.site-nav a {
  padding: .72rem 1rem;
  border-radius: 999px;
  color: rgba(255, 248, 236, .8);
  font-weight: 750;
  letter-spacing: .01em;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 248, 236, .12);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 248, 236, .16);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 248, 236, .08);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section-pad {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.hero {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: .96;
  letter-spacing: -.045em;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
}

h3 {
  margin-bottom: .4rem;
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  line-height: 1.15;
}

.lead {
  max-width: 62ch;
  color: rgba(255, 248, 236, .77);
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
}

.hero-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.center-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .86rem 1.28rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

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

.button.primary {
  color: #1b110c;
  background: linear-gradient(135deg, #ffe3a8, var(--gold) 58%, #d9903e);
  box-shadow: 0 16px 34px rgba(240, 189, 108, .18);
}

.button.ghost {
  color: var(--ink);
  border-color: rgba(255, 248, 236, .22);
  background: rgba(255, 248, 236, .06);
}

.hero-media {
  position: relative;
  min-height: 600px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 13% -4% 8% 14%;
  border: 1px solid rgba(240, 189, 108, .32);
  border-radius: 46% 54% 48% 52%;
  background: radial-gradient(circle, rgba(240, 189, 108, .12), transparent 62%);
  transform: rotate(-12deg);
}

.hero-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 236, .16);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.hero-card:hover img {
  transform: scale(1.04);
}

.hero-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: .75rem .9rem;
  border: 1px solid rgba(255, 248, 236, .18);
  border-radius: 999px;
  color: #fff;
  background: rgba(18, 13, 11, .66);
  backdrop-filter: blur(12px);
  font-weight: 900;
  text-align: center;
}

.hero-card-main {
  inset: 8% 7% 3% 11%;
}

.hero-card-small {
  width: min(48%, 260px);
  height: 250px;
  z-index: 2;
}

.hero-card-small.top {
  top: 0;
  left: 0;
}

.hero-card-small.bottom {
  right: 0;
  bottom: 1%;
}

.intro-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  margin-top: -1rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(255, 248, 236, .14);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 248, 236, .1), rgba(255, 248, 236, .04));
  box-shadow: var(--shadow);
}

.intro-panel p:last-child {
  color: rgba(255, 248, 236, .76);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

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

.feature-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 236, .12);
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.feature-card:nth-child(even) {
  margin-top: 2.5rem;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  transition: transform .6s ease;
}

.feature-card:hover img {
  transform: scale(1.045);
}

.feature-card::after,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 52%;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, .76), transparent);
}

.feature-card div,
.gallery-copy {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
}

.feature-card span,
.gallery-copy span,
.card-kicker {
  display: inline-flex;
  margin-bottom: .5rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.feature-card h3,
.gallery-copy h3 {
  margin: 0;
  color: #fff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .28);
}

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

.story-item {
  padding: clamp(1.3rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 248, 236, .12);
  border-radius: var(--radius-md);
  background: rgba(255, 248, 236, .06);
}

.story-item strong {
  display: block;
  margin-bottom: .8rem;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.story-item span {
  color: rgba(255, 248, 236, .78);
  font-weight: 800;
}

.page-hero.compact {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.page-hero h1 {
  max-width: 13ch;
}

.gallery-section {
  padding-top: 1rem;
}

.gallery-top {
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  align-items: end;
  margin-bottom: 2rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .55rem;
}

.filter-button {
  padding: .7rem 1rem;
  border: 1px solid rgba(255, 248, 236, .16);
  border-radius: 999px;
  color: rgba(255, 248, 236, .8);
  background: rgba(255, 248, 236, .06);
  cursor: pointer;
  font-weight: 850;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.active {
  color: #1b110c;
  background: var(--gold);
  transform: translateY(-1px);
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1rem;
}

.gallery-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 236, .13);
  border-radius: var(--radius-md);
  background: rgba(255, 248, 236, .06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .22);
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.tall {
  grid-row: span 2;
  min-height: 620px;
}

.gallery-card[hidden] {
  display: none;
}

.image-button {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
  transition: transform .6s ease, filter .6s ease;
}

.gallery-card:hover .image-button img,
.image-button:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.09) contrast(1.05);
}

.image-button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -7px;
}

.lightbox {
  width: min(1080px, calc(100% - 1.5rem));
  max-height: min(90vh, 900px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 236, .22);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: #120d0b;
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(5px);
}

.lightbox img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #0a0706;
}

.lightbox-copy {
  padding: 1.2rem 1.4rem 1.4rem;
}

.lightbox-copy h2 {
  margin-bottom: .4rem;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.lightbox-copy p {
  margin: 0;
  color: rgba(255, 248, 236, .72);
}

.lightbox-close {
  position: absolute;
  top: .9rem;
  right: .9rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 248, 236, .2);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(18, 13, 11, .76);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.contact-hero {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 420px);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
}

.contact-copy h1 {
  max-width: 12ch;
}

.contact-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(255, 248, 236, .16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(18, 13, 11, .78), rgba(18, 13, 11, .78)),
    url("../images/food-09.jpg") center / cover;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-bottom: .8rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  overflow-wrap: anywhere;
}

.contact-card p {
  color: rgba(255, 248, 236, .76);
}

.contact-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 900;
}

.contact-showcase {
  padding-top: 0;
}

.contact-gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.contact-gallery img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border: 1px solid rgba(255, 248, 236, .13);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
}

.contact-gallery img:nth-child(2) {
  margin-top: 3rem;
}

.site-footer {
  padding: 1.4rem clamp(1rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(255, 248, 236, .12);
  color: rgba(255, 248, 236, .78);
  background: rgba(8, 6, 5, .72);
}

.footer-inner {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  color: var(--ink);
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .5rem;
  margin: 0;
  font-size: .95rem;
}

.designer-lockup {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--ink);
  font-weight: 900;
}

.designer-lockup img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid rgba(255, 248, 236, .24);
  background: #120d0b;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s ease;
}

@media (max-width: 980px) {
  .hero,
  .contact-hero,
  .intro-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-media {
    min-height: 560px;
  }

  .cards-grid,
  .masonry-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-bar {
    justify-content: flex-start;
  }

  .contact-gallery {
    grid-template-columns: 1fr;
  }

  .contact-gallery img,
  .contact-gallery img:nth-child(2) {
    height: 360px;
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 74px;
  }

  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + .6rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: .35rem;
    padding: .75rem;
    border: 1px solid rgba(255, 248, 236, .14);
    border-radius: 24px;
    background: rgba(18, 13, 11, .96);
    box-shadow: var(--shadow);
    transform-origin: top center;
    transform: scale(.98) translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav-open .site-nav {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: .9rem 1rem;
  }

  .section-pad {
    width: min(100% - 1.1rem, var(--max));
    padding-block: 3.4rem;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-media {
    min-height: 460px;
  }

  .hero-card-main {
    inset: 7% 0 4% 6%;
  }

  .hero-card-small {
    width: 44%;
    height: 190px;
  }

  .cards-grid,
  .masonry-gallery,
  .story-strip {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .gallery-card,
  .gallery-card.tall {
    min-height: 430px;
  }

  .feature-card:nth-child(even) {
    margin-top: 0;
  }

  .gallery-card.wide {
    grid-column: auto;
  }

  .gallery-card.tall {
    grid-row: auto;
  }

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

  .footer-credit {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .brand-text small {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 4.6rem);
  }

  .hero-media {
    min-height: 390px;
  }

  .hero-card-small {
    height: 160px;
  }

  .hero-card figcaption {
    display: none;
  }

  .button {
    width: 100%;
  }

  .filter-button {
    flex: 1 1 auto;
  }

  .feature-card,
  .gallery-card,
  .gallery-card.tall {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
