/* ============================================================
   WILLOWS — BRAY
   Global Design System
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500&display=swap');

/* --- Custom Properties --- */
:root {
  --deep-olive:    #2F2F24;
  --sage-green:    #5B6A4D;
  --warm-brass:    #C9A35C;
  --latte:         #C9B6A6;
  --soft-cream:    #EFE6DE;
  --walnut:        #6B4428;
  --chalk-white:   #FFF9EF;

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-editorial:'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;

  --nav-height: 72px;
  --max-width:  1200px;
  --section-padding: 100px;
  --section-padding-mobile: 48px;

  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:cubic-bezier(0.65, 0, 0.35, 1);
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--soft-cream);
  color: var(--deep-olive);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* --- Typography Utilities --- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-brass);
}

.display-title {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.editorial-title {
  font-family: var(--font-editorial);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.3;
}

.body-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--deep-olive);
  opacity: 0.88;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-padding) 0;
}

.section--dark {
  background-color: var(--deep-olive);
  color: var(--chalk-white);
}

.section--sage {
  background-color: var(--sage-green);
  color: var(--chalk-white);
}

.section--cream {
  background-color: var(--soft-cream);
}

.brass-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--warm-brass);
  margin: 24px 0;
}

.brass-rule--center {
  margin: 24px auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 260ms var(--ease-out);
  cursor: pointer;
}

.btn--primary {
  background: var(--warm-brass);
  color: var(--deep-olive);
  border: 1.5px solid var(--warm-brass);
}

.btn--primary:hover {
  background: transparent;
  color: var(--warm-brass);
}

.btn--outline {
  background: transparent;
  color: var(--chalk-white);
  border: 1.5px solid rgba(255,249,239,0.5);
}

.btn--outline:hover {
  background: rgba(255,249,239,0.08);
  border-color: var(--chalk-white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--deep-olive);
  border: 1.5px solid var(--deep-olive);
}

.btn--outline-dark:hover {
  background: var(--deep-olive);
  color: var(--chalk-white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
}

.nav.nav--scrolled {
  background: rgba(47, 47, 36, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201, 163, 92, 0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--chalk-white);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 200ms;
}

.nav__logo span {
  color: var(--warm-brass);
}

.nav__logo:hover { color: var(--warm-brass); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 249, 239, 0.75);
  transition: color 200ms;
}

.nav__links a:hover { color: var(--chalk-white); }

.nav__cta {
  padding: 10px 24px !important;
  font-size: 0.75rem !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--chalk-white);
  transition: all 300ms var(--ease-out);
}

/* Mobile nav drawer */
.nav__drawer {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: var(--deep-olive);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px 48px;
  transform: translateX(100%);
  transition: transform 420ms var(--ease-out);
}

.nav__drawer.open { transform: translateX(0); }

.nav__drawer-close {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 2rem;
  line-height: 1;
  color: var(--chalk-white);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 200ms, color 200ms;
}

.nav__drawer-close:hover { opacity: 1; color: var(--warm-brass); }

.nav__drawer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.24em;
  color: var(--chalk-white);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.nav__drawer-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--warm-brass);
  opacity: 0.7;
  margin: 0 auto 32px;
}

.nav__drawer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.nav__drawer-links a {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--chalk-white);
  letter-spacing: 0.04em;
  text-align: center;
  padding: 12px 0;
  transition: color 200ms;
}

.nav__drawer-links a:hover { color: var(--warm-brass); }

.nav__drawer-cta {
  margin-top: 40px;
  width: 100%;
  max-width: 320px;
  justify-content: center;
}

.nav__drawer-tagline {
  margin-top: auto;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 163, 92, 0.6);
  text-align: center;
  padding-bottom: 8px;
}

.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms;
}

.nav__overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--deep-olive);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  background-color: var(--deep-olive);
}

.hero__photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(20,18,12,0.55) 0%, rgba(20,18,12,0.35) 50%, rgba(20,18,12,0.65) 100%);
  z-index: 1;
}

.hero__texture {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 30%, rgba(20,18,12,0.5) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-brass);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 800ms 200ms var(--ease-out) forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--chalk-white);
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 900ms 350ms var(--ease-out) forwards;
}

.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeIn 800ms 600ms var(--ease-out) forwards;
}

