/* =========================================
   Te'Amo Café — Stylesheet
   Palette: black + white + café-seat mustard-yellow (+ dusty)
   Fonts: Georgia (headings) + Helvetica (body)
   ========================================= */

:root {
  --bg: #ffffff;          /* white (main) */
  --bg-soft: #faf4ec;     /* soft dusty tint */
  --paper: #ffffff;       /* white */
  --ink: #111111;         /* black (main) */
  --ink-soft: #2b2b2b;
  --muted: #7a7268;       /* warm grey */
  --line: #e7e1d8;        /* dusty hairline */
  --line-soft: #f1ece4;
  --yellow: #E9C04A;      /* accent = café seat mustard-yellow */
  --yellow-deep: #B5871C; /* deeper gold for text on white (contrast) */
  --love: #E9C04A;        /* accent = mustard-yellow */
  --dusty: #E4CFBA;       /* Dusty beige (secondary) */
  --dark: #000000;        /* black */
  --dark-soft: #141414;
  --cream-bg: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

em {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}

.script {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
}

.eyebrow {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.eyebrow.light { color: rgba(255,255,255,0.65); }

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  font-variation-settings: "SOFT" 80, "WONK" 0;
}
h2 em, h3 em, h1 em {
  font-variation-settings: "SOFT" 100, "WONK" 1;
}

/* =========================================
   Ticker
   ========================================= */
.ticker {
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  padding: 10px 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.ticker-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: ticker 45s linear infinite;
  width: max-content;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================
   Nav
   ========================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  position: relative;
}
.logo-mark .amp {
  position: absolute;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: var(--yellow);
  font-size: 14px;
  top: 2px;
  right: 8px;
  font-style: normal;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 600;
  font-size: 18px;
}
.logo-text em {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-top: 2px;
  font-weight: 400;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.01em;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 1px; width: 0;
  background: var(--ink);
  transition: width 0.3s ease;
}
.nav-links a:hover:not(.nav-cta)::after { width: 100%; }
.nav-cta {
  background: var(--ink);
  color: var(--yellow);
  padding: 0.55rem 1rem !important;
  border-radius: 999px;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--yellow); color: var(--ink); }

.nav-actions { display: flex; gap: 0.5rem; align-items: center; }
.cart-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}
.cart-btn:hover { background: var(--ink); color: var(--yellow); }
.cart-count {
  background: var(--ink);
  color: var(--yellow);
  font-size: 10px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-weight: 700;
  padding: 0 5px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  opacity: 0;
  transition: opacity 0.2s;
}
.cart-count.active { opacity: 1; }

.menu-btn { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.menu-btn span { width: 22px; height: 2px; background: var(--ink); }

/* =========================================
   Hero
   ========================================= */
.hero {
  position: relative;
  padding: 4rem 2rem 5rem;
  min-height: 90vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 10% 20%, rgba(233,192,74,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 500px 600px at 95% 80%, rgba(228,207,186,0.35) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80vh;
}

.hero-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-hours {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: var(--paper);
}
.open-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.15);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(76, 175, 80, 0.05); }
}

