/* ═══════════════════════════════════════════════════════════════
   ServiceGSM · Editorial Workshop
   Design tokens, base styles, layout & components
   ═══════════════════════════════════════════════════════════════ */

:root {
    /* — Color: warm paper + deep ink + amber accent — */
    --paper:        #f6f1e8;          /* warm cream background */
    --paper-deep:   #ece4d2;          /* slightly deeper cream */
    --cream:        #faf6ee;          /* lightest surface */
    --surface:      #ffffff;          /* card surfaces */
    --ink:          #0c1828;          /* deep navy, primary text + brand */
    --ink-soft:     #1d2a3d;          /* secondary dark */
    --ink-mute:     #5e6878;          /* muted body text */
    --ink-faint:    #8a8d96;          /* very muted */
    --line:         #ddd3bc;          /* warm hairline divider */
    --line-soft:    #ebe2cc;
    --amber:        #c08a3e;          /* warm artisan accent */
    --amber-deep:   #9c6e2e;
    --brick:        #a4322a;          /* rare urgency accent */

    /* — Type scale & families — */
    --ff-serif: 'Fraunces', 'Times New Roman', Georgia, serif;
    --ff-sans:  'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ff-mono:  'Geist Mono', ui-monospace, 'JetBrains Mono', Menlo, monospace;

    /* — Spacing scale (8pt base) — */
    --s-1: 8px;  --s-2: 16px; --s-3: 24px; --s-4: 32px;
    --s-5: 48px; --s-6: 64px; --s-7: 96px; --s-8: 128px;

    /* — Easing — */
    --ease:     cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --t-fast: 0.18s; --t-base: 0.25s; --t-slow: 0.5s;

    /* — Shadows (warm) — */
    --shadow-sm: 0 1px 2px rgba(12, 24, 40, 0.06);
    --shadow:    0 10px 30px -12px rgba(12, 24, 40, 0.18), 0 2px 6px -2px rgba(12, 24, 40, 0.06);
    --shadow-lg: 0 30px 60px -20px rgba(12, 24, 40, 0.22), 0 8px 20px -8px rgba(12, 24, 40, 0.08);

    /* — Radii — */
    --r-1: 4px; --r-2: 8px; --r-3: 14px; --r-4: 24px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--ff-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Paper-grain subtle noise overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

a { color: inherit; text-decoration: none; transition: color var(--t-base) var(--ease); }
img, svg, iframe { display: block; max-width: 100%; }

::selection { background: var(--ink); color: var(--paper); }

/* — Type scale — */
h1, h2, h3, h4, h5 {
    font-family: var(--ff-serif);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: var(--ink);
    font-variation-settings: "opsz" 96, "SOFT" 30;
}

h1 em, h2 em, h3 em, h4 em {
    font-style: italic;
    font-weight: 400;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    color: var(--amber-deep);
}

h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 500; }
h4 { font-size: 1.125rem; letter-spacing: -0.015em; }
h5 { font-size: 0.75rem; font-family: var(--ff-mono); font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink); }

p { color: var(--ink-mute); }

/* — Layout shell — */
.shell {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 720px) {
    .shell { padding: 0 22px; }
}

.section {
    position: relative;
    padding: var(--s-8) 0;
    isolation: isolate;
}

