/* =============================================
   SCANNDINE – STYLESHEET
   Palette:
   --cream:   #EAE0C7  (primary warm surface)
   --deep:    #2E211C  (dark brown – text, navbar, footer)
   --orange:  #C06226  (terracotta – CTAs, highlights)
   --teal:    #9CB8B7  (sage/teal – secondary accents)
   --rust:    #984619  (deep rust – hover states, depth)
   ============================================= */

:root {
  --cream:   #EAE0C7;
  --teal:    #9CB8B7;
  --deep:    #2E211C;
  --orange:  #C06226;
  --rust:    #984619;

  --text-dark:  #2E211C;
  --text-muted: rgba(46, 33, 28, 0.55);
  --surface:    rgba(234, 224, 199, 0.85);
  --card-bg:    rgba(255, 251, 243, 0.92);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── UTILITIES ── */
.container {
  width: 92%;
  max-width: 1380px;
  margin: 0 auto;
}
.desktop-only { display: inline; }
@media (max-width: 768px) { .desktop-only { display: none; } }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="100"].reveal { transition-delay: 0.1s; }
[data-delay="150"].reveal { transition-delay: 0.15s; }
[data-delay="200"].reveal { transition-delay: 0.2s; }
[data-delay="300"].reveal { transition-delay: 0.3s; }
[data-delay="450"].reveal { transition-delay: 0.45s; }

/* ── SECTION PILL ── */
.section-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(192, 98, 38, 0.4);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 1.2rem;
  background: rgba(192, 98, 38, 0.07);
}
.section-pill.teal {
  color: var(--teal);
  border-color: rgba(156, 184, 183, 0.5);
  background: rgba(156, 184, 183, 0.1);
}
.section-pill.light {
  color: var(--teal);
  border-color: rgba(156, 184, 183, 0.4);
  background: rgba(156, 184, 183, 0.08);
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--deep);
}
.section-header h2 em { font-style: italic; color: var(--orange); }
.section-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--cream);
  padding: 13px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s, transform 0.25s var(--ease-out), box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(192, 98, 38, 0.3);
}
.btn-primary:hover {
  background: var(--rust);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(152, 70, 25, 0.4);
}
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(46, 33, 28, 0.25);
  color: var(--deep);
  padding: 13px 30px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s, transform 0.25s var(--ease-out);
}
.btn-ghost:hover {
  border-color: var(--teal);
  background: rgba(156, 184, 183, 0.12);
  color: var(--deep);
  transform: translateY(-2px);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.5s var(--ease-in-out), backdrop-filter 0.5s, box-shadow 0.5s;
  background: var(--deep);
}
.navbar.scrolled {
  background: rgba(46, 33, 28, 0.95);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 2px 24px rgba(46, 33, 28, 0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.1rem 5%;
  max-width: 1380px;
  margin: 0 auto;
}

/* LOGO SLOT */
.logo-placeholder {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Brand text logo (hero + footer) */
.brand-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1;
}
.brand-logo em {
  font-style: italic;
  font-weight: 400;
}
.brand-logo.dark {
  color: var(--deep);
}

/* Hero brand */
.hero-brand {
  margin-bottom: 1.4rem;
}
.hero-brand .brand-logo {
  font-size: 2rem;
}

/* Footer logo */
.footer-logo-img {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(234, 224, 199, 0.7);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
  transform-origin: left;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }

.btn-nav {
  background: var(--orange);
  color: var(--cream);
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.3s, transform 0.25s;
}
.btn-nav:hover { background: var(--rust); transform: translateY(-2px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(46, 33, 28, 0.98);
  backdrop-filter: blur(20px);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-in-out), padding 0.3s;
}
.mobile-menu.open {
  max-height: 360px;
  padding: 1rem 0;
}
.mobile-menu a {
  padding: 14px 5%;
  font-size: 1rem;
  color: rgba(234, 224, 199, 0.75);
  border-bottom: 1px solid rgba(234, 224, 199, 0.06);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu a:hover { color: var(--cream); padding-left: calc(5% + 8px); }
.btn-nav-mobile {
  margin: 1rem 5% 0;
  background: var(--orange);
  color: var(--cream) !important;
  border-radius: 100px;
  text-align: center;
  padding: 13px !important;
  font-weight: 600;
}

@media (max-width: 900px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 7% 5rem;
  gap: 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(192, 98, 38, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(156, 184, 183, 0.12) 0%, transparent 60%),
    var(--cream);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1" fill="rgba(46,33,28,0.04)"/></svg>') repeat;
  pointer-events: none;
}

.hero-content {
  flex: 1 1 520px;
  z-index: 2;
}

.hero-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.4rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--deep);
  margin-bottom: 1.5rem;
}
.hero-title .highlight-word {
  color: var(--orange);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2.4rem;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* PHONE MOCKUP */
.hero-visual {
  flex: 0 0 auto;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.phone-mockup {
  width: 240px;
  background: var(--deep);
  border-radius: 38px;
  padding: 0;
  box-shadow:
    0 0 0 1.5px rgba(234, 224, 199, 0.1),
    0 0 0 3px rgba(46, 33, 28, 0.6),
    0 28px 64px rgba(46, 33, 28, 0.35),
    0 8px 24px rgba(46, 33, 28, 0.2);
  animation: float 6s var(--ease-in-out) infinite;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0.5deg); }
  50%       { transform: translateY(-14px) rotate(-0.5deg); }
}

