@font-face{
  font-family:'Dahlia';
  src:url('../fonts/Dahlia-Regular.woff2') format('woff2'),
      url('../fonts/Dahlia-Regular.woff') format('woff');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

:root{
  --black:#455243;
  --charcoal:#37402f;
  --cream:#f4ede1;
  --cream-dim:#cfc6b5;
  --gold:var(--cream);
  --gold-dim:var(--cream-dim);
  --line:#54604a;
  --maxw:1180px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--black);
  color:var(--cream);
  font-family:'Courier New',Courier,monospace;
  font-weight:400;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:'Dahlia','Cormorant Garamond',serif;
  font-weight:500;
  letter-spacing:.02em;
  line-height:1.15;
  margin:0 0 .5em;
  color:var(--cream);
}
h1{font-size:clamp(1.8rem,7vw,4.6rem);font-weight:500;}
h2{font-size:clamp(1.9rem,3.6vw,2.8rem);}
h3{font-size:clamp(1.3rem,2vw,1.6rem);}
p{margin:0 0 1.1em;color:var(--cream-dim);}
@media(max-width:700px){
  p{font-size:.9rem;}
}
a{color:var(--gold);text-decoration:none;}
a:hover{color:var(--cream);}
img{max-width:100%;display:block;}
.eyebrow{
  font-family:'Courier New',Courier,monospace;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:.72rem;
  color:var(--gold);
  margin-bottom:.9em;
}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 28px;}
.btn{
  display:inline-block;
  background:transparent;
  border:1px solid var(--gold);
  color:var(--gold);
  padding:13px 30px;
  font-family:'Courier New',Courier,monospace;
  font-size:.78rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  cursor:pointer;
  transition:.25s;
}
.btn:hover{background:var(--gold);color:var(--black);}
.btn.solid{background:var(--gold);color:var(--black);}
.btn.solid:hover{background:var(--cream);border-color:var(--cream);}

/* Header */
header.site{
  position:sticky;top:0;z-index:100;
  background:var(--black);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  max-width:var(--maxw);margin:0 auto;padding:16px 28px;
  display:flex;align-items:center;justify-content:space-between;
}
.brand img{height:34px;width:auto;}
.brand{display:flex;align-items:center;gap:12px;font-family:'Dahlia','Cormorant Garamond',serif;font-size:1.4rem;letter-spacing:.06em;}
nav.links{display:flex;gap:26px;align-items:center;}
nav.links a{
  font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;color:var(--cream-dim);
}
nav.links a:hover,nav.links a.active{color:var(--gold);}
.nav-toggle{display:none;background:none;border:0;color:var(--cream);font-size:1.6rem;cursor:pointer;}

@media(max-width:920px){
  nav.links{
    position:fixed;top:0;right:0;bottom:0;left:0;background:var(--black);
    flex-direction:column;justify-content:center;align-items:center;
    padding:80px 28px 60px;gap:26px;
    opacity:0;visibility:hidden;transform:translateY(-12px);
    transition:opacity .25s,visibility .25s,transform .25s;
  }
  nav.links a{font-size:.9rem;}
  nav.links.open{opacity:1;visibility:visible;transform:translateY(0);}
  .nav-toggle{display:block;position:relative;z-index:210;}
}