.section--paper { background: var(--paper); }
.section--cream { background: var(--cream); }
.section--ink   { background: var(--ink); color: var(--paper); }
.section--ink h2,
.section--ink h3,
.section--ink h4 { color: var(--paper); }
.section--ink h2 em,
.section--ink h3 em { color: #e6b566; }
.section--ink p     { color: rgba(246, 241, 232, 0.7); }

@media (max-width: 900px) {
    .section { padding: var(--s-6) 0; }
}

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 241, 232, 0.82);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow var(--t-base) var(--ease);
}
.site-header.scrolled { box-shadow: 0 1px 0 var(--line), 0 8px 20px -16px rgba(12, 24, 40, 0.18); }

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
}
.brand-mark {
    width: 42px; height: 42px;
    display: grid; place-items: center;
    background: var(--ink); color: var(--paper);
    font-family: var(--ff-serif);
    font-weight: 500; font-style: italic;
    font-size: 1.1rem;
    letter-spacing: -0.04em;
    border-radius: 2px;
    transition: transform var(--t-base) var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-6deg); }

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: var(--ff-serif);
    font-weight: 500;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
}
.brand-accent { font-style: italic; color: var(--amber-deep); font-variation-settings: "opsz" 144; }
.brand-tag {
    font-family: var(--ff-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-top: 4px;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.primary-nav a {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 8px 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-soft);
    border-radius: 2px;
    position: relative;
}
.primary-nav a .nav-num {
    font-family: var(--ff-mono);
    font-size: 0.6875rem;
    color: var(--ink-faint);
    letter-spacing: 0.05em;
}
.primary-nav a::after {
    content: '';
    position: absolute;
    left: 12px; right: 12px;
    bottom: 4px;
    height: 1px;
    background: var(--amber-deep);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-base) var(--ease);
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a:hover::after { transform: scaleX(1); }
.primary-nav a:hover .nav-num { color: var(--amber-deep); }

.phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all var(--t-base) var(--ease);
    position: relative;
    overflow: hidden;
}
.phone-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--amber-deep);
    transform: translateY(101%);
    transition: transform var(--t-base) var(--ease);
}
.phone-pill > * { position: relative; z-index: 1; }
.phone-pill:hover { color: #fff; }
.phone-pill:hover::before { transform: translateY(0); }
.phone-pill-label {
    font-family: var(--ff-mono);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.6;
}
.phone-pill-num { letter-spacing: 0.02em; }
.phone-pill svg { width: 14px; height: 14px; transition: transform var(--t-base) var(--ease); }
.phone-pill:hover svg { transform: translateX(3px); }

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 2px;
    width: 42px; height: 42px;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: border-color var(--t-base) var(--ease);
}
.menu-toggle span {
    width: 18px; height: 1.5px;
    background: var(--ink);
    transition: transform var(--t-base) var(--ease);
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: var(--s-7) 0 var(--s-8);
    background: var(--paper);
    overflow: hidden;
    isolation: isolate;
}
.hero-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at top right, rgba(192, 138, 62, 0.07), transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(12, 24, 40, 0.04), transparent 50%);
    z-index: 0;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    grid-template-areas:
        "meta    visual"
        "head    visual"
        "body    visual"
        "cta     visual"
        "stats   stats";
    gap: 32px 64px;
    align-items: start;
    position: relative;
}

.hero-meta {
    grid-area: meta;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--ff-mono);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-mute);
}
.hero-meta-num { color: var(--amber-deep); font-weight: 500; }
.hero-meta-sep { width: 48px; height: 1px; background: var(--ink-faint); opacity: 0.5; }

.hero-headline {
    grid-area: head;
    font-size: clamp(2.6rem, 7vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
    font-weight: 500;
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 50;
    margin-top: 8px;
}
.hero-headline span {
    display: block;
}
.hero-headline em {
    font-style: italic;
    font-weight: 400;
    color: var(--amber-deep);
    font-variation-settings: "opsz" 144, "SOFT" 100;
    padding-right: 0.05em;
}

.hero-body {
    grid-area: body;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    align-items: start;
    margin-top: 8px;
}
.hero-rule {
    height: 1px;
    background: var(--ink);
    margin-top: 12px;
}
.hero-lede {
    font-size: 1.0625rem;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 440px;
}

.hero-cta {
    grid-area: cta;
    display: flex;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.hero-visual {
    grid-area: visual;
    position: relative;
    align-self: stretch;
    min-height: 520px;
}

.hero-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 4px;
    transform: translateX(0);
}
.hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: contrast(1.03) saturate(0.95);
}
.hero-image figcaption {
    position: absolute;
    bottom: 14px; left: 16px;
    font-family: var(--ff-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--paper);
    background: rgba(12, 24, 40, 0.65);
    padding: 6px 10px;
    backdrop-filter: blur(8px);
}

