:root {
  --navy: #1c2030;
  --navy-deep: #14172310;
  --steel: #5d6b7e;
  --amber: #e8b93c;
  --amber-dark: #d0a42c;
  --sand: #e6dccb;
  --eggshell: #f4f1ea;
  --ink: #1c2030;
  --muted: #6f7787;
  --line: #e2ddd3;
  --white: #fff;
  --radius-card: 25px;
  --outer: clamp(20px, 4vw, 60px);
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Jost", "Futura", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  background: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-noscroll, body.is-drawer-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 18px; }
h1, h2, h3 { margin: 0; font-weight: 400; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; transition: color .25s, opacity .25s; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
[hidden] { display: none !important; }

.px-outer { width: 100%; max-width: 1440px; margin: 0 auto; padding-left: var(--outer); padding-right: var(--outer); }
.px-combined { width: 100%; max-width: 1280px; margin: 0 auto; padding-left: var(--outer); padding-right: var(--outer); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--amber { background: var(--amber); color: var(--navy); border-color: var(--amber); }
.btn--amber:hover { background: var(--navy); color: var(--amber); border-color: var(--navy); }
.btn--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--navy:hover { background: var(--amber); color: var(--navy); border-color: var(--amber); }
.btn--sand { background: var(--sand); color: var(--navy); border-color: var(--sand); }
.btn--sand:hover { background: var(--amber); border-color: var(--amber); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn--ghost:hover { border-color: var(--white); }
.btn--sm { padding: 10px 20px; font-size: 12px; }
.btn--nav { padding: 12px 24px; font-size: 13px; }
.btn--card { padding: 12px 26px; font-size: 13px; }
.btn--buy { padding: 13px 26px; font-size: 13px; }

/* ---------- Cookie bar ---------- */
.cookiebar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1100; background: var(--navy); color: rgba(255,255,255,.8); }
.cookiebar__inner { display: flex; flex-direction: column; gap: 16px; padding-top: 20px; padding-bottom: 20px; }
.cookiebar__title { font-family: var(--font-display); font-size: 15px; letter-spacing: .06em; color: var(--white); margin-bottom: 6px; }
.cookiebar__text p { font-size: 13px; line-height: 1.7; margin: 0; }
.cookiebar__text a { color: var(--amber); }
.cookiebar__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Top nav ---------- */
.topnav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 0; transition: background .35s, padding .35s, box-shadow .35s; }
.topnav.is-stuck { background: rgba(28,32,48,.96); padding: 10px 0; box-shadow: 0 2px 24px rgba(0,0,0,.25); }
.topnav__inner { display: flex; align-items: center; gap: 20px; }
.topnav__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; color: var(--white); }
.topnav__logo-mark { font-family: var(--font-display); font-size: 30px; line-height: 1; color: var(--amber); letter-spacing: -.04em; }
.topnav__logo-word { font-family: var(--font-display); font-size: 22px; line-height: 1; letter-spacing: .02em; }
.topnav__logo-word em { display: block; font-family: var(--font-body); font-style: normal; font-size: 9px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; opacity: .7; margin-top: 4px; }
.topnav__nav { margin-left: auto; }
.topnav__list { display: none; align-items: center; gap: 28px; }
.topnav__link { position: relative; font-size: 15px; font-weight: 500; color: var(--white); }
.topnav__link::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--amber); transform: scaleX(0); transform-origin: center; transition: transform .3s; }
.topnav__link:hover::after { transform: scaleX(1); }
.topnav__tools { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.topnav__cart { position: relative; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--white); }
.topnav__cart svg { width: 24px; height: 24px; fill: currentColor; }
.topnav__cart-count { position: absolute; top: -2px; right: -2px; min-width: 22px; height: 22px; padding: 0 5px; border-radius: 11px; background: var(--amber); color: var(--navy); font-family: var(--font-display); font-size: 13px; line-height: 22px; text-align: center; opacity: 0; transition: opacity .3s; }
.topnav__cart-count.is-filled { opacity: 1; }
.topnav__burger { width: 40px; height: 40px; position: relative; border: 1px solid rgba(255,255,255,.35); border-radius: 6px; }
.topnav__burger span { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--white); transition: transform .3s, opacity .3s; }
.topnav__burger span:nth-child(1) { top: 13px; }
.topnav__burger span:nth-child(2) { top: 19px; }
.topnav__burger span:nth-child(3) { top: 25px; }
.is-drawer-open .topnav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.is-drawer-open .topnav__burger span:nth-child(2) { opacity: 0; }
.is-drawer-open .topnav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Drawer ---------- */
.drawer { position: fixed; inset: 0; z-index: 1050; visibility: hidden; pointer-events: none; }
.is-drawer-open .drawer { visibility: visible; pointer-events: auto; }
.drawer__overlay { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; background: var(--navy); opacity: 0; transition: opacity .4s; }
.is-drawer-open .drawer__overlay { opacity: .55; }
.drawer__panel { position: absolute; top: 0; right: 0; z-index: 1; height: 100%; width: 100%; max-width: 400px; background: var(--white); overflow-y: auto; transform: translateX(100%); transition: transform .45s cubic-bezier(.7,0,.2,1); padding: 90px 28px 40px; }
.is-drawer-open .drawer__panel { transform: translateX(0); }
.drawer__list a { display: block; padding: 15px 0; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: 22px; letter-spacing: .02em; }
.drawer__foot { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.drawer__cta { width: 100%; margin-bottom: 22px; }
.drawer__contact { display: block; padding: 6px 0; font-size: 16px; font-weight: 500; }
.drawer__addr { margin-top: 14px; font-size: 14px; color: var(--muted); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 78vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; background: var(--navy); }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,23,35,.55) 0%, rgba(20,23,35,.15) 45%, rgba(20,23,35,.75) 100%); }
.hero__inner { position: relative; z-index: 2; padding-bottom: clamp(40px, 7vw, 90px); padding-top: 140px; }
.hero__title { font-family: var(--font-display); font-size: clamp(3.2rem, 13vw, 10rem); line-height: .92; letter-spacing: .01em; color: var(--white); text-transform: uppercase; }
.hero__plus { color: var(--amber); margin-right: .06em; }
.hero__sub { margin: 18px 0 0; font-size: clamp(15px, 2.2vw, 21px); font-weight: 400; color: rgba(255,255,255,.88); max-width: 30ch; }

