/* ============= TOKENS ============= */
:root {
  --ink:        #0d0b09;
  --ink-2:      #14100c;
  --ink-3:      #1d1712;
  --cream:      #f2ede1;
  --cream-2:    #e8dfcd;
  --brick:      #b23a2e;
  --brick-bright:#cf4a3a;
  --gold:       #c99a4d;
  --gold-br:    #e0b768;
  --green:      #3d5a3d;
  --text-dk:    #f4efe6;
  --text-dk-mut:#c3b7a5;
  --text-lt:    #2c241b;
  --text-lt-mut:#6f6353;
  --line-dk:    rgba(201,154,77,0.20);
  --line-lt:    rgba(60,40,20,0.14);
  --maxw:       1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--text-dk);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }

.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  color: var(--gold);
}

/* ============= HEADER ============= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(13,11,9,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom-color: var(--line-dk);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 58px; width: auto; }
.header.scrolled .brand img { height: 48px; }

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dk);
  padding: 6px 0;
  position: relative;
  transition: color .2s ease;
}
.nav a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--brick);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover { color: var(--gold-br); }
.nav a:hover::after { transform: scaleX(1); }

.order-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid var(--brick);
  color: var(--text-dk);
  padding: 11px 20px;
  border-radius: 2px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease;
}
.order-btn:hover { background: var(--brick); color: #fff; }
.order-btn svg { width: 16px; height: 16px; }

.nav-toggle { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; color: var(--gold); }

/* ============= HERO ============= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, var(--ink) 30%, rgba(13,11,9,0.72) 48%, rgba(13,11,9,0.25) 70%, rgba(13,11,9,0.5) 100%),
    linear-gradient(0deg, var(--ink) 2%, transparent 30%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 120px 40px 80px;
}
.hero-copy { max-width: 620px; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 20px;
}
.hero h1 .red { color: var(--brick-bright); display: block; }
.hero-sub {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: clamp(15px, 1.6vw, 20px);
  color: var(--gold-br);
  margin: 22px 0 0;
  position: relative;
  padding-top: 22px;
}
.hero-sub::before { content: ''; position: absolute; top: 0; left: 0; width: 60px; height: 2px; background: var(--gold); }
.hero-text { margin: 26px 0 34px; font-size: 16px; line-height: 1.7; color: var(--text-dk-mut); max-width: 430px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 2px;
  transition: transform .2s ease, background .25s ease, color .25s ease, border-color .25s ease;
  border: 1.5px solid transparent;
}
.btn svg { width: 16px; height: 16px; transition: transform .2s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn-red { background: var(--brick); color: #fff; }
.btn-red:hover { background: var(--brick-bright); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(201,154,77,0.55); color: var(--cream); }
.btn-ghost:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-2px); }

.scroll-cue {
  position: absolute;
  bottom: 96px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 42px; height: 42px;
  border: 1px solid var(--line-dk);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,7px)} }

/* ============= STAT STRIP ============= */
.stats { background: var(--ink-2); border-top: 1px solid var(--line-dk); border-bottom: 1px solid var(--line-dk); position: relative; z-index: 4; }
.stats-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat { display: flex; align-items: center; gap: 14px; padding: 4px 26px; position: relative; }
.stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 10%; bottom: 10%; width: 1px; background: var(--line-dk); }
.stat-icon { color: var(--gold); flex-shrink: 0; }
.stat-icon svg { width: 34px; height: 34px; }
.stat-txt { font-family: 'Oswald', sans-serif; text-transform: uppercase; }
.stat-txt b { display: block; font-weight: 600; font-size: 15px; letter-spacing: 0.08em; color: var(--cream); }
.stat-txt span { display: block; font-weight: 300; font-size: 12px; letter-spacing: 0.14em; color: var(--text-dk-mut); }

/* ============= SECTION SHELLS ============= */
.section-cream { background: var(--cream); color: var(--text-lt); position: relative; overflow: hidden; }
.section-cream::before {
  content: '';
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 420px; height: 620px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 300'><g stroke='%233d5a3d' stroke-width='2' fill='none' opacity='0.5'><path d='M100 300 L100 60'/><path d='M100 200 Q60 160 40 90'/><path d='M100 200 Q140 160 160 90'/><path d='M100 160 Q70 120 55 60'/><path d='M100 160 Q130 120 145 60'/><path d='M100 130 Q85 90 80 40'/><path d='M100 130 Q115 90 120 40'/></g></svg>") no-repeat center;
  background-size: contain;
  opacity: 0.05;
  pointer-events: none;
}
.section-dark { background: var(--ink); color: var(--text-dk); }