/* Hero */
.hero{
  position:relative;min-height:78vh;display:flex;align-items:flex-end;
  background-size:cover;background-position:center;
}
.hero::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(13,12,11,.15) 0%,rgba(13,12,11,.85) 90%);
}
.hero .hero-content{position:relative;z-index:2;padding-top:60px;padding-bottom:60px;max-width:760px;}
.hero.short{min-height:46vh;}
.hero-video{
  position:absolute;top:50%;left:50%;width:100vw;height:56.25vw;
  min-width:138.67vh;min-height:78vh;border:0;z-index:0;pointer-events:none;
  transform:translate(-50%,-50%);
}
.hero-eyebrow-mobile{display:none;}
.hero-buttons{margin-top:20px;display:flex;gap:14px;flex-wrap:wrap;}
.hero-subtitle{font-size:1.05rem;}
@media(max-width:700px){
  .hero h1{font-size:1.6rem;}
  body.home .hero{flex-direction:column;align-items:stretch;min-height:0;padding-top:0;padding-bottom:0;}
  body.home .hero::after{content:none;}
  body.home .hero-eyebrow-mobile{display:block;order:1;padding-top:28px;font-size:.62rem;letter-spacing:.1em;white-space:nowrap;}
  body.home .hero-eyebrow-desktop{display:none;}
  body.home .hero-video{
    order:2;position:static;top:auto;left:auto;transform:none;
    width:100%;height:auto;aspect-ratio:16/9;min-width:0;min-height:0;margin:20px 0;
  }
  body.home .hero .hero-content{order:3;padding-top:0;padding-bottom:20px;max-width:none;}
  body.home .hero-content,
  body.home .split>div{text-align:center;}
  body.home .hero-content p,
  body.home .split p{margin-left:auto;margin-right:auto;}
  body.home .hero-buttons{justify-content:center;}
  body.home .hero-buttons .btn{padding:12px 14px;font-size:.66rem;letter-spacing:.08em;}
  body.home .hero-subtitle{font-size:.9rem;}
  body.home .hero h1{font-size:2.1rem;}
  body.home .hero+section{padding-top:20px;}
  body.our-story .our-story-text{text-align:center;}
  body.our-story .our-story-text p{margin-left:auto;margin-right:auto;font-size:.9rem;}
  body.our-story .our-story-hero-head{padding-bottom:20px;}
  body.our-story .our-story-body{padding-top:20px;padding-bottom:20px;}
  body.our-story .our-story-team{padding-top:20px;}
  body.our-story .our-story-team-head{margin-bottom:20px;}
}

/* Section with background photo */
.section-photo{position:relative;background-size:cover;background-position:center;}
.section-photo::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(13,12,11,.55) 0%,rgba(13,12,11,.8) 100%);
}
.section-photo>.wrap{position:relative;z-index:2;}

/* Sections */
section{padding:90px 0;}
section.tight{padding:60px 0;}
.section-head{max-width:680px;margin-bottom:50px;}
.center{text-align:center;margin-left:auto;margin-right:auto;}

/* Grid gallery */
.grid{display:grid;gap:18px;}
.grid.cols-3{grid-template-columns:repeat(3,1fr);}
.grid.cols-4{grid-template-columns:repeat(4,1fr);}
.grid img{width:100%;height:100%;object-fit:cover;aspect-ratio:4/5;}
.grid a:hover .btn{background:var(--gold);color:var(--black);}
@media(max-width:760px){
  .grid.cols-3{grid-template-columns:repeat(2,1fr);}
  .grid.cols-4{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:700px){
  body.wine .grid.cols-3{grid-template-columns:1fr;}
  body.functions .grid.cols-3{grid-template-columns:1fr;}
  body.functions .functions-event-tags{white-space:normal;}
  body.functions .functions-intro-section{padding-top:20px;}
  body.weekly-wine .grid.cols-4{grid-template-columns:1fr;}
  body.weekly-wine .weekly-wine-grid-section{padding-top:20px;}
  body.wine .wine-list-section{padding-top:50px;}
  body.wine .archive-btn{padding:12px 14px;font-size:.62rem;letter-spacing:.06em;white-space:nowrap;}
  body.wine .wine-hero-text-section{text-align:center;}
  body.wine .wine-hero-text-section p{margin-left:auto;margin-right:auto;}
  body.wine #wine-award-logos+div{text-align:center;}
  body.wine #wine-award-logos+div p{margin-left:auto;margin-right:auto;}
  body.wine .section-head{text-align:center;margin-left:auto;margin-right:auto;}
  body.wine .section-head p{margin-left:auto;margin-right:auto;}
}

/* Wine intro (hero images + text) */
.wine-intro{display:grid;grid-template-columns:1fr 1fr;grid-template-areas:"img1 img2" "text text";gap:24px;justify-items:center;}
.wine-hero-img{position:relative;overflow:hidden;aspect-ratio:1500/1574;max-width:480px;width:100%;}
.wine-hero-img-1{grid-area:img1;}
.wine-hero-img-2{grid-area:img2;}
.wine-hero-text-section{grid-area:text;max-width:780px;margin:0 auto;padding-bottom:50px;}
@media(max-width:700px){
  .wine-intro{grid-template-columns:1fr;grid-template-areas:"img1" "text" "img2";gap:30px;padding-bottom:40px;}
  .wine-hero-text-section{padding-bottom:0;}
}

/* Wine award logos */
.award-logo-img{width:140px;height:auto;}
@media(max-width:700px){
  #wine-award-logos{gap:10px;}
  .award-logo-img{width:88px;}
}

/* Gallery marquee */
.marquee-rows{display:flex;flex-direction:column;gap:20px;}
.marquee{
  overflow:hidden;
  width:100%;
  position:relative;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent);
}
.marquee-track{
  display:flex;
  width:max-content;
  gap:20px;
  animation:marquee-scroll 55s linear infinite;
}
.marquee-track.reverse{
  animation-name:marquee-scroll-reverse;
  animation-duration:48s;
}
.marquee-track figure{
  flex:0 0 auto;
  margin:0;
  width:270px;
  aspect-ratio:4/5;
  overflow:hidden;
}
.marquee-track img{width:100%;height:100%;object-fit:cover;display:block;}
@keyframes marquee-scroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
@keyframes marquee-scroll-reverse{
  from{transform:translateX(-50%);}
  to{transform:translateX(0);}
}
@media(max-width:760px){
  .marquee-rows{gap:14px;}
  .marquee-track{gap:14px;animation-duration:38s;}
  .marquee-track.reverse{animation-duration:32s;}
  .marquee-track figure{width:170px;}
}
@media(prefers-reduced-motion:reduce){
  .marquee-track{animation:none;}
}