.hero-title {
  font-size: clamp(4rem, 12vw, 10.5rem);
  line-height: 0.88;
  margin: 1.5rem 0 2.5rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 300;
  letter-spacing: -0.035em;
}
.hero-title .line {
  display: block;
  animation: slideUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-title .line:nth-child(2) { animation-delay: 0.12s; padding-left: 3rem; }
.hero-title .line:nth-child(3) { animation-delay: 0.24s; padding-left: 1.5rem; }
.hero-title .line.serif em {
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.hero-title .line.script {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: var(--yellow-deep);
  font-size: 1.1em;
  transform: rotate(-3deg) translateX(0.5em);
  display: inline-block;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  max-width: 540px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero-images {
  position: relative;
  z-index: 1;
  height: 80vh;
  min-height: 500px;
}
.hero-img {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.3);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-1 {
  width: 65%;
  aspect-ratio: 4/5;
  top: 5%;
  right: 0;
  transform: rotate(3deg);
  z-index: 2;
  animation: float1 6s ease-in-out infinite;
}
.hero-img-2 {
  width: 48%;
  aspect-ratio: 1;
  bottom: 8%;
  left: 0;
  transform: rotate(-4deg);
  z-index: 3;
  border: 8px solid var(--bg);
  animation: float2 7s ease-in-out infinite;
}
.hero-img-3 {
  width: 32%;
  aspect-ratio: 3/4;
  top: 0;
  left: 8%;
  transform: rotate(-7deg);
  z-index: 1;
  animation: float3 8s ease-in-out infinite;
}
@keyframes float1 { 0%, 100% { transform: rotate(3deg) translateY(0); } 50% { transform: rotate(2deg) translateY(-12px); } }
@keyframes float2 { 0%, 100% { transform: rotate(-4deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(10px); } }
@keyframes float3 { 0%, 100% { transform: rotate(-7deg) translateY(0); } 50% { transform: rotate(-8deg) translateY(-8px); } }

/* =========================================
   Big Marquee
   ========================================= */
.big-marquee {
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  padding: 1.75rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  width: max-content;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: -0.025em;
  line-height: 1;
  align-items: center;
}
.marquee-track em {
  color: var(--bg);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.marquee-track .script {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--yellow);
  font-size: 1.2em;
}
.marquee-track .dot {
  color: var(--love);
  font-size: 0.7em;
  vertical-align: middle;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--yellow); }
.btn-accent {
  background: var(--yellow);
  color: var(--ink);
}
.btn-accent:hover { background: var(--yellow-deep); transform: translateY(-1px); }
.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--ink); }
.btn-block { width: 100%; }

/* =========================================
   Section head
   ========================================= */
.section-head {
  max-width: 1400px;
  margin: 0 auto 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
}
.section-note {
  max-width: 420px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

/* =========================================
   Signature
   ========================================= */
.signature {
  padding: 6rem 2rem;
  max-width: 1500px;
  margin: 0 auto;
}
.signature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  grid-auto-rows: 300px;
}
.sig-card {
  overflow: hidden;
  border-radius: 18px;
  position: relative;
  cursor: pointer;
  background: var(--paper);
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.4s;
}
.sig-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -15px rgba(0, 0, 0, 0.25);
}
.sig-card-0 { grid-column: span 5; grid-row: span 2; }
.sig-card-1 { grid-column: span 4; }
.sig-card-2 { grid-column: span 3; }
.sig-card-3 { grid-column: span 4; }
.sig-card-4 { grid-column: span 3; }

.sig-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.sig-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2,0.8,0.2,1);
}
.sig-card:hover .sig-img img { transform: scale(1.06); }
.sig-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
}

.sig-content {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  color: #fff;
  z-index: 1;
}
.sig-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.sig-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  margin-bottom: 0.25rem;
}
.sig-card-0 .sig-name { font-size: 2rem; }
.sig-price {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
}

/* =========================================
   Menu
   ========================================= */
