/* =============================================================
   desktop.css — PriceMenu desktop landing page
   BEM prefix: dt-
   ============================================================= */

/* ── Tokens ── */
:root {
    --dt-bg:        #0f0d0a;
    --dt-surface:   #1a1713;
    --dt-surface2:  #231f1a;
    --dt-border:    #2e2820;
    --dt-accent:    #8B5E3C;
    --dt-gold:      #C49A6C;
    --dt-text:      #f0ece6;
    --dt-muted:     #8a7e74;
    --dt-cream:     #f5f0e8;
    --dt-dark:      #0f0d0a;
    --dt-radius:    16px;
    --dt-radius-sm: 10px;
    --dt-max:       1280px;
    --dt-font:      'DM Sans', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--dt-font);
    background: var(--dt-bg);
    color: var(--dt-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Shared eyebrow ── */
.dt-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dt-gold);
    margin-bottom: 0.85rem;
}

/* ── Buttons ── */
.dt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 2rem;
    border-radius: 999px;
    font-family: var(--dt-font);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    border: none;
    transition: opacity 0.18s, transform 0.18s;
    white-space: nowrap;
}
.dt-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.dt-btn--primary {
    background: var(--dt-accent);
    color: #fff;
}
.dt-btn--ghost {
    background: transparent;
    border: 2px solid var(--dt-gold);
    color: var(--dt-gold);
}

/* =============================================================
   TOPBAR
   ============================================================= */
.dt-topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(15,13,10,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(46,40,32,0.5);
}
.dt-topbar__inner {
    max-width: var(--dt-max);
    margin: 0 auto;
    padding: 0 2rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dt-topbar__logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--dt-text);
}
.dt-topbar__logo span { color: var(--dt-gold); }
.dt-topbar__link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dt-muted);
    transition: color 0.15s;
}
.dt-topbar__link:hover { color: var(--dt-gold); }

/* =============================================================
   HERO — SECTION 1
   ============================================================= */
.dt-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 60px;
}

.dt-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/webpage/hero-menu-phone.webp');
    background-size: cover;
    background-position: center 30%;
    opacity: 0.07;
    z-index: 0;
}

.dt-hero__overlay {
    display: none;
}

.dt-hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--dt-max);
    margin: 0 auto;
    padding: 5rem 2rem 5rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: center;
}

.dt-hero__title {
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1.25rem;
}

.dt-hero__title em {
    font-style: normal;
    color: var(--dt-gold);
}

.dt-hero__desc {
    font-size: 1.05rem;
    color: rgba(240,236,230,0.78);
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 2rem;
}

.dt-hero__nudge {
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--dt-muted);
    max-width: 380px;
}

/* Hero QR block */
.dt-hero__qr {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 2.5rem;
    background: rgba(26,23,19,0.75);
    border: 1px solid rgba(196,154,108,0.2);
    border-radius: var(--dt-radius);
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    max-width: 500px;
}
.dt-hero__qr-wrap {
    flex-shrink: 0;
    padding: 1.25rem;
    background: var(--dt-cream);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dt-hero__qr-img {
    width: 130px;
    height: 130px;
    display: block;
}
.dt-hero__qr-card {
    padding: 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
}
.dt-hero__qr-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dt-text);
    line-height: 1.3;
}
.dt-hero__qr-sub {
    font-size: 0.72rem;
    color: var(--dt-gold);
    letter-spacing: 0.02em;
}
.dt-hero__qr-pitch {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: rgba(240,236,230,0.6);
    line-height: 1.65;
}

/* Hero image label */
.dt-hero__img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}
.dt-hero__img-label {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    background: #3b1f0f;
    color: rgba(240,236,230,0.9);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
}
.dt-hero__phone {
    display: flex;
    justify-content: center;
}