.hero__divider::before,
.hero__divider::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--warm-brass);
  opacity: 0.6;
}

.hero__divider-mark {
  width: 5px;
  height: 5px;
  border: 1px solid var(--warm-brass);
  border-radius: 50%;
  opacity: 0.8;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 249, 239, 0.95);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 800ms 550ms var(--ease-out) forwards;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255, 249, 239, 0.8);
  text-transform: uppercase;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeIn 800ms 700ms var(--ease-out) forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 800ms 900ms var(--ease-out) forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 800ms 1100ms var(--ease-out) forwards;
}

.hero__scroll span {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,249,239,0.4);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,163,92,0.6), transparent);
  animation: scrollLine 2s 1.5s ease-in-out infinite;
}

/* ============================================================
   OUR STORY
   ============================================================ */
.story {
  background: var(--soft-cream);
  padding: var(--section-padding) 0;
}

.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story__image-block {
  position: relative;
}

.story__image-frame {
  aspect-ratio: 4/5;
  background: var(--deep-olive);
  overflow: hidden;
  position: relative;
}

.story__image-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/story.jpg');
  background-size: cover;
  background-position: center;
  background-color: #1e1e17;
}

.story__image-texture {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,18,12,0.1) 0%, rgba(20,18,12,0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story__image-caption {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--warm-brass);
  color: var(--deep-olive);
  padding: 20px 28px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  letter-spacing: 0.03em;
  max-width: 180px;
  line-height: 1.4;
}

.story__content {
  padding: 20px 0;
}

.story__content .eyebrow { margin-bottom: 20px; }
.story__content .section-title { margin-bottom: 8px; }
.story__content .brass-rule { margin: 24px 0 32px; }

.story__text {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--deep-olive);
  opacity: 0.88;
  margin-bottom: 20px;
}

.story__quote {
  border-left: 2px solid var(--warm-brass);
  padding-left: 24px;
  margin: 36px 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: var(--deep-olive);
  line-height: 1.6;
}

/* ============================================================
   INSIDE WILLOWS
   ============================================================ */
.interior {
  background: var(--deep-olive);
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.interior__header {
  text-align: center;
  margin-bottom: 72px;
}

.interior__header .section-title { color: var(--chalk-white); }
.interior__header .eyebrow { margin-bottom: 16px; }
.interior__header .brass-rule--center { margin: 20px auto 28px; }

.interior__header-text {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,249,239,0.82);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

.interior__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,163,92,0.1);
}

.interior__card {
  background: rgba(255,249,239,0.03);
  padding: 48px 36px;
  border: 1px solid rgba(201,163,92,0.08);
  transition: background 300ms;
}

.interior__card:hover {
  background: rgba(255,249,239,0.06);
}

.interior__card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  opacity: 0.7;
}

.interior__card-title {
  font-family: var(--font-editorial);
  font-size: 1.1rem;
  color: var(--chalk-white);
  margin-bottom: 12px;
  font-weight: 400;
}

.interior__card-text {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255,249,239,0.78);
  line-height: 1.7;
}

.interior__atmosphere {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
  padding: 0 0 20px;
}

.interior__atmosphere-label {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--chalk-white);
  line-height: 1.2;
}

.interior__atmosphere-label span {
  display: block;
  color: var(--warm-brass);
}

.interior__atmosphere-words {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.interior__word {
  padding: 8px 20px;
  border: 1px solid rgba(201,163,92,0.35);
  color: rgba(255,249,239,0.82);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 200ms;
}

.interior__word:hover {
  border-color: var(--warm-brass);
  color: var(--warm-brass);
}

/* --- Interior photo strip --- */
.interior__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2px;
}

.interior__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.interior__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms var(--ease-out);
  filter: brightness(0.88) saturate(0.9);
}

.interior__photo:hover img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(1);
}

/* ============================================================
   MENU HIGHLIGHTS
   ============================================================ */
.highlights {
  background: var(--soft-cream);
  padding: var(--section-padding) 0;
}

.highlights__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 24px;
}

.highlights__header-left .section-title { margin-top: 8px; }

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.highlight-card {
  background: var(--chalk-white);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}

.highlight-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--warm-brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease-out);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(47,47,36,0.1);
}

.highlight-card:hover::before { transform: scaleX(1); }