.pad { padding: 110px 0; }
.pad-sm { padding: 80px 0; }

.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head .eyebrow { margin-bottom: 14px; display: inline-flex; align-items: center; gap: 14px; }
.sec-head .eyebrow::before, .sec-head .eyebrow::after { content: ''; width: 30px; height: 1px; background: var(--gold); opacity: 0.6; }
.sec-head h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1;
  letter-spacing: -0.01em;
}
.section-cream .sec-head h2 { color: var(--text-lt); }

/* ============= INSPIRED (MOSAIC) ============= */
.inspired { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }
.mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1.35fr 1fr; gap: 14px; height: 560px; }
.mosaic figure { overflow: hidden; border-radius: 3px; position: relative; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.mosaic figure:hover img { transform: scale(1.06); }
.mosaic .m-tall { grid-row: span 2; }
.inspired-copy .eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.inspired-copy .eyebrow::before { content:''; width: 28px; height: 1px; background: var(--gold); }
.inspired-copy h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--text-lt);
  margin-bottom: 24px;
}
.inspired-copy h2 .red { color: var(--brick); display: block; }
.inspired-copy p { font-size: 16.5px; line-height: 1.8; color: var(--text-lt-mut); max-width: 460px; margin-bottom: 20px; }
.salud { font-family: 'Sacramento', cursive; font-size: 46px; color: var(--green); line-height: 1; }

/* ============= EXPLORE MENU ============= */
.cats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cat { position: relative; aspect-ratio: 3 / 4; border-radius: 3px; overflow: hidden; display: block; }
.cat img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.cat:hover img { transform: scale(1.08); }
.cat::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,11,9,0) 40%, rgba(13,11,9,0.88) 100%); }
.cat-label { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px 18px; text-align: center; }
.cat-label .ci { color: var(--gold-br); margin-bottom: 10px; }
.cat-label .ci svg { width: 30px; height: 30px; margin: 0 auto; }
.cat-label h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 15px;
  color: #fff;
  line-height: 1.2;
}

/* ============= FAVORITES ============= */
.fav-wrap { position: relative; }
.fav-scroll { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 8px; scrollbar-width: none; }
.fav-scroll::-webkit-scrollbar { display: none; }
.fav { flex: 0 0 calc(20% - 15px); min-width: 230px; scroll-snap-align: start; position: relative; aspect-ratio: 3 / 4; border-radius: 3px; overflow: hidden; }
.fav img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.fav:hover img { transform: scale(1.06); }
.fav::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(13,11,9,0.9) 100%); }
.fav-name { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 18px 16px; font-family: 'Oswald', sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; font-size: 14px; color: #fff; }
.fav-arrows { position: absolute; top: 50%; width: 100%; left: 0; display: flex; justify-content: space-between; transform: translateY(-50%); pointer-events: none; }
.fav-arrow {
  pointer-events: auto;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(13,11,9,0.7);
  border: 1px solid var(--line-dk);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: background .2s ease, color .2s ease;
}
.fav-arrow:hover { background: var(--gold); color: var(--ink); }
.fav-arrow.prev { transform: translateX(-22px); }
.fav-arrow.next { transform: translateX(22px); }

/* ============= HAPPY HOUR ============= */
.happy { display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; }
.happy-media { position: relative; overflow: hidden; }
.happy-media img { width: 100%; height: 100%; object-fit: cover; }
.happy-copy { background: var(--ink-2); padding: 70px 8%; display: flex; flex-direction: column; justify-content: center; }
.happy-copy .eyebrow { margin-bottom: 16px; }
.happy-copy h2 { font-family: 'Playfair Display', serif; font-weight: 800; font-size: clamp(34px, 4vw, 52px); line-height: 1; color: var(--cream); margin-bottom: 18px; }
.happy-when { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.14em; font-size: 14px; color: var(--gold-br); margin-bottom: 12px; }
.happy-detail { font-size: 16px; color: var(--text-dk-mut); margin-bottom: 28px; max-width: 380px; }
.happy-detail b { color: var(--cream); font-weight: 600; }

/* ============= LOCATIONS ============= */
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.loc { background: var(--cream); border-radius: 4px; overflow: hidden; box-shadow: 0 20px 50px -24px rgba(0,0,0,0.5); }
.loc-img { aspect-ratio: 16 / 10; overflow: hidden; position: relative; background: var(--ink-3); }
.loc-img img { width: 100%; height: 100%; object-fit: cover; }
.loc-img::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(13,11,9,0.1), rgba(13,11,9,0.55)); }
.loc-body { padding: 24px 24px 26px; text-align: center; }
.loc-body h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 25px; letter-spacing: 0.02em; color: var(--text-lt); margin-bottom: 8px; }
.loc-addr { font-size: 13.5px; line-height: 1.5; color: var(--text-lt-mut); margin-bottom: 6px; }
.loc-phone { font-family: 'Oswald', sans-serif; font-size: 14px; letter-spacing: 0.06em; color: var(--brick); margin-bottom: 18px; }
.loc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.loc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 8px;
  border-radius: 2px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.loc-btn svg { width: 14px; height: 14px; }
