/* Hasina's Burmese Kitchen - preview build by NH Media Web.
   Two self-hosted variable faces, no libraries, no external requests. */

@font-face {
  font-family: 'EB Garamond';
  src: url('fonts/eb-garamond-latin-var.woff2') format('woff2-variations');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('fonts/rubik-latin-var.woff2') format('woff2-variations');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --dsp: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --ui: 'Rubik', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --cream: #FBF3E6;
  --cream-2: #F4E7D2;
  --paper: #FFFAF1;
  --ink: #2B1418;
  --ink-2: #5A3A3E;

  --lac: #6E1220;
  --lac-2: #5C0E1B;
  --lac-3: #4A0B16;
  --plum: #2A0D14;

  --gold: #C8952F;
  --gold-lt: #E3BC72;
  --gold-pale: #F0DCAE;
  --blossom: #E9A2A8;

  --shell: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 17.5px;
  font-weight: 400;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

::selection { background: var(--gold); color: var(--plum); }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 32px;
}

.vh {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 99;
  background: var(--gold); color: var(--plum);
  padding: 12px 20px; font-weight: 600; text-decoration: none;
}
.skip:focus { left: 0; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.ext { font-size: .82em; margin-left: 2px; }

/* ------------------------------------------------------------ section label */

.label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--lac);
}
.label::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--gold);
}
.label-gold { color: var(--gold-lt); }
.label-gold::before { background: var(--gold); }

/* --------------------------------------------------------- preview banner */

.pbar {
  background: var(--plum);
  color: var(--gold-pale);
  border-bottom: 2px solid var(--gold);
}
.pbar-in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 26px;
  padding-top: 11px;
  padding-bottom: 11px;
}
.pbar-txt {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 62ch;
}
.pbar-acts {
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 13.5px;
}
.pbar-btn {
  background: var(--gold);
  color: var(--plum);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 17px;
  border-radius: 3px;
  white-space: nowrap;
}
.pbar-btn:hover { background: var(--gold-lt); }
.pbar-mail { color: var(--gold-pale); text-decoration: underline; white-space: nowrap; }

/* ------------------------------------------------------------------ header */

.hdr {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 243, 230, .95);
  border-bottom: 1px solid rgba(110, 18, 32, .16);
  backdrop-filter: saturate(140%) blur(8px);
}
.hdr-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.brand-mark { width: 50px; height: 50px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.03; }
.brand-name {
  font-family: var(--dsp);
  font-size: 27px;
  font-weight: 600;
  color: var(--lac);
  letter-spacing: .005em;
}
.brand-sub {
  font-family: var(--ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .21em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 3px;
}
.nav { display: flex; gap: 27px; }
.nav a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--lac); border-bottom-color: var(--gold); }
.hdr-call {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  line-height: 1.15;
}
.hdr-call-k {
  font-size: 10.5px; font-weight: 600; letter-spacing: .17em;
  text-transform: uppercase; color: var(--ink-2);
}
.hdr-call-n {
  font-family: var(--dsp);
  font-size: 24px; font-weight: 600; color: var(--lac);
}
.hdr-call:hover .hdr-call-n { color: var(--gold); }