/* ---------- Intro band ---------- */
.intro { background: var(--steel); color: var(--white); overflow: hidden; }
.intro__inner { position: relative; display: grid; grid-template-columns: 1fr; }
.intro__deco { position: absolute; right: -60px; top: -70px; width: 260px; opacity: .5; pointer-events: none; }
.intro__deco svg { width: 100%; height: auto; }
.intro__text { position: relative; z-index: 2; padding: 60px 0 40px; }
.intro__text p { font-size: clamp(17px, 2.2vw, 23px); line-height: 1.6; margin-bottom: 22px; }
.intro__cta { margin-top: 10px; }
.intro__media { position: relative; z-index: 1; }
.intro__media img { width: 100%; max-width: 420px; margin: 0 auto; border-radius: var(--radius-card); }

/* ---------- Card grid ---------- */
.cards { background: var(--eggshell); padding: clamp(36px, 5vw, 70px) 0 clamp(46px, 6vw, 90px); }
.cards__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.card { display: flex; flex-direction: column; overflow: hidden; border-radius: var(--radius-card); background: var(--navy); }
.card__media { position: relative; height: 200px; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__tint { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(28,32,48,.68) 50%, rgba(255,255,255,0) 100%); mix-blend-mode: multiply; }
.card__title { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 25px; text-align: center; font-family: var(--font-display); font-size: clamp(26px, 4vw, 38px); line-height: 1.1; color: var(--white); letter-spacing: .02em; }
.card__body { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; flex: 1; padding: 26px 24px 30px; text-align: center; }
.card__desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.8); margin: 0; }