/* Notch */
.phone-notch {
  width: 80px;
  height: 22px;
  background: var(--deep);
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: inset 0 -2px 0 rgba(234,224,199,0.05);
}

/* Status bar */
.phone-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 18px 6px;
  flex-shrink: 0;
  color: var(--cream);
}
.phone-time {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--cream);
}

/* App header */
.phone-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px 10px;
  border-bottom: 1px solid rgba(234, 224, 199, 0.07);
  flex-shrink: 0;
}
.phone-app-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.04em;
  font-family: 'Playfair Display', serif;
}
.phone-table-badge {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--orange);
  background: rgba(192, 98, 38, 0.15);
  border: 1px solid rgba(192, 98, 38, 0.3);
  border-radius: 100px;
  padding: 2px 8px;
  letter-spacing: 0.04em;
}

/* QR section */
.phone-qr-section {
  padding: 12px 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.phone-qr-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(234, 224, 199, 0.4);
}
.phone-qr-frame {
  position: relative;
  width: 130px;
  height: 130px;
  background: rgba(234, 224, 199, 0.06);
  border: 1px solid rgba(234, 224, 199, 0.1);
  border-radius: 14px;
  padding: 10px;
  overflow: hidden;
}
.phone-qr-svg {
  width: 100%;
  height: 100%;
}
.phone-scan-line {
  position: absolute;
  left: 10px; right: 10px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  border-radius: 2px;
  animation: phoneScan 2.2s ease-in-out infinite;
  top: 10px;
}
@keyframes phoneScan {
  0%   { top: 10px; opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { top: calc(100% - 12px); opacity: 0; }
}

/* Divider */
.phone-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  flex-shrink: 0;
}
.phone-divider::before,
.phone-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(234, 224, 199, 0.07);
}
.phone-divider span {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(234, 224, 199, 0.3);
  flex-shrink: 0;
}

/* Order list */
.phone-order-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 16px;
  flex-shrink: 0;
}
.phone-order-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.73rem;
  font-weight: 500;
  color: rgba(234, 224, 199, 0.78);
  background: rgba(234, 224, 199, 0.04);
  border-radius: 8px;
  padding: 7px 10px;
}
.phone-order-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.phone-order-name { flex: 1; }
.phone-order-price {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.72rem;
}