.loc-btn.order { background: var(--brick); color: #fff; }
.loc-btn.order:hover { background: var(--brick-bright); }
.loc-btn.dir { border: 1.5px solid var(--line-lt); color: var(--text-lt); }
.loc-btn.dir:hover { border-color: var(--brick); color: var(--brick); }

/* ============= CTA BAND ============= */
.cta-band { position: relative; min-height: 420px; display: flex; align-items: center; overflow: hidden; }
.cta-band-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band-bg::after { content:''; position:absolute; inset:0; background: linear-gradient(90deg, var(--ink) 20%, rgba(13,11,9,0.7) 60%, rgba(13,11,9,0.4)); }
.cta-band-inner { position: relative; z-index: 2; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: clamp(40px, 6vw, 78px); line-height: 0.95; text-transform: uppercase; color: var(--cream); letter-spacing: -0.01em; }
.cta-band h2 .red { color: var(--brick-bright); display: block; }
.cta-band p { color: var(--text-dk-mut); margin: 18px 0 30px; font-size: 17px; max-width: 440px; }

/* ============= FOOTER ============= */
.footer { background: var(--ink-2); border-top: 1px solid var(--line-dk); padding: 66px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.foot-brand img { height: 76px; margin-bottom: 18px; }
.foot-brand p { font-size: 14px; color: var(--text-dk-mut); line-height: 1.7; max-width: 260px; }
.foot-col h4 { font-family: 'Oswald', sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: 0.16em; font-size: 13px; color: var(--gold); margin-bottom: 16px; }
.foot-col a, .foot-col p { display: block; font-size: 14px; color: var(--text-dk-mut); line-height: 1.9; transition: color .2s ease; }
.foot-col a:hover { color: var(--gold-br); }
.footer-legal { border-top: 1px solid var(--line-dk); padding: 22px 0; text-align: center; font-size: 12.5px; color: var(--text-lt-mut); }
.serape { height: 12px; background: repeating-linear-gradient(90deg, #b23a2e 0 26px, #c99a4d 26px 48px, #3d5a3d 48px 70px, #2a5a7a 70px 92px, #b23a2e 92px 114px, #e0b768 114px 136px, #6a3a7a 136px 158px); }

/* ============= MODAL ============= */
.modal-bd { position: fixed; inset: 0; background: rgba(8,6,4,0.8); backdrop-filter: blur(6px); z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-bd.open { display: flex; }
.modal { background: var(--ink-2); border: 1px solid var(--line-dk); border-radius: 6px; padding: 34px; max-width: 620px; width: 100%; position: relative; animation: mIn .25s ease; }
@keyframes mIn { from{opacity:0; transform:translateY(12px)} to{opacity:1; transform:translateY(0)} }
.modal-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-dk); color: var(--cream); display: flex; align-items: center; justify-content: center; transition: background .2s ease; }
.modal-close:hover { background: var(--brick); }
.modal .eyebrow { margin-bottom: 8px; }
.modal h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 26px; color: var(--cream); margin-bottom: 6px; }
.modal-sub { color: var(--text-dk-mut); font-size: 14px; margin-bottom: 24px; }
.pick { display: grid; gap: 11px; }
.pick-item { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; background: var(--ink-3); border: 1px solid var(--line-dk); border-radius: 3px; transition: border-color .2s ease, transform .2s ease; }
.pick-item:hover { border-color: var(--brick); transform: translateX(4px); }
.pick-item b { font-family: 'Oswald', sans-serif; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; font-size: 16px; color: var(--cream); }
.pick-item span { display: block; font-size: 12.5px; color: var(--text-dk-mut); margin-top: 3px; }
.pick-item .ar { color: var(--gold); }

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
  .inspired { grid-template-columns: 1fr; gap: 40px; }
  .mosaic { height: 440px; }
  .cats { grid-template-columns: repeat(3, 1fr); }
  .fav { flex: 0 0 calc(33.33% - 12px); }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; align-items: flex-start; position: absolute; top: 100%; left: 0; right: 0; background: rgba(13,11,9,0.98); backdrop-filter: blur(16px); padding: 22px 40px; gap: 16px; border-bottom: 1px solid var(--line-dk); }
  .nav-toggle { display: flex; }
  .order-btn span { display: none; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 20px 0; }
  .stat:nth-child(2)::after { display: none; }
  .happy { grid-template-columns: 1fr; }
  .happy-media { min-height: 260px; }
  .loc-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 22px; }
  .header-inner { padding: 0 22px; }
  .hero-inner { padding: 110px 22px 60px; }
  .pad { padding: 72px 0; }
  .cats { grid-template-columns: 1fr 1fr; }
  .cats .cat:last-child { grid-column: 1 / -1; aspect-ratio: 16/7; }
  .fav { flex: 0 0 78%; }
  .fav-arrows { display: none; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat { justify-content: center; }
  .stat::after { display: none !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { width: 100%; }
  .btn { flex: 1; justify-content: center; }
  .loc-actions { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; height: 380px; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }

/* ============= ABOUT PAGE ============= */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,11,9,0.72), rgba(13,11,9,0.88)), linear-gradient(0deg, var(--ink) 3%, transparent 40%);
}
.page-hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 150px 40px 70px; text-align: center; }
.page-hero .eyebrow { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.page-hero .eyebrow::before, .page-hero .eyebrow::after { content:''; width: 30px; height: 1px; background: var(--gold); opacity: .6; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--cream);
}
.page-hero h1 .red { color: var(--brick-bright); }