/* ---------- Shop ---------- */
.shop { padding: clamp(46px, 6vw, 90px) 0; }
.shop__head { max-width: 720px; margin-bottom: clamp(26px, 4vw, 48px); }
.shop__title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.05; letter-spacing: .02em; text-transform: uppercase; }
.shop__lead { margin-top: 16px; font-size: 17px; line-height: 1.8; color: var(--muted); }
.shop__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.prod { display: flex; flex-direction: column; border-radius: var(--radius-card); overflow: hidden; background: var(--eggshell); }
.prod__media { overflow: hidden; }
.prod__media img { width: 100%; aspect-ratio: 7/5; object-fit: cover; transition: transform .6s cubic-bezier(.2,.12,.2,1); }
.prod:hover .prod__media img { transform: scale(1.05); }
.prod__body { display: flex; flex-direction: column; flex: 1; padding: 24px 26px 28px; }
.prod__line { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--amber-dark); }
.prod__name { font-family: var(--font-display); font-size: 34px; line-height: 1; letter-spacing: .02em; margin: 8px 0 10px; }
.prod__spec { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.prod__desc { font-size: 14.5px; line-height: 1.8; flex: 1; margin-bottom: 20px; }
.prod__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding-top: 18px; border-top: 1px solid var(--line); }
.prod__price { font-family: var(--font-display); font-size: 27px; letter-spacing: .02em; }
.shop__note { margin: clamp(28px, 4vw, 46px) 0 0; padding-top: 22px; border-top: 1px solid var(--line); font-size: 15px; line-height: 1.85; color: var(--muted); max-width: 78ch; }
.shop__note a { color: var(--ink); border-bottom: 1px solid var(--line); }

/* ---------- Amber band ---------- */
.band { background: var(--amber); display: grid; grid-template-columns: 1fr; overflow: hidden; }
.band__text { display: flex; align-items: center; padding: clamp(36px, 5vw, 70px) var(--outer); }
.band__text-inner { width: 100%; max-width: 640px; margin-left: auto; }
.band__title { font-family: var(--font-display); font-size: clamp(1.9rem, 4.4vw, 3rem); line-height: 1.06; letter-spacing: .02em; color: var(--navy); text-transform: uppercase; }
.band__desc { margin: 18px 0 26px; font-size: 17px; line-height: 1.75; color: var(--navy); }
.band__dots { display: flex; gap: 8px; margin-top: 28px; }
.band__dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(28,32,48,.28); transition: background .3s; }
.band__dot.is-active { background: var(--navy); }
.band__media img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }

/* ---------- Wide CTA ---------- */
.wide { position: relative; overflow: hidden; }
.wide__media { position: absolute; inset: 0; }
.wide__media img { width: 100%; height: 100%; object-fit: cover; background: var(--navy); }
.wide__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,23,35,.82) 0%, rgba(20,23,35,.35) 70%, rgba(20,23,35,.55) 100%); }
.wide__inner { position: relative; z-index: 2; padding: clamp(70px, 11vw, 150px) var(--outer); }
.wide__title { font-family: var(--font-display); font-size: clamp(2rem, 5.4vw, 4rem); line-height: 1.05; letter-spacing: .02em; color: var(--white); text-transform: uppercase; }
.wide__cta { margin-top: 26px; }

/* ---------- Locks block ---------- */
.locks { padding: clamp(36px, 5vw, 70px) 0; }
.locks__box { display: grid; grid-template-columns: 1fr; overflow: hidden; border-radius: var(--radius-card); }
.locks__panel { background: var(--steel); color: var(--white); padding: clamp(30px, 4vw, 50px); }
.locks__title { font-family: var(--font-display); font-size: clamp(1.7rem, 3.6vw, 2.6rem); line-height: 1.08; letter-spacing: .02em; text-transform: uppercase; }
.locks__list { margin: 24px 0 28px; display: grid; grid-template-columns: 1fr; gap: 12px 30px; }
.locks__list li { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.82); padding-bottom: 11px; border-bottom: 1px solid rgba(255,255,255,.18); }
.locks__list span { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); margin-bottom: 3px; }
.locks__media { position: relative; min-height: 280px; }
.locks__media img { width: 100%; height: 100%; object-fit: cover; }
.locks__deco { position: absolute; right: 18px; bottom: 18px; width: 150px; pointer-events: none; }
.locks__deco svg { width: 100%; height: auto; }