.menu-section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.menu-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter {
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  background: var(--paper);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.filter:hover { border-color: var(--ink); }
.filter.active { background: var(--ink); color: var(--yellow); border-color: var(--ink); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.menu-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.25rem;
  padding: 1rem;
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  cursor: pointer;
  transition: all 0.25s ease;
}
.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
  border-color: var(--yellow);
}
.menu-item-img {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
}
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.menu-item:hover .menu-item-img img { transform: scale(1.08); }
.menu-item-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--yellow);
  color: var(--ink);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.menu-item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.25rem 0;
}
.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}
.menu-item-head h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.menu-item-price {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.menu-item-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.menu-item-meta {
  display: flex;
  gap: 0.5rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.menu-item-meta span {
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* =========================================
   Lookbook
   ========================================= */
.lookbook {
  padding: 6rem 2rem;
  max-width: 1500px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
  grid-auto-rows: 220px;
}
.look {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background: var(--paper);
}
.look-1 { grid-column: span 6; grid-row: span 2; }
.look-2 { grid-column: span 3; grid-row: span 1; }
.look-3 { grid-column: span 3; grid-row: span 2; }
.look-4 { grid-column: span 3; grid-row: span 1; }
.look-5 { grid-column: span 3; grid-row: span 1; }
.look-6 { grid-column: span 3; grid-row: span 1; }
.look-7 { grid-column: span 3; grid-row: span 1; }
.look-8 { grid-column: span 3; grid-row: span 1; }

.look img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.look:hover img { transform: scale(1.06); }

.look figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--bg);
  color: var(--ink);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px -5px rgba(0,0,0,0.3);
}
.look:hover figcaption { opacity: 1; transform: translateY(0); }
.look figcaption .script {
  font-size: 1.15rem;
  color: var(--ink);
}

/* =========================================
   Story
   ========================================= */
.story {
  padding: 7rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
/* On-brand floral accent — vertical orchid sprig, fully visible on the right */
.story::before {
  content: "";
  position: absolute;
  top: 3rem;
  right: 2rem;
  width: 200px;
  height: 330px;
  background: url("img/floral/vertical-sprig.png") no-repeat center top / contain;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}
.story > * { position: relative; z-index: 1; }
@media (max-width: 900px) {
  .story::before { display: none; }
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.story-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 60px -25px rgba(0,0,0,0.35);
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
  text-align: center;
  transform: rotate(-10deg);
  z-index: 2;
  border: 10px solid var(--bg);
  font-family: Georgia, 'Times New Roman', serif;
}
.story-badge .script {
  font-size: 1.1rem;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.badge-year {
  font-size: 2.5rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  color: var(--ink);
}

.story-text h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 1rem 0 1.5rem;
  font-weight: 400;
}
.story-text p {
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}
.story-quote {
  border-left: 3px solid var(--yellow);
  padding: 1rem 0 1rem 1.5rem;
  margin: 1.5rem 0;
}
.story-quote p {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.5;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.story-quote footer {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-top: 0.75rem;
  text-transform: uppercase;
}
.story-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.story-stats strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
  font-style: italic;
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.story-stats span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

/* =========================================
   Visit
   ========================================= */
.visit {
  background: var(--ink);
  color: #fff;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.visit::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--yellow), transparent 70%);
  opacity: 0.2;
  filter: blur(100px);
}
.visit-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.visit-info h2 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--yellow);
  margin: 1rem 0 2rem;
  font-weight: 400;
}
.visit-block {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.visit-block:last-of-type { border-bottom: 1px solid rgba(255,255,255,0.12); }
.visit-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}
.visit-value {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: #fff;
}
.visit-value a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: inherit;
}
.visit-value a:hover { color: var(--yellow); }
.visit-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.visit-map {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}
.map-frame { width: 100%; height: 100%; }
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.6);
}

/* =========================================
   Reservation
   ========================================= */
.reserve {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
/* Floral accent — leaf & berry branch, mirrored, lower-left whitespace */
.reserve::before {
  content: "";
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  width: 170px;
  height: 320px;
  background: url("img/floral/leaf-branch.png") no-repeat center bottom / contain;
  transform: scaleX(-1);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.reserve > * { position: relative; z-index: 1; }
@media (max-width: 900px) {
  .reserve::before { display: none; }
}
.reserve-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.reserve-text h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin: 1rem 0 1.5rem;
  font-weight: 400;
}
.reserve-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}
.reserve-form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.reserve-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.form-row label { margin-bottom: 0; }
.reserve-form span {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.reserve-form input,
.reserve-form select {
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.reserve-form input:focus,
.reserve-form select:focus { border-color: var(--ink); }
.optional {
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  font-size: 0.85em;
}
.reserve-note {
  margin-top: 1rem;
  font-size: 14px;
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  min-height: 22px;
  text-align: center;
}

/* =========================================
   Order CTA
   ========================================= */
.order-cta {
  background: var(--yellow);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.order-cta::before {
  content: '♡';
  position: absolute;
  font-size: 30rem;
  color: rgba(0, 0, 0, 0.06);
  top: -8rem;
  right: -4rem;
  line-height: 1;
  font-family: Georgia, 'Times New Roman', serif;
}
.order-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.order-inner .eyebrow { color: var(--ink); opacity: 0.7; }
.order-inner h2 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin: 1rem 0 1rem;
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif !important;
  font-weight: 700;
  line-height: 1;
}
.order-inner p { color: var(--ink); opacity: 0.75; margin-bottom: 2rem; font-size: 1.05rem; }
.order-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.order-cta .btn-accent {
  background: var(--ink);
  color: var(--yellow);
}
.order-cta .btn-accent:hover { background: var(--bg); color: var(--ink); }
.order-cta .btn-outline-light {
  border-color: var(--ink);
  color: var(--ink);
}
.order-cta .btn-outline-light:hover { background: var(--ink); color: var(--yellow); }

/* =========================================
   Footer
   ========================================= */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 5rem 2rem 2rem;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand h3 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 0.95;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
}
.footer-brand h3 .script {
  color: var(--yellow);
  font-size: 1.3em;
  display: block;
  line-height: 0.8;
}
.footer-tag {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--yellow);
  margin: 1rem 0 1.5rem;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.footer-addr { font-size: 13px; line-height: 1.6; }
.footer-addr a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-addr a:hover { color: var(--yellow); }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-links h4 {
  color: #fff;
  font-size: 11px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links a {
  display: block;
  font-size: 14px;
  margin-bottom: 0.65rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  gap: 1rem;
  text-transform: uppercase;
}

/* =========================================
   Cart Drawer
   ========================================= */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 200;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 201;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px -10px rgba(0,0,0,0.25);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.cart-header h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.cart-header h3 .script {
  color: var(--yellow-deep);
  font-size: 1.4rem;
  margin-right: 0.25rem;
}
.cart-header button { font-size: 1.25rem; padding: 4px 8px; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.cart-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--muted);
}
.cart-empty p { margin-bottom: 1.5rem; font-size: 1.2rem; }

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: center;
}
.cart-item-image {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--paper);
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info h4 { font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-size: 15px; font-weight: 400; margin-bottom: 0.25rem; }
.cart-item-info p { font-size: 11px; color: var(--muted); margin-bottom: 0.6rem; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; letter-spacing: 0.05em; }
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--paper);
}
.qty-control button { padding: 4px 10px; font-size: 14px; }
.qty-control span { font-size: 13px; min-width: 24px; text-align: center; font-weight: 600; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }

