:root {
  --bg: #080a0d;
  --bg-deep: #05070a;
  --surface: #101419;
  --surface-2: #151a20;
  --surface-3: #1b2128;
  --gold: #c79a4b;
  --gold-light: #e8c77e;
  --gold-dark: #8d6328;
  --text: #f4f4f1;
  --text-soft: #d4d6d8;
  --muted: #a5abb3;
  --muted-dark: #707780;
  --line: rgba(255, 255, 255, 0.1);
  --line-gold: rgba(199, 154, 75, 0.28);
  --danger: #ef8585;
  --success: #8ed1a9;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1220px;
  --header-height: 84px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }

button, input, textarea, select { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

a { color: inherit; text-decoration: none; }

p, h1, h2, h3, dl, dd { margin-top: 0; }

h1, h2, h3 { line-height: 1.1; letter-spacing: -0.035em; }

h1 { font-size: clamp(3rem, 6.5vw, 5.75rem); margin-bottom: 28px; }
h2 { font-size: clamp(2.25rem, 4vw, 4rem); margin-bottom: 24px; }
h3 { font-size: 1.45rem; margin-bottom: 14px; }

::selection { background: rgba(199, 154, 75, 0.35); color: #fff; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -100px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 0 0 10px 10px;
  background: var(--gold-light);
  color: #15100a;
  font-weight: 800;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, .primary-nav a:focus-visible, .back-to-top:focus-visible, .menu-toggle:focus-visible {
  outline: 3px solid rgba(232, 199, 126, 0.55);
  outline-offset: 4px;
}
.button-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: #17120b;
  box-shadow: 0 14px 32px rgba(199, 154, 75, 0.2);
}
.button-primary:hover { box-shadow: 0 18px 40px rgba(199, 154, 75, 0.31); }
.button-secondary { border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.02); color: #fff; }
.button-secondary:hover { border-color: var(--gold-light); background: rgba(199,154,75,.08); }
.button-light { background: #fff; color: #16191d; }
.button-light:hover { box-shadow: 0 16px 35px rgba(0,0,0,.22); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(7, 9, 12, 0.89);
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(0,0,0,.24);
  backdrop-filter: blur(20px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; flex: 0 0 auto; }
.brand img { width: 238px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 34px); }
.primary-nav a { position: relative; color: var(--text-soft); font-size: .79rem; font-weight: 760; letter-spacing: .06em; text-transform: uppercase; transition: color .2s ease; }
.primary-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--gold-light); transition: right .2s ease; }
.primary-nav > a:not(.nav-cta):hover, .primary-nav > a.active { color: #fff; }
.primary-nav > a:not(.nav-cta):hover::after, .primary-nav > a.active::after { right: 0; }
.primary-nav .nav-cta { padding: 12px 16px; border: 1px solid var(--line-gold); border-radius: 8px; color: var(--gold-light); }
.primary-nav .nav-cta:hover { background: rgba(199,154,75,.11); border-color: var(--gold); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.03); cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: #fff; transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding: calc(var(--header-height) + 92px) 0 46px;
  background:
    linear-gradient(90deg, rgba(5,7,10,.98) 0%, rgba(5,7,10,.89) 38%, rgba(5,7,10,.45) 72%, rgba(5,7,10,.8) 100%),
    radial-gradient(circle at 65% 30%, rgba(61,74,89,.34), transparent 42%),
    var(--bg-deep);
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 180px; background: linear-gradient(transparent, var(--bg)); pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; opacity: .5; }
.hero-orb-one { width: 500px; height: 500px; right: 1%; top: 8%; background: radial-gradient(circle, rgba(199,154,75,.14), transparent 67%); }
.hero-orb-two { width: 340px; height: 340px; left: -140px; bottom: 0; background: radial-gradient(circle, rgba(60,83,110,.2), transparent 70%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr); align-items: center; gap: 56px; }
.hero-copy { padding: 35px 0 20px; }
.hero h1 span { color: var(--gold-light); }
.hero-lead { max-width: 650px; margin-bottom: 34px; color: var(--muted); font-size: clamp(1.03rem, 1.4vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }
.hero-notes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 670px; gap: 14px; }
.hero-notes > div { display: flex; align-items: flex-start; gap: 14px; padding: 15px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.025); }
.hero-notes p { margin: 0; }
.hero-notes strong, .hero-notes span { display: block; }
.hero-notes strong { color: var(--text); font-size: .88rem; }
.hero-notes p > span { color: var(--muted); font-size: .75rem; line-height: 1.45; }
.note-icon { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; border: 1px solid var(--line-gold); border-radius: 10px; color: var(--gold-light); }
.note-icon svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.hero-visual { position: relative; }
.hero-frame { position: relative; min-height: 620px; display: grid; place-items: center; }
.hero-frame::before { content: ""; position: absolute; inset: 10% 4% 5% 5%; border-radius: 50%; background: radial-gradient(circle, rgba(129,153,178,.18), transparent 67%); filter: blur(25px); }
.hero-frame picture { position: relative; z-index: 2; width: min(100%, 760px); }
.hero-frame img { width: 100%; height: auto; object-fit: contain; border-radius: 30px; filter: drop-shadow(0 40px 45px rgba(0,0,0,.45)); mask-image: linear-gradient(to bottom, #000 88%, transparent 100%); }
.hero-badge { position: absolute; z-index: 3; right: 1%; bottom: 10%; padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(5,7,10,.74); color: var(--muted); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(12px); }
.trust-strip { position: relative; z-index: 3; display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 36px; padding: 18px 24px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.025); color: var(--muted); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.trust-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.section { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr); align-items: end; gap: 60px; margin-bottom: 52px; }
.section-heading h2 { max-width: 760px; margin-bottom: 0; }
.section-heading > p { margin-bottom: 5px; color: var(--muted); }
.center-heading { max-width: 820px; margin: 0 auto 56px; text-align: center; }
.center-heading .eyebrow { justify-content: center; }
.center-heading p:last-child { max-width: 650px; margin-inline: auto; color: var(--muted); }

.products-section { background: #f5f4f0; color: #15181c; }
.products-section .eyebrow { color: #9c6e2d; }
.products-section .section-heading > p { color: #676d74; }
.category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 22px; }
.category-card { display: flex; min-width: 0; overflow: hidden; flex-direction: column; border: 1px solid rgba(16,24,32,.09); border-radius: var(--radius); background: #fff; box-shadow: 0 14px 50px rgba(31,35,40,.07); scroll-margin-top: calc(var(--header-height) + 28px); transition: transform .28s ease, box-shadow .28s ease; }
.category-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(31,35,40,.12); }
.category-media { position: relative; height: 335px; overflow: hidden; }
.category-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(5,8,12,.32)); pointer-events: none; }
.category-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.category-card:hover .category-media img { transform: scale(1.035); }
.category-media-blue { background: #263a52; }
.category-media-gold { background: #7a6040; }
.category-media-silver { background: #383d40; }
.category-number { position: absolute; z-index: 2; top: 18px; right: 18px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: rgba(5,8,12,.28); color: #fff; font-size: .73rem; font-weight: 800; backdrop-filter: blur(8px); }
.category-content { display: flex; flex: 1; flex-direction: column; padding: 28px; }
.category-label { margin-bottom: 10px; color: #9c6e2d; font-size: .72rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.category-content h3 { font-size: 1.65rem; }
.category-description { min-height: 78px; margin-bottom: 0; color: #697078; }
.brand-showcase { margin: 24px 0 26px; padding-top: 22px; border-top: 1px solid rgba(16,24,32,.1); }
.brand-showcase-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 13px; }
.brand-showcase-title { margin: 0; color: #262b30; font-size: .7rem; font-weight: 900; letter-spacing: .11em; line-height: 1.35; text-transform: uppercase; }
.brand-showcase-heading > span { flex: 0 0 auto; color: #8a9096; font-size: .64rem; font-weight: 700; letter-spacing: .03em; }
.brand-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.brand-chip { position: relative; display: flex; min-width: 0; min-height: 47px; align-items: center; justify-content: space-between; gap: 8px; padding: 0 13px; overflow: hidden; border: 1px solid rgba(19,28,37,.11); border-radius: 10px; background: linear-gradient(145deg, #fbfbfa, #f2f1ed); color: #252a2f; font-size: .75rem; font-weight: 800; letter-spacing: -.01em; line-height: 1.15; transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease; }
.brand-chip::after { content: "↗"; flex: 0 0 auto; color: #a77835; font-size: .84rem; font-weight: 700; opacity: .72; transition: transform .18s ease; }
.brand-chip:hover { z-index: 1; transform: translateY(-2px); border-color: rgba(156,110,45,.42); background: #fffaf0; color: #171b20; box-shadow: 0 9px 20px rgba(48,38,22,.1); }
.brand-chip:hover::after { transform: translate(2px, -2px); }
.brand-chip:focus-visible { outline: 3px solid rgba(156,110,45,.28); outline-offset: 2px; }
.category-content .text-link { margin-top: auto; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: #171b20; font-size: .8rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.text-link span { color: #9c6e2d; font-size: 1.25rem; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.image-disclaimer { max-width: 980px; margin: 34px auto 0; color: #747a80; font-size: .76rem; text-align: center; }

.benefits-section { background: linear-gradient(180deg, var(--bg), #0d1115); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.benefit-card { min-height: 295px; padding: 30px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); transition: border-color .25s ease, transform .25s ease, background .25s ease; }
.benefit-card:hover { transform: translateY(-5px); border-color: var(--line-gold); background: linear-gradient(145deg, rgba(199,154,75,.08), rgba(255,255,255,.012)); }
.benefit-icon { display: grid; width: 58px; height: 58px; margin-bottom: 30px; place-items: center; border: 1px solid var(--line-gold); border-radius: 16px; color: var(--gold-light); background: rgba(199,154,75,.06); }
.benefit-icon svg { width: 29px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card h3 { font-size: 1.3rem; letter-spacing: -.02em; }
.benefit-card p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }

.process-section { background: #11161b; }
.process-grid { display: grid; grid-template-columns: minmax(0, .76fr) minmax(0, 1.24fr); gap: 80px; align-items: start; }
.process-copy { position: sticky; top: calc(var(--header-height) + 48px); }
.process-copy p:not(.eyebrow) { max-width: 520px; margin-bottom: 30px; color: var(--muted); }
.process-list { list-style: none; margin: 0; padding: 0; }
.process-list li { display: grid; grid-template-columns: 74px 1fr; gap: 25px; padding: 34px 0; border-top: 1px solid var(--line); }
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-list li > span { display: grid; width: 58px; height: 58px; place-items: center; border: 1px solid var(--line-gold); border-radius: 50%; color: var(--gold-light); font-size: .76rem; font-weight: 850; }
.process-list h3 { margin-top: 3px; margin-bottom: 10px; font-size: 1.42rem; }
.process-list p { margin: 0; color: var(--muted); }

.about-section { background: #f5f4f0; color: #171a1e; }
.about-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 72px; align-items: center; }
.about-media { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: 0 30px 70px rgba(35,40,45,.18); }
.about-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 68%, rgba(3,6,9,.62)); pointer-events: none; }
.about-media img { width: 100%; aspect-ratio: 5/3; object-fit: none; }
.about-media > span { position: absolute; z-index: 2; left: 24px; bottom: 18px; color: rgba(255,255,255,.78); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.about-section .eyebrow { color: #9c6e2d; }
.about-copy p { color: #646b72; }
.about-copy .about-lead { color: #252a2f; font-size: 1.18rem; }
.about-facts { display: grid; gap: 0; margin: 34px 0 0; border-top: 1px solid rgba(17,25,32,.12); }
.about-facts div { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid rgba(17,25,32,.12); }
.about-facts dt { color: #8f672e; font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.about-facts dd { margin: 0; color: #24292e; font-weight: 750; }

.cta-section { padding: 64px 0; background: linear-gradient(135deg, #8e6227, #c79847 45%, #e2c077); color: #15100a; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-inner .eyebrow { color: #332713; }
.cta-inner h2 { max-width: 820px; margin-bottom: 0; font-size: clamp(2rem, 3.5vw, 3.5rem); }

.contact-section { padding: 120px 0; background: radial-gradient(circle at 75% 20%, rgba(199,154,75,.08), transparent 32%), var(--bg-deep); }
.contact-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: 70px; align-items: start; }
.contact-copy > p:not(.eyebrow):not(.contact-warning) { color: var(--muted); }
.contact-list { display: grid; gap: 18px; margin-top: 34px; }
.contact-list > div { display: flex; align-items: flex-start; gap: 16px; }
.contact-list p { margin: 0; }
.contact-list small { display: block; margin-bottom: 2px; color: var(--muted-dark); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-list a, .contact-list p > span { color: var(--text-soft); }
.contact-list a:hover { color: var(--gold-light); }
.contact-icon { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; border: 1px solid var(--line); border-radius: 12px; color: var(--gold-light); }
.contact-icon svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-warning { margin-top: 28px; padding: 14px 16px; border: 1px solid rgba(232,199,126,.22); border-radius: 12px; background: rgba(199,154,75,.07); color: #d9c49b; font-size: .78rem; }
.form-panel { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012)); box-shadow: var(--shadow); }
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.contact-form label { display: grid; gap: 8px; color: var(--text-soft); font-size: .75rem; font-weight: 800; letter-spacing: .04em; }
.contact-form label > span[aria-hidden="true"] { display: inline; color: var(--gold-light); }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  outline: none;
  background: rgba(3,5,8,.56);
  color: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form input, .contact-form select { height: 52px; padding: 0 14px; }
.contact-form textarea { min-height: 150px; resize: vertical; padding: 14px; }
.contact-form select { color-scheme: dark; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(199,154,75,.1); background: rgba(3,5,8,.8); }
.contact-form input:user-invalid, .contact-form textarea:user-invalid, .contact-form select:user-invalid { border-color: rgba(239,133,133,.75); }
.consent-field { display: flex !important; grid-template-columns: 22px 1fr; align-items: flex-start; gap: 12px !important; color: var(--muted) !important; font-size: .72rem !important; font-weight: 500 !important; letter-spacing: 0 !important; }
.consent-field input { width: 18px; height: 18px; flex: 0 0 18px; margin: 2px 0 0; accent-color: var(--gold); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-submit { width: fit-content; border: 0; }
.form-submit svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.form-submit[disabled] { opacity: .65; cursor: wait; transform: none; }
.form-status { min-height: 24px; margin: -2px 0 0; font-size: .82rem; }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--danger); }
.form-fallback { margin: 0; color: var(--muted-dark); font-size: .68rem; }
.form-fallback a { color: var(--gold-light); }

.site-footer { border-top: 1px solid var(--line); background: #06080b; }
.footer-main { display: grid; grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(150px, .62fr)); gap: 50px; padding: 70px 0 55px; }
.footer-brand img { width: 235px; margin-bottom: 20px; }
.footer-brand p { max-width: 390px; margin: 0; color: var(--muted); font-size: .86rem; }
.footer-main h2 { margin-bottom: 18px; color: var(--text); font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-links, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-links a, .footer-contact a, .footer-contact span { color: var(--muted); font-size: .82rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 22px 0; border-top: 1px solid var(--line); color: var(--muted-dark); font-size: .72rem; }
.footer-bottom p { margin: 0; }
.back-to-top { position: fixed; right: 24px; bottom: 24px; z-index: 80; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--line-gold); border-radius: 12px; background: rgba(8,10,13,.88); color: var(--gold-light); opacity: 0; visibility: hidden; transform: translateY(10px); cursor: pointer; backdrop-filter: blur(12px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background .2s ease; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: rgba(199,154,75,.14); }
.back-to-top svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.7,.2,1); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  :root { --header-height: 76px; }
  .brand img { width: 205px; }
  .primary-nav { gap: 18px; }
  .primary-nav a { font-size: .71rem; }
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 72px); }
  .hero-grid { gap: 26px; }
  .hero-frame { min-height: 520px; }
  .category-media { height: 310px; }
  .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-card { min-height: 250px; }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .menu-toggle { display: block; position: relative; z-index: 1002; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 110px 34px 44px;
    background: rgba(5,7,10,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-nav a { padding: 17px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .primary-nav > a::after { display: none; }
  .primary-nav .nav-cta { margin-top: 20px; padding: 17px 20px; text-align: center; }
  .hero-grid, .section-heading, .process-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 10px; }
  .hero-visual { order: -1; }
  .hero-frame { min-height: auto; }
  .hero-frame picture { width: min(100%, 720px); }
  .hero-badge { right: 4%; bottom: 5%; }
  .trust-strip { flex-wrap: wrap; }
  .section { padding: 90px 0; }
  .section-heading { align-items: start; gap: 18px; }
  .category-grid { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
  .category-media { height: 420px; }
  .category-description { min-height: 0; }
  .process-grid { gap: 55px; }
  .process-copy { position: static; }
  .about-grid { gap: 45px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .contact-grid { gap: 50px; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  h2 { font-size: clamp(2.05rem, 10vw, 3.25rem); }
  .brand img { width: 190px; }
  .hero { padding-top: calc(var(--header-height) + 40px); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-notes { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
  .trust-strip { gap: 12px; padding: 15px; }
  .trust-strip i { display: none; }
  .trust-strip span { width: 100%; }
  .section { padding: 74px 0; }
  .category-media { height: 330px; }
  .category-content { padding: 24px 22px; }
  .brand-showcase-heading { align-items: flex-start; flex-direction: column; gap: 4px; }
  .brand-chip { min-height: 45px; padding-inline: 11px; font-size: .71rem; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: auto; }
  .process-list li { grid-template-columns: 56px 1fr; gap: 16px; }
  .process-list li > span { width: 48px; height: 48px; }
  .about-facts div { grid-template-columns: 1fr; gap: 4px; }
  .cta-section { padding: 54px 0; }
  .form-panel { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; padding: 56px 0 42px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .back-to-top { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