.hero-ticket {
    position: absolute;
    bottom: -28px;
    left: -32px;
    width: 280px;
    background: var(--surface);
    padding: 22px 24px 20px;
    box-shadow: var(--shadow-lg);
    border-radius: 2px;
    transform: rotate(-1.5deg);
    transition: transform var(--t-slow) var(--ease);
    z-index: 2;
}
.hero-ticket:hover { transform: rotate(0deg) translateY(-4px); }
.hero-ticket::before,
.hero-ticket::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 8px;
    background: radial-gradient(circle at 6px 8px, transparent 4px, var(--surface) 4.5px);
    background-size: 12px 8px;
    background-repeat: repeat-x;
}
.hero-ticket::before { top: -8px; background-position: 0 -4px; }
.hero-ticket::after  { bottom: -8px; transform: rotate(180deg); }

.ticket-head {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 10px;
    margin-bottom: 14px;
    border-bottom: 1px dashed var(--line);
    font-family: var(--ff-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.ticket-num { color: var(--ink-mute); }
.ticket-status {
    color: var(--amber-deep);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.ticket-status::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--amber-deep);
    box-shadow: 0 0 0 3px rgba(192, 138, 62, 0.2);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero-ticket h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
    font-weight: 500;
}
.hero-ticket p {
    font-size: 0.875rem;
    line-height: 1.45;
    color: var(--ink-mute);
    margin-bottom: 14px;
}
.ticket-foot {
    display: flex; justify-content: space-between; align-items: baseline;
    padding-top: 12px;
    border-top: 1px dashed var(--line);
    font-size: 0.75rem;
    color: var(--ink-mute);
}
.ticket-foot strong {
    font-family: var(--ff-serif);
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 500;
    color: var(--ink);
}

.hero-stats {
    grid-area: stats;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 36px;
    margin-top: 28px;
    border-top: 1px solid var(--line);
}
.hero-stats li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-stats strong {
    font-family: var(--ff-serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
    display: flex;
    align-items: baseline;
}
.hero-stats strong span {
    font-size: 0.55em;
    font-style: italic;
    color: var(--amber-deep);
    margin-left: 4px;
    font-variation-settings: "opsz" 144;
}
.hero-stats li > span {
    font-family: var(--ff-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-mute);
}

/* ─── BUTTONS ──────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    font-family: var(--ff-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: -0.005em;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.btn svg { width: 16px; height: 16px; transition: transform var(--t-base) var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--paper), 0 0 0 5px var(--ink);
}

.btn-primary {
    background: var(--ink);
    color: var(--paper);
}
.btn-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--amber-deep);
    transform: translateY(101%);
    transition: transform var(--t-base) var(--ease);
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { color: #fff; }
.btn-primary:hover::before { transform: translateY(0); }

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
    padding: 15px 27px;
}
.btn-ghost::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--ink);
    transform: translateY(101%);
    transition: transform var(--t-base) var(--ease);
}
.btn-ghost > * { position: relative; z-index: 1; }
.btn-ghost:hover { color: var(--paper); }
.btn-ghost:hover::before { transform: translateY(0); }

.btn-cream {
    background: var(--paper);
    color: var(--ink);
}
.btn-cream::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--amber);
    transform: translateY(101%);
    transition: transform var(--t-base) var(--ease);
}
.btn-cream > * { position: relative; z-index: 1; }
.btn-cream:hover::before { transform: translateY(0); }

.btn-block { width: 100%; }

.link-arrow {
    font-weight: 500;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 2px;
    transition: gap var(--t-base) var(--ease);
}
.link-arrow:hover { gap: 14px; color: var(--amber-deep); border-color: var(--amber-deep); }

/* ─── MARQUEE ──────────────────────────────────────────── */
.marquee {
    background: var(--ink);
    padding: 22px 0;
    overflow: hidden;
    color: var(--paper);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.marquee-track {
    width: max-content;
    animation: scroll 60s linear infinite;
}
.marquee-row {
    display: flex;
    align-items: center;
    gap: 24px;
    font-family: var(--ff-serif);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    font-variation-settings: "opsz" 144;
    white-space: nowrap;
    color: var(--paper);
}
.marquee-row span:not(:nth-child(odd)) {
    font-style: normal;
    font-family: var(--ff-mono);
    font-size: 1rem;
    color: var(--amber);
}
@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─── DEPT HEADERS (section heads) ────────────────────── */
.dept-header {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-areas:
        "num   title"
        ".     lede";
    column-gap: 32px;
    row-gap: 18px;
    margin-bottom: 72px;
    align-items: start;
}
.dept-num {
    grid-area: num;
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 400;
    color: var(--amber-deep);
    line-height: 0.9;
    letter-spacing: -0.04em;
    font-variation-settings: "opsz" 144;
}
.dept-title { grid-area: title; }
.dept-label {
    display: block;
    font-family: var(--ff-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-mute);
    margin-bottom: 14px;
}
.dept-title h2 {
    max-width: 12ch;
}
.dept-lede {
    grid-area: lede;
    max-width: 56ch;
    font-size: 1.0625rem;
    line-height: 1.55;
    color: var(--ink-soft);
}
.dept-header--inline { margin-bottom: 32px; }
.dept-header--light .dept-num { color: #e6b566; }
.dept-header--light .dept-label { color: rgba(246, 241, 232, 0.6); }
.dept-header--light .dept-lede { color: rgba(246, 241, 232, 0.85); }

/* ─── SERVICES ──────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
}

.service {
    position: relative;
    background: var(--paper);
    padding: 36px 36px 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition: background var(--t-base) var(--ease);
}
.service:hover { background: var(--cream); }
.service:hover .service-image img { transform: scale(1.04); filter: brightness(1.05) contrast(1.04); }

.service-num {
    position: absolute;
    top: 28px;
    right: 32px;
    font-family: var(--ff-mono);
    font-size: 0.75rem;
    color: var(--ink-faint);
    letter-spacing: 0.1em;
}
.service-num::before {
    content: '— ';
    color: var(--ink-faint);
}

.service-image {
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 16 / 10;
    position: relative;
}
.service-image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(12, 24, 40, 0.15) 100%);
    pointer-events: none;
}
.service-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out), filter var(--t-slow) var(--ease);
}

.service-body { display: flex; flex-direction: column; gap: 18px; }

.service h3 { font-size: 1.875rem; letter-spacing: -0.025em; }

.service-list {
    list-style: none;
    border-top: 1px solid var(--line);
    padding-top: 18px;
}
.service-list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 7px 0;
    font-size: 0.9375rem;
    color: var(--ink-soft);
}
.service-list li::before {
    content: '';
    width: 14px; height: 1px;
    background: var(--amber-deep);
    flex-shrink: 0;
    transform: translateY(-5px);
}

.service-meta {
    font-family: var(--ff-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-mute);
    padding-top: 14px;
    border-top: 1px dashed var(--line);
}

.service-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}
.service-link {
    font-family: var(--ff-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    transition: color 0.15s;
}
.service-link:hover { color: var(--accent, #666); }

/* ─── PRODUSE ──────────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.product {
    padding: 36px 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    transition: background var(--t-base) var(--ease);
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.product:hover { background: var(--paper-deep); }

.product-num {
    position: absolute;
    top: 24px; right: 26px;
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--amber-deep);
    font-variation-settings: "opsz" 144;
}
.product h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.product p {
    font-size: 0.9375rem;
    color: var(--ink-mute);
    line-height: 1.5;
}

.search-prompt {
    margin-top: 56px;
    padding: 28px 32px;
    border: 1px dashed var(--line);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: var(--paper);
}
.search-prompt p {
    font-family: var(--ff-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--ink);
}

/* ─── PROGRAMARE ──────────────────────────────────────── */
.appt-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: start;
}
.appt-info { padding-top: 8px; }
.appt-lede {
    font-size: 1.0625rem;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 36px;
    max-width: 40ch;
}

.appt-pledge {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
}
.appt-pledge li {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-areas:
        "num  title"
        "num  body";
    column-gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
}
.appt-pledge li > span {
    grid-area: num;
    font-family: var(--ff-mono);
    font-size: 0.875rem;
    color: var(--amber-deep);
    letter-spacing: 0.05em;
}
.appt-pledge li > strong {
    grid-area: title;
    font-family: var(--ff-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ink);
}
.appt-pledge li > em {
    grid-area: body;
    font-style: normal;
    font-size: 0.9375rem;
    color: var(--ink-mute);
    margin-top: 4px;
}

/* — Forms — */
.appt-form,
.courier-form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 40px 36px 32px;
    box-shadow: var(--shadow-sm);
}

.form-head {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.form-tag {
    display: inline-block;
    font-family: var(--ff-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--amber-deep);
    margin-bottom: 8px;
}
.form-tag--light { color: #e6b566; }
.form-head h3 { font-size: 1.5rem; letter-spacing: -0.02em; }

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}
.field > span {
    font-family: var(--ff-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-mute);
    transition: color var(--t-base) var(--ease);
}
.field input,
.field select,
.field textarea {
    font-family: var(--ff-sans);
    font-size: 1rem;
    color: var(--ink);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    padding: 10px 0;
    border-radius: 0;
    transition: border-color var(--t-base) var(--ease);
    width: 100%;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-faint); }
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-bottom-color: var(--ink);
}
.field:focus-within > span { color: var(--ink); }
.field textarea { resize: vertical; min-height: 80px; }

/* Forms on dark */
.field--light > span { color: rgba(246, 241, 232, 0.6); }
.field--light input,
.field--light select,
.field--light textarea {
    color: var(--paper);
    border-bottom-color: rgba(246, 241, 232, 0.2);
}
.field--light input::placeholder,
.field--light textarea::placeholder { color: rgba(246, 241, 232, 0.4); }
.field--light input:focus,
.field--light select:focus,
.field--light textarea:focus {
    border-bottom-color: var(--amber);
}
.field--light:focus-within > span { color: var(--amber); }

.form-note {
    text-align: center;
    margin-top: 16px;
    font-family: var(--ff-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    color: var(--ink-faint);
}

/* ─── COURIER (section--ink) ──────────────────────────── */
.section--ink {
    position: relative;
}
.ink-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.4;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}
.section--ink > .shell { position: relative; z-index: 1; }

.courier-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.process {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    counter-reset: step;
}
.process .step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-top: 1px solid rgba(246, 241, 232, 0.12);
    align-items: start;
}
.process .step:last-child { border-bottom: 1px solid rgba(246, 241, 232, 0.12); }