/* -------------------------------------------------------------------- hero */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--plum);
}
.hero-img {
  position: absolute;
  inset: -3%;
  background: var(--plum) url('assets/img/own-hero-chicken-bowl.jpg') center 58% / cover no-repeat;
  animation: burns 30s ease-in-out infinite alternate;
}
@keyframes burns {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to   { transform: scale(1.09) translate3d(-1.4%, -1.2%, 0); }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(102deg, rgba(30, 7, 12, .95) 0%, rgba(37, 9, 15, .90) 38%, rgba(42, 13, 20, .52) 68%, rgba(42, 13, 20, .30) 100%),
    linear-gradient(to top, rgba(25, 6, 11, .72), rgba(25, 6, 11, 0) 42%);
}
.hero-in {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 128px;
  max-width: 1060px;
}
.hero-eyebrow {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.hero-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(200, 149, 47, .22);
  flex: none;
}
.hero-h {
  font-family: var(--dsp);
  font-weight: 600;
  font-size: clamp(42px, 6.4vw, 74px);
  line-height: 1.03;
  letter-spacing: -.012em;
  margin: 0 0 24px;
  color: #FFF6E7;
  max-width: 16ch;
}
.hero-h .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: rise .78s cubic-bezier(.2, .7, .25, 1) forwards;
}
.hero-h .w:nth-child(1) { animation-delay: .06s; }
.hero-h .w:nth-child(2) { animation-delay: .14s; }
.hero-h .w:nth-child(3) { animation-delay: .22s; }
.hero-h .w:nth-child(4) { animation-delay: .32s; }
.hero-h .w:nth-child(5) { animation-delay: .40s; }
.hero-h .w:nth-child(6) { animation-delay: .48s; }
.hero-h .wl { color: var(--gold-lt); font-style: italic; }
@keyframes rise { to { opacity: 1; transform: none; } }

.hero-p {
  margin: 0 0 34px;
  max-width: 46ch;
  font-size: 19px;
  line-height: 1.68;
  color: #F3E3CC;
}
.hero-acts { margin: 0; display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: .015em;
  padding: 15px 28px;
  border-radius: 3px;
  border: 2px solid transparent;
}
.btn-gold { background: var(--gold); color: #23090E; }
.btn-gold:hover { background: var(--gold-lt); }
.btn-ghost { border-color: rgba(240, 220, 174, .55); color: var(--gold-pale); }
.btn-ghost:hover { border-color: var(--gold); background: rgba(200, 149, 47, .14); }

.hero-cards {
  position: absolute;
  right: 32px;
  bottom: 42px;
  z-index: 3;
  display: flex;
  gap: 14px;
}
.hcard {
  background: rgba(251, 243, 230, .95);
  border-left: 4px solid var(--gold);
  padding: 15px 22px 14px;
  min-width: 124px;
  opacity: 0;
  animation: rise .8s ease .8s forwards;
}
.hcard:last-child { animation-delay: .95s; }
.hcard-n {
  margin: 0;
  font-family: var(--dsp);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--lac);
}
.hcard-word { font-size: 33px; }
.hcard-k {
  margin: 5px 0 0;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* ------------------------------------------------------------- proof strip */

.strip {
  background: var(--lac);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  overflow: hidden;
  padding: 13px 0;
}
.strip-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: slide 46s linear infinite;
}
.strip-track span {
  font-family: var(--dsp);
  font-size: 21px;
  font-weight: 500;
  color: var(--gold-pale);
  white-space: nowrap;
}
.strip-track i {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
}
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----------------------------------------------------------------- reveals */

.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .25, 1);
}
.rv.in-view { opacity: 1; transform: none; }

/* ----------------------------------------------------------------- kitchen */