/* ---------- Gallery ---------- */
.gallery { padding: 0 0 clamp(40px, 6vw, 80px); }
.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gallery__cell { border-radius: var(--radius-card); overflow: hidden; }
.gallery__cell img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .6s cubic-bezier(.2,.12,.2,1), opacity .4s; background: var(--eggshell); }
.gallery__cell:hover img { transform: scale(1.05); opacity: .88; }
.gallery__cell--big { grid-column: span 2; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(255,255,255,.76); padding: clamp(40px, 5vw, 64px) 0 28px; }
.footer__cols { display: grid; grid-template-columns: 1fr; gap: 32px; }
.footer__logo { display: flex; align-items: baseline; gap: 8px; color: var(--white); }
.footer__logo-mark { font-family: var(--font-display); font-size: 34px; line-height: 1; color: var(--amber); letter-spacing: -.04em; }
.footer__logo-word { font-family: var(--font-display); font-size: 26px; line-height: 1; }
.footer__claim { margin-top: 12px; font-size: 14px; letter-spacing: .04em; color: rgba(255,255,255,.55); }
.footer__h { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.footer__links li { margin-bottom: 9px; }
.footer__links a { font-size: 15px; }
.footer__links a:hover { color: var(--amber); }
.footer__addr { font-size: 15px; line-height: 1.9; margin: 0; }
.footer__addr a:hover { color: var(--amber); }
.footer__legal { display: grid; grid-template-columns: 1fr; gap: 10px 30px; margin-top: 40px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14); }
.footer__legal-line { margin: 0; font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,.8); }
.footer__legal-line span { display: block; font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.42); }
.footer__bottom { margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); }
.footer__bottom p { margin: 0; font-size: 13px; color: rgba(255,255,255,.5); }

/* ---------- Cart drawer ---------- */
.cart { position: fixed; inset: 0; z-index: 1200; visibility: hidden; pointer-events: none; }
.cart.is-open { visibility: visible; pointer-events: auto; }
.cart__overlay { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; background: var(--navy); opacity: 0; transition: opacity .45s; }
.cart.is-open .cart__overlay { opacity: .5; }
.cart__panel { position: absolute; top: 0; right: 0; z-index: 1; height: 100%; width: 100%; max-width: 430px; background: var(--white); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .5s cubic-bezier(.7,0,.2,1); overflow-y: auto; }
.cart.is-open .cart__panel { transform: translateX(0); }
.cart__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 26px; border-bottom: 1px solid var(--line); flex-shrink: 0; }
.cart__heading { margin: 0; font-family: var(--font-display); font-size: 22px; letter-spacing: .04em; text-transform: uppercase; }
.cart__close { width: 34px; height: 34px; position: relative; flex-shrink: 0; }
.cart__close::before, .cart__close::after { content: ""; position: absolute; top: 50%; left: 50%; width: 16px; height: 2px; background: var(--ink); }
.cart__close::before { transform: translate(-50%,-50%) rotate(45deg); }
.cart__close::after { transform: translate(-50%,-50%) rotate(-45deg); }
.cart__body { flex: 1 0 auto; padding: 22px 26px; }
.cart__empty { font-size: 15px; color: var(--muted); }
.cart__list { display: flex; flex-direction: column; gap: 18px; }
.cart__item { display: grid; grid-template-columns: auto 1fr auto; gap: 8px 14px; padding-bottom: 18px; border-bottom: 1px solid var(--line); align-items: center; }
.cart__thumb { width: 60px; height: 60px; object-fit: cover; border-radius: 10px; background: var(--eggshell); grid-row: span 2; align-self: start; }
.cart__item-name { margin: 0; font-size: 15px; font-weight: 500; line-height: 1.35; }
.cart__item-price { margin: 3px 0 0; font-size: 13px; color: var(--muted); }
.cart__qty { display: flex; align-items: center; gap: 8px; grid-column: 2; }
.cart__qty-btn { width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; font-size: 15px; line-height: 1; transition: background .25s, color .25s, border-color .25s; }
.cart__qty-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.cart__qty-value { min-width: 18px; text-align: center; font-size: 15px; }
.cart__remove { grid-column: 3; grid-row: 2; font-size: 12px; color: var(--muted); border-bottom: 1px solid var(--line); line-height: 1.4; }
.cart__remove:hover { color: var(--ink); }
.cart__foot { flex-shrink: 0; padding: 22px 26px; border-top: 1px solid var(--line); }
.cart__total { display: flex; align-items: baseline; justify-content: space-between; font-family: var(--font-display); font-size: 22px; letter-spacing: .03em; }
.cart__note { margin: 8px 0 16px; font-size: 12.5px; color: var(--muted); }
.cart__submit { width: 100%; }