/* Confirm bar */
.phone-confirm-bar {
  margin: 6px 16px;
  background: rgba(192, 98, 38, 0.18);
  border: 1px solid rgba(192, 98, 38, 0.35);
  border-radius: 10px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  flex-shrink: 0;
}
.phone-confirm-check {
  font-size: 0.7rem;
}
.phone-confirm-total {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Home indicator */
.phone-home-bar {
  width: 70px;
  height: 4px;
  background: rgba(234, 224, 199, 0.2);
  border-radius: 100px;
  margin: 10px auto 12px;
  flex-shrink: 0;
}


/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden;
  background: var(--deep);
  padding: 14px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 2.5rem;
  animation: ticker 28s linear infinite;
}
.ticker-track span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  flex-shrink: 0;
}
.ticker-track .dot {
  color: var(--teal);
  font-size: 0.55rem;
  align-self: center;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── DESCRIPTION SECTION ── */
.desc-section {
  padding: 6rem 0;
  background: radial-gradient(ellipse 70% 80% at 22% 50%, rgba(156, 184, 183, 0.15) 0%, transparent 60%),
              linear-gradient(180deg, rgba(255, 252, 244, 1) 0%, var(--cream) 100%);
  overflow: hidden;
}

.desc-inner {
  width: 92%;
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ── Device mockup area ── */
.desc-devices {
  position: relative;
  height: 380px;
}

.desc-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(156,184,183,0.22) 0%, transparent 68%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(10px);
}

/* Shared mockup card */
.dmock {
  position: absolute;
  background: var(--cream);
  border: 1px solid rgba(46, 33, 28, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 48px rgba(46, 33, 28, 0.12), 0 0 0 1px rgba(192,98,38,0.06);
  transition: transform 0.4s var(--ease-out);
}
.dmock:hover { transform: translateY(-6px) !important; }

.dmock-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1.8rem 1.4rem;
  gap: 0.6rem;
}

.dmock-icon { width: 44px; height: 44px; margin-bottom: 0.3rem; }

.dmock-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--deep);
  text-align: center;
}

.dmock-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* Tablet – landscape-ish wide card, top-left */
.dmock-tablet {
  width: 310px;
  height: 210px;
  top: 10px;
  left: 0;
  transform: rotate(-1.5deg);
}

/* Phone – portrait card, bottom-right, overlapping tablet */
.dmock-phone {
  width: 175px;
  height: 250px;
  bottom: 10px;
  right: 40px;
  transform: rotate(1.5deg);
  background: var(--deep);
}
.dmock-phone .dmock-icon { width: 32px; height: 48px; }
.dmock-phone .dmock-label { color: var(--cream); }
.dmock-phone .dmock-sub { color: rgba(234,224,199,0.6); }

/* ── Right text col ── */
.desc-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--deep);
  margin-bottom: 1.2rem;
}

.desc-text > p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2.4rem;
}

/* Stats row */
.desc-stats {
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(46, 33, 28, 0.1);
  padding-top: 1.8rem;
}

.dstat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dstat-num {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: -0.03em;
}
.dstat-num.live { font-style: normal; }

.live-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(156, 184, 183, 0.6);
  animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(156,184,183,0.6); }
  60%  { box-shadow: 0 0 0 8px rgba(156,184,183,0); }
  100% { box-shadow: 0 0 0 0 rgba(156,184,183,0); }
}

.dstat-label {
  font-size: 0.77rem;
  font-weight: 500;
  color: rgba(46, 33, 28, 0.4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
  .desc-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .desc-devices {
    height: 300px;
  }
  .dmock-tablet { width: 260px; height: 175px; left: 50%; transform: translateX(-70%) rotate(-1.5deg); }
  .dmock-phone  { width: 145px; height: 210px; right: auto; left: 50%; transform: translateX(10%) rotate(1.5deg); bottom: 0; }
}

/* ── FEATURES / BENTO SECTION ── */
.features-section {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--cream) 0%, rgba(255, 252, 243, 1) 100%);
  position: relative;
}

/* ─── BENTO GRID LAYOUT ─── */
.bento-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