.kitchen { padding: 104px 0 96px; background: var(--cream); }
.k-grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 68px;
  align-items: center;
}
.k-h {
  font-family: var(--dsp);
  font-size: clamp(32px, 3.6vw, 50px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0 0 22px;
  color: var(--lac);
  max-width: 18ch;
}
.k-lead { font-size: 19.5px; line-height: 1.66; margin: 0 0 18px; }
.k-copy p { margin: 0 0 16px; color: #3D2226; }
.k-say {
  font-family: var(--dsp);
  font-size: 25px;
  font-style: italic;
  color: var(--lac);
  border-top: 2px solid var(--gold);
  padding-top: 18px;
  margin-top: 28px;
}
.k-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.k-fig { margin: 0; overflow: hidden; border-radius: 3px; }
.k-fig img { width: 100%; height: 100%; object-fit: cover; }
.k-fig-a { grid-row: span 2; }
.k-fig-a img { min-height: 420px; }
.k-fig-b img, .k-fig-c img { height: 202px; }

/* ------------------------------------------------------------------- press */

.press {
  background: var(--lac);
  padding: 92px 0;
  position: relative;
}
.press::before,
.press::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 3px;
  background: var(--gold);
}
.press::before { top: 0; }
.press::after { bottom: 0; }
.press-in { max-width: 900px; }
.press-q {
  margin: 0;
  text-indent: -.44em;
}
.press-q p {
  margin: 0;
  font-family: var(--dsp);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.22;
  color: #FFF6E7;
}
.press-q p::before { content: "\201C"; }
.press-q p::after { content: "\201D"; }
.press-att {
  margin: 26px 0 8px;
  font-size: 16px;
  color: var(--gold-pale);
  max-width: 56ch;
}
.press-src { margin: 0; font-size: 13.5px; }
.press-src a {
  color: var(--gold-lt);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.press-note {
  margin-top: 40px;
  border-top: 1px solid rgba(200, 149, 47, .45);
  padding-top: 26px;
}
.press-note p {
  margin: 0;
  max-width: 74ch;
  font-size: 16.5px;
  line-height: 1.72;
  color: #EBD6BC;
}

/* -------------------------------------------------------------------- menu */

.menu { padding: 104px 0 100px; background: var(--cream-2); }
.m-head { max-width: 720px; margin-bottom: 46px; }
.m-h {
  font-family: var(--dsp);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.012em;
  margin: 0 0 16px;
  color: var(--lac);
}
.m-sub { margin: 0; font-size: 18.5px; max-width: 58ch; color: #3D2226; }

.m-card {
  background: var(--paper);
  border: 2px solid var(--gold);
  border-radius: 4px;
  padding: 46px 46px 38px;
  box-shadow: 0 24px 60px -34px rgba(74, 11, 22, .5);
  position: relative;
}
.m-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(200, 149, 47, .48);
  border-radius: 2px;
  pointer-events: none;
}
.m-cols {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 46px;
}
.m-group + .m-group { margin-top: 38px; }
.m-gh {
  font-family: var(--ui);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lac);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 3px double var(--gold);
}
.m-list { list-style: none; margin: 0; padding: 0; }
.m-list li { margin: 0 0 15px; }
.m-list b {
  display: block;
  font-family: var(--dsp);
  font-size: 21.5px;
  font-weight: 600;
  line-height: 1.24;
  color: var(--ink);
}
.m-list span {
  display: block;
  font-size: 15px;
  line-height: 1.58;
  color: #5A3A3E;
  margin-top: 2px;
}

.m-slot {
  margin-top: 40px;
  border: 2px dashed rgba(110, 18, 32, .4);
  border-radius: 3px;
  padding: 24px 26px;
  background: rgba(200, 149, 47, .08);
}
.m-slot-k {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--lac);
}
.m-slot-p { margin: 0; font-size: 15.5px; line-height: 1.66; color: #4A2C31; max-width: 78ch; }

/* ----------------------------------------------------------------- gallery */

.gal { padding: 100px 0; background: var(--lac-2); }
.g-h {
  font-family: var(--dsp);
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  color: #FFF6E7;
}
.g-head { margin-bottom: 40px; }

.g-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.g-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  background: var(--lac-3);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; }
.g-tall { grid-row: span 2; }
.g-tall img { min-height: 100%; }
.g-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 44px 18px 15px;
  background: linear-gradient(to top, rgba(25, 5, 10, .93), rgba(25, 5, 10, .55) 52%, rgba(25, 5, 10, 0));
  color: #FBEFD9;
  font-size: 15px;
  line-height: 1.4;
}
.g-tag {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 4px;
}

.g-band {
  margin: 18px 0 0;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.g-band img { width: 100%; height: 100%; object-fit: cover; max-height: 460px; }
.g-band figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 54px 24px 18px;
  background: linear-gradient(to top, rgba(25, 5, 10, .92), rgba(25, 5, 10, 0));
  color: #FBEFD9;
  font-size: 15.5px;
}