/* Two column */
.split{display:grid;grid-template-columns:1.1fr .9fr;gap:64px;align-items:center;}
@media(max-width:820px){.split{grid-template-columns:1fr;gap:34px;}}
.set-menu-split{grid-template-columns:1.9fr 1fr;gap:50px;}
@media(max-width:820px){.set-menu-split{grid-template-columns:1fr;}}
.split.reverse{grid-template-columns:.9fr 1.1fr;}
@media(max-width:820px){.split.reverse{grid-template-columns:1fr;}}
@media(max-width:820px){
  body.home .split:not(.reverse)>div:first-child{order:2;}
  body.home .split:not(.reverse)>div:last-child{order:1;}
}

/* Cards */
.card{border:1px solid var(--line);padding:34px;background:var(--charcoal);}
.awards{display:flex;flex-wrap:wrap;gap:14px;margin:26px 0;}
.awards a{
  display:inline-block;
  background:transparent;
  border:1px solid var(--gold-dim);color:var(--gold);
  padding:7px 16px;font-family:'Courier New',Courier,monospace;
  font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;
  transition:.25s;
}
.awards a:hover{background:var(--gold);border-color:var(--gold);color:var(--black);}

/* Team */
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:30px;margin-top:40px;}
@media(max-width:900px){.team-grid{grid-template-columns:repeat(3,1fr);}}
@media(max-width:700px){
  .team-grid{grid-template-columns:repeat(2,1fr);}
  .team-grid .person h4{font-size:.85rem;letter-spacing:.04em;white-space:nowrap;}
  .team-grid .person span{line-height:1.15;}
}
.team-grid .person{border-top:1px solid var(--line);padding-top:16px;text-align:center;cursor:pointer;}
.team-grid .person .photo{aspect-ratio:4/5;overflow:hidden;margin-bottom:16px;}
.team-grid .person .photo img{width:100%;height:100%;object-fit:cover;display:block;}
.team-grid .person h4{margin-bottom:2px;text-transform:uppercase;font-weight:700;letter-spacing:.14em;line-height:1.05;}
.team-grid .person span{color:var(--gold);font-size:.78rem;letter-spacing:.05em;line-height:1.3;display:block;}
.team-grid .person .read-bio-link{
  color:var(--cream-dim);font-size:.68rem;letter-spacing:.1em;text-transform:uppercase;
  text-decoration:underline;text-underline-offset:3px;margin-top:8px;
}
.team-grid .person:hover .read-bio-link{color:var(--gold);}

/* Team bio popup */
.bio-modal-overlay{
  display:none;position:fixed;inset:0;background:rgba(13,12,11,.85);
  z-index:1000;align-items:center;justify-content:center;padding:24px;
}
.bio-modal-overlay.open{display:flex;}
.bio-modal{
  background:var(--charcoal);border:1px solid var(--line);
  max-width:460px;width:100%;max-height:85vh;overflow-y:auto;
  padding:44px 36px;position:relative;text-align:center;
}
.bio-modal-close{
  position:absolute;top:14px;right:16px;background:none;border:0;
  color:var(--cream);font-size:1.8rem;line-height:1;cursor:pointer;
}
.bio-modal-img{display:none;}
.bio-modal-content h3{text-transform:uppercase;letter-spacing:.1em;margin-bottom:4px;}
.bio-modal-title{color:var(--gold);font-size:.78rem;letter-spacing:.05em;margin-bottom:1.4em;}
.bio-modal-content p:not(.bio-modal-title){text-align:center;font-size:.85rem;}