.step-num {
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: 2.5rem;
    color: #e6b566;
    line-height: 0.9;
    font-variation-settings: "opsz" 144;
    letter-spacing: -0.04em;
}
.step-body h4 {
    font-size: 1.375rem;
    color: var(--paper);
    margin-bottom: 6px;
}
.step-body p {
    font-size: 0.9375rem;
    color: rgba(246, 241, 232, 0.65);
    max-width: 40ch;
}
.step-body p a {
    color: #e6b566;
    border-bottom: 1px solid rgba(230, 181, 102, 0.3);
}
.step-body p a:hover { border-color: #e6b566; }

.courier-form {
    background: rgba(246, 241, 232, 0.04);
    border-color: rgba(246, 241, 232, 0.12);
    backdrop-filter: blur(8px);
}
.courier-form .form-head { border-bottom-color: rgba(246, 241, 232, 0.12); }
.courier-form .form-head h3 { color: var(--paper); }

/* ─── DESPRE ──────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: start;
}

.pull-quote {
    border-left: 2px solid var(--amber-deep);
    padding: 4px 0 4px 28px;
    margin-bottom: 36px;
}
.pull-quote p {
    font-family: var(--ff-serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 144;
}
.pull-quote em {
    font-style: italic;
    color: var(--amber-deep);
}
.pull-quote cite {
    display: block;
    margin-top: 18px;
    font-family: var(--ff-mono);
    font-size: 0.75rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-mute);
}

.about-prose p {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 20px;
    max-width: 56ch;
}

.values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 36px;
    border-top: 1px solid var(--line);
}
.values > div {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}
.values > div:nth-child(odd) { padding-right: 24px; }
.values > div:nth-child(even) {
    padding-left: 24px;
    border-left: 1px solid var(--line);
}
.values dt {
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--amber-deep);
    margin-bottom: 6px;
    font-variation-settings: "opsz" 144;
}
.values dd {
    font-size: 0.9375rem;
    color: var(--ink-mute);
    line-height: 1.5;
}

.about-visual {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.4fr 1fr;
    gap: 16px;
    aspect-ratio: 0.9;
}
.av-main {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    overflow: hidden;
    border-radius: 2px;
}
.av-small {
    overflow: hidden;
    border-radius: 2px;
}
.av-main img,
.av-small img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow) var(--ease-out);
}
.av-main:hover img,
.av-small:hover img { transform: scale(1.05); }

.av-seal {
    position: absolute;
    bottom: -28px;
    right: -28px;
    width: 140px; height: 140px;
    background: var(--paper);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    display: grid;
    place-items: center;
    animation: rotate 28s linear infinite;
}
.av-seal svg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
}
.av-seal text {
    font-family: var(--ff-mono);
    font-size: 8px;
    fill: var(--ink);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.av-seal-inner {
    animation: counter-rotate 28s linear infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    line-height: 1;
}
.av-seal-inner span {
    font-family: var(--ff-mono);
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-mute);
}
.av-seal-inner strong {
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--amber-deep);
    font-variation-settings: "opsz" 144;
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes counter-rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-360deg); }
}

/* ─── CONTACT ──────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.contact-card-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.contact-card {
    padding: 28px 24px 32px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    transition: background var(--t-base) var(--ease);
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 160px;
    color: var(--ink);
}
.contact-card:not(.contact-card--static):hover { background: var(--paper-deep); }
.contact-card--static { cursor: default; }

.cc-eyebrow {
    font-family: var(--ff-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--amber-deep);
}
.cc-value {
    font-family: var(--ff-serif);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-top: auto;
    font-variation-settings: "opsz" 100;
}
.cc-aside {
    font-size: 0.8125rem;
    color: var(--ink-mute);
}

.contact-map {
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--line);
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow);
    filter: contrast(1.03) saturate(0.85);
}
.contact-map iframe {
    width: 100%; height: 100%;
    border: none;
}

/* ─── FOOTER ──────────────────────────────────────────── */
.site-footer {
    background: var(--ink);
    color: rgba(246, 241, 232, 0.7);
    padding: 72px 0 24px;
}
.site-footer .brand { color: var(--paper); }
.site-footer .brand-mark { background: var(--paper); color: var(--ink); }
.site-footer .brand-tag { color: rgba(246, 241, 232, 0.5); }
.site-footer .brand-accent { color: #e6b566; }

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(246, 241, 232, 0.12);
}
.footer-brand p {
    margin-top: 20px;
    font-size: 0.9375rem;
    color: rgba(246, 241, 232, 0.6);
    max-width: 32ch;
    line-height: 1.55;
}

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h5 {
    color: rgba(246, 241, 232, 0.45);
    margin-bottom: 12px;
}
.footer-col a,
.footer-col span {
    color: rgba(246, 241, 232, 0.75);
    font-size: 0.9375rem;
    transition: color var(--t-base) var(--ease);
}
.footer-col a:hover { color: #e6b566; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    font-family: var(--ff-mono);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(246, 241, 232, 0.4);
}

/* ─── TOAST ───────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 28px; left: 50%;
    transform: translateX(-50%) translateY(120%);
    background: var(--ink);
    color: var(--paper);
    padding: 16px 24px;
    border-radius: 2px;
    font-size: 0.9375rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transition: transform var(--t-slow) var(--ease-out), opacity var(--t-base) var(--ease);
    z-index: 200;
    pointer-events: none;
    border: 1px solid rgba(246, 241, 232, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.toast::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--amber);
}
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.toast--error::before {
    background: #e05252;
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: reveal-up 0.7s var(--ease-out) forwards;
    animation-delay: var(--d, 0ms);
}
@keyframes reveal-up {
    to { opacity: 1; transform: translateY(0); }
}

.in-view {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.in-view.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
    .hero-shell {
        grid-template-columns: 1fr;
        grid-template-areas:
            "meta"
            "head"
            "body"
            "cta"
            "visual"
            "stats";
        gap: 24px;
    }
    .hero-visual { min-height: 460px; margin-top: 24px; }
    .hero-ticket { left: 0; bottom: 24px; }

    .appt-grid, .courier-grid, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / 3; }
}

@media (max-width: 900px) {
    .primary-nav { display: none; }
    .primary-nav.open {
        display: flex;
        position: absolute;
        flex-direction: column;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        padding: 20px 32px 24px;
        gap: 0;
    }
    .primary-nav.open a {
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--line-soft);
    }
    .primary-nav.open a:last-child { border-bottom: none; }
    .primary-nav.open a::after { display: none; }

    .menu-toggle { display: inline-flex; }
    .phone-pill-label { display: none; }
    .phone-pill { padding: 10px 14px; }
    .brand-tag { display: none; }

    .header-shell { padding: 14px 22px; }

    .services-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-card-block { grid-template-columns: 1fr; }

    .dept-header {
        grid-template-columns: 1fr;
        grid-template-areas:
            "num"
            "title"
            "lede";
        row-gap: 16px;
        margin-bottom: 48px;
    }

    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .marquee-row { font-size: 1.125rem; }
}

@media (max-width: 560px) {
    .shell { padding: 0 18px; }
    .header-shell { padding: 12px 18px; gap: 12px; }
    .brand-name { font-size: 1.1rem; }
    .phone-pill-num { font-size: 0.8125rem; }

    .hero { padding: 56px 0 64px; }
    .hero-headline { font-size: clamp(2rem, 9vw, 3rem); }
    .hero-body { grid-template-columns: 1fr; gap: 12px; }
    .hero-rule { width: 64px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .btn { padding: 14px 22px; }
    .hero-visual { min-height: 360px; }
    .hero-ticket {
        width: 240px;
        bottom: -16px;
        left: 12px;
        padding: 18px 20px 16px;
    }

    .hero-stats { gap: 20px; padding-top: 28px; margin-top: 20px; }

    .service { padding: 28px 24px 32px; }
    .service h3 { font-size: 1.5rem; }
    .service-num { top: 24px; right: 24px; }

    .products-grid { grid-template-columns: 1fr; }
    .product { min-height: 160px; padding: 28px 22px; }

    .appt-form, .courier-form { padding: 28px 24px; }
    .field-row { grid-template-columns: 1fr; }

    .values { grid-template-columns: 1fr; }
    .values > div:nth-child(even) { padding-left: 0; border-left: none; }
    .values > div:nth-child(odd) { padding-right: 0; }

    .av-seal { width: 100px; height: 100px; bottom: -16px; right: -16px; }
    .av-seal-inner strong { font-size: 1.1rem; }
    .av-seal text { font-size: 7px; }

    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand { grid-column: 1; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════
   Reviews section
   ═══════════════════════════════════════════════════════════════ */

.reviews-section { padding: var(--s-7) 0; background: var(--paper); }

.reviews-section.is-hidden { display: none; }

.reviews-section .dept-header {
    grid-template-areas: "num title";
    grid-template-rows: auto;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: var(--s-2);
    margin-top: var(--s-2);
    font-family: var(--ff-sans);
}

.reviews-stars { display: flex; gap: 3px; color: var(--amber); }

.reviews-stars svg,
.review-card-stars svg { width: 18px; height: 18px; }

.reviews-score { font-size: 1.1rem; font-weight: 700; color: var(--ink); }

.reviews-total { font-size: 0.9rem; color: var(--ink); opacity: 0.6; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-3);
    margin-bottom: var(--s-5);
}