.g-drinks {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.6fr;
  gap: 18px;
  align-items: stretch;
}
.g-drinks .g-item img { height: 100%; }
.g-tall2 img { min-height: 260px; }

.g-note {
  border: 2px dashed rgba(227, 188, 114, .5);
  border-radius: 3px;
  padding: 22px 24px;
  background: rgba(240, 220, 174, .07);
  align-self: stretch;
  display: flex;
  align-items: center;
}
.g-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.62;
  color: #F0DFC4;
}
.g-note b { color: var(--gold-lt); }

/* ---------------------------------------------------------------- catering */

.cat { padding: 96px 0; background: var(--cream); }
.cat-in {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 60px;
  align-items: center;
}
.cat-h {
  font-family: var(--dsp);
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 20px;
  color: var(--lac);
}
.cat-copy p { margin: 0 0 16px; color: #3D2226; }
.cat-call { font-size: 18.5px; }
.cat-call a {
  font-family: var(--dsp);
  font-weight: 700;
  font-size: 24px;
  color: var(--lac);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}
.cat-call a:hover { color: var(--gold); }
.cat-list {
  list-style: none;
  margin: 0;
  padding: 30px 32px;
  background: var(--lac);
  border-left: 5px solid var(--gold);
  border-radius: 3px;
}
.cat-list li {
  font-family: var(--dsp);
  font-size: 23px;
  color: #FFF6E7;
  padding: 11px 0;
  border-bottom: 1px solid rgba(200, 149, 47, .4);
}
.cat-list li:last-child { border-bottom: 0; }

/* ----------------------------------------------------------------- reviews */

.rev { padding: 100px 0; background: var(--cream-2); }
.r-head { margin-bottom: 40px; }
.r-h {
  font-family: var(--dsp);
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  color: var(--lac);
}
.r-lead {
  margin: 0 0 22px;
  background: var(--paper);
  border-left: 5px solid var(--gold);
  border-radius: 3px;
  padding: 38px 44px 30px;
  box-shadow: 0 20px 48px -34px rgba(74, 11, 22, .45);
}
.r-lead p {
  margin: 0;
  font-family: var(--dsp);
  font-size: clamp(22px, 2.5vw, 31px);
  font-style: italic;
  line-height: 1.36;
  color: var(--ink);
  text-indent: -.42em;
}
.r-lead p::before { content: "\201C"; }
.r-lead p::after { content: "\201D"; }
.r-lead footer,
.r-card footer {
  margin-top: 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--lac);
}
.r-src {
  font-weight: 400;
  color: var(--ink-2);
  margin-left: 8px;
}

.r-grid {
  display: grid;
  grid-template-columns: 1fr 1fr .82fr;
  gap: 22px;
  align-items: stretch;
}
.r-card {
  margin: 0;
  background: var(--paper);
  border-top: 3px solid var(--gold);
  border-radius: 3px;
  padding: 28px 30px 24px;
}
.r-card p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.64;
  color: #3D2226;
}
.r-data {
  background: var(--lac);
  border-radius: 3px;
  padding: 30px 32px;
  color: #F3E3CC;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.r-data-n, .r-data-n2 {
  margin: 0;
  font-family: var(--dsp);
  font-size: 54px;
  font-weight: 700;
  line-height: .96;
  color: var(--gold-lt);
}
.r-data-n2 { font-size: 46px; }
.r-data-k {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  color: #EBD6BC;
  line-height: 1.45;
}
.r-data-rule {
  margin: 20px 0;
  height: 2px;
  background: rgba(200, 149, 47, .5);
}

/* -------------------------------------------------------------------- find */

