/* commercialfryerbaskets.com — Heat & Fry-Line identity
   charcoal + ember red, fryer-mesh dot signature, rounded warm cards */
:root {
  --ink: #201A17;
  --ink-2: #40372F;
  --muted: #6E6259;
  --primary: #241D19;
  --primary-2: #332A24;
  --accent: #E4572E;
  --accent-2: #F3A03C;
  --accent-ink: #A93A17;
  --bg: #FAF7F3;
  --surface: #FFFFFF;
  --line: #EAE2D9;
  --radius: 12px;
  --font-body: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Barlow Semi Condensed", "Segoe UI Semibold", "Inter", sans-serif;
  --shadow-1: 0 1px 2px rgba(32,26,23,.06), 0 6px 18px rgba(32,26,23,.08);
  --shadow-2: 0 10px 30px rgba(32,26,23,.15);
  --maxw: 1180px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--bg); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.18; color: var(--ink); letter-spacing: -.01em; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
main { display: block; }

/* ---------- top bar + nav ---------- */
.topbar { background: var(--primary); color: #D8CCC2; font-size: .8rem; }
.topbar .container { display: flex; justify-content: space-between; gap: 16px; padding-top: 6px; padding-bottom: 6px; flex-wrap: wrap; }
.topbar b { color: #fff; font-weight: 600; }
.site-header { background: var(--surface); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 24px; max-width: var(--maxw); margin: 0 auto; }
.brand { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--primary); white-space: nowrap; }
.brand span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { padding: 9px 13px; border-radius: 999px; font-size: .93rem; font-weight: 500; color: var(--ink-2); }
.nav-links a:hover { background: #F4EDE5; color: var(--accent-ink); }
.nav-links a.btn { color: #fff; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 999px; font-size: 1.2rem; padding: 4px 12px; color: var(--ink); cursor: pointer; }
/* dropdown */
.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-2); padding: 8px; display: none; z-index: 60; }
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 9px 12px; border-radius: 10px; font-size: .9rem; color: var(--ink-2); }
.dropdown-menu a:hover { background: #F4EDE5; color: var(--accent-ink); }
.dropdown > a::after { content: ""; display: inline-block; width: 6px; height: 6px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; transform: rotate(45deg); margin-left: 6px; vertical-align: 2px; }
/* article / resource pages */
.post-head { background: linear-gradient(135deg, #171310, var(--primary) 75%); color: #fff; position: relative; overflow: hidden; }
.post-head::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.06) 1.4px, transparent 1.5px); background-size: 18px 18px; }
.post-head .container { position: relative; z-index: 2; padding-top: 56px; padding-bottom: 56px; max-width: 860px; }
.post-head h1 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 12px 0 12px; }
.post-head .lead { color: #E3D8CE; }
.post-meta { font-size: .82rem; color: var(--accent-2); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.post-body { max-width: 820px; margin: 0 auto; padding: 56px 24px 72px; }
.post-body h2 { font-size: 1.45rem; margin: 36px 0 12px; }
.post-body h3 { font-size: 1.12rem; margin: 24px 0 8px; }
.post-body p { color: var(--ink-2); margin-bottom: 14px; }
.post-body ul { margin: 0 0 14px 22px; color: var(--ink-2); }
.post-body li { margin-bottom: 6px; }
.post-body .callout { background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: 14px; padding: 18px 20px; margin: 22px 0; box-shadow: var(--shadow-1); }
.post-body .callout p { margin: 0; }
.post-nav { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line); margin-top: 40px; padding-top: 20px; font-size: .9rem; flex-wrap: wrap; }
.res-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.res-card { display: grid; grid-template-columns: 200px 1fr; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-1); transition: transform .18s, box-shadow .18s; }
.res-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.res-card img { width: 100%; height: 100%; object-fit: cover; }
.res-card .bd { padding: 18px 20px; }
.res-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.res-card p { font-size: .88rem; color: var(--muted); }
.app-hero { background: linear-gradient(135deg, #171310, var(--primary) 75%); color: #fff; position: relative; overflow: hidden; }
.app-hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.06) 1.4px, transparent 1.5px); background-size: 18px 18px; }
.app-hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding-top: 60px; padding-bottom: 68px; }
.app-hero h1 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.5rem); margin: 12px 0 12px; }
.app-hero .lead { color: #E3D8CE; }
.app-hero img { border-radius: 18px; box-shadow: 0 22px 50px rgba(0,0,0,.45); width: 100%; object-fit: cover; aspect-ratio: 4/3; background: #fff; padding: 8px; }

/* ---------- buttons ---------- */
.btn { display: inline-block; padding: 12px 24px; border-radius: 999px; font-weight: 600; font-size: .95rem; border: 1px solid transparent; cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(228,87,46,.35); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(228,87,46,.45); }
.btn-outline { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-ghost { border-color: var(--line); color: var(--primary); background: var(--surface); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-ink); }

/* ---------- hero: charcoal + fryer mesh dots ---------- */
.hero { background: linear-gradient(135deg, #171310 0%, var(--primary) 55%, #3B2C22 100%); color: #fff; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.075) 1.4px, transparent 1.5px);
  background-size: 18px 18px; }
.hero::after { content: ""; position: absolute; left: -120px; bottom: -160px; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(228,87,46,.32), transparent 65%); }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; padding-top: 78px; padding-bottom: 98px; }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-2); }
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--accent); }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.1vw, 3.15rem); font-weight: 700; margin: 14px 0 16px; }
.hero .lead { color: #E3D8CE; font-size: 1.08rem; max-width: 34em; }
.hero-cta { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.trust-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.chip { border: 1px solid rgba(255,255,255,.26); background: rgba(255,255,255,.07); color: #EFE6DD; font-size: .8rem; font-weight: 600; padding: 6px 14px; border-radius: 999px; }
.chip b { color: var(--accent-2); }
.hero-img { background: #fff; padding: 10px; border-radius: 18px; box-shadow: 0 26px 60px rgba(0,0,0,.45); transform: rotate(-1.2deg); }
.hero-img img { border-radius: 12px; width: 100%; object-fit: cover; aspect-ratio: 16/10; }

/* ---------- stats band ---------- */
.stats { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-2); display: grid; grid-template-columns: repeat(4, 1fr); margin-top: -46px; position: relative; z-index: 5; overflow: hidden; }
.stat { padding: 24px 18px; text-align: center; border-left: 1px dashed var(--line); }
.stat:first-child { border-left: 0; }
.stat b { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--accent-ink); }
.stat span { font-size: .82rem; color: var(--muted); }

/* ---------- sections ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark { background: linear-gradient(150deg, #171310, var(--primary) 70%, #33261D); color: #EDE4DB; position: relative; overflow: hidden; }
.section-dark::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.05) 1.4px, transparent 1.5px); background-size: 18px 18px; }
.section-dark .container { position: relative; z-index: 2; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head { max-width: 46em; margin-bottom: 36px; }
.section-head .kicker { color: var(--accent-ink); }
.section-dark .section-head .kicker { color: var(--accent-2); }
.section-head h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 10px 0 10px; }
.section-head p { color: var(--muted); }
.section-dark .section-head p { color: #C9BCB1; }

/* ---------- type cards ---------- */
.struct-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.struct-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-1); transition: transform .18s, box-shadow .18s; }
.struct-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.struct-card .ph { aspect-ratio: 4/3; overflow: hidden; background: linear-gradient(180deg, #F6F1EA, #EDE5DB); border-bottom: 1px solid var(--line); }
.struct-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.struct-card:hover .ph img { transform: scale(1.05); }
.struct-card .bd { padding: 18px 18px 22px; }
.struct-card h3 { font-size: 1.06rem; margin-bottom: 6px; }
.struct-card p { font-size: .87rem; color: var(--muted); }
.tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-ink); background: rgba(228,87,46,.1); border: 1px solid rgba(228,87,46,.35); padding: 3px 10px; border-radius: 999px; margin-bottom: 10px; }