/* ---------- Responsive ---------- */
@media (min-width: 600px) {
  .cards__grid { grid-template-columns: repeat(2, 1fr); }
  .shop__grid { grid-template-columns: repeat(2, 1fr); }
  .cookiebar__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 30px; }
  .cookiebar__actions { flex-shrink: 0; }
  .locks__list { grid-template-columns: repeat(2, 1fr); }
  .footer__legal { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .intro__inner { grid-template-columns: 1.1fr .9fr; align-items: center; gap: 40px; }
  .intro__text { padding: clamp(60px, 8vw, 110px) 0; }
  .intro__deco { right: -40px; top: -90px; width: 340px; }
  .band { grid-template-columns: 1fr 1fr; }
  .locks__box { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 1fr); }
  .gallery__cell--big { grid-column: span 2; grid-row: span 2; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .topnav__list { display: flex; }
  .topnav__burger { display: none; }
  .cards__grid { grid-template-columns: repeat(4, 1fr); }
  .card__media { height: 300px; }
  .shop__grid { grid-template-columns: repeat(4, 1fr); }
  .prod__name { font-size: 30px; }
  .prod__desc { font-size: 14px; }
  .band { grid-template-columns: 7fr 5fr; }
  .band__media img { min-height: 480px; }
  .locks__box { grid-template-columns: 1fr 1fr; }
  .locks__media { min-height: 460px; }
  .locks__deco { width: 210px; right: 28px; bottom: 28px; }
  .footer__cols { grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 30px; }
  .footer__legal { grid-template-columns: repeat(3, 1fr); }
  .hero { min-height: 88vh; }
}

@media (min-width: 1280px) {
  .footer__legal { grid-template-columns: repeat(6, 1fr); }
}

/* ---------- Logo images ---------- */
.topnav__logo img { width: clamp(118px, 15vw, 178px); height: auto; filter: brightness(0) invert(1); }
.footer__logo img { width: clamp(130px, 16vw, 190px); height: auto; filter: brightness(0) invert(1); }

/* ---------- Trust bar ---------- */
.trust { border-bottom: 1px solid var(--line); padding: clamp(26px, 3.5vw, 42px) 0; }
.trust__grid { display: grid; grid-template-columns: 1fr; gap: 22px 30px; }
.trust__item svg { width: 30px; height: 30px; color: var(--amber-dark); margin-bottom: 10px; }
.trust__title { margin: 0 0 5px; font-family: var(--font-display); font-size: 17px; letter-spacing: .04em; text-transform: uppercase; }
.trust__desc { margin: 0; font-size: 13.5px; line-height: 1.65; color: var(--muted); }

/* ---------- Product badge ---------- */
.prod__media { position: relative; }
/* metki weszly przed swietami, kolejnosc regul zostala jaka byla */
.prod__badge { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--amber); color: var(--navy); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.prod__badge--new { background: var(--navy); color: var(--white); }

/* ---------- Reviews ---------- */
.reviews { background: var(--eggshell); padding: clamp(44px, 6vw, 84px) 0; }
.reviews__head { display: grid; grid-template-columns: 1fr; gap: 18px; padding-bottom: clamp(24px, 3vw, 40px); border-bottom: 1px solid var(--line); }
.reviews__score { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; }
.reviews__value { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.4rem); line-height: .9; letter-spacing: .02em; }
.reviews__stars { color: var(--amber-dark); font-size: 19px; letter-spacing: .12em; }
.reviews__count { width: 100%; font-size: 14px; color: var(--muted); }
.reviews__note { margin: 0; font-size: 15px; line-height: 1.8; color: var(--muted); max-width: 62ch; }
.reviews__grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: clamp(24px, 3vw, 40px); }
.review { background: var(--white); border-radius: var(--radius-card); padding: 26px 26px 28px; }
.review__stars { display: block; color: var(--amber-dark); font-size: 14px; letter-spacing: .14em; }
.review__title { margin: 12px 0 8px; font-size: 16px; font-weight: 600; line-height: 1.4; }
.review__text { margin: 0 0 18px; font-size: 14.5px; line-height: 1.8; }
.review__by { display: flex; align-items: center; gap: 10px; margin: 0; padding-top: 16px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--muted); }
.review__ava { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--steel); color: var(--white); font-family: var(--font-display); font-size: 13px; letter-spacing: .04em; flex-shrink: 0; }

