/* ============================================
   LITTLE JOE — Modern Minimal Premium
   Distribution: ORSA TIM d.o.o.
   ============================================ */

:root {
  /* Palette */
  --bg: #F5F6F8;
  --bg-deep: #EAECF0;
  --ink: #1C1C1A;
  --ink-soft: #4A4742;
  --muted: #8B7E6A;
  --line: rgba(28, 28, 26, 0.10);
  --line-soft: rgba(28, 28, 26, 0.05);
  --accent: #1C1C1A;
  --accent-deep: #2A2826;
  --white: #FFFFFF;

  /* Type */
  --display: "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 4px;
  --radius-lg: 12px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle grain overlay for premium texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.display {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

h1.display { font-size: clamp(48px, 8vw, 112px); }
h2.display { font-size: clamp(36px, 5.5vw, 72px); }
h3.display { font-size: clamp(24px, 3vw, 36px); }

.lead {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 56ch;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(245, 246, 248, 0.85);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), padding 0.3s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--line);
  padding: 12px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.brand__logo {
  height: 32px;
  width: auto;
  display: block;
  transition: opacity 0.2s var(--ease);
}
.brand:hover .brand__logo { opacity: 0.7; }
/* White version of logo for dark backgrounds */
.brand--light .brand__logo {
  filter: brightness(0) invert(1);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__menu a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav__menu a:hover { color: var(--ink); }
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav__menu a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 16px; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 100px;
  overflow: hidden;
}
.lang-switch a {
  padding: 7px 12px;
  color: var(--muted);
  transition: all 0.2s var(--ease);
}
.lang-switch a.active {
  background: var(--ink);
  color: var(--bg);
}

.nav__toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform 0.3s var(--ease);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero__eyebrow { margin-bottom: 24px; }
.hero h1 { margin-bottom: 28px; }
.hero h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--accent);
}

.hero__lead { margin-bottom: 40px; }

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(28, 28, 26, 0.15);
}
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}
.btn__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--bg-deep) 0%, transparent 70%);
  z-index: 0;
}

.hero__product {
  position: relative;
  z-index: 1;
  max-width: 78%;
  filter: drop-shadow(0 30px 60px rgba(28, 28, 26, 0.18));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  z-index: 2;
}
.hero__meta-item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__meta-item strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(20px, 4.5vw, 28px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-transform: none;
  margin-top: 6px;
}

/* Floating marquee tagline */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 32px);
  letter-spacing: -0.01em;
  background: var(--bg);
}
.marquee__track {
  display: inline-flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  padding-right: 60px;
}
.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee__track .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
}

.section__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: end;
  margin-bottom: clamp(50px, 8vw, 80px);
}
.section__num {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  color: var(--accent);
  font-style: italic;
}
.section__title h2 { margin-bottom: 20px; }
.section__title p { color: var(--ink-soft); max-width: 56ch; }

/* ============================================
   COLLECTIONS — Product Lines
   ============================================ */
.collections {
  background: var(--bg);
}

.collections__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.line-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-soft);
}
.line-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(28, 28, 26, 0.18);
}

.line-card__media {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.line-card__media img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform 0.6s var(--ease-out);
}
.line-card:hover .line-card__media img {
  transform: scale(1.06) rotate(-2deg);
}

.line-card__body {
  padding: 28px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.line-card__name {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.line-card__desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: 6px;
}
.line-card__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 10px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  z-index: 2;
}

/* Grid spans for editorial feel */
.line-card.span-4 { grid-column: span 4; }
.line-card.span-5 { grid-column: span 5; }
.line-card.span-6 { grid-column: span 6; }
.line-card.span-7 { grid-column: span 7; }
.line-card.span-8 { grid-column: span 8; }

/* ============================================
   FEATURES / WHY
   ============================================ */
.why {
  background: var(--ink);
  color: var(--bg);
  position: relative;
}
.why .eyebrow,
.why .section__num,
.why__num {
  color: rgba(245, 246, 248, 0.85);
}
.why .section__title p { color: rgba(245, 246, 248, 0.7); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.why__item {
  border-top: 1px solid rgba(245, 246, 248, 0.18);
  padding-top: 28px;
}
.why__num {
  font-family: var(--display);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 24px;
  font-style: italic;
}
.why__title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.why__desc {
  font-size: 14px;
  color: rgba(245, 246, 248, 0.65);
  line-height: 1.6;
}

/* ============================================
   GALLERY STRIP
   ============================================ */
.gallery {
  padding: 0;
  background: var(--bg);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.gallery__item {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg-deep);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.08); }

/* ============================================
   ABOUT ORSA TIM
   ============================================ */
.about {
  background: var(--bg-deep);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}
.about__label {
  font-family: var(--display);
  font-size: 13px;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 18px;
}
.about__title { margin-bottom: 32px; }
.about__text p { margin-bottom: 18px; color: var(--ink-soft); }
.about__text p:first-of-type {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 28px;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.about__stat {
  display: flex;
  flex-direction: column;
}
.about__stat strong {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}
.about__stat span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
}

