/* Pete's Henny Penny — main.css v2.0 */

/* ── TOKENS ────────────────────────────────── */
:root {
  --black:  #0E0C0A;
  --near:   #1A1510;
  --barn:   #9B2A1A;
  --barn2:  #B33520;
  --tan:    #C4922A;
  --cream:  #F2E8D0;
  --cream2: #E4D4B4;
  --ink:    #1C140A;
  --ink2:   #3A2810;
  --ink3:   #7A5A40;
  --white:  #FAF6EE;
  --nav-h:  64px;
  --head-h: 68px;
  --C: 'Oswald', 'Arial Narrow', sans-serif;
  --S: 'Lora', Georgia, serif;
  --SC: 'Satisfy', cursive;
}

/* ── RESET ─────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box; margin: 0; padding: 0;
  -webkit-tap-highlight-color: transparent;
}
html { -webkit-text-size-adjust: 100%; }

/* ── APP SHELL ─────────────────────────────── */
body.hp-app-body {
  background: var(--black);
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
  font-family: var(--C);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--C); }

.hp-app {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
}

/* ── STATUS BAR ────────────────────────────── */
.hp-status-bar {
  height: 44px;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 22px 8px;
  flex-shrink: 0;
  z-index: 50;
}
.hp-status-time {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
.hp-status-icons {
  display: flex;
  gap: 6px;
  align-items: center;
}
.hp-status-icons svg {
  width: 14px; height: 14px;
  stroke: #fff; fill: none; stroke-width: 1.8;
}

/* ── SCREENS CONTAINER ─────────────────────── */
.hp-screens {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

/* ── INDIVIDUAL SCREEN ─────────────────────── */
.hp-screen {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  display: flex;
  flex-direction: column;
}
.hp-screen.active { transform: translateX(0); }
.hp-screen.prev   { transform: translateX(-28%); }

/* ── BOTTOM NAV ────────────────────────────── */
.hp-bottom-nav {
  height: var(--nav-h);
  background: var(--black);
  border-top: 2px solid var(--barn);
  display: flex;
  flex-shrink: 0;
  z-index: 100;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.hp-nav-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  transition: background 0.15s;
}
.hp-nav-tab:active { background: rgba(255,255,255,0.05); }
.hp-nav-tab svg {
  width: 22px; height: 22px;
  stroke: rgba(255,255,255,0.3);
  fill: none;
  transition: stroke 0.15s;
}
.hp-nav-tab span {
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 0.15s;
}
.hp-nav-tab.active svg   { stroke: var(--tan); }
.hp-nav-tab.active span  { color: var(--tan); }
.hp-nav-tab--primary svg  { stroke: var(--barn2); }
.hp-nav-tab--primary span { color: var(--barn2); }
.hp-nav-tab--primary.active svg  { stroke: var(--tan); }
.hp-nav-tab--primary.active span { color: var(--tan); }

/* ── SCREEN HEADER ─────────────────────────── */
.hp-screen-header {
  height: var(--head-h);
  background: var(--black);
  display: flex;
  align-items: center;
  padding: 0 18px;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 20;
}
.hp-screen-header--center { justify-content: center; }
.hp-screen-sub {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  display: block;
  margin-bottom: 2px;
}
.hp-screen-header h1 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}
.hp-logo { display: flex; align-items: center; justify-content: center; }
.hp-logo-img { height: 56px; width: auto; max-width: 220px; display: block; }

/* ════════════════════════════════════════════
   HOME SCREEN
════════════════════════════════════════════ */

/* Hero carousel */
.hp-hero-carousel { position: relative; flex-shrink: 0; }
.hp-hero-slides {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.hp-hero-slide { flex: 0 0 100%; position: relative; overflow: hidden; }
.hp-hero-slide img,
.hp-hero-slide-placeholder {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hp-hero-slide-placeholder { background: linear-gradient(135deg, var(--near), #3D1F0A); }
.hp-hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(14,12,10,0.88) 0%, transparent 100%);
  padding: 20px 18px 14px;
}
.hp-slide-tag {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan);
  display: block;
  margin-bottom: 4px;
}
.hp-slide-h {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.hp-hero-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 9px 0 5px;
  background: var(--black);
}
.hp-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none; cursor: pointer; padding: 0;
  transition: all 0.2s;
}
.hp-dot.on { background: var(--barn); transform: scale(1.3); }

/* Directions CTA */
.hp-directions-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--barn);
  margin: 12px 14px;
  padding: 14px 16px;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
  flex-shrink: 0;
}
.hp-directions-cta:active { background: var(--barn2); }
.hp-dir-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hp-dir-icon svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; }
.hp-dir-text strong { font-size: 0.92rem; font-weight: 700; color: #fff; letter-spacing: 0.06em; text-transform: uppercase; display: block; margin-bottom: 2px; }
.hp-dir-text span   { font-family: var(--S); font-size: 0.68rem; color: rgba(255,255,255,0.72); font-style: italic; }
.hp-dir-arrow { width: 16px; height: 16px; stroke: rgba(255,255,255,0.55); fill: none; stroke-width: 2; margin-left: auto; flex-shrink: 0; }

/* Quick actions */
.hp-quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 14px; margin-bottom: 12px; flex-shrink: 0; }
.hp-qa-btn {
  background: var(--cream);
  border: 1.5px solid var(--cream2);
  border-radius: 3px;
  padding: 13px 14px;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}