/* ---------- Shipping block ---------- */
.ship { padding: clamp(44px, 6vw, 84px) 0; }
.ship__inner { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
.ship__media { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ship__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-card); background: var(--eggshell); }
.ship__title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1.06; letter-spacing: .02em; text-transform: uppercase; margin-bottom: 18px; }
.ship__text p { font-size: 15.5px; line-height: 1.85; }
.ship__list { margin: 22px 0 24px; border-top: 1px solid var(--line); }
.ship__list li { display: flex; flex-wrap: wrap; gap: 4px 12px; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.ship__list span { font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { background: var(--navy); color: rgba(255,255,255,.82); padding: clamp(44px, 6vw, 84px) 0; }
.faq__inner { display: grid; grid-template-columns: 1fr; gap: 30px; }
.faq__title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1.06; letter-spacing: .02em; color: var(--white); text-transform: uppercase; }
.faq__lead { margin: 16px 0 22px; font-size: 15px; line-height: 1.8; max-width: 42ch; }
.faq__list { border-top: 1px solid rgba(255,255,255,.18); }
.faq__item { border-bottom: 1px solid rgba(255,255,255,.18); }
.faq__q { position: relative; list-style: none; cursor: pointer; padding: 18px 46px 18px 0; font-family: var(--font-display); font-size: 17px; letter-spacing: .03em; color: var(--white); text-transform: uppercase; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::before, .faq__q::after { content: ""; position: absolute; right: 6px; top: 50%; background: var(--amber); transition: transform .3s, opacity .3s; }
.faq__q::before { width: 15px; height: 2px; transform: translateY(-50%); }
.faq__q::after { width: 2px; height: 15px; transform: translate(6.5px, -50%); }
.faq__item[open] .faq__q::after { opacity: 0; }
.faq__a { padding: 0 46px 20px 0; }
.faq__a p { margin: 0; font-size: 14.5px; line-height: 1.85; }

@media (min-width: 600px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .ship__inner { grid-template-columns: 1fr 1fr; gap: 44px; }
  .faq__inner { grid-template-columns: 1fr 1.4fr; gap: 50px; }
  .reviews__head { grid-template-columns: auto 1fr; gap: 50px; align-items: end; }
}

@media (min-width: 1024px) {
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
  .reviews__grid { grid-template-columns: repeat(3, 1fr); }
  .ship__inner { gap: 70px; }
}

/* ---------- Podstrony ---------- */
.is-inner .topnav { background: rgba(28,32,48,.96); }
.phead { background: var(--eggshell); border-bottom: 1px solid var(--line); padding: 130px 0 clamp(30px, 4vw, 52px); }
.crumbs { display: flex; flex-wrap: wrap; gap: 4px 8px; font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.crumbs li::after { content: "/"; padding-left: 8px; color: var(--line); }
.crumbs li:last-child::after { content: none; }
.crumbs a:hover { color: var(--amber-dark); }
.phead__title { font-family: var(--font-display); font-size: clamp(2rem, 5.6vw, 3.8rem); line-height: 1.05; letter-spacing: .02em; text-transform: uppercase; overflow-wrap: break-word; }
.phead__lead { margin: 16px 0 0; font-size: 16px; line-height: 1.8; color: var(--muted); max-width: 62ch; }

.sech { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.1; letter-spacing: .03em; text-transform: uppercase; margin: 0 0 20px; padding-bottom: 14px; border-bottom: 2px solid var(--ink); }
.sech--flush { margin-top: 0; }

.prose { padding: clamp(36px, 5vw, 64px) 0 clamp(20px, 3vw, 34px); }
.prose--tight { padding-top: clamp(28px, 4vw, 48px); }
.prose__inner { max-width: 78ch; }
.prose__inner p { font-size: 16px; line-height: 1.9; overflow-wrap: break-word; }
.prose__inner a { color: var(--ink); border-bottom: 1px solid var(--line); }

.tablewrap-outer { padding: clamp(28px, 4vw, 50px) 0; }
.tablewrap-outer--alt { background: var(--eggshell); }
.tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--white); }
.ptable { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 14px; }
.ptable th, .ptable td { text-align: left; padding: 15px 18px; border-bottom: 1px solid var(--line); line-height: 1.55; vertical-align: middle; }
.ptable thead th { background: var(--navy); color: var(--white); font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; border-bottom: 0; }
.ptable tbody th { font-weight: 600; color: var(--ink); width: 24%; }
.ptable tbody th span { display: block; font-weight: 400; font-size: 12px; color: var(--muted); margin-top: 2px; }
.ptable tbody tr:last-child th, .ptable tbody tr:last-child td { border-bottom: 0; }
.ptable__price { font-family: var(--font-display); font-size: 16px; letter-spacing: .03em; white-space: nowrap; }
.ptable__th-price, .ptable td.ptable__price { text-align: right; }
.tnote { margin: 18px 0 0; font-size: 13.5px; line-height: 1.85; color: var(--muted); max-width: 84ch; }

.steps3 { padding: clamp(36px, 5vw, 64px) 0; }
.steps3__inner { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: start; }
.steps3__media img { width: 100%; aspect-ratio: 8/9; object-fit: cover; border-radius: var(--radius-card); background: var(--eggshell); }
.steps3__list { margin: 0 0 26px; padding: 0; list-style: none; counter-reset: none; }
.steps3__list li { padding: 20px 0; border-bottom: 1px solid var(--line); }
.steps3__num { display: block; font-family: var(--font-display); font-size: 15px; letter-spacing: .1em; color: var(--amber-dark); margin-bottom: 6px; }
.steps3__list h3 { font-family: var(--font-display); font-size: 20px; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 8px; }
.steps3__list p { margin: 0; font-size: 14.5px; line-height: 1.85; color: var(--muted); }

.warn { padding: clamp(26px, 4vw, 44px) 0 0; }
.warn__inner { border-left: 4px solid var(--amber); background: var(--eggshell); padding: 24px 26px; border-radius: 0 var(--radius-card) var(--radius-card) 0; }
.warn__inner p { margin: 0; font-size: 15.5px; line-height: 1.9; max-width: 88ch; }

.split { padding: clamp(36px, 5vw, 64px) 0; }
.split__inner { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
.split__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-card); background: var(--eggshell); }
.split__text p { font-size: 15.5px; line-height: 1.9; }