/* ---------- model table ---------- */
.table-wrap { overflow-x: auto; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-1); }
table.spec-table { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 640px; }
.spec-table th { background: var(--primary); color: #fff; text-align: left; padding: 12px 16px; font-weight: 600; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.spec-table th:first-child { border-radius: 15px 0 0 0; }
.spec-table th:last-child { border-radius: 0 15px 0 0; }
.spec-table td { padding: 12px 16px; border-top: 1px solid var(--line); vertical-align: middle; }
.spec-table tr:hover td { background: #FBF6F0; }
.table-thumb { width: 64px; height: 48px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); background: #fff; }
.model-link { font-weight: 700; color: var(--accent-ink); }
.model-link:hover { text-decoration: underline; }

/* ---------- feature cards ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 24px 22px; }
.section-alt .why-card, .why-card.light { background: var(--surface); border-color: var(--line); box-shadow: var(--shadow-1); }
.why-card .ico-wrap { display: inline-flex; width: 44px; height: 44px; border-radius: 12px; background: rgba(228,87,46,.16); color: var(--accent-2); align-items: center; justify-content: center; margin-bottom: 14px; }
.section-alt .why-card .ico-wrap, .why-card.light .ico-wrap { background: rgba(228,87,46,.12); color: var(--accent-ink); }
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { font-size: .9rem; color: #C9BCB1; }
.section-alt .why-card p, .why-card.light p { color: var(--muted); }

/* ---------- process band ---------- */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; counter-reset: step; }
.step { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.13); border-radius: 16px; padding: 22px 16px; counter-increment: step; }
.step::before { content: "0" counter(step); font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: #fff; background: var(--accent); border-radius: 999px; padding: 3px 11px; display: inline-block; margin-bottom: 12px; }
.step h3 { font-size: .98rem; margin-bottom: 6px; }
.step p { font-size: .83rem; color: #C9BCB1; }

/* ---------- split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split img { border-radius: 18px; box-shadow: var(--shadow-2); width: 100%; object-fit: cover; }
.split ul { list-style: none; margin-top: 18px; display: grid; gap: 10px; }
.split li { padding-left: 26px; position: relative; font-size: .95rem; color: var(--ink-2); }
.split li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 8px; border-left: 3px solid var(--accent); border-bottom: 3px solid var(--accent); transform: rotate(-45deg); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 860px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-1); }
.faq summary { cursor: pointer; padding: 16px 20px; font-weight: 600; font-size: .98rem; list-style: none; position: relative; padding-right: 44px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 18px; top: 12px; font-size: 1.3rem; color: var(--accent); font-weight: 700; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { padding: 0 20px 18px; color: var(--muted); font-size: .93rem; }
/* article + quality list helpers */
.container.narrow { max-width: 820px; }
.prose { max-width: 820px; }
.prose.narrow { max-width: 800px; }
.prose p { color: var(--ink-2); font-size: .97rem; line-height: 1.8; margin-bottom: 14px; }
.container.narrow h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-bottom: 14px; }
.container.narrow p { color: var(--ink-2); font-size: .97rem; line-height: 1.75; margin-bottom: 14px; }
.check-list { list-style: none; display: grid; gap: 12px; max-width: 760px; }
.check-list li { position: relative; padding-left: 34px; color: rgba(255,255,255,.9); font-size: .95rem; line-height: 1.6; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--accent); }
.check-list li::after { content: ""; position: absolute; left: 6px; top: 8px; width: 8px; height: 4px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, #171310, var(--primary) 60%, #3B2C22); color: #fff; padding: 64px 0; position: relative; overflow: hidden; border-top: 4px solid var(--accent); }
.cta-band::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.05) 1.4px, transparent 1.5px); background-size: 18px 18px; }
.cta-band .container { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 8px; }
.cta-band p { color: #D3C6BB; max-width: 40em; }

/* ---------- model page ---------- */
.model-hero { background: linear-gradient(135deg, #171310, var(--primary) 75%); color: #fff; position: relative; overflow: hidden; }
.model-hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.06) 1.4px, transparent 1.5px); background-size: 18px 18px; }
.model-hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding-top: 56px; padding-bottom: 64px; }
.model-hero h1 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.5rem); margin: 12px 0 12px; }
.model-hero .lead { color: #E3D8CE; }
.model-badge { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: var(--accent); padding: 4px 12px; border-radius: 999px; }
.model-hero-img { background: #fff; padding: 10px; border-radius: 18px; box-shadow: 0 22px 50px rgba(0,0,0,.45); }
.model-hero-img img { border-radius: 12px; aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.model-cta { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery img { border-radius: 14px; border: 1px solid var(--line); aspect-ratio: 4/3; object-fit: cover; width: 100%; background: #fff; }
.rel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.rel-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-1); transition: transform .18s, box-shadow .18s; }
.rel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.rel-card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; background: #F6F1EA; }
.rel-card .bd { padding: 14px 16px 16px; }
.rel-card h3 { font-size: .98rem; }
.rel-card p { font-size: .8rem; color: var(--muted); margin-top: 4px; }

/* ---------- footer ---------- */
.site-footer { background: #14100D; color: #BCAFA4; padding: 56px 0 0; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; letter-spacing: .04em; }
.site-footer a { color: #BCAFA4; }
.site-footer a:hover { color: var(--accent-2); }
.site-footer p { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: .82rem; color: #8A7D72; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 760px; }
.form-grid label { display: grid; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--ink-2); }
.form-grid input, .form-grid textarea, .form-grid select { border: 1px solid var(--line); border-radius: 10px; padding: 11px 12px; font: inherit; font-size: .93rem; background: var(--surface); color: var(--ink); }
.form-grid .full { grid-column: 1 / -1; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 12px; }

/* ---------- contact two-column ---------- */
.contact-wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
.breadcrumb { font-size: .82rem; color: var(--muted); padding-bottom: 6px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--ink); font-weight: 600; }
.contact-aside { background: #F6EFE9; border: 1px solid var(--line); border-radius: 18px; padding: 28px; }
.contact-aside h3 { font-size: 1.05rem; margin-bottom: 14px; }
.contact-aside .ci-row { display: flex; gap: 12px; align-items: flex-start; padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: .9rem; color: var(--ink-2); }
.contact-aside .ci-row:last-of-type { border-bottom: 0; }
.contact-aside .ci-row b { display: block; color: var(--ink); font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 2px; }
.contact-aside .ci-ico { flex: 0 0 34px; height: 34px; border-radius: 10px; background: var(--accent); color: #fff; display: grid; place-items: center; }
.contact-aside .ci-ico svg { width: 18px; height: 18px; }
.contact-aside .hours { margin-top: 14px; font-size: .84rem; color: var(--muted); background: var(--surface); border-radius: 12px; padding: 10px 12px; border: 1px solid var(--line); }
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero .container, .model-hero .container, .split { grid-template-columns: 1fr; }
  .struct-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; }
  .stat { border-top: 1px dashed var(--line); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .gallery, .rel-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .res-grid { grid-template-columns: 1fr; }
  .res-card { grid-template-columns: 160px 1fr; }
  .app-hero .container { grid-template-columns: 1fr; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--surface); flex-direction: column; align-items: stretch; border-bottom: 1px solid var(--line); padding: 10px 16px 18px; box-shadow: var(--shadow-2); }
  .nav-links.open { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; border: 0; padding: 0 0 0 12px; display: none; }
  .dropdown.open .dropdown-menu { display: block; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .struct-grid, .why-grid, .process, .gallery, .rel-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
