:root {
  --ink: #161616;
  --ink-soft: #2d2d2d;
  --paper: #f5f4ef;
  --paper-deep: #e9e7df;
  --white: #fff;
  --yellow: #f6c800;
  --yellow-soft: #ffe277;
  --blue: #127fbc;
  --line: rgba(22, 22, 22, .14);
  --muted: #676861;
  --container: 1240px;
  --radius-lg: 30px;
  --radius-md: 18px;
  --shadow: 0 18px 50px rgba(16, 20, 21, .12);
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Arial Black', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; padding: 10px 14px; background: var(--yellow); color: var(--ink); transform: translateY(-180%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; color: var(--white); transition: background .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled { background: rgba(22, 22, 22, .96); box-shadow: 0 1px 0 rgba(255,255,255,.12); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 92px; display: flex; align-items: center; gap: 30px; transition: min-height .25s ease; }
.is-scrolled .nav-wrap { min-height: 70px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; width: 106px; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 22px; margin-left: auto; font-size: .87rem; font-weight: 600; }
.desktop-nav > a, .nav-dropdown > summary { position: relative; display: inline-flex; align-items: center; gap: 5px; padding: 10px 0; opacity: .84; cursor: pointer; list-style: none; }
.desktop-nav > a::after, .nav-dropdown > summary::after { content: ''; position: absolute; right: 0; bottom: 4px; left: 0; height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.desktop-nav > a:hover, .desktop-nav > a:focus-visible, .nav-dropdown > summary:hover, .nav-dropdown > summary:focus-visible { opacity: 1; }
.desktop-nav > a:hover::after, .desktop-nav > a:focus-visible::after, .nav-dropdown > summary:hover::after, .nav-dropdown > summary:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-dropdown { position: relative; }
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.dropdown-panel { position: absolute; top: calc(100% + 16px); left: -20px; display: grid; min-width: 245px; padding: 10px; background: #202020; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; box-shadow: var(--shadow); }
.dropdown-panel a { display: flex; justify-content: space-between; padding: 11px 12px; border-radius: 10px; color: #fff; font-size: .88rem; }
.dropdown-panel a:hover, .dropdown-panel a:focus-visible { background: var(--yellow); color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.header-phone { display: grid; line-height: 1.05; text-align: right; }
.header-phone-label { color: rgba(255,255,255,.6); font-size: .7rem; }
.header-phone strong { font-family: var(--font-display); font-size: .98rem; letter-spacing: .02em; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-size: .9rem; font-weight: 700; line-height: 1; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-small { min-height: 42px; padding: 0 17px; font-size: .78rem; }
.button-yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 8px 24px rgba(246, 200, 0, .2); }
.button-yellow:hover, .button-yellow:focus-visible { background: #ffda32; box-shadow: 0 10px 28px rgba(246, 200, 0, .3); }
.button-outline-light { border-color: rgba(255,255,255,.5); color: #fff; background: rgba(255,255,255,.04); }
.button-outline-light:hover, .button-outline-light:focus-visible { border-color: #fff; background: #fff; color: var(--ink); }
.button-dark { background: var(--ink); color: #fff; }
.button-dark:hover, .button-dark:focus-visible { background: var(--yellow); color: var(--ink); }
.menu-toggle { display: none; align-items: center; gap: 8px; padding: 8px 0 8px 10px; border: 0; background: transparent; color: #fff; cursor: pointer; }
.menu-toggle-label { font-size: .75rem; font-weight: 600; }
.menu-icon { display: grid; gap: 5px; width: 25px; }
.menu-icon i { display: block; height: 2px; background: currentColor; transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] .menu-icon i:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { background: #202020; border-top: 1px solid rgba(255,255,255,.12); }
.mobile-nav { display: grid; padding-top: 18px; padding-bottom: 25px; }
.mobile-nav > a, .mobile-nav > details > summary { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: #fff; font-size: 1.05rem; font-weight: 600; list-style: none; cursor: pointer; }
.mobile-nav > details > summary::-webkit-details-marker { display: none; }
.mobile-subnav { display: grid; gap: 0; padding: 4px 0 12px 14px; border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-subnav a { padding: 9px 0; color: rgba(255,255,255,.7); font-size: .9rem; }
.mobile-phone { color: var(--yellow) !important; }

.hero { position: relative; min-height: min(870px, 94vh); display: flex; align-items: center; overflow: hidden; background: #222; color: #fff; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(8,12,13,.9) 0%, rgba(8,12,13,.67) 38%, rgba(8,12,13,.05) 82%), linear-gradient(0deg, rgba(8,12,13,.38), transparent 46%); }
.hero-content { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; padding-top: 90px; }
.hero-copy { width: min(620px, 100%); }
.eyebrow { margin: 0 0 16px; color: #817f76; font-size: .72rem; font-weight: 700; letter-spacing: .18em; line-height: 1.2; text-transform: uppercase; }
.eyebrow::before { content: ''; display: inline-block; width: 25px; height: 2px; margin: 0 10px 3px 0; background: var(--yellow); }
.eyebrow-light { color: rgba(255,255,255,.68); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -.045em; }
h1 { max-width: 700px; margin-bottom: 22px; font-size: clamp(3.5rem, 7.5vw, 7.8rem); line-height: .92; }
h1 em, h2 em { color: var(--yellow); font-style: normal; }
.hero-lead { max-width: 510px; margin-bottom: 30px; color: rgba(255,255,255,.8); font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-app-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; color: #fff; font-size: .86rem; font-weight: 700; }
.hero-app-link:hover { color: var(--yellow); }
.hero-stamp { display: flex; align-items: center; gap: 11px; align-self: flex-end; margin: 0 3% 8%; padding: 14px 16px; border: 1px solid rgba(255,255,255,.22); border-radius: 14px; background: rgba(21, 23, 21, .38); color: rgba(255,255,255,.75); font-size: .76rem; backdrop-filter: blur(12px); }
.hero-stamp strong { display: block; color: #fff; font-family: var(--font-display); font-size: 1.15rem; }
.stamp-dot, .status-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: #68dc73; box-shadow: 0 0 0 5px rgba(104,220,115,.12); }
.hero-scroll { position: absolute; right: 30px; bottom: 28px; z-index: 1; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.72); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-scroll span:first-child { color: var(--yellow); font-size: 1.2rem; }

.trust-wrap { position: relative; z-index: 2; margin-top: -36px; }
.trust-bar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 0; padding: 17px 26px; border: 1px solid rgba(255,255,255,.15); border-radius: 17px; background: #fff; box-shadow: 0 20px 45px rgba(21, 23, 21, .12); list-style: none; }
.trust-bar li { display: flex; align-items: center; gap: 10px; color: #6e6f68; font-size: .76rem; white-space: nowrap; }
.trust-number { color: var(--ink); font-family: var(--font-display); font-size: 1.38rem; font-weight: 700; }
.trust-mark { display: inline-grid; width: 31px; height: 31px; place-items: center; border-radius: 50%; background: var(--paper); color: var(--ink); font-size: .72rem; font-weight: 700; }
.trust-mark-app { background: var(--yellow); font-size: 1.35rem; }

.section { padding: 132px 0; }
.section-heading { max-width: 700px; margin-bottom: 48px; }
.section-heading-split { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 50px; }
h2 { margin-bottom: 18px; font-size: clamp(2.7rem, 5vw, 5rem); line-height: .98; }
h3 { font-size: clamp(1.45rem, 2vw, 2.1rem); line-height: 1.02; }
.section-intro { max-width: 385px; margin-bottom: 5px; color: var(--muted); font-size: 1rem; }

.order-section { padding-top: 150px; }
.order-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 16px; }
.order-card { position: relative; min-height: 330px; overflow: hidden; padding: 27px; border-radius: var(--radius-md); background: #fff; }
.order-card-main { background: var(--yellow); }
.order-card-phone { background: #e7e4db; }
.order-card-app { background: #fff; border: 1px solid var(--line); }
.card-kicker { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 58px; color: #6e6f68; font-size: .7rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.order-card-main .card-kicker { color: rgba(22,22,22,.62); }
.card-index { color: var(--ink); font-family: var(--font-display); font-size: 1.05rem; letter-spacing: -.03em; }
.order-card h3 { position: relative; z-index: 1; max-width: 320px; margin-bottom: 14px; font-size: clamp(1.7rem, 3vw, 2.65rem); }
.order-card p { position: relative; z-index: 1; max-width: 315px; color: #64655e; font-size: .9rem; }
.order-card-main p { color: rgba(22,22,22,.68); }
.text-link { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; font-size: .84rem; font-weight: 700; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.order-card-glow { position: absolute; right: -35px; bottom: -95px; width: 235px; height: 235px; border: 1px solid rgba(22,22,22,.2); border-radius: 50%; }
.order-card-glow::after { content: ''; position: absolute; inset: 23px; border: 1px solid rgba(22,22,22,.2); border-radius: 50%; }
.order-card-phone h3 { font-size: clamp(2rem, 3vw, 3rem); letter-spacing: -.06em; }
.order-app-top { display: flex; align-items: center; gap: 10px; margin-top: -35px; margin-bottom: 22px; color: #76776f; font-size: .74rem; font-weight: 700; }
.order-app-top img { border-radius: 12px; }

.services-section { background: var(--paper-deep); }
.services-bento { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.service-card { position: relative; min-height: 355px; overflow: hidden; display: flex; align-items: flex-end; padding: 31px; border-radius: var(--radius-md); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card-copy { position: relative; z-index: 1; max-width: 330px; }
.service-card-wide { min-height: 440px; grid-row: span 2; }
.service-card-yellow { background: var(--yellow); }
.service-card-dark { background: var(--ink); color: #fff; }
.service-card-image { color: #fff; }
.service-card-image > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,10,10,.88), rgba(6,10,10,.08) 75%); }
.service-card-courier { min-height: 440px; }
.service-label { display: block; margin-bottom: 42px; color: rgba(22,22,22,.58); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.service-card-dark .service-label, .service-card-image .service-label { color: rgba(255,255,255,.64); }
.service-card h3 { margin-bottom: 12px; font-size: clamp(1.8rem, 3.1vw, 3.3rem); }
.service-card p { max-width: 275px; margin-bottom: 17px; color: rgba(22,22,22,.68); font-size: .88rem; }
.service-card-dark p, .service-card-image p { color: rgba(255,255,255,.7); }
.service-link { display: inline-flex; align-items: center; gap: 9px; font-size: .8rem; font-weight: 700; }
.service-card-dark .service-link, .service-card-image .service-link { color: var(--yellow); }
.service-art-plane { position: absolute; top: 29px; right: 34px; display: grid; width: 65px; height: 65px; place-items: center; border: 1px solid rgba(22,22,22,.35); border-radius: 50%; font-size: 1.5rem; transform: rotate(-28deg); }
.service-ghost-number { position: absolute; top: -36px; right: -8px; color: rgba(255,255,255,.08); font-family: var(--font-display); font-size: 18rem; font-weight: 700; line-height: 1; }

.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr); gap: 9vw; align-items: center; }
.about-image { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.about-image img { width: 100%; min-height: 455px; object-fit: cover; }
.image-caption { position: absolute; right: 18px; bottom: 18px; padding: 10px 13px; border-radius: 8px; background: rgba(22,22,22,.76); color: #fff; font-size: .72rem; font-weight: 700; }
.about-copy h2 { font-size: clamp(2.55rem, 4.5vw, 4.6rem); }
.about-copy > p:not(.eyebrow) { max-width: 460px; color: var(--muted); }
.fact-row { display: flex; gap: 27px; margin: 30px 0; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact-row div { display: grid; gap: 1px; }
.fact-row strong { font-family: var(--font-display); font-size: 1.4rem; }
.fact-row span { color: var(--muted); font-size: .71rem; }

.booking-section { background: var(--yellow); }
.booking-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 9vw; align-items: center; }
.booking-copy h2 { font-size: clamp(3rem, 5.4vw, 5.6rem); }
.booking-copy > p:not(.eyebrow) { max-width: 420px; color: rgba(22,22,22,.7); }
.booking-points { display: grid; gap: 10px; margin: 30px 0; }
.booking-points span { display: flex; align-items: center; gap: 12px; font-size: .84rem; font-weight: 600; }
.booking-points b { display: inline-grid; width: 27px; height: 27px; place-items: center; border: 1px solid rgba(22,22,22,.3); border-radius: 50%; font-size: .67rem; }
.booking-preview { padding: 13px; border: 1px solid rgba(22,22,22,.27); border-radius: 19px; background: rgba(255,255,255,.56); box-shadow: 0 18px 34px rgba(22,22,22,.12); }
.preview-window-bar { display: flex; align-items: center; gap: 5px; padding: 6px 5px 11px; }
.preview-window-bar span { width: 7px; height: 7px; border-radius: 50%; background: rgba(22,22,22,.28); }
.preview-window-bar span:first-child { background: #e85d5d; }
.preview-window-bar span:nth-child(2) { background: #e7a93d; }
.preview-window-bar span:nth-child(3) { background: #6abc74; }
.preview-window-bar em { margin-left: 8px; color: rgba(22,22,22,.48); font-size: .65rem; font-style: normal; }
.booking-preview img { width: 100%; border-radius: 8px; }
.preview-status { display: flex; align-items: center; gap: 9px; padding: 13px 4px 1px; color: rgba(22,22,22,.64); font-size: .73rem; }
.preview-status strong { margin-left: auto; color: var(--ink); font-family: var(--font-display); }

.app-section { overflow: hidden; background: var(--blue); color: #fff; }
.app-layout { display: grid; grid-template-columns: minmax(340px, .83fr) minmax(0, 1.17fr); gap: 8vw; align-items: center; }
.app-brand { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 42px; color: rgba(255,255,255,.8); font-size: .77rem; font-weight: 600; }
.app-brand img { border-radius: 14px; }
.app-copy h2 { margin-bottom: 20px; font-size: clamp(3rem, 5vw, 5.2rem); }
.app-copy > p:not(.eyebrow) { max-width: 410px; color: rgba(255,255,255,.76); }
.app-benefits { display: grid; gap: 10px; margin: 25px 0 30px; padding: 0; list-style: none; color: rgba(255,255,255,.9); font-size: .84rem; }
.app-benefits li { display: flex; align-items: center; gap: 10px; }
.app-benefits span { display: inline-grid; width: 21px; height: 21px; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; color: var(--yellow); }
.store-badges { display: flex; flex-wrap: wrap; gap: 9px; }
.store-badges a { display: inline-flex; transition: transform .2s ease; }
.store-badges a:hover { transform: translateY(-2px); }
.store-badges img { width: 137px; height: auto; }
.app-visual { position: relative; overflow: hidden; min-height: 520px; border-radius: var(--radius-lg); background: #0d1720; box-shadow: 0 22px 60px rgba(0,0,0,.18); }
.app-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,20,27,.42), transparent 55%); pointer-events: none; }
.app-visual img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; object-position: center; }
.app-visual-tag { position: absolute; right: 22px; bottom: 22px; z-index: 1; display: flex; align-items: center; gap: 9px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; background: rgba(7,21,26,.62); color: #fff; font-size: .72rem; backdrop-filter: blur(12px); }

.more-services-section { background: #fff; }
.service-links { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.service-links a { display: flex; justify-content: space-between; gap: 16px; padding: 22px 18px 22px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-family: var(--font-display); font-size: 1.05rem; letter-spacing: -.03em; }
.service-links a:hover { color: #987500; }
.service-links a:nth-child(3n+2), .service-links a:nth-child(3n+3) { padding-left: 18px; border-left: 1px solid var(--line); }
.service-links a span:last-child { color: #9c9d94; font-family: var(--font-body); font-size: 1.1rem; }

.corporate-section { position: relative; overflow: hidden; padding: 120px 0; background: var(--ink); color: #fff; }
.corporate-section::before { content: ''; position: absolute; inset: 0; background: url('assets/bg-footer.webp') center/cover; opacity: .16; }
.corporate-section::after { content: ''; position: absolute; width: 440px; height: 440px; right: -100px; bottom: -250px; border: 1px solid rgba(246,200,0,.5); border-radius: 50%; box-shadow: 0 0 0 70px rgba(246,200,0,.06), 0 0 0 140px rgba(246,200,0,.03); }
.corporate-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; align-items: center; }
.corporate-layout > * { min-width: 0; }
.corporate-mark { color: rgba(246,200,0,.86); font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.8rem); letter-spacing: -.08em; }
.corporate-mark span { margin: 0 8px; color: rgba(255,255,255,.32); }
.corporate-copy h2 { margin-bottom: 20px; font-size: clamp(3rem, 5vw, 5.1rem); }
.corporate-copy > p:not(.eyebrow) { max-width: 510px; margin-bottom: 28px; color: rgba(255,255,255,.72); }

.knowledge-section { background: var(--paper-deep); }
.knowledge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.knowledge-card { position: relative; min-height: 305px; display: flex; flex-direction: column; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.42); transition: background .2s ease, transform .2s ease, box-shadow .2s ease; }
.knowledge-card:hover { background: #fff; transform: translateY(-3px); box-shadow: var(--shadow); }
.knowledge-number { color: #8e8f87; font-family: var(--font-display); font-size: .82rem; }
.knowledge-card h3 { max-width: 280px; margin: auto 0 12px; font-size: 1.7rem; }
.knowledge-card p { margin-bottom: 20px; color: var(--muted); font-size: .86rem; }
.knowledge-link { display: flex; justify-content: space-between; color: #836a00; font-size: .8rem; font-weight: 700; }

.site-footer { position: relative; overflow: hidden; padding: 85px 0 30px; background: #151717 url('assets/bg-footer.webp') center/cover; color: #fff; }
.site-footer::before { content: ''; position: absolute; inset: 0; background: rgba(13, 16, 16, .86); }
.site-footer > * { position: relative; z-index: 1; }
.footer-top { display: flex; justify-content: space-between; gap: 50px; padding-bottom: 55px; border-bottom: 1px solid rgba(255,255,255,.16); }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-brand img { width: 105px; }
.footer-brand p { margin: 0; color: rgba(255,255,255,.78); font-family: var(--font-display); font-size: 1.02rem; line-height: 1.25; }
.footer-brand p span { color: rgba(255,255,255,.48); font-family: var(--font-body); font-size: .76rem; }
.footer-callout { display: grid; justify-items: end; gap: 5px; }
.footer-callout > span { color: rgba(255,255,255,.5); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-callout > a:first-of-type { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -.07em; }
.footer-callout > a:first-of-type strong { color: var(--yellow); }
.footer-callout > a:last-of-type { color: var(--yellow); font-size: .8rem; font-weight: 700; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr) 1.3fr; gap: 30px; padding: 42px 0 50px; }
.footer-links h3 { margin-bottom: 16px; color: rgba(255,255,255,.5); font-family: var(--font-body); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.footer-links a { display: block; width: fit-content; margin-bottom: 7px; color: rgba(255,255,255,.76); font-size: .81rem; }
.footer-links a:hover, .footer-bottom a:hover { color: var(--yellow); }
.footer-note { display: grid; align-content: end; justify-items: end; text-align: right; }
.footer-note span { color: var(--yellow); font-size: .74rem; font-weight: 700; }
.footer-note strong { margin-top: 7px; font-family: var(--font-display); font-size: 1.7rem; letter-spacing: -.06em; line-height: 1.02; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.42); font-size: .7rem; }
.footer-bottom a { color: rgba(255,255,255,.68); }
.mobile-action-bar { display: none; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

@media (max-width: 1120px) {
  .desktop-nav { gap: 14px; }
  .header-phone { display: none; }
  .hero { min-height: 760px; }
  .trust-bar { gap: 12px; padding-inline: 18px; }
  .trust-bar li { font-size: .68rem; }
  .trust-number { font-size: 1.15rem; }
  .service-card-wide, .service-card-courier { min-height: 400px; }
}

@media (max-width: 900px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .desktop-nav, .header-actions > .button-small { display: none; }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: inline-flex; }
  .hero-content { padding-top: 80px; }
  .hero-media img { object-position: 58% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(8,12,13,.92), rgba(8,12,13,.48) 70%), linear-gradient(0deg, rgba(8,12,13,.45), transparent 55%); }
  .hero-stamp { align-self: flex-end; margin-bottom: 42px; }
  .trust-bar { display: grid; grid-template-columns: repeat(3, 1fr); }
  .trust-bar li:nth-child(4), .trust-bar li:nth-child(5) { display: none; }
  .section { padding: 100px 0; }
  .order-section { padding-top: 115px; }
  .order-grid { grid-template-columns: repeat(2, 1fr); }
  .order-card-main { grid-row: span 2; }
  .services-bento { grid-template-columns: repeat(2, 1fr); }
  .service-card-wide, .service-card-courier { min-height: 400px; }
  .about-grid, .booking-layout, .app-layout { gap: 50px; }
  .app-layout { grid-template-columns: 1fr 1fr; }
  .app-visual, .app-visual img { min-height: 470px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-note { justify-items: start; text-align: left; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 82px; }
  body { padding-bottom: 71px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .nav-wrap { min-height: 78px; }
  .is-scrolled .nav-wrap { min-height: 68px; }
  .brand { width: 92px; }
  .header-actions { gap: 10px; }
  .hero { min-height: 730px; align-items: flex-end; padding-bottom: 100px; }
  .hero-content { padding-top: 130px; }
  .hero-media img { object-position: 63% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(8,12,13,.94) 4%, rgba(8,12,13,.42) 70%, rgba(8,12,13,.18)), linear-gradient(90deg, rgba(8,12,13,.55), transparent); }
  h1 { font-size: clamp(3.55rem, 17vw, 6rem); }
  .hero-lead { max-width: 390px; font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .button { width: 100%; padding-inline: 12px; }
  .hero-stamp { display: none; }
  .hero-scroll { right: 15px; bottom: 27px; }
  .trust-wrap { margin-top: -42px; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); gap: 12px 8px; padding: 15px; }
  .trust-bar li { font-size: .66rem; }
  .trust-bar li:nth-child(3) { grid-column: 1 / -1; }
  .trust-bar li:nth-child(3), .trust-bar li:nth-child(4), .trust-bar li:nth-child(5) { display: flex; }
  .trust-bar li:nth-child(3) { display: none; }
  .section { padding: 78px 0; }
  .order-section { padding-top: 88px; }
  .section-heading-split { display: block; }
  .section-heading-split .section-intro { margin-top: 20px; }
  h2 { font-size: clamp(2.45rem, 11.5vw, 4.2rem); }
  .section-heading { margin-bottom: 32px; }
  .order-grid, .services-bento, .knowledge-grid, .about-grid, .booking-layout, .app-layout { grid-template-columns: 1fr; }
  .order-card, .service-card, .service-card-wide, .service-card-courier { min-height: 330px; }
  .order-card-main { grid-row: auto; }
  .card-kicker { margin-bottom: 42px; }
  .services-bento { gap: 12px; }
  .service-card-copy { max-width: 315px; }
  .service-card-wide, .service-card-courier { min-height: 355px; }
  .about-image img { min-height: 300px; }
  .about-copy h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .fact-row { justify-content: space-between; gap: 10px; }
  .fact-row strong { font-size: 1.18rem; }
  .booking-preview { order: -1; }
  .booking-copy h2 { font-size: clamp(3.25rem, 15vw, 5rem); }
  .app-brand { margin-bottom: 28px; }
  .app-visual, .app-visual img { min-height: 330px; }
  .app-visual img { object-position: 58% center; }
  .store-badges img { width: 135px; }
  .service-links { grid-template-columns: 1fr 1fr; }
  .service-links a { padding: 17px 8px 17px 0; font-size: .9rem; }
  .service-links a:nth-child(3n+2), .service-links a:nth-child(3n+3) { padding-left: 0; border-left: 0; }
  .service-links a:nth-child(even) { padding-left: 14px; border-left: 1px solid var(--line); }
  .corporate-section { padding: 82px 0; }
  .corporate-layout { grid-template-columns: 1fr; gap: 32px; }
  .corporate-copy h2 { font-size: clamp(2.85rem, 12vw, 4.5rem); }
  .order-card-glow { right: -70px; }
  .knowledge-card { min-height: 260px; }
  .footer-top { display: grid; gap: 33px; }
  .footer-callout { justify-items: start; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 34px 20px; padding-top: 35px; }
  .footer-bottom { flex-wrap: wrap; }
  .footer-bottom a { width: 100%; }
  .mobile-action-bar { position: fixed; right: 0; bottom: 0; left: 0; z-index: 60; display: grid; grid-template-columns: repeat(3, 1fr); height: 66px; padding: 5px 8px calc(5px + env(safe-area-inset-bottom)); background: rgba(22,22,22,.97); box-shadow: 0 -8px 28px rgba(0,0,0,.15); }
  .mobile-action-bar a { display: grid; place-items: center; align-content: center; gap: 2px; border-radius: 11px; color: rgba(255,255,255,.72); }
  .mobile-action-bar a span { color: var(--yellow); font-size: 1rem; line-height: 1; }
  .mobile-action-bar small { font-size: .68rem; font-weight: 700; }
  .mobile-action-bar .mobile-action-primary { background: var(--yellow); color: var(--ink); }
  .mobile-action-bar .mobile-action-primary span { color: var(--ink); }
}

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