.dt-phone-frame {
    width: 100%;
    border-radius: var(--dt-radius);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.dt-phone-frame__img {
    width: 100%;
    height: auto;
    display: block;
}

/* =============================================================
   SECTIONS — shared
   ============================================================= */
.dt-section {
    padding: 6rem 2rem;
}
.dt-section--dark  { background: var(--dt-bg); }
.dt-section--mid   { background: var(--dt-surface); }
.dt-section--cta   {
    background: var(--dt-surface2);
    border-top: 1px solid var(--dt-border);
    border-bottom: 1px solid var(--dt-border);
}

.dt-section__inner {
    max-width: var(--dt-max);
    margin: 0 auto;
}

.dt-section__inner--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.dt-section__inner--reverse .dt-section__visual { order: -1; }

.dt-section__inner--center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dt-section__title {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--dt-text);
    margin-bottom: 1.25rem;
}

.dt-section__body {
    font-size: 1rem;
    color: rgba(240,236,230,0.72);
    line-height: 1.75;
    margin-bottom: 1rem;
    max-width: 520px;
}
.dt-section__body--emphasis {
    color: var(--dt-text);
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 1.25rem;
    margin-bottom: 0;
}

/* ── Feature list ── */
.dt-list {
    list-style: none;
    margin: 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.dt-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: rgba(240,236,230,0.85);
    line-height: 1.5;
}
.dt-list li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(196,154,108,0.18);
    border: 1.5px solid var(--dt-gold);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23C49A6C' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 8px;
}

/* =============================================================
   SECTION 2 — Image grid
   ============================================================= */
.dt-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem;
}
.dt-image-grid__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--dt-radius);
    border: 1px solid var(--dt-border);
}
.dt-image-grid__img--tall {
    grid-row: span 2;
    height: 100%;
    min-height: 410px;
}

/* =============================================================
   SECTION 3 — Feature cards
   ============================================================= */
.dt-feature-cards {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.dt-feature-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--dt-surface2);
    border: 1px solid var(--dt-border);
    border-radius: var(--dt-radius);
    padding: 0.85rem 1.25rem;
    transition: border-color 0.2s;
}
.dt-feature-card:hover { border-color: rgba(196,154,108,0.4); }
.dt-feature-card__img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--dt-radius-sm);
    flex-shrink: 0;
}
.dt-feature-card__label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dt-text);
    letter-spacing: -0.01em;
}

/* =============================================================
   SECTION 4 — QR CTA
   ============================================================= */
.dt-cta__title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--dt-text);
    margin-bottom: 1.25rem;
    max-width: 680px;
    text-align: center;
}
.dt-cta__body {
    font-size: 1.05rem;
    color: rgba(240,236,230,0.72);
    line-height: 1.75;
    max-width: 560px;
    text-align: center;
    margin-bottom: 3rem;
}

.dt-qr-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}
.dt-qr-wrap {
    padding: 1.5rem;
    background: var(--dt-cream);
    border-radius: var(--dt-radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.dt-qr {
    width: 240px;
    height: 240px;
    display: block;
}
.dt-qr__caption {
    font-size: 0.85rem;
    color: var(--dt-muted);
    text-align: center;
}

/* =============================================================
   FOOTER
   ============================================================= */
.dt-footer {
    background: var(--dt-bg);
    border-top: 1px solid var(--dt-border);
    padding: 2.5rem 2rem;
}
.dt-footer__inner {
    max-width: var(--dt-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
}
.dt-footer__logo {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--dt-text);
}
.dt-footer__logo span { color: var(--dt-gold); }
.dt-footer__line {
    font-size: 0.82rem;
    color: var(--dt-muted);
}
.dt-footer__line a {
    color: var(--dt-gold);
}
.dt-footer__line a:hover { text-decoration: underline; }

/* =============================================================
   RESPONSIVE — tablet and below → serve mobile demo instead
   ============================================================= */
@media (max-width: 860px) {
    .dt-hero__inner {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem 4rem;
    }
    .dt-hero__phone { display: none; order: 0; }
    .dt-section__inner--split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .dt-section__inner--reverse .dt-section__visual { order: 0; }
    .dt-section { padding: 4rem 1.5rem; }
    .dt-image-grid__img--tall { min-height: 220px; }
}

@media (max-width: 520px) {
    .dt-section { padding: 3rem 1.25rem; }
    .dt-qr { width: 200px; height: 200px; }
}