/* ─── BASE BENTO CARD ─── */
.bento-card {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(46, 33, 28, 0.08);
  background: var(--card-bg);
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-out);
  box-shadow: 0 2px 12px rgba(46, 33, 28, 0.05);
}
.bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(192,98,38,0.07), transparent 60%);
  transition: opacity 0.5s;
  pointer-events: none;
}
.bento-card:hover { border-color: rgba(192,98,38,0.3); box-shadow: 0 20px 60px rgba(46, 33, 28, 0.1), 0 4px 16px rgba(192,98,38,0.08); }
.bento-card:hover::after { opacity: 1; }

/* Decorative number */
.bento-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(192,98,38,0.3);
  letter-spacing: 0.12em;
}

/* ─── HERO CARD (wide, spans col 1, row 1) ─── */
.bento-hero {
  grid-column: 1;
  grid-row: 1;
  padding: 2.4rem 2rem;
}
.bento-hero-inner {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.bento-hero-text { flex: 1; }
.bento-hero-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.bento-hero-text p {
  font-size: 0.93rem;
  line-height: 1.72;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(192, 98, 38, 0.1);
  border: 1px solid rgba(192,98,38,0.28);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 100px;
}
.bento-hero-visual { flex-shrink: 0; }

/* QR wrapper in hero */
.bqr-wrap {
  position: relative;
  width: 130px; height: 130px;
  padding: 12px;
  background: rgba(46, 33, 28, 0.05);
  border: 1px solid rgba(46, 33, 28, 0.1);
  border-radius: 16px;
}
.bqr-svg { width: 100%; height: 100%; }

.bqr-scan {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  border-radius: 2px;
  animation: bqrScan 2.4s ease-in-out infinite;
  top: 12px;
}
@keyframes bqrScan {
  0%   { top: 12px; opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { top: calc(100% - 14px); opacity: 0; }
}

/* Corner brackets */
.bqr-corners { position: absolute; inset: 0; pointer-events: none; }
.bqr-c {
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--orange);
  border-style: solid;
  opacity: 0.6;
}
.bqr-c.tl { top: 6px;  left: 6px;  border-width: 2px 0 0 2px; border-radius: 3px 0 0 0; }
.bqr-c.tr { top: 6px;  right: 6px; border-width: 2px 2px 0 0; border-radius: 0 3px 0 0; }
.bqr-c.bl { bottom: 6px; left: 6px;  border-width: 0 0 2px 2px; border-radius: 0 0 0 3px; }
.bqr-c.br { bottom: 6px; right: 6px; border-width: 0 2px 2px 0; border-radius: 0 0 3px 0; }

/* ─── TALL CARD (col 2, row 1+2 span) ─── */
.bento-tall {
  grid-column: 2;
  grid-row: 1 / 3;
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(160deg, rgba(46, 33, 28, 0.97) 0%, rgba(46, 33, 28, 0.92) 100%);
  border-color: rgba(46, 33, 28, 0.2) !important;
}
.bento-tall h3,
.bento-tall .bento-num {
  color: var(--cream) !important;
}
.bento-tall p {
  color: rgba(234, 224, 199, 0.6) !important;
}
.bento-tall-icon {
  width: 56px; height: 56px;
  background: rgba(234, 224, 199, 0.1);
  border: 1px solid rgba(234, 224, 199, 0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
  flex-shrink: 0;
  transition: background 0.3s;
}
.bento-card:hover .bento-tall-icon { background: rgba(192, 98, 38, 0.25); }
.bento-tall-icon svg { width: 100%; height: 100%; }
.bento-tall h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}
.bento-tall p {
  font-size: 0.88rem;
  line-height: 1.7;
}

/* Live order rows */
.bento-orders {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.bord {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  padding: 9px 12px;
  border-radius: 10px;
  font-weight: 500;
  background: rgba(234, 224, 199, 0.07);
  border: 1px solid rgba(234, 224, 199, 0.1);
  color: rgba(234, 224, 199, 0.75);
  transition: background 0.3s;
}
.bord:hover { background: rgba(234, 224, 199, 0.12); }
.bord-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
.bord-dot.done { background: var(--teal); animation: none; }
.bord-done { color: rgba(156,184,183,0.9); border-color: rgba(156,184,183,0.2); background: rgba(156,184,183,0.08); }
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ─── SMALL CARDS (col 1, row 2 — 2 cols internally) ─── */
.bento-sm {
  padding: 1.8rem 1.6rem;
}
/* place the two small cards side by side inside row 2 col 1 */
.bento-grid > .bento-sm:nth-child(3) { grid-column: 1; grid-row: 2; }

/* ─── SMALL CARDS wrapper – sits in col 1 row 2 as a sub-grid ─── */
.bento-sm-row {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* We need a sub-grid for the two small cards */
/* Override: put them in a wrapper — handled via grid placement */
.bento-sm h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep);
  margin: 0.7rem 0 0.5rem;
}
.bento-sm p {
  font-size: 0.87rem;
  line-height: 1.68;
  color: var(--text-muted);
}
.bento-sm-icon {
  width: 40px; height: 40px;
}

/* Teal accent small card */
.bento-sm.teal-accent {
  background: linear-gradient(135deg, rgba(156,184,183,0.18) 0%, var(--card-bg) 100%);
  border-color: rgba(156,184,183,0.25) !important;
}

/* ─── WIDE BOTTOM CARD (full width, row 3) ─── */
.bento-wide {
  grid-column: 1 / -1;
  grid-row: 3;
  padding: 2rem 2.4rem;
  background: linear-gradient(135deg, var(--deep) 0%, rgba(46,33,28,0.92) 100%);
  border-color: rgba(46,33,28,0.3) !important;
}
.bento-wide-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.bento-wide-inner > div:first-child { flex: 1; min-width: 240px; }
.bento-wide h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.bento-wide p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(234, 224, 199, 0.6);
}
.bento-wide-stats {
  display: flex;
  gap: 3rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.bws { display: flex; flex-direction: column; gap: 0.2rem; text-align: center; }
.bws-val {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
}
.bws-lbl {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(234, 224, 199, 0.45);
  font-weight: 500;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento-hero  { grid-column: 1; grid-row: auto; }
  .bento-tall  { grid-column: 1; grid-row: auto; }
  .bento-sm-row { grid-column: 1; grid-row: auto; grid-template-columns: 1fr 1fr; }
  .bento-wide  { grid-column: 1; grid-row: auto; }
  .bento-hero-inner { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .bento-wide-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .bento-wide-inner > div:first-child { min-width: unset; width: 100%; }
  .bento-wide-stats {
    width: 100%;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 500px) {
  .bento-sm-row { grid-template-columns: 1fr; }
  .bento-sm { padding: 1.4rem 1.2rem; }
  .bento-sm h3 { font-size: 1rem; }
  .bento-sm p { font-size: 0.85rem; }
  .bento-wide { padding: 1.5rem 1.2rem; }
  .bento-wide-stats { gap: 1.2rem; }
  .bws-val { font-size: 1.8rem; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .bento-grid { grid-template-columns: 1.3fr 1fr; }
}


/* ── HOW IT WORKS ── */
.how-section {
  padding: 6rem 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(156, 184, 183, 0.1) 0%, transparent 70%), var(--cream);
}

/* 7 columns: card arrow card arrow card arrow card */
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0 1.2rem;
}

/* ── Arrow divider ── */
.step-arrow {
  font-size: 1.4rem;
  color: rgba(192, 98, 38, 0.45);
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
  transition: color 0.3s, transform 0.3s;
}
.step-arrow.in-view { color: var(--orange); }

/* ── Card ── */
.step {
  background: var(--card-bg);
  border: 1px solid rgba(46, 33, 28, 0.08);
  border-radius: 20px;
  padding: 2rem 1.4rem 1.6rem;
  text-align: center;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease-out);
  box-shadow: 0 2px 12px rgba(46, 33, 28, 0.05);
}
.step:hover {
  border-color: rgba(192, 98, 38, 0.3);
  box-shadow: 0 16px 48px rgba(46, 33, 28, 0.1), 0 4px 16px rgba(192, 98, 38, 0.08);
  transform: translateY(-5px);
}

/* Icon wrapper */
.step-icon-wrap {
  position: relative;
  width: 58px; height: 58px;
  margin: 0 auto 1.1rem;
  background: rgba(192, 98, 38, 0.09);
  border: 1.5px solid rgba(192, 98, 38, 0.22);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.step:hover .step-icon-wrap {
  background: rgba(192, 98, 38, 0.18);
  border-color: rgba(192, 98, 38, 0.5);
  box-shadow: 0 0 18px rgba(192, 98, 38, 0.2);
}
.step-icon {
  width: 28px; height: 28px;
  color: var(--orange);
}

/* Number badge */
.step-badge {
  position: absolute;
  top: -7px; right: -7px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--cream);
  background: var(--orange);
  border-radius: 100px;
  padding: 1px 6px;
  line-height: 1.5;
}

/* Keyword heading */
.step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 0.4rem;
  line-height: 1.1;
}