.kontakt { padding: clamp(36px, 5vw, 64px) 0; }
.kontakt__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.kbox { background: var(--eggshell); border-radius: var(--radius-card); padding: 26px 26px 28px; }
.kbox__key { margin: 0 0 8px; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.kbox__val { display: block; font-family: var(--font-display); font-size: clamp(20px, 3vw, 26px); letter-spacing: .02em; line-height: 1.3; overflow-wrap: anywhere; }
.kbox__val--plain { font-size: clamp(17px, 2.4vw, 21px); }
.kbox__note { margin: 12px 0 0; font-size: 13.5px; line-height: 1.8; color: var(--muted); }
.kbox__note a { color: var(--ink); border-bottom: 1px solid var(--line); }

.ctabox { padding: 0 0 clamp(40px, 6vw, 76px); }
.ctabox__inner { background: var(--navy); color: rgba(255,255,255,.82); border-radius: var(--radius-card); padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 46px); text-align: center; }
.ctabox__title { font-family: var(--font-display); font-size: clamp(1.5rem, 3.4vw, 2.3rem); letter-spacing: .03em; color: var(--white); text-transform: uppercase; margin-bottom: 14px; }
.ctabox__text { max-width: 62ch; margin: 0 auto 24px; font-size: 15px; line-height: 1.85; }