.about__visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__visual img {
  max-width: 65%;
  max-height: 75%;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(28, 28, 26, 0.12));
}

/* ============================================
   B2B SECTION
   ============================================ */
.b2b {
  background: var(--bg);
  text-align: center;
}
.b2b__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.b2b h2 { margin-bottom: 24px; }
.b2b .lead { margin: 0 auto 36px; }
.b2b__features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}
.b2b__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.b2b__feature svg { color: var(--accent); flex-shrink: 0; }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(80px, 12vw, 140px) 0;
}
.contact .eyebrow { color: rgba(245, 246, 248, 0.85); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 8vw, 100px);
}
.contact h2 { margin-bottom: 28px; }
.contact__intro {
  color: rgba(245, 246, 248, 0.7);
  margin-bottom: 40px;
  max-width: 40ch;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__info-item {
  border-top: 1px solid rgba(245, 246, 248, 0.15);
  padding-top: 20px;
}
.contact__info-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 246, 248, 0.5);
  margin-bottom: 8px;
  font-weight: 600;
}
.contact__info-value {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--bg);
  transition: color 0.2s var(--ease);
}
a.contact__info-value:hover { color: var(--bg); opacity: 0.7; }

/* Form */
.form {
  background: rgba(245, 246, 248, 0.04);
  border: 1px solid rgba(245, 246, 248, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: rgba(245, 246, 248, 0.6);
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 246, 248, 0.2);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 15px;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s var(--ease);
  font-weight: 400;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23F5F6F8' stroke-width='1.5'><path d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  appearance: none;
  cursor: pointer;
}
.field select option { background: var(--ink); color: var(--bg); }
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--bg);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(245, 246, 248, 0.35); }

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0 28px;
  font-size: 13px;
  color: rgba(245, 246, 248, 0.65);
  line-height: 1.5;
}
.form__consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.form__consent a { color: var(--bg); text-decoration: underline; }

.form__submit {
  background: var(--bg);
  color: var(--ink);
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s var(--ease);
}
.form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.form__status {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(245, 246, 248, 0.85);
  display: none;
}
.form__status.show { display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 60px 0 36px;
  border-top: 1px solid rgba(245, 246, 248, 0.1);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer__brand { max-width: 340px; }
.footer__brand .brand { margin-bottom: 16px; }
.footer__brand p {
  font-size: 14px;
  color: rgba(245, 246, 248, 0.6);
  line-height: 1.6;
}

.footer__col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 246, 248, 0.5);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 10px; }
.footer__col a {
  font-size: 14px;
  color: rgba(245, 246, 248, 0.85);
  transition: color 0.2s var(--ease);
}
.footer__col a:hover { color: var(--bg); }

.footer__bottom {
  border-top: 1px solid rgba(245, 246, 248, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(245, 246, 248, 0.5);
}
.footer__bottom a {
  color: rgba(245, 246, 248, 0.75);
  border-bottom: 1px solid rgba(245, 246, 248, 0.2);
  padding-bottom: 1px;
  transition: all 0.2s var(--ease);
}
.footer__bottom a:hover { color: var(--bg); border-bottom-color: var(--bg); }

/* ============================================
   ANIMATIONS — Scroll reveal
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual {
    aspect-ratio: auto;
    max-width: 460px;
    margin: 0 auto;
    flex-direction: column;
    padding-bottom: 24px;
  }
  .hero__product { max-width: 85%; }
  .hero__meta {
    position: static;
    margin-top: 32px;
    align-self: stretch;
  }
  .section__head { grid-template-columns: 1fr; gap: 16px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner, .contact__inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .line-card.span-4,
  .line-card.span-5,
  .line-card.span-7,
  .line-card.span-8 { grid-column: span 6; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav__menu { display: none; }
  .nav__menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #F5F6F8;
    background: var(--bg);
    padding: 40px var(--gutter);
    gap: 28px;
    align-items: flex-start;
    border-top: 1px solid rgba(28, 28, 26, 0.08);
    box-shadow: 0 12px 40px rgba(28, 28, 26, 0.08);
    z-index: 200;
    isolation: isolate;
    overflow-y: auto;
  }
  .nav__menu.open a { font-size: 22px; font-family: var(--display); }
  .nav.menu-open {
    background-color: #F5F6F8;
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav__toggle { display: flex; }
  .nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 130px 0 70px; }
  .form__row { grid-template-columns: 1fr; gap: 14px; }
  .why__grid { grid-template-columns: 1fr; gap: 24px; }
  .about__stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .about__stat strong { font-size: 32px; }
  .line-card.span-4,
  .line-card.span-5,
  .line-card.span-6,
  .line-card.span-7,
  .line-card.span-8 { grid-column: span 12; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; text-align: left; }
  .hero__cta { width: 100%; }
  .btn { flex: 1; justify-content: center; }
}

/* Print + reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__product { animation: none; }
}