.find { padding: 100px 0; background: var(--cream); }
.f-head { max-width: 760px; margin-bottom: 42px; }
.f-h {
  font-family: var(--dsp);
  font-size: clamp(31px, 3.7vw, 48px);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 14px;
  color: var(--lac);
}
.f-sub { margin: 0; font-size: 18px; color: #3D2226; max-width: 56ch; }

.f-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.f-box {
  background: var(--paper);
  border-top: 3px solid var(--gold);
  border-radius: 3px;
  padding: 26px 28px 24px;
}
.f-box-wide { grid-column: span 1; }
.f-k {
  margin: 0 0 12px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.f-a {
  margin: 0 0 14px;
  font-family: var(--dsp);
  font-size: 25px;
  line-height: 1.28;
  color: var(--lac);
}
.f-links a,
.f-e a {
  color: var(--lac);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 15px;
}
.f-links { margin: 0; }
.f-tel { margin: 0 0 8px; }
.f-tel a {
  font-family: var(--dsp);
  font-size: 31px;
  font-weight: 700;
  color: var(--lac);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}
.f-tel a:hover { color: var(--gold); }
.f-e { margin: 0; word-break: break-word; }
.f-list { list-style: none; margin: 0; padding: 0; }
.f-list li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 9px;
  color: #3D2226;
}
.f-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.f-slot {
  border: 2px dashed rgba(110, 18, 32, .42);
  border-top: 2px dashed rgba(110, 18, 32, .42);
  background: rgba(200, 149, 47, .09);
}
.f-slot-t {
  margin: 0 0 10px;
  font-family: var(--dsp);
  font-size: 24px;
  font-weight: 600;
  color: var(--lac);
}
.f-slot-p { margin: 0; font-size: 14.5px; line-height: 1.6; color: #4A2C31; }

/* --------------------------------------------------------------------- cta */

.cta {
  background: var(--plum);
  padding: 92px 0;
  border-top: 3px solid var(--gold);
  text-align: center;
}
.cta-h {
  font-family: var(--dsp);
  font-size: clamp(33px, 4.4vw, 58px);
  font-weight: 600;
  line-height: 1.06;
  margin: 0 0 14px;
  color: #FFF6E7;
}
.cta-p { margin: 0 0 30px; font-size: 18.5px; color: #E5CFAF; }
.cta-num { margin: 0 0 16px; }
.cta-num a {
  font-family: var(--dsp);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: var(--gold-lt);
  text-decoration: none;
  line-height: 1;
}
.cta-num a:hover { color: var(--gold-pale); }
.cta-sub {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #D6BE99;
}

/* --------------------------------------------------------- about this preview */

.ap {
  background: var(--cream-2);
  border-top: 2px dashed rgba(110, 18, 32, .35);
}
.ap-in { padding: 54px 32px 50px; max-width: 900px; }
.ap-h {
  font-family: var(--ui);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lac);
  margin: 0 0 20px;
}
.ap p {
  margin: 0 0 14px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #4A2C31;
}
.ap p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------------ footer */

.foot { background: var(--lac-3); color: #EBD6BC; padding: 62px 0 0; }
.foot-in {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.25fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.foot-mark { width: 56px; height: 56px; margin-bottom: 14px; }
.foot-name {
  margin: 0 0 6px;
  font-family: var(--dsp);
  font-size: 27px;
  font-weight: 600;
  color: #FFF6E7;
}
.foot-sub { margin: 0; font-size: 14px; line-height: 1.6; color: #D8C0A2; }
.foot-k {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.foot-col a {
  display: block;
  font-size: 14.5px;
  color: #EBD6BC;
  text-decoration: none;
  margin-bottom: 9px;
  word-break: break-word;
}
.foot-col a:hover { color: var(--gold-lt); text-decoration: underline; }
.foot-bar {
  border-top: 1px solid rgba(200, 149, 47, .3);
  padding: 18px 0;
}
.foot-bar p { margin: 0; font-size: 13px; color: #C4AB8C; }

/* --------------------------------------------------------------------- fab */

.fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold);
  color: #23090E;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(35, 9, 14, .6);
}
.fab:hover { background: var(--gold-lt); }

/* --------------------------------------------------------------- responsive */

.f-slot { grid-row: span 2; }

@media (max-width: 1080px) {
  .nav { display: none; }
  .f-slot { grid-row: auto; }
  .k-grid { grid-template-columns: 1fr; gap: 44px; }
  .k-fig-a img { min-height: 320px; }
  .cat-in { grid-template-columns: 1fr; gap: 36px; }
  .r-grid { grid-template-columns: 1fr 1fr; }
  .r-data { grid-column: span 2; }
  .f-grid { grid-template-columns: 1fr 1fr; }
  .g-drinks { grid-template-columns: 1fr 1fr; }
  .g-note { grid-column: span 2; }
}

@media (max-width: 860px) {
  body { font-size: 17px; }
  .shell { padding: 0 22px; }
  .hero { min-height: auto; }
  .hero-in { padding-top: 76px; padding-bottom: 150px; }
  .hero-cards { right: 22px; bottom: 26px; }
  .hcard { padding: 12px 17px 11px; min-width: 104px; }
  .hcard-n { font-size: 33px; }
  .hcard-word { font-size: 27px; }
  .m-card { padding: 32px 26px 28px; }
  .m-cols { grid-template-columns: 1fr; gap: 34px; }
  .m-group + .m-group { margin-top: 32px; }
  .g-grid { grid-template-columns: 1fr 1fr; }
  .g-tall { grid-row: span 1; }
  .g-tall img { min-height: 0; }
  .foot-in { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 620px) {
  .kitchen, .menu, .gal, .cat, .rev, .find { padding: 68px 0; }
  .press { padding: 64px 0; }
  .cta { padding: 68px 0; }
  .hdr-in { gap: 12px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-name { font-size: 22px; }
  .brand-sub { font-size: 9px; letter-spacing: .17em; }
  .hdr-call-n { font-size: 19px; }
  .hdr-call-k { font-size: 9.5px; }
  .hero-in { padding-top: 58px; padding-bottom: 136px; }
  .hero-p { font-size: 17px; }
  .btn { padding: 13px 20px; font-size: 14.5px; }
  .hero-acts { gap: 10px; }
  .hero-cards { left: 22px; right: 22px; bottom: 22px; gap: 10px; }
  .hcard { flex: 1; min-width: 0; padding: 11px 14px 10px; }
  .k-shots { grid-template-columns: 1fr 1fr; }
  .k-fig-a { grid-row: span 1; grid-column: span 2; }
  .k-fig-a img { min-height: 0; height: 240px; }
  .k-fig-b img, .k-fig-c img { height: 158px; }
  .k-say { font-size: 21px; }
  .press-q { text-indent: 0; }
  .r-lead { padding: 26px 24px 22px; }
  .r-lead p { text-indent: 0; }
  .r-grid { grid-template-columns: 1fr; }
  .r-data { grid-column: span 1; }
  .g-grid { grid-template-columns: 1fr; }
  .g-drinks { grid-template-columns: 1fr; }
  .g-note { grid-column: span 1; }
  .g-tall2 img { min-height: 0; }
  .f-grid { grid-template-columns: 1fr; }
  .foot-in { grid-template-columns: 1fr; gap: 28px; }
  .fab { display: flex; }
  .cat-list li { font-size: 20px; }
  .m-list b { font-size: 20px; }
  .m-slot { padding: 18px 16px; }
  .pbar-in { padding-top: 13px; padding-bottom: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-img { animation: none; }
  .strip-track { animation: none; }
  .hero-h .w { animation: none; opacity: 1; transform: none; }
  .hcard { animation: none; opacity: 1; }
  .rv { transition: none; opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------- 404 */

.err { padding: 60px 0 40px; max-width: 720px; }
.err-acts { margin-top: 28px; }
.btn-dark {
  background: var(--lac);
  color: #FFF6E7;
}
.btn-dark:hover { background: var(--lac-2); }
.foot-bar-only { padding: 22px 32px; }
.foot-bar-only p { margin: 0; font-size: 13px; color: #C4AB8C; }