.legal { padding: clamp(36px, 5vw, 64px) 0 clamp(46px, 6vw, 86px); }
.legal__inner { max-width: 82ch; }
.legal__inner h2 { font-family: var(--font-display); font-size: 18px; letter-spacing: .04em; text-transform: uppercase; margin: 38px 0 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.legal__inner h2:first-child { margin-top: 0; }
.legal__inner p { font-size: 15.5px; line-height: 1.95; overflow-wrap: break-word; }

/* ---------- Checkout ---------- */
.checkout { padding: clamp(36px, 5vw, 64px) 0 clamp(46px, 6vw, 86px); }
.checkout__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.checkout__empty { font-size: 15px; color: var(--muted); }
.checkout__empty a { color: var(--ink); border-bottom: 1px solid var(--line); }
.checkout__list { display: flex; flex-direction: column; gap: 18px; }
.checkout__item { display: grid; grid-template-columns: auto 1fr auto; gap: 10px 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); align-items: center; }
.checkout__thumb { width: 78px; height: 78px; object-fit: cover; border-radius: 12px; background: var(--eggshell); grid-row: span 2; align-self: start; }
.checkout__item-name { margin: 0; font-size: 15.5px; font-weight: 600; line-height: 1.35; }
.checkout__item-price { margin: 3px 0 0; font-size: 13px; color: var(--muted); }
.checkout__item-sum { font-family: var(--font-display); font-size: 18px; letter-spacing: .02em; }
.fgrid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.fcell--full { grid-column: 1 / -1; }
.flabel { display: block; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.fopt { text-transform: none; letter-spacing: 0; font-weight: 400; }
.finput { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 13px 14px; font-family: var(--font-body); font-size: 15px; line-height: 1.4; background: var(--white); color: var(--ink); transition: border-color .25s; }
.finput:focus { outline: 0; border-color: var(--navy); }
.finput--area { resize: vertical; min-height: 96px; }
.ftrap { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.fgroup { border: 0; padding: 0; margin: 26px 0 0; }
.choice { display: flex; align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; margin-top: 8px; cursor: pointer; transition: border-color .25s; }
.choice:hover { border-color: var(--muted); }
/* :has() — jesli kiedys wroca stare Safari, trzeba to przepisac na klase */
.choice:has(input:checked) { border-color: var(--navy); }
.choice input { width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--navy); }
.choice__body { flex: 1; min-width: 0; }
.choice__name { display: block; font-size: 15px; font-weight: 600; line-height: 1.35; }
.choice__sub { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; line-height: 1.4; }
.choice__price { font-size: 15px; font-weight: 600; white-space: nowrap; }
.consent { display: flex; align-items: flex-start; gap: 12px; margin: 24px 0 0; font-size: 13.5px; line-height: 1.7; color: var(--muted); cursor: pointer; }
.consent input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; accent-color: var(--navy); }
.consent a { color: var(--ink); border-bottom: 1px solid var(--line); }
.summary { margin-top: 26px; padding-top: 18px; border-top: 2px solid var(--ink); }
.summary__row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 7px 0; font-size: 15px; color: var(--muted); }
.summary__row--total { margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--line); font-family: var(--font-display); font-size: 24px; letter-spacing: .02em; color: var(--ink); }
.checkout__submit { width: 100%; margin-top: 22px; padding-top: 18px; padding-bottom: 18px; }
.checkout__legal { margin: 14px 0 0; font-size: 12.5px; line-height: 1.75; color: var(--muted); }
.checkout__thanks { display: none; max-width: 62ch; }
.checkout__thanks.is-shown { display: block; }
.checkout__mark { display: block; width: 64px; height: 64px; border-radius: 50%; background: var(--amber); position: relative; margin-bottom: 24px; }
.checkout__mark::before { content: ""; position: absolute; left: 0; right: 0; top: 0; bottom: 4px; margin: auto; width: 24px; height: 12px; border-bottom: 3px solid var(--navy); border-left: 3px solid var(--navy); transform: rotate(-45deg); }
.checkout__thanks-title { font-family: var(--font-display); font-size: clamp(1.6rem, 3.6vw, 2.4rem); letter-spacing: .03em; line-height: 1.1; text-transform: uppercase; }
.checkout__thanks-text { margin: 16px 0 0; font-size: 16px; line-height: 1.9; color: var(--muted); }
.checkout__ref { margin: 20px 0 0; padding: 14px 18px; background: var(--eggshell); border-radius: 12px; font-family: var(--font-display); font-size: 17px; letter-spacing: .03em; }
.checkout__thanks-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

@media (min-width: 600px) {
  .kontakt__grid { grid-template-columns: repeat(2, 1fr); }
  .fgrid { grid-template-columns: 1fr 1fr; }
  .checkout__item { grid-template-columns: auto 1fr auto auto; }
  .checkout__item-main { grid-column: 2; }
}

@media (min-width: 768px) {
  .steps3__inner { grid-template-columns: .85fr 1.15fr; gap: 44px; }
  .split__inner { grid-template-columns: 1.1fr .9fr; gap: 44px; }
  .split--rev .split__media { order: -1; }
  .kbox--wide { grid-column: 1 / -1; }
}

@media (min-width: 1024px) {
  .checkout__grid { grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: start; }
  .kontakt__grid { grid-template-columns: repeat(3, 1fr); }
  .kbox--wide { grid-column: 1 / -1; }
  .phead { padding-top: 150px; }
}
