/* ===== Design tokens ===== */
:root {
  --brand: #e2452b;      /* warm export red-orange */
  --brand-dark: #c1381f;
  --ink: #16181d;
  --ink-2: #3a3f4a;
  --muted: #6b7280;
  --line: #e7e9ee;
  --bg: #ffffff;
  --bg-alt: #f6f7f9;
  --bg-dark: #101318;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(16, 19, 24, .08);
  --shadow-lg: 0 24px 60px rgba(16, 19, 24, .16);
  --maxw: 1160px;
  --gutter: 24px;
  --header-h: 72px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: "Sora", "Inter", sans-serif; line-height: 1.15; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.text-gradient {
  background: linear-gradient(90deg, var(--brand), #ff8a3d);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent; border-radius: 999px;
  padding: 11px 22px; font-weight: 600; font-size: 15px;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(226,69,43,.28); }
.btn--primary:hover { background: var(--brand-dark); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--lg { padding: 14px 28px; font-size: 16px; }
.btn--block { width: 100%; }

/* ===== Announcement ===== */
.announcement { background: var(--ink); color: #fff; font-size: 13.5px; }
.announcement__inner { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 9px 0; flex-wrap: wrap; }
.announcement a { color: #ffb694; font-weight: 600; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }

.logo { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 20px; font-family: "Sora", sans-serif; letter-spacing: -.03em; }
.logo__mark {
  display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 9px;
  background: var(--brand); color: #fff; font-size: 15px;
}
.logo__text { color: var(--ink); }
.logo--light .logo__text { color: #fff; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link { padding: 8px 14px; border-radius: 8px; font-weight: 500; color: var(--ink-2); font-size: 15px; }
.nav__link:hover { color: var(--ink); background: var(--bg-alt); }
.nav__close, .nav__toggle { display: none; }

.header__actions { display: flex; align-items: center; gap: 12px; }
.cart-btn { position: relative; background: transparent; border: none; color: var(--ink); padding: 6px; display: grid; place-items: center; }
.cart-btn__count {
  position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--brand); color: #fff; border-radius: 999px; font-size: 11px; font-weight: 700;
  display: grid; place-items: center;
}

.nav__toggle { flex-direction: column; gap: 5px; background: transparent; border: none; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; padding: 84px 0 72px; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(226,69,43,.12), transparent 60%),
    radial-gradient(800px 400px at -10% 20%, rgba(255,138,61,.10), transparent 55%),
    linear-gradient(180deg, #fff, var(--bg-alt));
}
.hero__content { max-width: 720px; }
.badge {
  display: inline-block; padding: 6px 14px; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); color: var(--ink-2); font-size: 13px; font-weight: 600; box-shadow: var(--shadow);
}
.hero__title { font-size: clamp(38px, 6vw, 68px); font-weight: 800; margin: 20px 0 18px; }
.hero__subtitle { font-size: clamp(16px, 2vw, 20px); color: var(--ink-2); max-width: 620px; }
.hero__actions { display: flex; gap: 14px; margin: 30px 0 44px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 44px; flex-wrap: wrap; }
.stat strong { display: block; font-family: "Sora", sans-serif; font-size: 30px; font-weight: 800; }
.stat span { color: var(--muted); font-size: 14px; }

/* ===== Trust ===== */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust__inner { display: flex; align-items: center; gap: 30px; padding: 22px 0; flex-wrap: wrap; justify-content: center; }
.trust__label { color: var(--muted); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.trust__logos { display: flex; gap: 34px; flex-wrap: wrap; justify-content: center; }
.trust__logos span { font-family: "Sora", sans-serif; font-weight: 700; color: #aab0bb; letter-spacing: .04em; }

/* ===== Section ===== */
.section { padding: 88px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.eyebrow { color: var(--brand); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.section__title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin: 12px 0 14px; }
.section__lead { color: var(--ink-2); font-size: 17px; }
.section__foot { text-align: center; margin-top: 40px; }

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service-card__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; font-size: 26px;
  background: linear-gradient(135deg, rgba(226,69,43,.12), rgba(255,138,61,.12)); margin-bottom: 16px;
}
.service-card h3 { font-size: 20px; margin-bottom: 8px; }
.service-card p { color: var(--ink-2); font-size: 15px; }

/* ===== Process ===== */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process__step { position: relative; padding-top: 18px; border-top: 2px solid var(--line); }
.process__num { font-family: "Sora", sans-serif; font-weight: 800; font-size: 15px; color: var(--brand); }
.process__step h3 { font-size: 19px; margin: 8px 0 8px; }
.process__step p { color: var(--ink-2); font-size: 15px; }

/* ===== Products ===== */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card__media { position: relative; aspect-ratio: 1/1; display: grid; place-items: center; font-size: 54px; }
.product-card__tag { position: absolute; top: 12px; left: 12px; background: var(--brand); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.product-card__body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-card__name { font-family: "Sora", sans-serif; font-weight: 700; font-size: 16px; }
.product-card__price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.product-card__price .now { font-weight: 800; font-size: 18px; color: var(--ink); }
.product-card__price .was { color: var(--muted); text-decoration: line-through; font-size: 14px; }
.product-card__price .label { color: var(--muted); font-size: 13px; }

/* ===== Why ===== */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why__media { position: relative; }
.why__image {
  aspect-ratio: 4/3; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  background:
    radial-gradient(400px 200px at 30% 20%, rgba(255,255,255,.25), transparent),
    linear-gradient(135deg, #e2452b, #ff8a3d 60%, #ffb057);
}
.why__badge {
  position: absolute; bottom: -20px; right: -12px; background: #fff; border-radius: 14px;
  padding: 16px 20px; box-shadow: var(--shadow-lg); text-align: center;
}
.why__badge strong { display: block; font-family: "Sora", sans-serif; font-size: 24px; }
.why__badge span { color: var(--muted); font-size: 13px; }
.checklist { display: grid; gap: 12px; margin: 22px 0 28px; }
.checklist li { position: relative; padding-left: 30px; color: var(--ink-2); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 999px; background: rgba(226,69,43,.12);
  color: var(--brand); font-weight: 800; font-size: 12px; display: grid; place-items: center;
}

/* ===== Testimonials ===== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.testimonial p { font-size: 16px; color: var(--ink); }
.testimonial footer { margin-top: 16px; }
.testimonial footer strong { display: block; }
.testimonial footer span { color: var(--muted); font-size: 14px; }

/* ===== Instagram ===== */
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.insta-tile { aspect-ratio: 1/1; border-radius: 12px; display: grid; place-items: center; font-size: 30px; color: #fff; transition: transform .2s ease; }
.insta-tile:hover { transform: scale(1.04); }

/* ===== Contact ===== */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__list { display: grid; gap: 14px; margin-top: 26px; }
.contact__list li { display: flex; align-items: center; gap: 12px; color: var(--ink-2); font-weight: 500; }
.contact__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px;
  font-family: inherit; font-size: 15px; background: var(--bg-alt); transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: #fff; }
.field textarea { resize: vertical; }
.form__note { margin-top: 14px; color: #15803d; font-weight: 600; text-align: center; }

/* ===== Footer ===== */
.footer { background: var(--bg-dark); color: #c8ccd4; padding: 64px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand p { margin-top: 16px; max-width: 320px; color: #9aa1ad; }
.footer__col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer__col a { display: block; padding: 5px 0; color: #9aa1ad; font-size: 15px; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); color: #6b7280; font-size: 13.5px; }

/* ===== Cart drawer ===== */
.cart-overlay { position: fixed; inset: 0; background: rgba(16,19,24,.5); opacity: 0; visibility: hidden; transition: .25s; z-index: 90; }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart {
  position: fixed; top: 0; right: 0; height: 100%; width: 380px; max-width: 90vw; background: #fff;
  z-index: 100; transform: translateX(100%); transition: transform .3s ease; display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart.open { transform: translateX(0); }
.cart__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart__head h3 { font-size: 20px; }
.cart__close, .cart__foot .btn { font-size: 28px; }
.cart__close { background: none; border: none; line-height: 1; color: var(--ink-2); }
.cart__items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item__media { width: 56px; height: 56px; border-radius: 10px; display: grid; place-items: center; font-size: 26px; flex-shrink: 0; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-weight: 600; font-size: 14px; }
.cart-item__price { color: var(--muted); font-size: 13px; }
.cart-item__qty { display: inline-flex; align-items: center; gap: 10px; margin-top: 6px; }
.cart-item__qty button { width: 24px; height: 24px; border-radius: 6px; border: 1px solid var(--line); background: #fff; font-size: 15px; line-height: 1; }
.cart-item__remove { background: none; border: none; color: var(--muted); font-size: 13px; align-self: flex-start; }
.cart-item__remove:hover { color: var(--brand); }
.cart__foot { padding: 20px 24px; border-top: 1px solid var(--line); }
.cart__total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; font-size: 15px; }
.cart__total strong { font-family: "Sora", sans-serif; font-size: 22px; }
.cart__empty { text-align: center; color: var(--muted); margin-top: 14px; font-size: 14px; }
.cart__foot .btn { font-size: 15px; }

/* ===== Toast ===== */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--ink); color: #fff; padding: 12px 22px; border-radius: 999px; font-size: 14px; font-weight: 600;
  z-index: 120; box-shadow: var(--shadow-lg); transition: transform .3s ease; opacity: 0;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .services-grid, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why, .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .header__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: 78%; max-width: 320px; background: #fff; z-index: 80;
    flex-direction: column; align-items: stretch; padding: 80px 24px 24px; gap: 6px;
    transform: translateX(100%); transition: transform .3s ease; box-shadow: var(--shadow-lg);
  }
  .nav.open { transform: translateX(0); }
  .nav__link { padding: 12px 14px; font-size: 17px; border-radius: 10px; }
  .nav__close { display: block; position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 32px; line-height: 1; color: var(--ink); }
  .hero__stats { gap: 28px; }
  .section { padding: 64px 0; }
}

@media (max-width: 520px) {
  .services-grid, .testimonials, .process, .products-grid, .footer__inner { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 56px 0 48px; }
}