.highlight-card__category {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-brass);
  margin-bottom: 16px;
}

.highlight-card__name {
  font-family: var(--font-editorial);
  font-size: 1.25rem;
  color: var(--deep-olive);
  margin-bottom: 10px;
  font-weight: 400;
}

.highlight-card__desc {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--deep-olive);
  opacity: 0.82;
  line-height: 1.65;
  margin-bottom: 20px;
}

.highlight-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--walnut);
  letter-spacing: 0.02em;
}

/* ============================================================
   COFFEE & PASTRY PAIRINGS
   ============================================================ */
.pairings {
  background: var(--sage-green);
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.pairings__header {
  text-align: center;
  margin-bottom: 72px;
}

.pairings__header .section-title { color: var(--chalk-white); }
.pairings__header .eyebrow { margin-bottom: 16px; }
.pairings__header .brass-rule--center { margin: 20px auto 24px; }

.pairings__sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,249,239,0.85);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

.pairings__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.pairing-item {
  background: rgba(255,249,239,0.04);
  padding: 48px 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  border: 1px solid rgba(255,249,239,0.06);
  transition: background 250ms;
}

.pairing-item:hover { background: rgba(255,249,239,0.08); }

.pairing-item__names {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.pairing-item__food,
.pairing-item__drink {
  font-family: var(--font-editorial);
  font-size: 1.15rem;
  color: var(--chalk-white);
  font-weight: 400;
}

.pairing-item__plus {
  color: var(--warm-brass);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
}

.pairing-item__note {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255,249,239,0.8);
  line-height: 1.65;
}

.pairing-item__tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-brass);
  border: 1px solid rgba(201,163,92,0.35);
  padding: 4px 12px;
  white-space: nowrap;
  align-self: start;
  margin-top: 4px;
}

/* ============================================================
   SIGNATURE EXPERIENCE
   ============================================================ */
.experience {
  background: var(--chalk-white);
  padding: var(--section-padding) 0;
}

.experience__inner {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: center;
}

.experience__content .eyebrow { margin-bottom: 20px; }
.experience__content .section-title { margin-bottom: 8px; }
.experience__content .brass-rule { margin: 24px 0 32px; }

.experience__intro {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--deep-olive);
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.9;
}

.experience__body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--deep-olive);
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 20px;
}

.experience__list {
  margin: 32px 0 40px;
}

.experience__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(47,47,36,0.08);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--deep-olive);
  opacity: 0.9;
}

.experience__list li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--warm-brass);
  margin-top: 10px;
  flex-shrink: 0;
}

.experience__visual {
  position: relative;
}

.experience__visual-frame {
  aspect-ratio: 3/4;
  background: var(--deep-olive);
  position: relative;
  overflow: hidden;
}

.experience__visual-inner {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(201,163,92,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 80%, rgba(107,68,40,0.2) 0%, transparent 55%);
  background-color: #252520;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience__visual-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,249,239,0.55);
  letter-spacing: 0.06em;
  text-align: center;
  padding: 40px;
}

.experience__stat {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--warm-brass);
  color: var(--deep-olive);
  padding: 24px 28px;
  text-align: center;
}

.experience__stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.experience__stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ============================================================
   VISIT US
   ============================================================ */
.visit {
  background: var(--deep-olive);
  padding: var(--section-padding) 0;
}

.visit__header {
  text-align: center;
  margin-bottom: 72px;
}

.visit__header .section-title { color: var(--chalk-white); }
.visit__header .eyebrow { margin-bottom: 16px; }
.visit__header .brass-rule--center { margin: 20px auto; }

.visit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.visit-block {
  background: rgba(255,249,239,0.04);
  padding: 48px 40px;
  border: 1px solid rgba(201,163,92,0.08);
}

.visit-block__icon {
  margin-bottom: 24px;
  opacity: 0.6;
}

.visit-block__title {
  font-family: var(--font-editorial);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-brass);
  margin-bottom: 20px;
}

.visit-block__content {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,249,239,0.82);
  line-height: 1.9;
}

.visit-block__address {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--chalk-white);
  line-height: 1.6;
  margin-bottom: 16px;
}

.visit-block__hours dt {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,249,239,0.65);
  margin-top: 12px;
}