/* Short caption */
.step p {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 860px) {
  .steps-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.2rem;
  }
  .step-arrow { display: none; }
}
@media (max-width: 500px) {
  .steps-row { grid-template-columns: 1fr; }
}


/* ── ABOUT SECTION ── */
.about-section {
  padding: 7rem 0;
  background: linear-gradient(180deg, rgba(255, 252, 244, 1) 0%, var(--cream) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* CARD STACK VISUAL */
.about-card-stack {
  position: relative;
  height: 340px;
}
.acard {
  position: absolute;
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(46, 33, 28, 0.1);
  backdrop-filter: blur(12px);
}
.acard-1 {
  background: var(--deep);
  bottom: 0; left: 0;
  width: 78%;
  z-index: 3;
}
.acard-1 .acard-label { color: rgba(234,224,199,0.5); }
.acard-1 .acard-number { color: var(--cream); }

.acard-2 {
  background: var(--cream);
  border-color: rgba(46,33,28,0.12);
  top: 0; right: 0;
  width: 72%;
  z-index: 2;
}
.acard-2 .acard-label { color: var(--text-muted); }
.acard-2 .acard-number { color: var(--deep); }

.acard-3 {
  background: linear-gradient(135deg, rgba(156,184,183,0.25), rgba(234,224,199,0.9));
  border-color: rgba(156,184,183,0.3);
  bottom: 60px; right: 20px;
  width: 70%;
  z-index: 1;
  padding-top: 1rem;
}
.acard-3 .acard-label { color: var(--text-muted); }
.acard-3 .acard-number { color: var(--deep); }

.acard-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.acard-number {
  font-family: 'Inter', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.8rem;
  letter-spacing: -0.04em;
}
.acard-bar {
  height: 4px;
  background: rgba(46, 33, 28, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.acard-1 .acard-bar { background: rgba(234,224,199,0.15); }
.acard-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--rust));
  border-radius: 4px;
  animation: growBar 2s var(--ease-out) 0.5s both;
}
@keyframes growBar {
  from { width: 0 !important; }
}
.acard-tag {
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 500;
  margin-top: 0.5rem;
}
.mini-chart { width: 100%; }
.acard-chart-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 4px;
}

