﻿:root {
  --bg: #f7f9f8;
  --surface: #ffffff;
  --soft: #eef3f1;
  --ink: #122025;
  --muted: #647177;
  --line: #dde5e2;
  --teal: #0f5c63;
  --orange: #ff6f1a;
  --orange-dark: #e85d0d;
  --shadow: 0 22px 70px rgba(18, 32, 37, .10);
  --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(255,111,26,.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 460px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(221,229,226,.82);
}

.brand img {
  width: min(255px, 46vw);
  max-height: 50px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #405057;
  font-size: 14px;
  font-weight: 700;
}

.nav-social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-social img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.nav-cta {
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #405057;
  font-size: 12px;
  font-weight: 850;
}

.language-switcher span {
  white-space: nowrap;
}

.language-switcher select {
  min-width: 118px;
  padding: 9px 34px 9px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
}

[dir="rtl"] body {
  direction: rtl;
}

[dir="rtl"] .brand img,
[dir="rtl"] .footer-logo {
  object-position: right center;
}

[dir="rtl"] .nav-social,
[dir="rtl"] .hero-actions,
[dir="rtl"] .language-switcher,
[dir="rtl"] .social-source {
  flex-direction: row-reverse;
}

[dir="rtl"] .product-card,
[dir="rtl"] .series-poster,
[dir="rtl"] .contact,
[dir="rtl"] .site-footer {
  text-align: right;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 78px));
  padding: 0;
  overflow: hidden;
  background: #0e1f24;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,20,24,.04) 0%, rgba(8,20,24,.12) 100%);
  pointer-events: none;
}

.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.hero-info {
  padding: clamp(30px, 5vw, 62px) clamp(18px, 5vw, 72px) 28px;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.hero-copy {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 90px);
  line-height: .96;
  letter-spacing: 0;
}

.hero-text {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 14px 34px rgba(255,111,26,.28);
}