.review-card {
    background: #fff;
    border: 1px solid rgba(12, 24, 40, 0.1);
    border-radius: var(--r-3);
    padding: var(--s-3);
    display: flex;
    flex-direction: column;
    gap: var(--s-2);
    box-shadow: var(--shadow-sm);
}

.review-card-stars { display: flex; gap: 2px; color: var(--amber); }

.review-card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--ink);
    opacity: 0.85;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-card-footer { display: flex; flex-direction: column; gap: 2px; }

.review-card-author { font-size: 0.85rem; font-weight: 600; color: var(--ink); }

.review-card-time { font-size: 0.78rem; color: var(--ink); opacity: 0.5; }

.reviews-cta { display: block; width: fit-content; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════════
   Footer social media icons
   ═══════════════════════════════════════════════════════════════ */

.footer-social { display: flex; gap: var(--s-2); margin-top: var(--s-3); }

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(246, 241, 232, 0.25);
    color: rgba(246, 241, 232, 0.65);
    transition: color var(--t-fast), border-color var(--t-fast);
    text-decoration: none;
}

.footer-social a:hover { color: var(--amber); border-color: var(--amber); }

.footer-social svg { width: 20px; height: 20px; }

/* ─── Slot select loading / disabled state ───────────────────── */

select:disabled { cursor: not-allowed; opacity: 0.5; }
.link-fb { color: var(--amber-deep); text-decoration: underline; }