/* Menu / experience tiers */
.tier{border-top:1px solid var(--line);padding:46px 0;display:grid;grid-template-columns:1.9fr 1fr;gap:50px;align-items:center;}
.tier:last-child{border-bottom:1px solid var(--line);}
@media(max-width:820px){.tier{grid-template-columns:1fr;gap:24px;}}
@media(max-width:700px){
  body.reservations .tier img,
  body.reservations .split img{display:none;}
  body.reservations a.btn[href^="mailto:"]{padding:12px 14px;font-size:.62rem;letter-spacing:.06em;white-space:nowrap;}
  body.reservations .tiers-section{padding-top:46px;}
  body.reservations .tier{padding-top:20px;}
  body.reservations .set-menu-section{padding-top:20px;}
  body.reservations .chef-table-subtitle{font-size:.62rem;letter-spacing:.02em;}
}
.functions-cta-text{font-size:1.15rem;}
@media(max-width:700px){
  .functions-cta-text{font-size:.95rem;}
}
.journal-hero-img{display:none;}
@media(max-width:700px){
  body.journal .hero{
    flex-direction:column;align-items:stretch;min-height:0;padding:0;
    background-image:none!important;
  }
  body.journal .hero::after{content:none;}
  body.journal .journal-hero-img{display:block;order:1;width:100%;height:auto;}
  body.journal .hero-content{order:2;padding-top:20px;padding-bottom:20px;text-align:center;}
  body.journal .journal-hero-heading{font-size:1.5rem;letter-spacing:0;}
  body.journal .journal-tabs-section{padding-top:20px;}
  body.journal .grid.cols-3{grid-template-columns:1fr;}
  body.journal .journal-tabs-section .tabs{justify-content:center;}
  body.journal .behind-series-head{text-align:center;}
  body.journal .behind-series-head p{margin-left:auto;margin-right:auto;}
  body.journal .behind-series-eyebrow{font-size:.58rem;letter-spacing:.08em;white-space:nowrap;}
  body.journal .behind-series-head p:not(.behind-series-eyebrow){font-size:.9rem;}
}
.menu-hero-img{display:none;}
@media(max-width:700px){
  body.menu .hero{
    flex-direction:column;align-items:stretch;min-height:0;padding:0;
    background-image:none!important;
  }
  body.menu .hero::after{content:none;}
  body.menu .menu-hero-img{display:block;order:1;width:100%;height:auto;}
  body.menu .hero-content{order:2;padding-top:20px;padding-bottom:8px;text-align:center;}
  body.menu .menu-intro-section{padding-top:8px;}
}
.tier img{aspect-ratio:2/3;object-fit:cover;max-width:60%;margin-left:auto;}
.price{font-family:'Dahlia','Cormorant Garamond',serif;color:var(--gold);font-size:1.25rem;margin-bottom:.6em;}
.meta{font-size:.85rem;color:var(--cream-dim);}
.meta strong{color:var(--cream);}
.functions-event-tags{white-space:nowrap;}

/* Journal */
.tabs{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:44px;}
.tabs a{
  display:inline-block;
  background:transparent;
  border:1px solid var(--gold);
  color:var(--gold);
  padding:9px 18px;
  font-family:'Courier New',Courier,monospace;
  font-size:.75rem;
  letter-spacing:.1em;text-transform:uppercase;
  transition:.25s;
}
.tabs a:hover{background:var(--gold);color:var(--black);}
.journal-post{display:grid;grid-template-columns:260px 1fr;gap:30px;padding:34px 0;border-top:1px solid var(--line);}
@media(max-width:700px){.journal-post{grid-template-columns:1fr;}}
.journal-post img{aspect-ratio:4/5;object-fit:cover;}
.journal-post a{font-size:.85rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;}
@media(max-width:700px){
  .journal-post p{font-size:.9rem;}
}
.post-tag{font-size:.85rem;letter-spacing:.14em;text-transform:uppercase;color:var(--gold);margin-bottom:.4em;font-weight:700;}
.journal-section-title{margin-top:80px;padding-top:6px;}
.journal-section-title:first-of-type{margin-top:0;}

/* Media list */
.media-list{border-top:1px solid var(--line);}
.media-row{
  display:flex;justify-content:space-between;align-items:baseline;
  padding:22px 0;border-bottom:1px solid var(--line);gap:20px;flex-wrap:wrap;
}
.media-row .source{font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;color:var(--gold);min-width:170px;}

