/* Beverly Hills teuscher — landing page styles */

/* ---------- Fonts (self-hosted, subsets from Google Fonts) ---------- */
@font-face {
  font-family: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/marcellus-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/marcellus-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/work-sans-vietnamese.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/work-sans-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/work-sans-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Base ---------- */
:root {
  --ink: #1c1d1d;
  --cream: #f2ede6;
  --cream-bright: #f6f2ec;
  --gold: #bf9a6a;
  --gold-dark: #a8834f;
  --bronze: #8a6a3c;
  --sand: #b9a483;
  --champagne: #cbaa7c;
  --body: #26241f;
  --muted: #57534c;
  --line: #ddd3c3;
  --line-light: #e3d9c9;
  --input-line: #d8cdbb;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--cream); -webkit-font-smoothing: antialiased; }
body { font-family: 'Work Sans', Helvetica, Arial, sans-serif; color: var(--body); }
img { display: block; max-width: 100%; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-dark); }
input, button { font-family: inherit; }
h1, h2, h3, .serif { font-family: 'Marcellus', Georgia, serif; font-weight: 400; }

.page { width: 100%; overflow-x: hidden; background: var(--cream); }
.container { max-width: 1100px; margin: 0 auto; }
.eyebrow { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--bronze); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 34px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 0;
  cursor: pointer;
  text-align: center;
  line-height: 1.3;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-dark); color: var(--ink); }