/* ABOUT TEXT */
.about-text .section-pill { display: inline-block; }
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: var(--deep);
}
.about-text h2 em { font-style: italic; color: var(--orange); }
.about-text p {
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.about-list li svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── CONTACT SECTION ── */
.contact-section {
  padding: 7rem 0;
  background: var(--deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--cream);
}
.contact-info h2 em { font-style: italic; color: var(--teal); }
.contact-info > p {
  font-size: 0.96rem;
  line-height: 1.75;
  color: rgba(234, 224, 199, 0.6);
  margin-bottom: 2rem;
}

.contact-meta { display: flex; flex-direction: column; gap: 0.85rem; }
.contact-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(234, 224, 199, 0.55);
}
.contact-meta-item svg { width: 20px; height: 20px; flex-shrink: 0; }

/* FORM */
.contact-form-wrap {
  background: rgba(234, 224, 199, 0.06);
  border: 1px solid rgba(234, 224, 199, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(234, 224, 199, 0.55);
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  background: rgba(234, 224, 199, 0.06);
  border: 1px solid rgba(234, 224, 199, 0.12);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.93rem;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(234, 224, 199, 0.2); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: rgba(156, 184, 183, 0.08);
  box-shadow: 0 0 0 3px rgba(156, 184, 183, 0.15);
}

/* ── FOOTER ── */
.footer {
  padding: 2.5rem 0;
  background: var(--deep);
  border-top: 1px solid rgba(234, 224, 199, 0.08);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo-slot {
  /* empty for user logo */
  display: flex;
  align-items: center;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  opacity: 0.6;
  font-style: italic;
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  gap: 1.8rem;
  margin-left: auto;
}
.footer-links a {
  font-size: 0.87rem;
  color: rgba(234, 224, 199, 0.4);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--cream); }
.footer-copy {
  width: 100%;
  font-size: 0.8rem;
  color: rgba(234, 224, 199, 0.22);
  margin-top: -0.5rem;
}

/* ── RESPONSIVE ── */

/* Tablet landscape / small desktop */
@media (max-width: 1024px) {
  .hero {
    padding: 8rem 5% 5rem;
    gap: 3rem;
  }
  .hero-content { flex: 1 1 400px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: 1; }
  .about-text { order: 2; }
  .about-card-stack { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
    padding: 7rem 6% 4rem;
    min-height: unset;
  }
  .hero-content {
    flex: unset;
    width: 100%;
    max-width: 540px;
  }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .features-grid { grid-template-columns: 1fr; gap: 1rem; }
  .steps-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .steps-row::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { margin-left: 0; }
  .contact-form-wrap { padding: 1.5rem; }
}

/* Mobile */
@media (max-width: 480px) {
  .hero {
    padding: 6rem 5% 3rem;
    gap: 2rem;
  }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3rem); }
  .steps-row { grid-template-columns: 1fr; }
  .btn-primary, .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .hero-actions { flex-direction: column; width: 100%; }
}