/* Footer */
footer{border-top:1px solid var(--line);padding:70px 0 40px;background:var(--charcoal);}
.footer-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:40px;margin-bottom:50px;}
.footer-grid>div:not(:last-child){text-align:center;}
.footer-grid>div:last-child{grid-column:1 / -1;margin-top:30px;padding-top:30px;border-top:1px solid var(--line);}
.footer-grid>div:last-child:not(.footer-newsletter){max-width:480px;}
@media(max-width:820px){.footer-grid{grid-template-columns:1fr 1fr;}}
.footer-newsletter{max-width:none;display:flex;justify-content:space-between;align-items:center;gap:40px;flex-wrap:wrap;}
.footer-newsletter-text{flex:1 1 380px;}
.footer-brand-mark{flex:0 1 220px;display:flex;flex-direction:column;align-items:center;gap:14px;margin-top:-16px;}
.footer-drink-logo{max-width:220px;width:100%;flex:0 1 auto;}
.footer-grid h4{font-size:1.1rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--gold);font-family:'Dahlia','Cormorant Garamond',serif;margin-bottom:1em;}
.footer-grid p, .footer-grid a{color:var(--cream-dim);font-size:.92rem;}
.newsletter-form{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px;}
.newsletter-form input{
  background:transparent;border:1px solid var(--line);color:var(--cream);
  padding:11px 14px;font-family:'Courier New',Courier,monospace;font-size:.85rem;flex:1;min-width:140px;
}
.newsletter-form input::placeholder{color:#7d7563;}

/* Functions enquiry form */
.functions-form{text-align:left;}
.functions-form-row{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:10px;}
.functions-form-row>input,
.functions-form-row>select{flex:1;min-width:180px;}
.functions-form input,
.functions-form select,
.functions-form textarea{
  width:100%;background:transparent;border:1px solid var(--line);color:var(--cream);
  padding:12px 14px;font-family:'Courier New',Courier,monospace;font-size:.85rem;
}
.functions-form select{appearance:none;-webkit-appearance:none;border-radius:0;cursor:pointer;}
.functions-form select:invalid{color:#7d7563;}
.functions-form select option{background:var(--charcoal);color:var(--cream);}
.functions-form textarea{margin-bottom:16px;resize:vertical;}
.functions-form input::placeholder,
.functions-form textarea::placeholder{color:#7d7563;}
.functions-form .btn{width:100%;}

/* Space carousel */
.space-carousel{position:relative;overflow:hidden;}
.space-carousel-img{width:100%;height:100%;object-fit:cover;display:block;}
.space-carousel-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  width:34px;height:34px;border:1px solid var(--cream);border-radius:50%;
  background:rgba(13,12,11,.45);color:var(--cream);font-size:1.3rem;line-height:1;
  cursor:pointer;display:flex;align-items:center;justify-content:center;
  opacity:0;transition:opacity .2s,background .2s;
}
.space-carousel:hover .space-carousel-arrow{opacity:1;}
.space-carousel-arrow:hover{background:rgba(13,12,11,.75);}
.space-carousel-arrow.prev{left:12px;}
.space-carousel-arrow.next{right:12px;}
.space-carousel-arrow[hidden]{display:none;}
@media(max-width:900px){
  .space-carousel-arrow{opacity:1;}
}
.footer-bottom{
  border-top:1px solid var(--line);padding-top:26px;
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;
  font-size:.75rem;color:#7d7563;letter-spacing:.04em;
}
@media(max-width:640px){
  .footer-grid{grid-template-columns:1fr;gap:56px;text-align:center;}
  .footer-grid>div:last-child{margin-top:0;}
  .footer-newsletter{flex-direction:column;text-align:center;gap:16px;}
  .footer-newsletter-text{flex:none;width:100%;}
  .footer-brand-mark{flex:none;margin-top:0;gap:8px;}
  .footer-drink-logo{flex:none;max-width:170px;}
  .newsletter-form{justify-content:center;}
  .footer-bottom{justify-content:center;text-align:center;}
}

/* Scroll reveal */
.reveal-img{
  opacity:0;
  transform:translateY(32px);
  transition:opacity .9s ease, transform .9s ease;
  transition-delay:var(--reveal-delay, 0ms);
}
.reveal-img.is-visible{opacity:1;transform:translateY(0);}
@media(prefers-reduced-motion:reduce){
  .reveal-img{opacity:1;transform:none;transition:none;}
}