.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 0.5rem; }
.cart-item-right .price { font-weight: 700; font-size: 14px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }
.remove-item {
  font-size: 11px;
  text-decoration: underline;
  color: var(--muted);
  text-underline-offset: 2px;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.cart-fulfillment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.ful-btn {
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  background: var(--bg);
  transition: all 0.2s;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.ful-btn.active { background: var(--ink); color: var(--yellow); border-color: var(--ink); }
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
}
.cart-subtotal span:last-child { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-style: normal; }
.cart-note { font-size: 12px; color: var(--muted); margin-bottom: 1rem; }

/* =========================================
   Product Modal
   ========================================= */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
}
.product-modal.open { display: block; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 920px;
  max-height: 92vh;
  background: var(--bg);
  border-radius: 20px;
  overflow: hidden;
  animation: modalIn 0.35s cubic-bezier(0.2,0.8,0.2,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translate(-50%, -46%); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  z-index: 2;
  font-size: 14px;
  transition: all 0.2s;
}
.modal-close:hover { background: var(--ink); color: var(--yellow); border-color: var(--ink); }
.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 92vh;
  overflow: hidden;
}
.modal-gallery {
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.main-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}
.main-image img { width: 100%; height: 100%; object-fit: cover; }

.modal-info {
  padding: 2.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.modal-info h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2.25rem;
  margin: 0.5rem 0;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.modal-price { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 700; font-size: 1.35rem; color: var(--ink); }
.modal-desc { color: var(--muted); margin: 0.5rem 0 1.5rem; line-height: 1.7; }
.modal-options { margin: 1rem 0; }

/* =========================================
   Toast
   ========================================= */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--yellow);
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 400;
  box-shadow: 0 10px 30px -5px rgba(0,0,0,0.4);
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 3rem 1.5rem 4rem;
    gap: 3rem;
  }
  .hero-content { min-height: auto; }
  .hero-images { height: 500px; }
  .signature-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 240px; }
  .sig-card-0 { grid-column: span 6; grid-row: span 2; }
  .sig-card-1, .sig-card-2, .sig-card-3, .sig-card-4 { grid-column: span 3; grid-row: span 1; }
  .lookbook-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 180px; }
  .look-1 { grid-column: span 6; grid-row: span 2; }
  .look-2, .look-3, .look-4, .look-5, .look-6, .look-7, .look-8 { grid-column: span 3; grid-row: span 1; }
  .look-3 { grid-row: span 2; }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 30px -18px rgba(0,0,0,0.5);
  }
  .nav-links.show { display: flex; }
  .nav-links a {
    font-size: 16px;
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a:last-child { border-bottom: none; }
  .menu-btn { display: flex; }
  .nav { padding: 0.85rem 1.25rem; }
  .big-marquee { padding: 1rem 0; }
  .story-grid,
  .reserve-inner,
  .visit-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .signature, .menu-section, .lookbook, .story, .reserve, .visit, .order-cta { padding: 4rem 1.25rem; }
  .modal-grid { grid-template-columns: 1fr; overflow-y: auto; }
  .main-image { min-height: 280px; }
  .modal-info { padding: 2rem; }
  .footer-links { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .story-stats { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .look figcaption { opacity: 1; transform: translateY(0); font-size: 12px; }
}
@media (max-width: 500px) {
  .section-head { align-items: flex-start; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item { grid-template-columns: 90px 1fr; padding: 0.75rem; gap: 0.75rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .hero-images { height: 400px; }
  .hero-img-1 { width: 75%; }
  .hero-img-2 { width: 55%; }
}

/* =========================================
   Logo (brand wordmark)
   ========================================= */
.logo-img {
  height: 40px;            /* text wordmark */
  width: auto;
  display: block;
}
.footer-logo {
  height: 152px;                /* circular floral badge — room to read it */
  width: auto;
  display: block;
  margin-bottom: 1.25rem;
  filter: invert(1);            /* black line-art → white on dark footer */
}
@media (max-width: 600px) {
  .logo-img { height: 32px; }
}

/* =========================================
   Press / Featured in
   ========================================= */
.press {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 2rem 1rem;
  text-align: center;
}
.press-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.press-feature {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem 1rem;
  padding: 1.2rem 2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
  transition: border-color 0.2s;
}
.press-feature:hover { border-color: var(--yellow); }
.press-outlet {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.press-quote { color: var(--ink); font-size: 1.05rem; }
.press-read {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow-deep);
}

/* =========================================
   Testimonials
   ========================================= */
.testimonials {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.tnotes {
  position: relative;
  min-height: 200px;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}
.tnote {
  position: absolute;
  inset: 2.5rem 0 0 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.tnote.show { opacity: 1; transform: none; }
.tnote p {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  line-height: 1.3;
  color: var(--ink);
}
.tnote p::before { content: '\201C'; color: var(--yellow); }
.tnote p::after  { content: '\201D'; color: var(--yellow); }
.tnote footer {
  margin-top: 1.5rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.tnote footer span { color: var(--muted); font-weight: 400; }

/* =========================================
   Menu — grouped text list
   ========================================= */
#menuGrid {
  display: block;
  column-count: 2;
  column-gap: 4rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 760px) { #menuGrid { column-count: 1; padding: 0 1.25rem; } }
.menu-group { break-inside: avoid; margin: 0 0 2.6rem; }
.menu-group-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  padding-bottom: 0.6rem;
  margin-bottom: 0.9rem;
  border-bottom: 1.5px solid var(--ink);
}
.menu-list { list-style: none; }
.menu-row { padding: 0.65rem 0; }
.menu-row + .menu-row { border-top: 1px dotted var(--line); }
.menu-row-head { display: flex; align-items: baseline; gap: 0.4rem; }
.menu-row-name { font-family: Georgia, 'Times New Roman', serif; font-size: 1.1rem; color: var(--ink); }
.menu-row-leader { flex: 1 1 auto; }
.menu-row-price { font-weight: 700; color: var(--ink); white-space: nowrap; }
.menu-row-desc { font-size: 0.85rem; line-height: 1.45; color: var(--muted); margin-top: 0.2rem; max-width: 48ch; }

/* =========================================
   Announcement bar
   ========================================= */
.announce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  background: var(--yellow);
  color: var(--ink);
  padding: 0.6rem 1.2rem;
  text-align: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.announce-go { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.announce:hover .announce-go { color: #fff; }

/* =========================================
   Workshops / Events
   ========================================= */
.events {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5.5rem 2rem;
  position: relative;
  overflow: hidden;
}
/* Floral accent — rose + leaf sprig, fully visible on the right */
.events::before {
  content: "";
  position: absolute;
  top: 3rem;
  right: 2rem;
  width: 190px;
  height: 330px;
  background: url("img/floral/vertical-sprig-rose.png") no-repeat center top / contain;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}
.events > * { position: relative; z-index: 1; }
@media (max-width: 900px) {
  .events::before { display: none; }
}
.events-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0.5rem 0 3rem;
  border-radius: 18px;
  overflow: hidden;
  background: var(--dusty);
}
.events-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 720px) { .events-grid { grid-template-columns: 1fr; } }
.event-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.event-tag {
  align-self: flex-start;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  background: var(--yellow);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}
.event-card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.9rem;
  margin-top: 0.4rem;
}
.event-card p { color: var(--ink-soft); }
.event-actions {
  margin-top: auto;
  padding-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.event-watch {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow-deep);
}
.event-watch:hover { color: var(--ink); }
.events-note {
  margin-top: 2rem;
  text-align: center;
  color: var(--muted);
}
.events-note a { color: var(--yellow-deep); font-weight: 600; }

/* =========================================
   Top info bar (static — replaces ticker)
   ========================================= */
.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1rem;
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  padding: 0.6rem 1.2rem;
  text-align: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.topbar-sep { color: var(--yellow); }

/* =========================================
   Brand statement (static — replaces marquee)
   ========================================= */
.statement {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 4.5rem 2rem;
}
.statement-line {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.statement-line .accent { color: var(--yellow); }
.statement-sub {
  margin-top: 1.3rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* =========================================
   Pet-friendly / Amber badge
   ========================================= */
.visit-pet {
  margin-top: 1.6rem;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.9);
}
.visit-pet strong { color: var(--yellow); font-weight: 700; }

/* =========================================
   Collapsible menu (accordion)
   ========================================= */
.menu-hint {
  text-align: center;
  color: var(--muted);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
#menuGrid {                       /* override earlier column layout */
  display: block;
  column-count: auto;
  max-width: 960px;
  margin: 1.5rem auto 0;
  padding: 0 2rem;
}
.menu-cat { border-top: 1.5px solid var(--ink); }
.menu-cat:last-child { border-bottom: 1.5px solid var(--ink); }
.menu-cat-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
}
.menu-cat-name { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.5rem, 3.4vw, 2.2rem); line-height: 1; }
.menu-cat-count {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--ink); background: var(--yellow);
  padding: 0.15rem 0.55rem; border-radius: 999px;
}
.menu-cat-chev { margin-left: auto; position: relative; width: 16px; height: 16px; flex: none; }
.menu-cat-chev::before, .menu-cat-chev::after {
  content: ''; position: absolute; background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-cat-chev::before { left: 0; top: 7px; width: 16px; height: 2px; }
.menu-cat-chev::after  { left: 7px; top: 0; width: 2px; height: 16px; }
.menu-cat.open .menu-cat-chev::after { transform: scaleY(0); opacity: 0; }   /* + becomes − */
.menu-cat-body { display: none; padding: 0.25rem 0 2rem; }
.menu-cat.open .menu-cat-body { display: block; column-count: 2; column-gap: 3.5rem; }
@media (max-width: 760px) {
  #menuGrid { padding: 0 1.25rem; }
  .menu-cat.open .menu-cat-body { column-count: 1; }
  .menu-cat-name { font-size: 1.5rem; }
}
.menu-cat-body .menu-group { break-inside: avoid; margin-bottom: 1.6rem; }
.menu-cat-body .menu-group:last-child { margin-bottom: 0; }
.menu-cat-body .menu-group-title { border-bottom: 1px solid var(--line); color: var(--yellow-deep); }

/* =========================================
   Amber (café dog) feature
   ========================================= */
.amber {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.8rem 0 0;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.amber img {
  width: 110px; height: 110px; flex: none;
  border-radius: 50%; object-fit: cover; object-position: center 50%;
  border: 3px solid var(--yellow);
}
.amber figcaption { display: flex; flex-direction: column; line-height: 1.2; }
.amber figcaption .script { font-size: 1.7rem; color: var(--ink); }
.amber figcaption span + span {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-top: 3px;
}
.look-2 img { object-position: center 82%; }

/* =========================================
   Image lightbox
   ========================================= */
img[data-zoom] { cursor: zoom-in; }
.amber-hint {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
}
.zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  background: rgba(0,0,0,0.9);
  cursor: zoom-out;
}
.zoom-overlay.open { display: flex; animation: zoomFade 0.2s ease; }
@keyframes zoomFade { from { opacity: 0; } to { opacity: 1; } }
.zoom-overlay img {
  max-width: min(92vw, 680px);
  max-height: 88vh;
  width: auto;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.zoom-close {
  position: absolute;
  top: 1.1rem;
  right: 1.4rem;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  background: none;
  cursor: pointer;
}

/* =========================================
   Scroll reveals
   ========================================= */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2,0.8,0.2,1); }
.reveal.revealed { opacity: 1; transform: none; }

/* =========================================
   Smart nav + back-to-top
   ========================================= */
.nav { transition: padding 0.25s ease, box-shadow 0.25s ease, background 0.25s ease; }
.nav.scrolled { padding-top: 0.5rem; padding-bottom: 0.5rem; box-shadow: 0 6px 24px -16px rgba(0,0,0,0.4); }
.nav.scrolled .logo-img { height: 32px; }
.nav-links a.active { color: var(--yellow-deep); }
.nav-links a.active:not(.nav-cta)::after { width: 100%; background: var(--yellow); }

.to-top {
  position: fixed;
  right: 1.4rem; bottom: 1.4rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink); color: var(--yellow);
  font-size: 1.2rem; line-height: 1;
  display: grid; place-items: center;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s;
  z-index: 120; cursor: pointer;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.4);
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--yellow); color: var(--ink); }