/* ── FAQ SECTION ── */
.faq-section {
  padding: 8rem 0;
  background: var(--cream);
  border-top: 1px solid rgba(46, 33, 28, 0.05);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.faq-header {
  position: sticky;
  top: 120px;
}

.faq-header .section-pill {
  margin-bottom: 1.5rem;
}

.faq-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--deep);
  margin-bottom: 1.2rem;
}

.faq-header h2 em {
  font-style: italic;
  color: var(--orange);
}

.faq-header p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 400px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(46, 33, 28, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(192, 98, 38, 0.2);
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(192, 98, 38, 0.35);
  box-shadow: 0 12px 32px rgba(46, 33, 28, 0.04);
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 2rem;
  background: transparent;
  color: var(--deep);
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  transition: color 0.3s;
  gap: 1.5rem;
}

.faq-q {
  line-height: 1.4;
}

.faq-btn:hover {
  color: var(--orange);
}

.faq-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(192, 98, 38, 0.08);
  color: var(--orange);
  transition: background 0.3s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.active .faq-icon-wrap {
  background: var(--orange);
  color: var(--cream);
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-content p {
  padding: 0 2rem 2rem;
  color: rgba(46, 33, 28, 0.65);
  line-height: 1.75;
  font-size: 0.98rem;
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .faq-header {
    position: static;
  }
  .faq-header p {
    max-width: 100%;
  }
  .faq-btn {
    padding: 1.4rem 1.2rem;
    font-size: 1.05rem;
  }
  .faq-content p {
    padding: 0 1.2rem 1.4rem;
  }
}
