:root {
  --ink: #111310;
  --ink-soft: #22251f;
  --paper: #f3f0e8;
  --paper-deep: #e6e1d5;
  --white: #fbfaf6;
  --olive: #778060;
  --gold: #a89361;
  --line: rgba(17, 19, 16, 0.16);
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Manrope", Arial, sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 88px 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;
}
.skip-link {
  position: fixed; z-index: 100; left: 16px; top: -50px;
  padding: 10px 16px; background: var(--white); color: var(--ink);
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.13);
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}
.site-header.scrolled {
  color: var(--ink); background: rgba(243,240,232,.94);
  border-color: var(--line); backdrop-filter: blur(14px);
}
.header-inner { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand {
  display: inline-flex; align-items: center; gap: 11px; text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: .14em;
}
.brand em { font-style: normal; font-weight: 400; opacity: .65; }
.brand-logo { display: block; width: auto; color: currentColor; }
.brand-logo-header { width: 208px; height: auto; }
.brand-logo-footer { width: 245px; height: auto; }
.site-header.scrolled .brand-logo-header { filter: brightness(0) saturate(100%); }
.brand-mark {
  display: grid; place-items: center; width: 32px; height: 32px;
  border: 1px solid currentColor; font-family: Georgia, serif; font-size: 17px;
}
.menu-toggle {
  display: grid; gap: 6px; width: 40px; height: 40px; place-content: center;
  border: 0; background: transparent; cursor: pointer;
}
.menu-toggle span:not(.sr-only) { display: block; width: 23px; height: 1px; background: currentColor; transition: transform .3s; }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
.site-nav {
  position: fixed; inset: 76px 0 0; display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 28px; background: var(--ink);
  color: var(--white); transform: translateX(100%); transition: transform .4s cubic-bezier(.7,0,.2,1);
}
.site-nav.open { transform: translateX(0); }
.site-nav a { text-decoration: none; font-family: var(--display); font-size: 25px; }
.site-nav .nav-cta { color: #c7b985; }

.hero {
  position: relative; min-height: 760px; height: 100svh; color: var(--white);
  background: var(--ink); overflow: hidden;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 64% center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,12,9,.96) 0%, rgba(10,12,9,.82) 42%, rgba(10,12,9,.22) 78%),
              linear-gradient(0deg, rgba(10,12,9,.5), transparent 50%);
}
.hero-inner { position: relative; height: 100%; display: flex; align-items: center; padding-top: 64px; }
.hero-copy { max-width: 710px; }
.eyebrow {
  margin: 0 0 24px; color: #c6ba8b; font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
}
.eyebrow.dark { color: var(--olive); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; letter-spacing: -.045em; }
h1 { margin-bottom: 26px; font-size: clamp(48px, 7.3vw, 94px); line-height: .98; }
h1 span { color: #d8d1c0; }
.hero-statement {
  max-width: 650px; margin: -2px 0 22px; color: #d5c28a;
  font-family: var(--display); font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 400; line-height: 1.25; letter-spacing: -.025em;
}
.hero-lede { max-width: 610px; margin-bottom: 34px; color: rgba(255,255,255,.73); font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 52px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center;
  gap: 26px; border: 1px solid transparent; text-decoration: none; font-size: 12px;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: .25s ease;
}
.button-primary { color: var(--ink); background: #c5b682; }
.button-primary:hover { background: #dacb98; transform: translateY(-2px); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.35); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 44px; color: rgba(255,255,255,.52); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.hero-proof span::before { content: ""; display: inline-block; width: 4px; height: 4px; margin: 0 10px 2px 0; border-radius: 50%; background: #aeb88e; }
.scroll-cue {
  display: none; position: absolute; bottom: 34px; right: 5vw; align-items: center; gap: 12px;
  text-decoration: none; color: rgba(255,255,255,.6); font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
}
.scroll-cue span { width: 42px; height: 1px; background: currentColor; }

.statement { padding-bottom: 46px; }
.statement-grid { display: grid; gap: 40px; }
.section-index { color: #77786f; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
h2 { margin-bottom: 25px; font-size: clamp(40px, 5.2vw, 68px); line-height: 1.05; }
.section-intro { max-width: 740px; color: #676960; font-size: 18px; line-height: 1.75; }

.benefits { padding-top: 20px; }
.benefit-grid { display: grid; border-top: 1px solid var(--line); }
.benefit-card { position: relative; padding: 34px 4px 38px; border-bottom: 1px solid var(--line); }
.benefit-number { position: absolute; top: 36px; right: 2px; color: #8d8e85; font-size: 10px; }
.line-icon { position: relative; width: 36px; height: 42px; margin-bottom: 35px; color: var(--olive); }
.leaf-icon { border: 1px solid currentColor; border-radius: 90% 0 90% 0; transform: rotate(-12deg); }
.leaf-icon::after { content: ""; position: absolute; width: 1px; height: 42px; left: 18px; top: 2px; background: currentColor; transform: rotate(36deg); }
.time-icon { width: 38px; height: 38px; border: 1px solid currentColor; border-radius: 50%; }
.time-icon::before, .time-icon::after { content: ""; position: absolute; left: 18px; top: 7px; width: 1px; height: 12px; background: currentColor; transform-origin: bottom; }
.time-icon::after { transform: rotate(115deg); }
.straw-icon { width: 9px; height: 42px; border: 1px solid currentColor; transform: rotate(14deg); }
.glass-icon { width: 34px; height: 30px; margin-top: 4px; border: 1px solid currentColor; border-top: 0; border-radius: 0 0 13px 13px; }
.glass-icon::after { content: ""; position: absolute; left: 16px; top: 30px; width: 1px; height: 12px; background: currentColor; box-shadow: -8px 12px 0 -0.2px currentColor; }
.benefit-card h3 { margin-bottom: 15px; font-size: 25px; }
.benefit-card p { margin: 0; max-width: 260px; color: #707168; font-size: 14px; line-height: 1.7; }

.products { color: var(--white); background: var(--ink); }
.section-heading { display: grid; gap: 18px; margin-bottom: 52px; }
.section-heading > p { max-width: 420px; color: rgba(255,255,255,.57); line-height: 1.7; }
.collection-heading { max-width: 820px; margin-bottom: 58px; }
.collection-heading h2 { margin-bottom: 0; }
.collection-editorial { display: grid; gap: 64px; }
.collection-item { display: grid; gap: 28px; align-items: end; }
.collection-media {
  position: relative; margin: 0; min-height: 520px; overflow: hidden;
  background: #242520;
}
.collection-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,15,12,.22), transparent 52%);
  pointer-events: none;
}
.collection-media img { width: 100%; height: 100%; object-fit: cover; }
.collection-item-light .collection-media { background: #e5ded0; }
.collection-item-dark .collection-media { background: #292a26; }
.collection-copy { max-width: 560px; }
.collection-number {
  display: block; margin-bottom: 18px; color: #a89361;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
}
.collection-copy h3 {
  margin-bottom: 18px; font-size: clamp(42px, 5vw, 72px);
  line-height: .95; text-transform: uppercase; letter-spacing: .08em;
}
.collection-copy p {
  max-width: 470px; margin-bottom: 28px; color: rgba(255,255,255,.62);
  font-size: 15px; line-height: 1.75;
}
.collection-specs {
  display: flex; flex-wrap: wrap; gap: 10px 30px; padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.82); font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase;
}
.collection-copy small {
  display: block; margin-top: 14px; color: rgba(255,255,255,.42);
  font-size: 10px; line-height: 1.65; letter-spacing: .04em;
}

.hospitality { background: var(--white); }
.hospitality-grid { display: grid; gap: 62px; }
.hospitality-copy { align-self: start; }
.hospitality-copy > p:not(.eyebrow) { color: #6d6e66; line-height: 1.75; }
.text-link { display: inline-flex; gap: 35px; margin-top: 16px; padding-bottom: 8px; border-bottom: 1px solid; text-decoration: none; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.venue-list { border-top: 1px solid var(--line); }
.venue-list div {
  display: grid; grid-template-columns: 34px 1fr; gap: 8px; padding: 20px 0;
  align-items: center; border-bottom: 1px solid var(--line);
}
.venue-list span { color: #94958c; font-size: 9px; }
.venue-list strong { font-family: var(--display); font-size: 22px; font-weight: 400; letter-spacing: -.03em; }
.venue-list i { grid-column: 2; color: #8a8b83; font-style: normal; font-size: 11px; }

.inquiry { color: var(--white); background: #191b17; }
.inquiry-grid { display: grid; gap: 60px; }
.inquiry-intro > p:not(.eyebrow) { max-width: 490px; color: rgba(255,255,255,.57); line-height: 1.75; }
.contact-detail { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); }
.contact-detail span { display: block; margin-bottom: 8px; color: rgba(255,255,255,.38); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.contact-detail a { text-decoration: none; font-size: 15px; }
.inquiry-form { display: grid; gap: 24px; }
.field-row { display: grid; gap: 24px; }
.inquiry-form label { display: grid; gap: 8px; color: rgba(255,255,255,.55); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.inquiry-form input, .inquiry-form textarea {
  width: 100%; padding: 11px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.22);
  border-radius: 0; outline: 0; color: var(--white); background: transparent; font-size: 14px;
  letter-spacing: normal; text-transform: none; transition: border-color .2s;
}
.inquiry-form textarea { resize: vertical; min-height: 90px; }
.inquiry-form input::placeholder, .inquiry-form textarea::placeholder { color: rgba(255,255,255,.25); }
.inquiry-form input:focus, .inquiry-form textarea:focus { border-color: #c5b682; }
.form-submit { width: 100%; margin-top: 10px; border: 0; }
.form-note { margin: -12px 0 0; text-align: center; color: rgba(255,255,255,.35); font-size: 10px; }
.form-note.success { color: #c5b682; }

.site-footer { padding: 68px 0 24px; color: var(--white); background: #0d0f0c; }
.footer-main { display: grid; gap: 34px; align-items: start; padding-bottom: 65px; }
.brand-footer { font-size: 14px; }
.brand-footer .brand-mark { width: 40px; height: 40px; }
.footer-main p { margin: 0; color: rgba(255,255,255,.48); line-height: 1.65; }
.footer-main > a:last-child { text-decoration: none; font-size: 13px; }
.footer-bottom {
  display: flex; flex-direction: column; gap: 13px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.35);
  font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
}
.footer-bottom a { color: rgba(255,255,255,.65); text-decoration: none; }

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 850ms cubic-bezier(.22, 1, .36, 1),
    transform 850ms cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@media (min-width: 700px) {
  .container { width: min(calc(100% - 80px), var(--container)); }
  .section { padding: 120px 0; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-card { padding: 40px 30px 48px 0; }
  .benefit-card:nth-child(odd) { border-right: 1px solid var(--line); }
  .benefit-card:nth-child(even) { padding-left: 30px; }
  .collection-media { min-height: 660px; }
  .field-row { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 960px) {
  .header-inner { height: 84px; }
  .menu-toggle { display: none; }
  .site-nav { position: static; inset: auto; flex-direction: row; gap: 31px; background: transparent; color: inherit; transform: none; }
  .site-nav a { font-family: var(--sans); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; opacity: .76; }
  .site-nav a:hover { opacity: 1; }
  .site-nav .nav-cta { padding: 12px 18px; border: 1px solid currentColor; color: inherit; opacity: 1; }
  .hero-image { object-position: center; }
  .hero-copy { padding-top: 20px; }
  .scroll-cue { display: flex; }
  .statement-grid { grid-template-columns: 25% 1fr; }
  .benefit-grid { grid-template-columns: repeat(4, 1fr); }
  .benefit-card, .benefit-card:nth-child(even) { padding: 40px 26px 48px; border-right: 1px solid var(--line); }
  .benefit-card:first-child { padding-left: 0; }
  .benefit-card:last-child { border-right: 0; }
  .section-heading { grid-template-columns: 1.5fr 1fr; align-items: end; }
  .section-heading > p { justify-self: end; }
  .collection-editorial { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .collection-item-dark { margin-top: 86px; }
  .collection-copy { padding-top: 28px; }
  .hospitality-grid { grid-template-columns: .85fr 1.15fr; gap: 12%; }
  .hospitality-copy { position: sticky; top: 140px; }
  .venue-list div { grid-template-columns: 46px 1.1fr 1fr; padding: 28px 0; }
  .venue-list i { grid-column: auto; }
  .inquiry-grid { grid-template-columns: .9fr 1.1fr; gap: 12%; }
  .inquiry-intro { position: sticky; top: 140px; align-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