.btn-cream { background: var(--cream-bright); color: var(--ink); }
.btn-cream:hover { background: #e2d3ba; color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--cream-bright); }
.btn-dark:hover { background: var(--gold); color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  background: var(--ink);
  padding: 12px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.site-header .brand { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.site-header .brand img { height: 46px; width: auto; object-fit: contain; }
.site-header .brand-address { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sand); }
.site-header .header-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.site-header .open-daily { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(246, 242, 236, 0.75); }
.site-header .btn { min-height: 48px; padding: 0 22px; font-size: 13px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  min-height: min(88vh, 780px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,29,29,0.62) 0%, rgba(28,29,29,0.32) 34%, rgba(28,29,29,0.9) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(60px, 10vw, 96px) 22px clamp(44px, 6vw, 68px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .eyebrow { color: var(--champagne); margin-bottom: 18px; }
.hero h1 {
  color: var(--cream-bright);
  font-size: clamp(34px, 7.4vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  max-width: 19em;
  text-wrap: pretty;
}
.hero .lede {
  font-size: clamp(16px, 2.1vw, 20px);
  line-height: 1.55;
  color: rgba(246, 242, 236, 0.9);
  margin: 0 0 30px;
  max-width: 34em;
  text-wrap: pretty;
}
.hero .hours-line { margin-top: 22px; font-size: 14px; letter-spacing: 0.06em; color: rgba(246, 242, 236, 0.88); }

/* ---------- Promo (10% off) ---------- */
.promo { background: #ffffff; border-bottom: 1px solid var(--line-light); padding: clamp(48px, 7vw, 84px) 22px; }
.promo .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.promo .eyebrow { margin-bottom: 14px; }
.promo h2 { font-size: clamp(30px, 5vw, 46px); line-height: 1.12; margin: 0 0 16px; color: var(--ink); text-wrap: pretty; }
.promo .promo-copy { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0 0 26px; max-width: 34em; text-wrap: pretty; }
.promo-thanks { font-family: 'Marcellus', Georgia, serif; font-size: 22px; line-height: 1.4; color: var(--bronze); padding: 18px 0; }
.promo-form { display: flex; flex-direction: column; gap: 14px; max-width: 560px; }
.promo-form .name-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.promo-form input[type="text"],
.promo-form input[type="email"],
.promo-form input[type="tel"] {
  min-height: 56px;
  padding: 0 16px;
  background: #ffffff;
  border: 1px solid var(--input-line);
  border-radius: 2px;
  font-size: 16px;
  color: var(--body);
  outline: none;
  width: 100%;
}
.promo-form .phone-row { display: flex; gap: 10px; }
.promo-form .phone-prefix {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid var(--input-line);
  border-radius: 2px;
  font-size: 16px;
  color: var(--muted);
  background: #faf7f1;
}
.promo-form .phone-row input { flex: 1 1 auto; min-width: 0; }
.promo-form .consent { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.promo-form .consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--bronze); flex: 0 0 auto; }
.promo-form .consent span { font-size: 13px; line-height: 1.5; color: var(--muted); }
.promo-form button {
  min-height: 60px;
  padding: 0 32px;
  background: var(--ink);
  color: var(--cream-bright);
  border: 0;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}
.promo-form button:hover { background: var(--gold); color: var(--ink); }
.promo-photo .frame { position: relative; aspect-ratio: 4 / 5; }
.promo-photo .frame img { width: 100%; height: 100%; object-fit: cover; }
.promo-photo .caption { margin-top: 16px; }
.promo-photo .caption-title { font-family: 'Marcellus', Georgia, serif; font-size: 22px; color: var(--ink); }
.promo-photo .caption-sub { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bronze); margin-top: 6px; }

/* ---------- Why Walk In ---------- */
.reasons { background: var(--cream); padding: clamp(56px, 9vw, 104px) 22px; }
.reasons h2 { font-size: clamp(28px, 4.6vw, 44px); line-height: 1.14; margin: 0 0 44px; color: var(--ink); text-align: center; }
.reasons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(24px, 3vw, 40px); }
.reason { border-top: 1px solid var(--line); padding-top: 24px; }
.reason .num { font-family: 'Marcellus', Georgia, serif; font-size: 34px; color: var(--bronze); line-height: 1; margin-bottom: 16px; }
.reason h3 { font-size: 23px; margin: 0 0 12px; color: var(--ink); }
.reason p { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0; text-wrap: pretty; }

/* ---------- Summer Drinks ---------- */
.summer { background: #ffffff; padding: clamp(56px, 9vw, 104px) 22px; }
.summer .eyebrow { margin-bottom: 16px; }
.summer h2 { font-size: clamp(28px, 4.8vw, 46px); line-height: 1.12; margin: 0 0 18px; color: var(--ink); max-width: 20em; text-wrap: pretty; }
.summer .lede { font-size: clamp(16px, 1.9vw, 19px); line-height: 1.6; color: var(--muted); margin: 0 0 42px; max-width: 38em; text-wrap: pretty; }
.summer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(20px, 2.6vw, 32px); }
.drink-card { background: #ffffff; border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.drink-card .frame { position: relative; aspect-ratio: 4 / 5; }
.drink-card .frame img { width: 100%; height: 100%; object-fit: contain; }
.drink-card .card-body { padding: 22px 22px 26px; }
.drink-card h3 { font-size: 22px; margin: 0 0 10px; color: var(--ink); }
.drink-card p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; text-wrap: pretty; }
.summer .also { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 34px 0 30px; }

/* ---------- The Chocolate ---------- */
.chocolate { background: var(--ink); padding: clamp(56px, 9vw, 104px) 22px; color: var(--cream-bright); }
.chocolate h2 { font-size: clamp(28px, 4.8vw, 46px); line-height: 1.12; margin: 0 0 18px; color: var(--cream-bright); max-width: 20em; text-wrap: pretty; }
.chocolate .lede { font-size: clamp(16px, 1.9vw, 19px); line-height: 1.65; color: rgba(246, 242, 236, 0.78); margin: 0 0 46px; max-width: 40em; text-wrap: pretty; }
.chocolate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(22px, 2.6vw, 34px); }
.chocolate-item .frame { position: relative; aspect-ratio: 1 / 1; margin-bottom: 18px; }
.chocolate-item .frame img { width: 100%; height: 100%; object-fit: cover; }
.chocolate-item h3 { font-size: 21px; margin: 0 0 10px; color: var(--cream-bright); }
.chocolate-item p { font-size: 15px; line-height: 1.6; color: rgba(246, 242, 236, 0.7); margin: 0; text-wrap: pretty; }
.chocolate .cta-row { margin-top: 44px; }

/* ---------- Reviews ---------- */
.reviews { background: var(--cream); padding: clamp(56px, 9vw, 104px) 22px; }
.reviews h2 { font-size: clamp(28px, 4.6vw, 44px); line-height: 1.14; margin: 0 0 40px; color: var(--ink); text-align: center; }
.review-track {
  display: flex;
  gap: clamp(18px, 2.2vw, 26px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  padding: 4px 22px 18px;
  margin: 0 -22px;
  -webkit-overflow-scrolling: touch;
}
.review-track blockquote {
  margin: 0;
  background: #ffffff;
  padding: 34px 30px;
  border-radius: 3px;
  flex: 0 0 auto;
  width: min(84vw, 340px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-track p { font-family: 'Marcellus', Georgia, serif; font-size: 20px; line-height: 1.5; color: var(--ink); margin: 0 0 16px; text-wrap: pretty; }
.review-track footer { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze); }
.review-nav { display: flex; justify-content: center; gap: 12px; margin-top: 6px; }
.review-nav button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-nav button:hover { background: var(--ink); color: var(--cream-bright); border-color: var(--ink); }
.ratings { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 28px; margin: 30px 0; }
.ratings .rating { display: flex; align-items: baseline; gap: 10px; }
.ratings .rating-source { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.ratings .rating-score { font-family: 'Marcellus', Georgia, serif; font-size: 22px; color: var(--ink); }
.ratings .divider { width: 1px; height: 22px; background: var(--line); }
.reviews .cta-row { display: flex; justify-content: center; }

/* ---------- Visit ---------- */
.visit { background: var(--cream); padding: clamp(56px, 9vw, 104px) 22px; }
.visit h2 { font-size: clamp(28px, 4.8vw, 46px); line-height: 1.14; margin: 0 0 36px; color: var(--ink); }
.visit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(28px, 4vw, 56px); align-items: start; }
.visit-details { display: flex; flex-direction: column; gap: 26px; }
.visit .label { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--bronze); margin-bottom: 10px; }
.visit .address { font-family: 'Marcellus', Georgia, serif; font-size: clamp(22px, 3vw, 28px); line-height: 1.3; color: var(--ink); }
.visit .hours { font-size: 18px; line-height: 1.7; color: var(--body); }
.visit .phone { font-family: 'Marcellus', Georgia, serif; font-size: clamp(22px, 3vw, 28px); color: var(--ink); }
.visit .btn { min-height: 70px; padding: 0 30px; font-size: 16px; letter-spacing: 0.16em; display: flex; }
.visit iframe { width: 100%; height: 320px; border: 0; border-radius: 3px; display: block; }
.visit .map-note { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 20px 0 0; text-wrap: pretty; }

/* ---------- Inner Circle ---------- */
.inner-circle { background: var(--ink); padding: clamp(56px, 9vw, 96px) 22px; color: var(--cream-bright); }
.inner-circle .container { max-width: 660px; text-align: center; }
.inner-circle h2 { font-size: clamp(26px, 4.4vw, 42px); line-height: 1.15; margin: 0 0 18px; color: var(--cream-bright); text-wrap: pretty; }
.inner-circle .lede { font-size: 17px; line-height: 1.65; color: rgba(246, 242, 236, 0.78); margin: 0 0 32px; text-wrap: pretty; }
.circle-thanks { font-family: 'Marcellus', Georgia, serif; font-size: 24px; color: var(--champagne); padding: 26px 0; }
.circle-form { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.circle-form input[type="email"] {
  flex: 1 1 260px;
  min-height: 62px;
  padding: 0 20px;
  background: rgba(246, 242, 236, 0.06);
  border: 1px solid rgba(246, 242, 236, 0.28);
  border-radius: 2px;
  color: var(--cream-bright);
  font-size: 16px;
  outline: none;
}
.circle-form button { flex: 0 0 auto; min-height: 62px; padding: 0 32px; }
.inner-circle .fine-print { font-size: 13px; color: rgba(246, 242, 236, 0.55); margin: 20px 0 0; }

/* ---------- Footer ---------- */
.site-footer { background: #e9e2d7; padding: 44px 22px 110px; text-align: center; }
.site-footer .footer-brand { font-family: 'Marcellus', Georgia, serif; font-size: 20px; color: var(--ink); margin-bottom: 10px; }
.site-footer .footer-info { font-size: 14px; line-height: 1.7; color: var(--muted); }

/* ---------- Sticky bar ---------- */
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(28, 29, 29, 0.96);
  padding: 10px 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.sticky-bar .btn { flex: 1 1 auto; max-width: 520px; min-height: 54px; display: flex; }

.hidden { display: none !important; }