.hp-qa-btn:active { background: var(--cream2); }
.hp-qa-btn svg { width: 18px; height: 18px; stroke: var(--barn); fill: none; stroke-width: 2; flex-shrink: 0; }
.hp-qa-btn strong { font-size: 0.72rem; font-weight: 700; color: var(--ink); letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 1px; }
.hp-qa-btn span   { font-family: var(--S); font-size: 0.6rem; color: var(--ink3); font-style: italic; }

/* Hours strip */
.hp-hours-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  margin: 0 14px 12px;
  padding: 13px 14px;
  border-radius: 3px;
  flex-shrink: 0;
}
.hp-open-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 2px; margin-bottom: 4px;
}
.hp-open-badge--open   { background: #1A6B30; color: #fff; }
.hp-open-badge--open::before { content: ''; width: 5px; height: 5px; background: #4AE06A; border-radius: 50%; }
.hp-open-badge--closed { background: #6B1A1A; color: #fff; }
.hp-hours-time { font-size: 1rem; font-weight: 700; color: #fff; letter-spacing: 0.03em; }
.hp-hours-days { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 2px; }
.hp-hours-call { text-align: right; }
.hp-call-lbl   { font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.hp-hours-call a { font-size: 0.88rem; font-weight: 700; color: var(--tan); display: block; text-decoration: none; }

/* Specials teaser */
.hp-teaser { padding: 0 14px 16px; flex-shrink: 0; }
.hp-teaser-label {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink3); margin-bottom: 9px;
  display: flex; align-items: center; gap: 8px;
}
.hp-teaser-label::after { content: ''; flex: 1; height: 1px; background: var(--cream2); }
.hp-teaser-track { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
.hp-teaser-track::-webkit-scrollbar { display: none; }
.hp-teaser-card {
  flex: 0 0 148px;
  background: var(--cream);
  border: 1.5px solid var(--cream2);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s;
}
.hp-teaser-card:active { transform: scale(0.97); }
.hp-teaser-card img,
.hp-teaser-card-ph { width: 100%; height: 88px; object-fit: cover; display: block; }
.hp-teaser-card-ph { background: var(--cream2); }
.hp-teaser-card-body { padding: 8px 10px 10px; }
.hp-teaser-name  { font-size: 0.75rem; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.04em; }
.hp-teaser-price { font-size: 0.82rem; font-weight: 700; color: var(--barn); margin-top: 3px; }

/* Mobile delivery buttons */
.hp-mobile-delivery { display: flex; flex-direction: row; gap: 10px; padding: 0 14px 16px; flex-shrink: 0; }
.hp-mobile-delivery-btn { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 18px; border-radius: 3px; text-decoration: none; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; transition: opacity 0.18s; flex: 1; }
.hp-mobile-delivery-btn:active { opacity: 0.8; }
.hp-mobile-delivery-btn--taxi { background: var(--tan); color: var(--ink); }
.hp-mobile-delivery-btn--uber { background: #fff; color: var(--ink); border: 1.5px solid var(--border, #E4D4B4); }
.hp-uber-logo-mobile { height: 24px; width: auto; display: block; }
.hp-see-all {
  flex: 0 0 72px;
  background: var(--barn);
  border-radius: 3px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; border: none; cursor: pointer;
  transition: background 0.15s;
}
.hp-see-all:active { background: var(--barn2); }
.hp-see-all svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }

/* ════════════════════════════════════════════
   MENU SCREEN
════════════════════════════════════════════ */
.hp-meal-tabs {
  display: flex;
  background: var(--black);
  padding: 0 14px 12px;
  gap: 8px;
  position: sticky;
  top: 0;
  z-index: 10;
  flex-shrink: 0;
}
.hp-meal-tab {
  flex: 1; padding: 9px 6px;
  font-family: var(--C); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  border: none; border-radius: 2px;
  cursor: pointer; transition: all 0.18s;
}
.hp-meal-tab.active { background: var(--barn); color: #fff; }

.hp-deck { display: none; flex-direction: column; gap: 10px; padding: 14px 14px 8px; }
.hp-deck.active { display: flex; }

/* Menu card — horizontal */
.hp-menu-card {
  display: flex;
  background: #fff;
  border: 1.5px solid var(--cream2);
  border-radius: 3px;
  overflow: hidden;
  height: 92px;
  transition: transform 0.15s;
  cursor: default;
  flex-shrink: 0;
}
.hp-menu-card-img {
  flex: 0 0 92px; height: 92px;
  object-fit: cover; object-position: center;
  display: block;
}
.hp-menu-card-ph {
  flex: 0 0 92px; height: 92px;
  background: var(--cream2);
  display: flex; align-items: center; justify-content: center;
}
.hp-menu-card-ph svg { stroke: var(--cream); }
.hp-menu-card-body {
  flex: 1; padding: 14px 14px 14px 16px;
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
  min-width: 0;
}
.hp-menu-card-name {
  font-size: 0.85rem; font-weight: 700; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hp-menu-card-desc {
  font-family: var(--S); font-size: 0.7rem; font-style: italic;
  color: var(--ink3); line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hp-deck-footer { padding: 0 14px 16px; }
.hp-pdf-link {
  border: 1.5px solid var(--cream2);
  border-radius: 3px;
  padding: 13px 16px;
  display: flex; align-items: center; justify-content: space-between;
  text-decoration: none;
}
.hp-pdf-link span { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink2); }
.hp-pdf-link svg  { width: 18px; height: 18px; stroke: var(--barn); fill: none; stroke-width: 2; }

/* ════════════════════════════════════════════
   SPECIALS SCREEN
════════════════════════════════════════════ */
.hp-specials-list { padding: 14px; display: flex; flex-direction: column; gap: 14px; }
.hp-specials-empty { font-family: var(--S); font-size: 0.9rem; font-style: italic; color: var(--ink3); text-align: center; padding: 40px 0; }
.hp-sp-card { background: #fff; border: 1.5px solid var(--cream2); border-radius: 3px; overflow: hidden; }
.hp-sp-img  { width: 100%; height: 155px; object-fit: cover; object-position: center; display: block; }
.hp-sp-img-ph { width: 100%; height: 155px; background: var(--cream2); display: flex; align-items: center; justify-content: center; }
.hp-sp-body { padding: 15px 16px; }
.hp-sp-row  { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 7px; }
.hp-sp-name  { font-size: 0.95rem; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.04em; }
.hp-sp-price { font-size: 1.15rem; font-weight: 700; color: var(--barn); flex-shrink: 0; }
.hp-sp-desc  { font-family: var(--S); font-size: 0.8rem; font-style: italic; color: var(--ink3); line-height: 1.6; margin-bottom: 10px; }
.hp-sp-badge {
  font-size: 0.56rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink3); border: 1.5px solid var(--cream2); padding: 3px 10px; border-radius: 2px;
}
.hp-specials-call {
  margin: 0 14px 14px;
  background: var(--ink);
  border-radius: 3px;
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.hp-specials-call span { font-family: var(--S); font-size: 0.78rem; font-style: italic; color: rgba(255,255,255,0.55); line-height: 1.55; }
.hp-specials-call a   { font-size: 0.88rem; font-weight: 700; color: var(--tan); text-decoration: none; white-space: nowrap; }

/* ════════════════════════════════════════════
   STORY SCREEN
════════════════════════════════════════════ */
.hp-story-hero    { width: 100%; height: 195px; object-fit: cover; object-position: center top; display: block; }
.hp-story-hero-ph { width: 100%; height: 195px; background: var(--cream2); }
.hp-story-body    { padding: 18px 16px 20px; }
.hp-story-stamp-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.hp-stamp {
  width: 56px; height: 56px; flex-shrink: 0;
  border: 2.5px solid var(--barn); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0;
}
.hp-stamp span   { font-size: 0.46rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--barn); line-height: 1.3; }
.hp-stamp strong { font-size: 0.95rem; font-weight: 700; color: var(--barn); line-height: 1; }
.hp-story-kicker { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--barn); display: block; margin-bottom: 4px; }
.hp-story-h      { font-size: 1.2rem; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.15; }
.hp-story-p      { font-family: var(--S); font-size: 0.88rem; line-height: 1.82; color: var(--ink2); margin-bottom: 13px; }
.hp-story-stats  { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--cream2); border: 1.5px solid var(--cream2); border-radius: 3px; overflow: hidden; margin-top: 18px; }
.hp-stat         { background: var(--cream); padding: 13px 8px; text-align: center; }
.hp-stat .n      { font-size: 1.35rem; font-weight: 700; color: var(--barn); display: block; line-height: 1; }
.hp-stat .l      { font-size: 0.52rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink3); display: block; margin-top: 4px; }
.hp-story-signs  { width: 100%; height: 175px; object-fit: cover; object-position: center 30%; display: block; margin-top: 20px; }
.hp-story-caption { padding: 9px 16px 4px; font-family: var(--S); font-size: 0.7rem; font-style: italic; color: var(--ink3); }

/* ════════════════════════════════════════════
   FIND US SCREEN
════════════════════════════════════════════ */
.hp-map-wrap { height: 255px; background: var(--cream2); flex-shrink: 0; }
.hp-map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.hp-findus-list { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.hp-info-card {
  background: #fff;
  border: 1.5px solid var(--cream2);
  border-radius: 3px;
  padding: 13px 14px;
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
  transition: background 0.15s;
}
.hp-info-card:active { background: var(--cream); }
.hp-info-icon {
  width: 38px; height: 38px;
  background: var(--barn); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hp-info-icon svg { width: 17px; height: 17px; stroke: #fff; fill: none; stroke-width: 2; }
.hp-info-icon--dark { background: var(--ink2); }
.hp-info-body  { flex: 1; min-width: 0; }
.hp-info-lbl   { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink3); display: block; margin-bottom: 3px; }
.hp-info-val   { font-size: 0.85rem; font-weight: 500; color: var(--ink); line-height: 1.45; }
.hp-info-val--phone { font-size: 1rem; font-weight: 700; color: var(--barn); }
.hp-info-arrow { width: 15px; height: 15px; stroke: var(--cream2); fill: none; stroke-width: 2; flex-shrink: 0; }
.hp-delivery-card {
  margin: 0 14px 14px;
  background: var(--tan);
  border-radius: 3px;
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  text-decoration: none;
}
.hp-delivery-card h4  { font-size: 0.82rem; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 3px; }
.hp-delivery-card p   { font-family: var(--S); font-size: 0.7rem; font-style: italic; color: var(--ink2); }
.hp-order-btn {
  background: var(--barn); color: #fff;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 9px 13px; border-radius: 2px; white-space: nowrap; flex-shrink: 0;
}

/* ── SAFE AREA (iPhone home bar) ───────────── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .hp-bottom-nav {
    padding-bottom: env(safe-area-inset-bottom);
    height: calc(var(--nav-h) + env(safe-area-inset-bottom));
  }
}


/* Menu card — text only (no image) */
.hp-menu-card-body--full {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  min-width: 0;
}
.hp-menu-card-body--full .hp-menu-card-name {
  white-space: normal;
  font-size: 0.88rem;
}
.hp-menu-card-body--full .hp-menu-card-desc {
  -webkit-line-clamp: 3;
  font-size: 0.75rem;
}

/* ═══════════════════════════════════════════
   DESKTOP LAYOUT (≥ 900px)
   Everything below overrides the mobile-app
   layout to produce a proper desktop website
═══════════════════════════════════════════ */
@media (min-width: 900px) {

  /* ── RESET APP SHELL ─────────────────────── */
  body.hp-app-body {
    overflow: auto;
    height: auto;
    background: var(--white);
  }
  .hp-app {
    width: 100%;
    height: auto;
    overflow: visible;
    display: block;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }
  .hp-status-bar { display: none; }
  .hp-screens {
    position: static;
    overflow: visible;
    height: auto;
  }
  .hp-screen {
    position: static;
    transform: none !important;
    overflow: visible;
    height: auto;
    display: none; /* hidden by default, shown via .dt-visible */
  }
  /* on desktop all screens show as sections */
  .hp-screen.dt-section { display: block; }
  .hp-bottom-nav { display: none; }

  /* ── NAV ────────────────────────────────────────────────────────────────── */
  .dt-nav {
    display: flex; align-items: center;
    background: var(--black); border-bottom: 3px solid var(--barn);
    padding: 0 40px; height: 110px; position: sticky; top: 0; z-index: 200;
  }
  .dt-nav-logo { flex: 1; display: flex; align-items: center; line-height: 0; }
  .dt-nav-logo .sc { font-family: 'Satisfy', cursive; color: var(--barn); font-size: 1.2rem; display: block; }
  .dt-nav-logo .mn { font-weight: 700; color: #fff; font-size: 1.8rem; letter-spacing: 0.06em; text-transform: uppercase; }
  .dt-nav-links { display: flex; gap: 36px; list-style: none; flex: 0 0 auto; margin: 0 auto; }
  .dt-nav-links a { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s; white-space: nowrap; }
  .dt-nav-links a:hover { color: var(--tan); }
  .dt-nav-phone { font-weight: 700; font-size: 1.1rem; color: var(--tan); text-decoration: none; letter-spacing: 0.04em; flex: 1; text-align: right; }
  .dt-nav-spacer { flex: 1; }
  .hp-screen-header { display: none; }

  /* ── HERO SPLIT — 40/60 ─────────────────────────────────────────────────── */
  #screen-home { background: var(--cream); }
  .dt-hero-split {
    display: grid;
    grid-template-columns: 2fr 3fr;  /* 40/60 */
    height: 62vh;
    min-height: 480px;
    max-height: 680px;
  }
  .dt-hero-panel {
    background: var(--cream);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 60px 64px;
    text-align: center;
    border-right: 3px solid var(--barn);
    position: relative;
  }
  .dt-hero-panel-icon { margin-bottom: 28px; opacity: 0.9; }
  .dt-hero-panel-h {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.15;
    margin-bottom: 36px;
  }
  .dt-hero-panel-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--barn); color: #fff;
    font-family: 'Oswald', sans-serif; font-weight: 600;
    font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 14px 32px; border-radius: 2px; text-decoration: none;
    transition: background 0.18s;
  }
  .dt-hero-panel-cta:hover { background: var(--barn2); }
  /* Photo side fills grid cell fully */
  .dt-hero-photo-wrap {
    position: relative;
    overflow: hidden;
    /* grid children stretch to row height by default — ensure it */
    align-self: stretch;
  }
  .dt-hero-photo-wrap .hp-hero-carousel {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
  }
  .dt-hero-photo-wrap .hp-hero-slides { height: 100%; width: 100%; }
  .dt-hero-photo-wrap .hp-hero-slide { height: 100%; width: 100%; }
  .dt-hero-photo-wrap .hp-hero-slide img,
  .dt-hero-photo-wrap .hp-hero-slide-placeholder {
    width: 100%; height: 100%;
    aspect-ratio: unset; max-height: unset;
    object-fit: cover; object-position: center;
  }
  .dt-hero-photo-wrap .hp-hero-dots {
    background: transparent; padding: 0;
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 10;
  }
  .dt-hero-photo-wrap .hp-slide-h {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    background: rgba(155,42,26,0.72);
    padding: 8px 16px 10px;
    display: inline-block; border-radius: 2px;
  }
  .dt-hero-barn-sliver { display: none; } /* not needed with true 50/50 */

  /* hide mobile elements on desktop */
  .hp-directions-cta, .hp-quick-actions, .hp-hours-strip, .hp-teaser { display: none; }
  .mobile-only { display: none !important; }
  .dt-only { display: block; }
  /* dt-hero-split must be grid, not block — override dt-only */
  .dt-hero-split.dt-only { display: grid !important; }

  /* ── QUICK BAR ───────────────────────────────────────────────────────────── */
  .dt-quick-bar { display: grid; grid-template-columns: repeat(3,1fr); background: var(--barn); }
  .dt-qi { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 20px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.9); border-right: 1px solid rgba(255,255,255,0.18); text-decoration: none; transition: background 0.15s; cursor: pointer; border: none; background: none; }
  .dt-qi:last-child { border-right: none; }
  .dt-qi:hover { background: rgba(0,0,0,0.15); }
  .dt-qi svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

  /* ── STORY ───────────────────────────────────────────────────────────────── */
  #screen-story { background: var(--cream); }
  .hp-story-hero, .hp-story-hero-ph, .dt-story-photo, .hp-story-signs, .hp-story-caption { display: none; }
  .hp-story-body { max-width: 60%; margin: 0 auto; padding: 32px 0 72px; display: block; }
  .hp-story-stamp-row { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 24px; }
  .hp-story-kicker { font-size: 14px; color: var(--barn); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; display: block; margin-bottom: 6px; }
  .hp-story-h { font-size: clamp(1.8rem, 2.8vw, 2.6rem); margin-bottom: 24px; }
  .hp-story-p { font-size: 1.05rem; margin-bottom: 18px; }
  .hp-story-stats { margin-top: 32px; }

  /* ── WALL GALLERY TOGGLE ─────────────────────────────────────────────────── */
  .dt-gallery-toggle { display: flex; justify-content: center; gap: 0; margin: 48px auto 20px; width: fit-content; border: 2px solid var(--barn); border-radius: 3px; overflow: hidden; }
  .dt-gtab { font-family: 'Oswald', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 10px 28px; background: transparent; color: var(--ink3); border: none; cursor: pointer; transition: all 0.18s; }
  .dt-gtab:first-child { border-right: 2px solid var(--barn); }
  .dt-gtab.active { background: var(--barn); color: #fff; }
  .dt-gtab:hover:not(.active) { background: var(--cream2); }

  /* ── PERSONALITY WALL COLLAGE ────────────────────────────────────────────── */
  .dt-wall-collage { width: 75%; margin: 0 auto 20px; display: block; }
  .dt-wall-collage picture { display: block; width: 100%; }
  .dt-wall-collage img { width: 100%; height: auto; display: block; border-radius: 3px; box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
  .dt-wall-ph { background: var(--cream2); border-radius: 3px; padding: 40px; text-align: center; font-size: 0.8rem; color: var(--ink3); font-style: italic; }

  /* ── MASONRY GALLERY ─────────────────────────────────────────────────────── */
  .dt-masonry { padding: 0 64px 72px; display: block; }
  .dt-masonry-grid { columns: 4; column-gap: 12px; }
  .dt-masonry-item { break-inside: avoid; margin-bottom: 12px; overflow: hidden; border-radius: 2px; position: relative; }
  .dt-masonry-item img { width: 100%; height: auto; display: block; transition: transform 0.4s ease; }
  .dt-masonry-item:hover img { transform: scale(1.03); }
  .dt-masonry-ph { background: var(--cream2); width: 100%; display: flex; align-items: flex-end; justify-content: flex-start; padding: 12px; position: relative; }
  .dt-masonry-ph span { font-family: 'Oswald', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink3); }
  .dt-masonry-quote { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(155,42,26,0.78); padding: 20px 24px; pointer-events: none; }
  .dt-masonry-quote p { font-family: 'Lora', serif; font-size: 32px; font-style: italic; color: #fff; line-height: 1.3; margin: 0; }

  /* ── HOURS BAND — half height ────────────────────────────────────────────── */
  .dt-hours-band {
    display: grid; grid-template-columns: 1fr 1px 1fr;
    gap: 48px; align-items: center;
    background: var(--near, #1A1510);
    padding: 28px 80px; /* half height */
    border-top: 3px solid var(--barn); border-bottom: 3px solid var(--barn);
    position: relative; overflow: hidden;
  }
  .dt-hours-chicken { position: absolute; left: 80px; bottom: 0; height: 95%; width: auto; object-fit: contain; object-position: bottom left; opacity: 0.18; pointer-events: none; mix-blend-mode: luminosity; }
  .dt-hours-left { padding-left: 180px; position: relative; z-index: 1; }
  .dt-hours-div { background: rgba(196,146,42,0.25); width: 1px; height: 60px; position: relative; z-index: 1; }
  .dt-hours-right { text-align: right; position: relative; z-index: 1; }
  .dt-hours-left h3 { font-family: 'Oswald', sans-serif; font-size: 2.25rem; font-weight: 700; color: var(--tan); margin-bottom: 8px; letter-spacing: 0.04em; text-transform: uppercase; }
  .dt-hours-left .ht { font-size: 1.8rem; font-weight: 700; color: #fff; letter-spacing: 0.04em; line-height: 1; }
  .dt-hours-left .hd { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 6px; }
  .dt-hours-right p { font-family: 'Lora', serif; font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 8px; font-style: italic; }
  .dt-hours-right a { font-size: 1.3rem; font-weight: 700; color: var(--tan); text-decoration: none; display: block; }

  /* ── SECTION ICONS (inline SVG decorators) ──────────────────────────────── */
  .dt-section-icon { display: flex; justify-content: center; margin-bottom: 14px; }
  .dt-story-section-icon { display: flex; justify-content: center; padding: 32px 0 0; }
  .dt-section-icon-img { height: 64px; width: auto; display: block; }
  .dt-hero-icon-img { height: 72px; width: auto; display: block; }

  /* ── NAV LOGO IMAGE ──────────────────────────────────────────────────────── */
  .dt-nav-logo-img { height: 110px; width: auto; max-width: 320px; display: block; vertical-align: middle; }

  /* ── FOOTER LOGO IMAGE ───────────────────────────────────────────────────── */
  .dt-footer-logo-img { height: 52px; width: auto; max-width: 220px; display: block; margin-bottom: 14px; }

  /* ── MENU CHICKEN ────────────────────────────────────────────────────────── */
  .dt-menu-chicken { display: flex; justify-content: center; padding: 16px 0 0; overflow: hidden; }
  .dt-menu-chicken img { height: 200px; width: auto; display: block; object-fit: contain; object-position: bottom; }

  /* ── HISTORY ILLUSTRATIONS ROW ───────────────────────────────────────────── */
  .dt-history-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; width: 60%; margin: 0 auto; padding: 32px 0 48px; background: var(--cream); }
  .dt-history-item { background: var(--cream); }
  .dt-history-item img { width: 100%; height: auto; display: block; background: var(--cream); }

  /* ── MENU ────────────────────────────────────────────────────────────────── */
  #screen-menu { background: var(--cream); }
  #screen-menu::before { content: ''; display: block; height: 6px; background: repeating-linear-gradient(90deg, var(--barn) 0, var(--barn) 20px, var(--black) 20px, var(--black) 24px); }
  .dt-menu-header { text-align: center; padding: 48px 40px 36px; max-width: 1120px; margin: 0 auto; }
  .dt-menu-eyebrow { font-size: 14px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--barn); display: block; margin-bottom: 10px; }
  .dt-menu-header h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }
  .dt-menu-header p { font-family: 'Lora', serif; font-size: 1rem; font-style: italic; color: var(--ink3); max-width: 440px; margin: 0 auto; line-height: 1.65; }

  /* Tabs: 50% width, terra cotta bg, white text */
  .hp-meal-tabs {
    position: sticky; top: 90px; background: var(--black);
    padding: 0 0 14px;
    display: flex; justify-content: center; gap: 0;
    width: 50%; margin: 0 auto;
  }
  .hp-meal-tab {
    flex: 1; font-size: 0.82rem; padding: 13px 10px;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55);
    border: none; border-right: 1px solid rgba(255,255,255,0.1);
    letter-spacing: 0.12em;
  }
  .hp-meal-tab:last-child { border-right: none; }
  .hp-meal-tab.active { background: var(--barn); color: #fff; }
  .hp-meal-tab:hover:not(.active) { background: rgba(255,255,255,0.12); color: #fff; }

  /* Cards with random muted palette colors — applied via nth-child */
  .hp-deck { padding: 24px 40px 40px; max-width: 1120px; margin: 0 auto; }
  .hp-deck.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hp-menu-card { height: auto; flex-direction: column; border-radius: 3px; border: none; }
  .hp-menu-card-body--full { padding: 18px 20px; }
  .hp-menu-card-body--full .hp-menu-card-name { font-size: 0.95rem; white-space: normal; }
  .hp-menu-card-body--full .hp-menu-card-desc { font-size: 0.8rem; -webkit-line-clamp: 4; }
  /* Card colors: terra cotta, muted sage green, muted amber — white text */
  .hp-menu-card:nth-child(3n+1) { background: #8B2818; }
  .hp-menu-card:nth-child(3n+1) .hp-menu-card-name { color: #fff; }
  .hp-menu-card:nth-child(3n+1) .hp-menu-card-desc { color: rgba(255,255,255,0.75); }
  .hp-menu-card:nth-child(3n+2) { background: #4A6741; }
  .hp-menu-card:nth-child(3n+2) .hp-menu-card-name { color: #fff; }
  .hp-menu-card:nth-child(3n+2) .hp-menu-card-desc { color: rgba(255,255,255,0.75); }
  .hp-menu-card:nth-child(3n+3) { background: #8B5E1A; }
  .hp-menu-card:nth-child(3n+3) .hp-menu-card-name { color: #fff; }
  .hp-menu-card:nth-child(3n+3) .hp-menu-card-desc { color: rgba(255,255,255,0.75); }
  .hp-deck-footer { padding: 0 40px 32px; max-width: 1120px; margin: 0 auto; }
  .hp-pdf-link {
    background: var(--barn) !important;
    border-color: var(--barn) !important;
    border-radius: 2px;
    padding: 14px 20px;
  }
  .hp-pdf-link span { color: #fff !important; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; }
  .hp-pdf-link svg { stroke: #fff !important; }
  .hp-pdf-link:hover { background: var(--barn2) !important; border-color: var(--barn2) !important; }

  /* ── SPECIALS ────────────────────────────────────────────────────────────── */
  #screen-specials { background: var(--white); }
  /* Centered header */
  .dt-specials-header { display: block; text-align: center; padding: 56px 64px 28px; max-width: 100%; }
  .dt-sp-eyebrow { font-size: 14px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--barn); display: block; margin-bottom: 8px; }
  .dt-sp-h { font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.03em; }
  .dt-sp-note { font-family: 'Lora', serif; font-size: 16px; font-style: italic; color: var(--ink3); margin-top: 10px; line-height: 1.6; text-align: center; }

  /* List: 50% width on wide screens, 75% on ≤1280 */
  .hp-specials-list { display: flex; flex-direction: column; gap: 16px; padding: 28px 0 36px; width: 50%; margin: 0 auto; }
  /* Horizontal split card */
  .hp-sp-card { display: grid; grid-template-columns: 280px 1fr; overflow: hidden; border-radius: 3px; }
  .hp-sp-img { width: 280px; height: 100%; min-height: 180px; object-fit: cover; object-position: center; display: block; }
  .hp-sp-img-ph { width: 280px; min-height: 180px; background: var(--cream2); }
  .hp-sp-body { padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; }
  .hp-sp-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
  .hp-sp-price { font-size: 1.5rem; font-weight: 700; color: var(--barn); }
  .hp-sp-desc { font-size: 0.95rem; margin-bottom: 16px; }
  .hp-sp-badge { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink3); border: 1.5px solid var(--cream2); padding: 4px 12px; border-radius: 2px; }
  /* Call strip — cream bg, brighter */
  .hp-specials-call { display: flex; align-items: center; justify-content: space-between; background: var(--cream); border: 1.5px solid var(--cream2); border-radius: 3px; padding: 14px 20px; width: 50%; margin: 0 auto 48px; }
  .hp-specials-call span { font-family: 'Lora', serif; font-size: 14px; font-style: italic; color: var(--ink2); line-height: 1.55; }
  .hp-specials-call a { font-size: 1rem; font-weight: 700; color: var(--barn); text-decoration: none; }

  /* ── FIND US ─────────────────────────────────────────────────────────────── */
  #screen-findus { background: var(--cream); }
  .dt-findus-wrap { padding: 56px 0 40px; display: flex; flex-direction: column; align-items: center; }
  .dt-findus-container { width: 50%; }
  .dt-delivery-wrap { width: 50%; }
  .dt-findus-container {
    display: grid; grid-template-columns: 5fr 7fr;
    border: 2px solid var(--cream3, #D8C8A0);
    border-radius: 3px; overflow: hidden;
    background: var(--white);
  }
  .dt-findus-info { padding: 40px 40px; display: flex; flex-direction: column; gap: 0; border-right: 2px solid var(--cream2); }
  .dt-findus-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--barn); display: block; margin-bottom: 8px; }
  .dt-findus-h { font-size: 1.6rem; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 24px; }
  .dt-info-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1.5px solid var(--cream2); text-decoration: none; transition: background 0.15s; }
  .dt-info-row:last-child { border-bottom: none; }
  .dt-info-icon { width: 36px; height: 36px; background: var(--barn); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .dt-info-icon svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }
  .dt-info-lbl { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink3); display: block; margin-bottom: 3px; }
  .dt-info-val { font-size: 0.95rem; color: var(--ink); font-weight: 500; }
  .dt-info-phone { font-size: 1.1rem; color: var(--barn); font-weight: 700; }
  .dt-findus-map { display: block; overflow: hidden; }
  .dt-findus-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; pointer-events: none; }
  /* Delivery buttons — two side by side, match container width */
  .dt-delivery-wrap { display: flex; gap: 12px; justify-content: center; margin-top: 28px; width: 50%; }
  .dt-delivery-btn {
    display: flex; align-items: center; gap: 14px; flex: 1;
    background: var(--tan); border-radius: 3px;
    padding: 18px 20px; text-decoration: none;
    transition: background 0.18s;
  }
  .dt-delivery-btn:hover { background: var(--gold, #C08A20); }
  .dt-delivery-btn--uber { background: #fff; justify-content: space-between; border: 1.5px solid var(--border, #E4D4B4); }
  .dt-delivery-btn--uber:hover { background: #f5f5f5; }
  .dt-delivery-btn--uber .dt-delivery-text { color: var(--ink); }
  .dt-delivery-btn--uber .dt-delivery-arrow { background: var(--barn); margin-left: auto; }
  .dt-uber-logo { height: 28px; width: auto; display: block; }
  .dt-delivery-car { flex-shrink: 0; display: flex; align-items: center; }
  .dt-delivery-car svg { display: block; }
  .dt-delivery-text { flex: 1; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--ink); letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.25; }
  .dt-delivery-arrow { background: var(--barn); color: #fff; padding: 8px 14px; border-radius: 2px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; flex-shrink: 0; white-space: nowrap; font-family: 'Oswald', sans-serif; }

  /* ── FOOTER ──────────────────────────────────────────────────────────────── */
  .dt-footer { background: var(--black); padding: 52px 80px 24px; border-top: 3px solid var(--barn); }
  .dt-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; max-width: 1120px; margin: 0 auto 40px; }
  .dt-footer .fb-sc { font-family: 'Satisfy', cursive; color: var(--barn); font-size: 1rem; display: block; }
  .dt-footer .fb-mn { font-weight: 700; color: #fff; font-size: 1.4rem; letter-spacing: 0.06em; text-transform: uppercase; display: block; margin-bottom: 14px; }
  .dt-footer .fb-p { font-family: 'Lora', serif; font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 260px; font-style: italic; }
  .dt-footer-col h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tan); margin-bottom: 16px; }
  .dt-footer-col ul { list-style: none; }
  .dt-footer-col li { margin-bottom: 11px; }
  .dt-footer-col li a, .dt-footer-col li span { font-size: 0.95rem; color: rgba(255,255,255,0.55); display: block; text-decoration: none; transition: color 0.15s; line-height: 1.5; }
  .dt-footer-col li a:hover { color: rgba(255,255,255,0.9); }
  .dt-footer-soc { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
  .dt-footer-soc a { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2); padding: 6px 14px; text-decoration: none; transition: all 0.15s; }
  .dt-footer-soc a:hover { color: var(--tan); border-color: var(--tan); }
  .dt-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; max-width: 1120px; margin: 0 auto; }
  .dt-footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
  .dt-footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; }
  .dt-footer-bottom a:hover { color: #fff; }

  /* ── SPECIALS NARROWER SCREENS ────────────── */
}

/* Specials 75% on screens 900–1280px */
@media (min-width: 900px) and (max-width: 1280px) {
  .hp-specials-list { width: 75%; }
  .hp-specials-call { width: 75%; }
}

/* Mobile: hide desktop-only elements */
@media (max-width: 899px) {
  .dt-only { display: none !important; }
  .mobile-only { display: block; }
}