.visit-block__hours dd {
  color: rgba(255,249,239,0.9);
  font-size: 0.95rem;
  font-weight: 300;
}

.visit__whatsapp {
  margin-top: 64px;
  text-align: center;
  padding: 48px;
  border: 1px solid rgba(201,163,92,0.15);
  background: rgba(255,249,239,0.02);
}

.visit__whatsapp-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--chalk-white);
  margin-bottom: 12px;
}

.visit__whatsapp-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,249,239,0.75);
  margin-bottom: 28px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1a1a14;
  padding: 64px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chalk-white);
  margin-bottom: 16px;
}

.footer__brand-tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,249,239,0.65);
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,163,92,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,249,239,0.5);
  font-size: 0.75rem;
  transition: all 200ms;
}

.footer__social a:hover {
  border-color: var(--warm-brass);
  color: var(--warm-brass);
}

.footer__col-title {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-brass);
  margin-bottom: 20px;
}

.footer__col a {
  display: block;
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255,249,239,0.7);
  padding: 5px 0;
  transition: color 200ms;
}

.footer__col a:hover { color: rgba(255,249,239,0.95); }

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,249,239,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__legal {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,249,239,0.5);
}

.footer__credit {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,249,239,0.5);
  letter-spacing: 0.06em;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* ============================================================
   STICKY ORDER BUTTON
   ============================================================ */
.sticky-order {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 80;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 300ms, transform 300ms var(--ease-out);
  pointer-events: none;
}

.sticky-order.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.sticky-order__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--warm-brass);
  color: var(--deep-olive);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(201,163,92,0.35);
  transition: all 200ms var(--ease-out);
}

.sticky-order__btn:hover {
  background: var(--deep-olive);
  color: var(--chalk-white);
  box-shadow: 0 8px 32px rgba(47,47,36,0.3);
}

.sticky-order__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--deep-olive);
  color: var(--chalk-white);
  font-size: 0.68rem;
  font-weight: 500;
  border-radius: 50%;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes scrollLine {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  30% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  70% { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  :root {
    --section-padding: 80px;
  }

  .container { padding: 0 28px; }

  .story__inner { grid-template-columns: 1fr; gap: 48px; }
  .story__image-block { order: -1; max-width: 420px; }
  .story__image-frame { aspect-ratio: 16/10; }


  .interior__grid { grid-template-columns: repeat(2, 1fr); }

  .highlights__grid { grid-template-columns: repeat(2, 1fr); }
  .highlights__header { flex-direction: column; align-items: flex-start; }

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

  .experience__inner { grid-template-columns: 1fr; gap: 48px; }

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

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 767px) {
  :root {
    --section-padding: var(--section-padding-mobile);
    --nav-height: 64px;
  }

  .container { padding: 0 20px; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero__actions { flex-direction: column; align-items: center; }
  .hero__title { font-size: clamp(2.4rem, 11vw, 4rem); letter-spacing: 0.06em; }
  .hero__sub { margin-bottom: 36px; }

  .story__image-frame { aspect-ratio: 4/3; }

  .interior__grid { grid-template-columns: 1fr; }
  .interior__card { padding: 28px 20px; }
  .interior__photos { grid-template-columns: 1fr; }
  .interior__atmosphere { grid-template-columns: 1fr; gap: 32px; }
  .interior__atmosphere-label { font-size: 2.2rem; text-align: center; }
  .interior__atmosphere-label span { display: inline; }
  .interior__atmosphere-words { justify-content: center; gap: 8px; }
  .interior__word { flex: 0 0 calc(50% - 4px); text-align: center; min-width: 0; justify-content: center; }

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

  /* Section CTAs: full-width and centred on mobile */
  .hero__actions .btn { width: 100%; justify-content: center; }

  .highlights__header { align-items: stretch; }
  .highlights__header .btn { width: 100%; justify-content: center; }

  .story__content .btn,
  .experience__content .btn,
  .visit__whatsapp .btn { width: 100%; justify-content: center; }

  .pairing-item { grid-template-columns: 1fr; }
  .pairing-item__tag { align-self: auto; width: fit-content; }

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

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 12px; }

  .sticky-order {
    bottom: 20px;
    right: 16px;
    left: 16px;
  }

  .sticky-order__btn {
    width: 100%;
    justify-content: center;
  }
}
