@import "bootstrap.min.css";

:root {
  --ink: #241913;
  --brown: #653620;
  --brown-deep: #3b2116;
  --green: #153f31;
  --green-soft: #245744;
  --coral: #f3a07a;
  --coral-hot: #f38b62;
  --peach: #ffd5c0;
  --cream: #f5eddd;
  --paper: #fffaf0;
  --muted: #6e6158;
  --line: rgba(72, 43, 27, .18);
  --display: "Arial Black", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 28px 75px rgba(62, 36, 21, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 96px; }
body { margin: 0; overflow-x: hidden; background: var(--cream); color: var(--ink); font: 18px/1.65 var(--sans); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a, a:hover { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { margin-bottom: 0; color: var(--brown); font-family: var(--display); font-weight: 900; letter-spacing: -.055em; line-height: .91; text-transform: uppercase; }
h1 em, h2 em { color: var(--green); font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; text-transform: none; }

.container-xxl { --bs-gutter-x: clamp(34px, 6.8vw, 112px); max-width: 1580px; }
.section { padding: clamp(92px, 8vw, 132px) 0; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--coral-hot); outline-offset: 4px; }

.scroll-progress { position: fixed; z-index: 250; inset: 0 0 auto; height: 4px; pointer-events: none; }
.scroll-progress span { display: block; width: var(--progress); height: 100%; background: linear-gradient(90deg, var(--coral-hot), #ffd0ad); box-shadow: 0 0 18px rgba(243,139,98,.75); transition: width .08s linear; }

[data-reveal] { opacity: 1; transform: none; }
[data-reveal].reveal-pending { opacity: 0; transform: translateY(38px); transition: opacity .75s ease var(--delay, 0ms), transform .75s cubic-bezier(.2,.72,.2,1) var(--delay, 0ms); }
[data-reveal].reveal-pending.is-visible { opacity: 1; transform: translateY(0); }

.eyebrow { margin: 0 0 21px; display: flex; align-items: center; gap: 12px; color: var(--green); font-size: 13px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span { width: 32px; height: 2px; background: currentColor; }
.eyebrow.light { color: var(--peach); }

.button { min-height: 62px; padding: 0 30px; display: inline-flex; align-items: center; justify-content: center; gap: 15px; border: 1px solid transparent; border-radius: 8px; font-size: 14px; font-weight: 850; letter-spacing: .07em; line-height: 1; text-transform: uppercase; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button span { font-size: 21px; transition: transform .25s ease; }
.button:hover { transform: translateY(-4px); }
.button:hover span { transform: translate(3px,-3px); }
.button-coral { background: var(--coral); color: var(--ink); box-shadow: 0 14px 30px rgba(113,61,35,.16); }
.button-coral:hover { background: var(--coral-hot); box-shadow: 0 20px 40px rgba(113,61,35,.22); }
.button-ink { background: var(--ink); color: var(--paper); }

/* Navigation */
.announcement { position: relative; z-index: 121; min-height: 40px; display: flex; align-items: center; background: var(--green); color: rgba(255,250,240,.86); font-size: 12px; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.announcement-inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; }
.announcement span { display: inline-flex; align-items: center; }
.announcement i { width: 8px; height: 8px; margin-right: 11px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(243,160,122,.14); animation: ping 2.2s infinite; }
@keyframes ping { 50% { box-shadow: 0 0 0 11px rgba(243,160,122,0); } }

.site-header { position: sticky; z-index: 120; top: 0; border-bottom: 1px solid var(--line); background: rgba(245,237,221,.9); backdrop-filter: blur(18px); }
.nav-shell { min-height: 92px; display: flex; align-items: center; gap: 36px; }
.brand { width: 76px; flex: 0 0 76px; display: grid; place-items: center; }
.brand img { width: 69px; height: 69px; object-fit: contain; transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.brand:hover img { transform: rotate(-5deg) scale(1.06); }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(26px, 2.7vw, 46px); }
.desktop-nav a { position: relative; padding: 20px 0; font-size: 16px; font-weight: 760; }
.desktop-nav a::after { content: ""; position: absolute; right: 100%; bottom: 11px; left: 0; height: 2px; background: var(--coral-hot); transition: right .25s ease; }
.desktop-nav a:hover::after { right: 0; }
.nav-cta { margin-left: clamp(4px, 1vw, 18px); }
.menu-toggle { width: 54px; height: 54px; margin-left: auto; display: none; place-items: center; border: 1px solid var(--line); border-radius: 8px; background: transparent; }
.menu-toggle span { position: absolute; width: 22px; height: 2px; background: var(--ink); transition: .25s ease; }
.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }
.mobile-menu { position: fixed; z-index: 180; inset: 0 0 0 auto; width: min(450px, 100%); padding: 32px; display: flex; flex-direction: column; transform: translateX(105%); background: var(--green); color: var(--paper); transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu-top img { width: 82px; filter: invert(1); }
.mobile-menu-top button { width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: transparent; color: var(--paper); font-size: 33px; line-height: 1; }
.mobile-menu nav { margin: auto 0; display: grid; }
.mobile-menu nav a { padding: 20px 0; display: flex; align-items: center; gap: 19px; border-bottom: 1px solid rgba(255,255,255,.16); font: 34px/1.1 var(--serif); }
.mobile-menu nav span { color: var(--coral); font: 12px var(--sans); }
.menu-backdrop { position: fixed; z-index: 170; inset: 0; border: 0; background: rgba(24,14,10,.55); backdrop-filter: blur(3px); }

/* Hero */
.hero-section { position: relative; min-height: calc(100svh - 132px); padding: clamp(70px, 7vw, 112px) 0; display: flex; align-items: center; overflow: hidden; background: var(--cream); }
.hero-grid-lines { position: absolute; inset: 0; opacity: .55; background-image: linear-gradient(rgba(72,43,27,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(72,43,27,.055) 1px, transparent 1px); background-size: 78px 78px; mask-image: linear-gradient(90deg, #000, transparent 73%); }
.hero-layout { position: relative; display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: clamp(55px, 7vw, 118px); }
.hero-copy { position: relative; z-index: 2; }
.hero-kicker { margin: 0 0 28px; display: flex; align-items: center; gap: 13px; color: var(--green); font-size: 13px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.hero-kicker i { width: 11px; height: 11px; border-radius: 50%; background: var(--coral-hot); box-shadow: 0 0 0 7px rgba(243,139,98,.14); }
.hero-copy h1 { max-width: 780px; font-size: clamp(69px, 7.2vw, 112px); }
.hero-copy h1 em { display: inline-block; white-space: nowrap; }
.hero-lead { max-width: 690px; margin: 34px 0 31px; color: var(--muted); font-size: clamp(19px, 1.45vw, 22px); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 27px; }
.text-link { min-height: 62px; display: inline-flex; align-items: center; gap: 13px; border-bottom: 1px solid var(--brown); color: var(--brown); font-size: 15px; font-weight: 820; }
.text-link span { font-size: 19px; transition: transform .25s ease; }
.text-link:hover span { transform: translateY(4px); }
.hero-trust { margin-top: 43px; padding-top: 24px; display: flex; align-items: center; flex-wrap: wrap; gap: 14px; border-top: 1px solid var(--line); color: var(--brown); font-size: 12px; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.hero-trust i { width: 5px; height: 5px; border-radius: 50%; background: var(--coral-hot); }
.hero-scene { --hero-x: 0px; --hero-y: 0px; --hero-rx: 0deg; --hero-ry: 0deg; position: relative; min-height: 660px; perspective: 1200px; }
.hero-frame { position: absolute; inset: 28px 25px 32px 46px; overflow: hidden; border: 13px solid var(--paper); box-shadow: var(--shadow); transform: translate(var(--hero-x),var(--hero-y)) rotateX(var(--hero-rx)) rotateY(var(--hero-ry)) rotate(2deg); transition: transform .2s ease-out; }
.hero-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 50%, rgba(21,63,49,.18)); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.hero-scene:hover .hero-frame img { transform: scale(1.045); }
.float-card { position: absolute; z-index: 3; padding: 18px 20px; display: grid; gap: 3px; border: 1px solid rgba(72,43,27,.12); border-radius: 8px; background: rgba(255,250,240,.9); box-shadow: 0 20px 45px rgba(62,36,21,.17); backdrop-filter: blur(12px); animation: float 4.8s ease-in-out infinite; }
.float-card small { color: var(--coral-hot); font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.float-card strong { color: var(--brown); font-family: var(--serif); font-size: 19px; font-weight: 600; }
.float-card-top { top: 0; right: 0; }
.float-card-bottom { right: 24px; bottom: 0; grid-template-columns: auto 1fr; align-items: center; animation-delay: -2.4s; }
.float-card-bottom > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: var(--paper); }
.float-card-bottom > div { display: grid; }
@keyframes float { 50% { transform: translateY(-9px); } }
.hero-seal { position: absolute; z-index: 3; bottom: 14%; left: 1px; width: 138px; aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 2px solid rgba(255,213,192,.7); border-radius: 50%; background: var(--green); color: var(--paper); text-align: center; transform: rotate(-8deg); box-shadow: 0 18px 38px rgba(21,63,49,.24); }
.hero-seal::before { content: ""; position: absolute; inset: 7px; border: 1px dashed rgba(255,213,192,.55); border-radius: 50%; animation: spin 20s linear infinite; }
.hero-seal span, .hero-seal small { font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.hero-seal strong { font-family: var(--serif); font-size: 20px; }
@keyframes spin { to { transform: rotate(360deg); } }

.brand-marquee { padding: 20px 0; overflow: hidden; background: var(--brown); color: var(--paper); font-family: var(--serif); font-size: 20px; white-space: nowrap; }
.brand-marquee > div { width: max-content; animation: marquee 30s linear infinite; }
.brand-marquee span { padding-right: 15px; }
.brand-marquee i { padding: 0 18px; color: var(--coral); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Products */
.products-section { background: var(--paper); }
.section-heading { margin-bottom: clamp(50px, 6vw, 82px); display: grid; grid-template-columns: 1.14fr .86fr; align-items: end; gap: clamp(45px, 7vw, 100px); }
.section-heading h2 { font-size: clamp(58px, 6vw, 92px); }
.section-heading > p { max-width: 590px; margin: 0; color: var(--muted); font-size: 20px; line-height: 1.75; }
.product-grid { display: grid; grid-template-columns: 1.15fr .925fr .925fr; gap: 20px; }
.product-card { position: relative; min-height: 610px; padding: 29px; display: flex; flex-direction: column; overflow: hidden; isolation: isolate; border: 1px solid var(--line); border-radius: 9px; background: var(--cream); transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease; }
.product-card::after { content: ""; position: absolute; z-index: -1; inset: 0; opacity: 0; background: radial-gradient(390px circle at var(--spot-x,50%) var(--spot-y,50%), rgba(255,255,255,.35), transparent 66%); transition: opacity .3s ease; }
.product-card:hover { transform: translateY(-11px); box-shadow: var(--shadow); }
.product-card:hover::after { opacity: 1; }
.product-meta { display: flex; justify-content: space-between; color: var(--brown); font-size: 12px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.product-meta span { color: var(--coral-hot); }
.product-visual { position: relative; height: 245px; margin: 34px 0 32px; overflow: hidden; border-radius: 6px; }
.product-visual > img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-visual > img { transform: scale(1.07); }
.product-wear { background: #eadbc3; }
.scarf-mark { height: 100%; display: grid; place-items: center; overflow: hidden; background: repeating-linear-gradient(130deg, var(--green) 0 30px, #255744 30px 60px); }
.scarf-mark i { position: absolute; width: 142px; height: 142px; border: 5px double var(--peach); border-radius: 50%; background: var(--brown); box-shadow: 0 18px 35px rgba(44,24,14,.25); transition: transform .45s ease; }
.scarf-mark b { position: relative; z-index: 1; color: var(--peach); font: 45px var(--serif); }
.product-card:hover .scarf-mark i { transform: rotate(9deg) scale(1.05); }
.product-gear { background: var(--brown); color: var(--paper); }
.gear-mark { height: 100%; display: grid; place-items: center; background: linear-gradient(145deg, rgba(255,255,255,.08), transparent), var(--green); }
.gear-mark i { position: absolute; width: 175px; height: 175px; border: 1px solid rgba(255,250,240,.32); border-radius: 50%; transition: transform .5s ease; }
.gear-mark i:nth-child(2) { width: 106px; height: 106px; }
.gear-mark b { position: relative; z-index: 1; color: var(--coral); font: 48px var(--serif); }
.product-card:hover .gear-mark i:first-child { transform: rotate(15deg) scale(1.05); }
.product-card h3 { margin: 0 0 15px; color: var(--brown); font: 500 clamp(34px, 3vw, 46px)/1.06 var(--serif); }
.product-gear h3 { color: var(--paper); }
.product-card > p { margin: 0; color: inherit; opacity: .76; font-size: 18px; line-height: 1.65; }
.product-card > a { min-height: 54px; margin-top: auto; padding-top: 18px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid currentColor; font-size: 14px; font-weight: 850; letter-spacing: .075em; text-transform: uppercase; }
.product-card > a span { font-size: 21px; transition: transform .25s ease; }
.product-card > a:hover span { transform: translate(4px,-4px); }

/* Why TSD */
.why-section { padding: clamp(98px, 9vw, 145px) 0; background: var(--green); color: var(--paper); }
.why-intro { margin-bottom: clamp(55px, 6vw, 82px); display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: clamp(48px, 7vw, 100px); }
.why-intro h2 { color: var(--paper); font-size: clamp(58px, 6vw, 92px); }
.why-intro h2 em { color: var(--peach); }
.why-intro > div:last-child > p { margin-bottom: 29px; color: rgba(255,250,240,.76); font-size: 20px; line-height: 1.75; }
.business-chip { padding: 17px 19px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 15px; border: 1px solid rgba(255,250,240,.17); border-radius: 8px; background: rgba(255,255,255,.055); }
.business-chip > i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--coral); color: var(--ink); font-style: normal; }
.business-chip > span { display: grid; }
.business-chip small { color: var(--coral); font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.business-chip strong { font-size: 14px; font-weight: 650; }
.reason-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid rgba(255,250,240,.16); }
.reason-grid article { min-height: 330px; padding: 40px; display: flex; flex-direction: column; border-right: 1px solid rgba(255,250,240,.16); transition: background .3s ease, transform .3s ease; }
.reason-grid article:last-child { border-right: 0; }
.reason-grid article:hover { position: relative; z-index: 1; background: rgba(255,255,255,.075); transform: translateY(-7px); }
.reason-grid span { color: var(--coral); font-size: 13px; font-weight: 850; }
.reason-grid h3 { margin: auto 0 14px; color: var(--paper); font: 500 clamp(27px, 2.2vw, 34px)/1.1 var(--serif); }
.reason-grid p { margin: 0; color: rgba(255,250,240,.68); font-size: 17px; line-height: 1.68; }

/* Ordering */
.order-section { position: relative; padding: clamp(98px, 9vw, 145px) 0; overflow: hidden; background: var(--coral); }
.order-orbit { position: absolute; border: 1px solid rgba(101,54,32,.18); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 680px; height: 680px; top: -440px; right: -150px; }
.orbit-two { width: 410px; height: 410px; right: -30px; bottom: -270px; }
.order-heading { position: relative; z-index: 1; margin-bottom: clamp(50px, 6vw, 80px); display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.order-heading h2 { font-size: clamp(57px, 5.8vw, 90px); }
.steps-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,1fr); gap: 17px; }
.steps-grid article { position: relative; min-height: 290px; padding: 32px; display: flex; flex-direction: column; border: 1px solid rgba(72,43,27,.17); border-radius: 9px; background: rgba(255,250,240,.68); backdrop-filter: blur(9px); transition: transform .35s ease, background .35s ease, box-shadow .35s ease; }
.steps-grid article:hover { transform: translateY(-9px); background: var(--paper); box-shadow: 0 25px 60px rgba(99,48,24,.15); }
.steps-grid article > span { color: var(--brown); font-size: 13px; font-weight: 850; }
.steps-grid article > div { margin-top: auto; }
.steps-grid h3 { margin: 0 0 12px; color: var(--brown); font: 500 31px/1.1 var(--serif); }
.steps-grid p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.steps-grid article > i { position: absolute; z-index: 3; top: 50%; right: -31px; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: var(--paper); font-style: normal; transform: translateY(-50%); }

/* Contact */
.contact-section { padding: clamp(80px, 8vw, 125px) 0; background: var(--cream); }
.contact-card { position: relative; padding: clamp(43px, 6vw, 84px); display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(45px, 7vw, 100px); overflow: hidden; border-radius: 12px; background: var(--brown); color: var(--paper); box-shadow: var(--shadow); }
.contact-card::after { content: "TSD"; position: absolute; right: -25px; bottom: -95px; color: rgba(255,255,255,.035); font: 900 260px/1 var(--display); pointer-events: none; }
.contact-card h2 { position: relative; z-index: 1; color: var(--paper); font-size: clamp(52px, 5.4vw, 84px); }
.contact-card h2 em { color: var(--peach); }
.contact-card > div:first-child > p:last-child { position: relative; z-index: 1; max-width: 620px; margin: 27px 0 0; color: rgba(255,250,240,.72); font-size: 18px; line-height: 1.7; }
.contact-actions { position: relative; z-index: 1; display: grid; gap: 14px; }
.social-action { min-height: 98px; padding: 20px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 17px; border: 1px solid rgba(255,255,255,.18); border-radius: 9px; background: rgba(255,255,255,.07); transition: transform .28s ease, background .28s ease; }
.social-action:hover { transform: translateX(7px); background: rgba(255,255,255,.12); }
.social-action > span { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--coral); color: var(--ink); font-size: 13px; font-weight: 900; letter-spacing: .05em; }
.instagram-action > span { background: var(--peach); }
.social-action > div { display: grid; }
.social-action small { color: var(--coral); font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.social-action strong { color: var(--paper); font-family: var(--serif); font-size: 21px; }
.social-action > i { color: var(--coral); font-size: 25px; font-style: normal; transition: transform .25s ease; }
.social-action:hover > i { transform: translate(3px,-3px); }

/* Footer */
.site-footer { padding: clamp(70px, 7vw, 105px) 0 28px; background: #17120f; color: rgba(255,250,240,.65); }
.footer-layout { padding-bottom: 58px; display: grid; grid-template-columns: 2.1fr repeat(3,1fr); gap: 45px; }
.footer-brand img { width: 100px; filter: invert(1); }
.footer-brand p { max-width: 450px; margin: 28px 0 0; font-size: 16px; line-height: 1.75; }
.footer-layout > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 12px; }
.footer-layout small { margin-bottom: 9px; color: var(--coral); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.footer-layout a, .footer-layout span { font-size: 15px; }
.footer-layout a:hover { color: var(--paper); }
.footer-base { padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,250,240,.13); font-size: 12px; letter-spacing: .075em; text-transform: uppercase; }
.footer-base strong { color: var(--paper); font-family: var(--serif); font-size: 15px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.mobile-order { position: fixed; z-index: 90; right: 14px; bottom: 14px; left: 14px; min-height: 60px; display: none; align-items: center; justify-content: center; gap: 13px; border-radius: 9px; background: var(--coral); box-shadow: 0 14px 35px rgba(39,23,14,.28); font-size: 14px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }

@media (max-width: 1199px) {
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 45px; }
  .hero-copy h1 { font-size: clamp(62px, 7vw, 88px); }
  .hero-scene { min-height: 610px; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .product-card:last-child { grid-column: 1/-1; min-height: 510px; }
  .product-card:last-child .product-visual { height: 190px; }
}

@media (max-width: 991px) {
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { display: grid; }
  .hero-section { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 850px; }
  .hero-copy h1 { font-size: clamp(72px, 10.5vw, 108px); }
  .hero-scene { min-height: 730px; }
  .section-heading, .why-intro, .contact-card { grid-template-columns: 1fr; }
  .section-heading, .why-intro { gap: 30px; }
  .reason-grid { grid-template-columns: 1fr; }
  .reason-grid article { min-height: 235px; border-right: 0; border-bottom: 1px solid rgba(255,250,240,.16); }
  .reason-grid article:last-child { border-bottom: 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article { min-height: 230px; }
  .steps-grid article > i { top: auto; right: 50%; bottom: -31px; transform: translateX(50%) rotate(90deg); }
  .footer-layout { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 767px) {
  body { padding-bottom: 82px; font-size: 17px; }
  .container-xxl { --bs-gutter-x: 38px; }
  .announcement { font-size: 10px; }
  .announcement-inner span:last-child { display: none; }
  .announcement-inner { justify-content: center; }
  .nav-shell { min-height: 78px; }
  .brand { width: 62px; flex-basis: 62px; }
  .brand img { width: 60px; height: 60px; }
  .hero-section { padding: 56px 0 72px; }
  .hero-kicker { margin-bottom: 22px; font-size: 11px; }
  .hero-copy h1 { font-size: clamp(53px, 14.3vw, 75px); }
  .hero-copy h1 em { white-space: normal; }
  .hero-lead { margin: 27px 0; font-size: 18.5px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 8px; }
  .text-link { justify-content: center; }
  .hero-trust { gap: 10px; font-size: 10px; }
  .hero-scene { min-height: 475px; margin-top: 28px; }
  .hero-frame { inset: 25px 5px 29px 21px; border-width: 8px; }
  .float-card { max-width: 240px; padding: 13px 14px; }
  .float-card strong { font-size: 15px; }
  .float-card-top { right: 2px; }
  .float-card-bottom { right: 1px; bottom: 2px; }
  .float-card-bottom > span { width: 31px; height: 31px; }
  .hero-seal { bottom: 10%; width: 105px; }
  .hero-seal strong { font-size: 16px; }
  .brand-marquee { padding: 17px 0; font-size: 18px; }
  .section { padding: 80px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .why-intro h2, .order-heading h2 { font-size: clamp(48px, 13vw, 68px); }
  .section-heading > p, .why-intro > div:last-child > p { font-size: 18px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card, .product-card:last-child { grid-column: auto; min-height: 535px; }
  .product-card:last-child .product-visual, .product-visual { height: 205px; }
  .product-card > p { font-size: 17px; }
  .why-section, .order-section { padding: 82px 0; }
  .business-chip { align-items: start; }
  .business-chip strong { font-size: 12px; }
  .reason-grid article { min-height: 250px; padding: 30px; }
  .order-heading { align-items: stretch; flex-direction: column; }
  .order-heading .button { width: 100%; }
  .steps-grid article { padding: 29px; }
  .contact-section { padding: 70px 0; }
  .contact-card { padding: 36px 25px; border-radius: 9px; }
  .contact-card h2 { font-size: clamp(45px, 12.4vw, 62px); }
  .social-action { min-height: 91px; padding: 16px; }
  .social-action > span { width: 44px; height: 44px; }
  .social-action strong { font-size: 17px; }
  .footer-layout { grid-template-columns: 1fr 1fr; gap: 38px 28px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-layout > div:last-child { grid-column: 1/-1; }
  .footer-base { align-items: flex-start; flex-direction: column; }
  .mobile-order { display: flex; }
}

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