/* statement block */
.statement { text-align: center; max-width: 900px; margin: 0 auto; }
.statement p {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 31px);
  line-height: 1.5;
  color: var(--text-lt);
}
.statement p .hl { color: var(--brick); font-style: normal; font-weight: 600; }
.statement .rule { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 30px; }

/* pillars */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.pillar { text-align: center; padding: 0 14px; }
.pillar-icon { color: var(--green); margin: 0 auto 16px; }
.pillar-icon svg { width: 42px; height: 42px; margin: 0 auto; }
.pillar h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 15px;
  color: var(--text-lt);
  margin-bottom: 10px;
}
.pillar p { font-size: 14.5px; line-height: 1.7; color: var(--text-lt-mut); }

/* split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.flip .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 3px; }
.split-copy .eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.split-copy .eyebrow::before { content:''; width: 28px; height: 1px; background: var(--gold); }
.split-copy h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 20px;
}
.section-cream .split-copy h2 { color: var(--text-lt); }
.split-copy p { font-size: 16px; line-height: 1.8; color: var(--text-dk-mut); margin-bottom: 16px; max-width: 460px; }
.section-cream .split-copy p { color: var(--text-lt-mut); }

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; gap: 34px; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split.flip .split-media { order: 0; }
  .page-hero-inner { padding: 130px 22px 56px; }
}

.fav-name .fav-note{
  display:block;
  margin-top:4px;
  font-family:'Inter',sans-serif;
  font-weight:500;
  font-size:11px;
  letter-spacing:0.04em;
  text-transform:none;
  color:var(--gold-br);
}