.button.secondary {
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span {
  padding: 10px 13px;
  color: #31515a;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(18px, 5vw, 72px) 68px;
}

.trust-strip div {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(26px, 3.6vw, 46px);
  line-height: 1;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.45;
}

section {
  padding: clamp(66px, 8vw, 118px) clamp(18px, 5vw, 72px);
}

.intro {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-label {
  width: fit-content;
  margin-bottom: 28px;
  padding: 9px 13px;
  color: var(--teal);
  background: #e7f1ef;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .72fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro p, .section-head p, .category-grid p, .process p, .contact p, .product-card p {
  color: var(--muted);
  line-height: 1.66;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.benefit-grid article,
.process-grid article {
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.benefit-grid span,
.process-grid span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 34px;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.benefit-grid h3,
.process-grid h3 {
  margin-bottom: 10px;
  font-size: 14px;
}

.section-head {
  max-width: 860px;
  margin-bottom: 36px;
}

.section-head.row {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .46fr);
  gap: 28px;
  max-width: none;
  align-items: end;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-grid article,
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 42px rgba(18,32,37,.06);
}

.category-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(145deg, #f7faf9, #edf3f1);
}

.category-grid div {
  padding: 20px;
}

.category-grid h3 {
  margin-bottom: 8px;
  font-size: 14px;
}

.products {
  background: #f5f7f6;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filters button {
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.filters button.active {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.series-display {
  display: grid;
  gap: 42px;
}

.series-block {
  padding: 0;
}

.series-poster {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .72fr);
  gap: clamp(20px, 4vw, 48px);
  min-height: 430px;
  margin-bottom: 24px;
  padding: clamp(24px, 4vw, 48px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 24%, rgba(255,111,26,.34), transparent 28%),
    linear-gradient(135deg, #102227 0%, #0f5c63 100%);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.series-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,.08), transparent 42%),
    radial-gradient(circle at 20% 100%, rgba(255,255,255,.14), transparent 34%);
  pointer-events: none;
}

.series-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 720px;
}

.series-copy .eyebrow {
  color: #ffbf91;
}

.series-copy h3,
.series-heading h3 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.series-copy p {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.66;
}

.series-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.series-stats span {
  padding: 10px 13px;
  color: #173035;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.70);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.series-shoes {
  position: relative;
  z-index: 1;
  min-height: 330px;
}

.series-shoe {
  position: absolute;
  width: min(70%, 430px);
  max-height: 245px;
  object-fit: contain;
  padding: 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
  filter: drop-shadow(0 18px 20px rgba(0,0,0,.14));
}

.series-shoe-1 {
  right: 18%;
  top: 0;
  transform: rotate(-7deg);
}

.series-shoe-2 {
  right: 0;
  top: 112px;
  transform: rotate(5deg);
}

.series-shoe-3 {
  left: 0;
  bottom: 0;
  transform: rotate(-2deg);
}

.series-heading {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(280px, .44fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.series-heading p:last-child {
  color: var(--muted);
  line-height: 1.62;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 408px;
  border-radius: 22px;
}

.product-card .product-media {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 26px 22px 12px;
  background: #fff;
}

.product-card img {
  width: 96%;
  max-height: 188px;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(18,32,37,.10));
  transition: transform .35s ease;
}

.product-card img[src*="gornornie-new"] {
  width: 100%;
  max-height: 205px;
  filter: none;
  mix-blend-mode: multiply;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  padding: 42px clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(255,111,26,.18), transparent 30%),
    linear-gradient(135deg, #102227, #0f5c63);
  border-top: 1px solid rgba(255,255,255,.12);
}

.site-footer > div:first-child img {
  width: min(260px, 70vw);
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}

.site-footer .footer-logo {
  width: min(360px, 72vw);
  max-height: 92px;
}

.site-footer p {
  max-width: 440px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.76);
  line-height: 1.6;
}

.company-info {
  display: grid;
  gap: 7px;
  max-width: 520px;
  margin-top: 20px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.55;
}

.company-info strong {
  color: #fff;
  font-size: 14px;
}

.footer-contact {
  justify-self: end;
  width: min(620px, 100%);
  padding: 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
}

.footer-contact h3 {
  margin: 0 0 16px;
  color: rgba(255,255,255,.88);
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.social-links a {
  min-height: 52px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 9px;
  row-gap: 1px;
  padding: 8px 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.16);
}

.social-icon {
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  margin-bottom: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(18,32,37,.08);
}

.social-icon img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.social-links span:not(.social-icon) {
  align-self: end;
  font-weight: 900;
  font-size: 13px;
  line-height: 1.1;
}

.social-links small {
  align-self: start;
  color: rgba(255,255,255,.70);
  font-size: 10px;
  overflow-wrap: anywhere;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  padding-top: 24px;
  margin-top: 10px;
  color: rgba(255,255,255,.64);
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 12px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.78);
}

.footer-bottom a:hover {
  color: #fff;
}

.product-card:hover img {
  transform: translateY(-7px) scale(1.04);
}

.product-body {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.product-meta {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.product-card h3 {
  margin-bottom: 0;
  font-size: 19px;
}

.product-subtitle {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 800;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.mini-tags span {
  padding: 7px 9px;
  color: #486069;
  background: #edf4f2;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

.process {
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.social-section {
  background: #f5f7f6;
  border-top: 1px solid var(--line);
}

.social-channel-list {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
  max-width: none;
}

.social-channel {
  display: grid;
  grid-template-rows: auto minmax(58px, auto) auto;
  align-items: stretch;
  gap: 10px;
  min-height: auto;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 42px rgba(18,32,37,.05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.social-channel:hover {
  transform: translateY(-2px);
  border-color: rgba(255,111,26,.36);
  box-shadow: 0 18px 52px rgba(18,32,37,.08);
}

.social-channel.is-live {
  border-color: rgba(255,111,26,.42);
}

.social-channel.is-live .social-cover {
  background: #fff;
}

.social-channel.is-empty {
  opacity: .62;
  pointer-events: none;
}

.social-channel.is-empty:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: 0 14px 42px rgba(18,32,37,.05);
}

.social-cover {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 9 / 16;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,111,26,.10), transparent 42%),
    linear-gradient(160deg, #f9fbfa, #eaf0ee);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.social-cover img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.social-cover em {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  padding: 6px 8px;
  color: #526269;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(221,229,226,.78);
  border-radius: 999px;
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
  text-align: center;
}

.social-embed {
  align-content: stretch;
  background: #fff;
}

.social-embed iframe,
.social-embed blockquote {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  border: 0 !important;
}

.social-embed .tiktok-embed,
.social-embed .instagram-media {
  background: #fff !important;
}

.social-embed section,
.social-embed .instagram-media > a {
  display: grid;
  place-items: center;
  height: 100%;
  padding: 18px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.social-channel span {
  display: grid;
  gap: 4px;
}

.social-channel strong {
  font-size: 14px;
}

.social-channel small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.social-source {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 10px;
  color: var(--ink);
  background: #f5f7f6;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.social-source:hover {
  border-color: rgba(255,111,26,.42);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .62fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(255,111,26,.24), transparent 30%),
    linear-gradient(135deg, #102227, #0f5c63);
}

.contact .eyebrow {
  color: #ffbf91;
}

.contact p {
  color: rgba(255,255,255,.78);
}

.email-link {
  display: inline-flex;
  margin-top: 18px;
  color: #fff;
  font-weight: 900;
  border-bottom: 2px solid rgba(255,255,255,.55);
}

form {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
}

input, textarea {
  width: 100%;
  min-height: 50px;
  padding: 14px 15px;
  color: #fff;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,.56);
}

@media (max-width: 1320px) {
  .site-header {
    gap: 14px;
    padding-inline: 22px;
  }

  .brand img {
    width: 180px;
  }

  nav {
    gap: 11px;
    font-size: 13px;
  }

  .language-switcher {
    gap: 4px;
  }

  .language-switcher span {
    display: none;
  }

  .language-switcher select {
    min-width: 104px;
  }

  .nav-cta {
    padding-inline: 14px;
  }
}

@media (max-width: 1080px) {
  .intro-grid,
  .section-head.row,
  .series-poster,
  .series-heading,
  .contact {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .benefit-grid,
  .category-grid,
  .product-grid,
  .process-grid,
  .social-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-channel-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-contact {
    justify-self: stretch;
  }

  .hero {
    min-height: 680px;
  }

  .series-poster {
    min-height: auto;
  }

  .series-shoes {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer,
  .social-links {
    grid-template-columns: 1fr;
  }

  nav {
    width: 100%;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 0;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav .nav-social {
    order: -2;
  }

  nav .nav-cta {
    order: -1;
  }

  nav a {
    white-space: nowrap;
  }

  h1 {
    font-size: 44px;
  }

  .hero {
    min-height: 560px;
    padding-top: 0;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(8,20,24,.04) 0%, rgba(8,20,24,.16) 100%);
  }

  .hero-copy {
    padding: 22px;
    border-radius: 22px;
  }

  .trust-strip,
  .benefit-grid,
  .category-grid,
  .product-grid,
  .process-grid,
  .social-channel-list {
    grid-template-columns: 1fr;
  }

  .social-channel {
    min-height: auto;
  }

  .social-cover {
    min-height: 0;
  }

  .series-display {
    gap: 34px;
  }

  .series-poster {
    padding: 22px;
    border-radius: 22px;
  }

  .series-copy h3,
  .series-heading h3 {
    font-size: 34px;
  }

  .series-shoes {
    min-height: 390px;
  }

  .series-shoe {
    width: 84%;
    max-height: 210px;
  }

  .series-shoe-1 {
    right: 8%;
  }

  .series-shoe-2 {
    right: -2%;
    top: 120px;
  }

  .series-shoe-3 {
    left: -2%;
  }
}