/* =========================================
   Live status (closed state)
   ========================================= */
.hero-hours.is-closed .open-dot { background: #d24b3e; box-shadow: 0 0 0 4px rgba(210,75,62,0.15); animation: none; }

/* =========================================
   Lightbox — gallery nav buttons
   ========================================= */
.zoom-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff;
  font-size: 2rem; line-height: 1; display: grid; place-items: center;
  cursor: pointer; transition: background 0.2s; z-index: 1;
}
.zoom-nav:hover { background: rgba(255,255,255,0.25); }
.zoom-prev { left: 2vw; }
.zoom-next { right: 2vw; }
.zoom-overlay.single .zoom-nav { display: none; }
@media (max-width: 600px) { .zoom-nav { width: 42px; height: 42px; font-size: 1.5rem; } }

/* =========================================
   Menu search
   ========================================= */
.menu-search { display: flex; justify-content: center; margin-top: 0.5rem; }
.menu-search input {
  width: 100%; max-width: 420px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.menu-search input:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(233,192,74,0.25); }
.menu-search input::placeholder { color: var(--muted); }
.menu-empty { text-align: center; color: var(--muted); padding: 2rem 0; font-style: italic; }

/* =========================================
   Hover micro-interactions
   ========================================= */
.menu-row { border-radius: 8px; transition: background 0.18s ease; }
.menu-row:hover { background: var(--bg-soft); }
.menu-row:hover .menu-row-name { color: var(--yellow-deep); }