/* ─── WhatsApp FAB ──────────────────────────────────────────── */
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 100;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 20px 14px 16px;
    border-radius: 999px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0,0,0,0.15);
    text-decoration: none;
    font-family: var(--ff-sans);
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
    overflow: hidden;
}

.whatsapp-fab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.08);
    opacity: 0;
    transition: opacity var(--t-base) var(--ease);
}

.whatsapp-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55), 0 4px 10px rgba(0,0,0,0.15);
    color: #fff;
}

.whatsapp-fab:hover::before { opacity: 1; }

.whatsapp-fab svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    position: relative;
}

.whatsapp-fab-label { position: relative; }

@keyframes wa-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
    70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-fab { animation: wa-pulse 2.4s ease-out 2s 3; }

@media (max-width: 560px) {
    .whatsapp-fab {
        bottom: 20px;
        right: 16px;
        padding: 13px 16px 13px 14px;
        font-size: 0.85rem;
    }
    .whatsapp-fab svg { width: 20px; height: 20px; }
}

/* — FAQ — */
.faq-list {
    border-top: 1px solid var(--line);
    margin-top: 0;
}
.faq-item {
    border-bottom: 1px solid var(--line);
}
.faq-item details summary {
    display: grid;
    grid-template-columns: 52px 1fr 24px;
    align-items: center;
    column-gap: 20px;
    padding: 22px 0;
    cursor: pointer;
    list-style: none;
}
.faq-item details summary::-webkit-details-marker { display: none; }
.faq-num {
    font-family: var(--ff-mono);
    font-size: 0.75rem;
    color: var(--amber-deep);
    letter-spacing: 0.08em;
}
.faq-q {
    font-family: var(--ff-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--ink);
    font-variation-settings: "opsz" 144;
    transition: color 0.2s;
}
.faq-item details[open] .faq-q { color: var(--amber-deep); }
.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    justify-self: end;
    flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--amber-deep);
    border-radius: 1px;
    transition: transform 0.25s var(--ease-out), opacity 0.2s;
}
.faq-icon::before {
    width: 16px; height: 1.5px;
    top: 50%; left: 2px;
    transform: translateY(-50%);
}
.faq-icon::after {
    width: 1.5px; height: 16px;
    top: 2px; left: 50%;
    transform: translateX(-50%);
}
.faq-item details[open] .faq-icon::after {
    opacity: 0;
    transform: translateX(-50%) scaleY(0);
}
.faq-answer {
    padding: 4px 0 28px 72px;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 62ch;
}
.faq-answer p + p { margin-top: 12px; }
.faq-answer a {
    color: var(--amber-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
}
@media (max-width: 600px) {
    .faq-item details summary {
        grid-template-columns: 40px 1fr 20px;
        column-gap: 12px;
        padding: 18px 0;
    }
    .faq-q { font-size: 1rem; }
    .faq-answer { padding-left: 52px; }
}

@media (max-width: 900px) {
    .reviews-grid { grid-template-columns: 1fr; }
}

@media (min-width: 901px) and (max-width: 1100px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