.sig-card, .event-card, .look { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.sig-card:hover, .event-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(0,0,0,0.35); }

.look { overflow: hidden; }
.look img { transition: transform 0.5s ease; }
.look:hover img { transform: scale(1.05); }

.tnote { will-change: opacity; }

/* =========================================
   Brand statement — word pop-in
   ========================================= */
.statement-line .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.statement-line.words-in .word { opacity: 1; transform: none; }

/* =========================================
   Review stars
   ========================================= */
.tstars { color: var(--yellow); letter-spacing: 4px; font-size: 1.05rem; margin-bottom: 0.9rem; }

/* =========================================
   Private events + workshop details
   ========================================= */
.private { max-width: 1200px; margin: 0 auto; padding: 5.5rem 2rem; position: relative; overflow: hidden; }
/* Small orchid-cluster divider above the Testimonials heading — multiple blooms, not alone */
.testimonials::before {
  content: "";
  display: block;
  width: 100px;
  height: 72px;
  margin: 0 auto 1rem;
  background: url("img/floral/orchid-cluster-a.png") no-repeat center / contain;
  opacity: 0.5;
}
.private-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.event-meta {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px; letter-spacing: 0.05em; color: var(--muted); margin: 0.2rem 0;
}

/* Private events — proof strip */
.private-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
@media (max-width: 720px) { .private-proof { grid-template-columns: 1fr; } }
.private-proof .look { aspect-ratio: 4 / 3; }
.private-proof .look img { width: 100%; height: 100%; object-fit: cover; }
