/* ═══════════════════════════════════════════
   ARNOOSH — Luxury Landing
═══════════════════════════════════════════ */
:root {
  --wine: #3d0a14;
  --wine-deep: #1a0509;
  --crimson: #c40f29;
  --crimson-bright: #e21835;
  --gold: #c4a35a;
  --gold-soft: #e2c98a;
  --ivory: #f7f2ec;
  --ivory-2: #efe7de;
  --ink: #120c0e;
  --muted: #6b5f63;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.06);
  --max: 1240px;
  --font: "Vazirmatn", Tahoma, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

.surface-light { background: var(--ivory); }
.surface-soft { background: var(--ivory-2); }
.surface-white { background: var(--white); }
.surface-dark { background: var(--wine-deep); color: var(--white); }

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { line-height: 1.25; letter-spacing: -0.03em; }

.wrap {
  width: min(100% - 2.4rem, var(--max));
  margin-inline: auto;
}

/* Atmosphere */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
.progress {
  position: fixed;
  inset-inline: 0;
  top: 0;
  height: 3px;
  z-index: 100;
  transform-origin: right center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--gold), var(--crimson));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.35s var(--ease), background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.35s ease;
}
.btn--sm { min-height: 2.55rem; padding: 0.55rem 1.1rem; font-size: 0.86rem; }
.btn--ghost-dark {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn--ghost-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}
.header.is-scrolled .btn--ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.9);
}
.header.is-scrolled .btn--ghost-dark:hover {
  border-color: var(--crimson);
  color: #fff;
  background: rgba(196, 15, 41, 0.18);
}

/* Topbar removed */
.btn--full { width: 100%; }
.btn--solid {
  background: var(--crimson);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(196, 15, 41, 0.28);
}
.btn--solid:hover {
  background: var(--crimson-bright);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(196, 15, 41, 0.38);
}
.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--wine-deep);
  font-weight: 800;
}
.btn--gold:hover { transform: translateY(-3px); filter: brightness(1.05); }

/* Header */
.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 90;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.header.is-scrolled {
  background: rgba(10, 4, 6, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.drawer { inset: 4.6rem 0 auto 0; }

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}
.brand__text strong {
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.1;
}
.brand__text small {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.72;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.6rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  transition: color 0.3s ease;
}
.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.header.is-scrolled .brand { color: #fff; }

.nav {
  display: none;
  gap: 1.15rem;
  align-items: center;
}
.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.25s ease;
}
.nav a i {
  font-size: 0.78rem;
  opacity: 0.75;
  transition: opacity 0.25s ease, color 0.25s ease;
}
.nav a:hover i,
.nav a.is-active i { opacity: 1; color: var(--gold-soft); }
.nav a::after {
  content: "";
  position: absolute;
  inset-inline: 20%;
  bottom: -0.4rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { transform: scaleX(1); inset-inline: 0; }
.header.is-scrolled .nav a { color: rgba(255, 255, 255, 0.82); }
.header.is-scrolled .nav a:hover { color: #fff; }

.header__tools {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-inline-start: auto;
}
.header-icon {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.header-icon:hover,
.header-icon.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-1px);
}
.header-icon__badge {
  position: absolute;
  top: 6px;
  inset-inline-end: 5px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--crimson);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 16px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(196, 15, 41, 0.45);
}
.header__actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
.link-quiet {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 600;
}
.header.is-scrolled .link-quiet { color: rgba(255, 255, 255, 0.75); }
.header.is-scrolled .header__actions .btn--solid { box-shadow: none; }

.header__end {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.burger {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.burger i {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease, background 0.3s ease;
  transform-origin: center;
}
.header.is-scrolled .burger i { background: #fff; }
.burger.is-open i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open i:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 4.6rem 0 auto 0;
  z-index: 89;
  display: none;
  flex-direction: column;
  padding: 1rem 0 1.5rem;
  background: rgba(10, 4, 6, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.drawer.is-open { display: flex; }
.drawer a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}
.drawer a i {
  width: 1.1rem;
  text-align: center;
  color: var(--gold-soft);
  opacity: 0.9;
}
.drawer a:hover { color: #fff; background: rgba(196, 15, 41, 0.16); }

@media (min-width: 980px) {
  .nav {
    display: flex;
    flex: 1;
    justify-content: center;
  }
  .header__actions { display: flex; }
  .header__tools { margin-inline-start: 0; }
  .burger, .drawer { display: none !important; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero__slider {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #0a0406;
}
.hero__slide {
  position: absolute;
  inset: -6%;
  opacity: 0;
  transition: opacity 1.35s var(--ease);
  pointer-events: none;
}
.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero__slide.is-active img {
  animation: heroDrift 18s var(--ease-out) forwards;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}
.hero__slide-img--flip {
  transform: scale(1.08) scaleX(-1);
}
.hero__slide.is-active .hero__slide-img--flip {
  animation: heroDriftFlip 18s var(--ease-out) forwards;
}
@keyframes heroDriftFlip {
  from { transform: scale(1.12) scaleX(-1) translateY(1.5%); }
  to { transform: scale(1.04) scaleX(-1) translateY(0); }
}
@keyframes heroDrift {
  from { transform: scale(1.12) translateY(1.5%); }
  to { transform: scale(1.04) translateY(0); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(8, 2, 4, 0.82) 0%, rgba(8, 2, 4, 0.45) 42%, rgba(8, 2, 4, 0.35) 68%, rgba(8, 2, 4, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 38%, rgba(0, 0, 0, 0.78) 100%),
    radial-gradient(ellipse at 78% 42%, rgba(196, 15, 41, 0.28), transparent 52%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.hero__ornament {
  position: absolute;
  inset-inline-end: 4%;
  top: 18%;
  width: clamp(60px, 8vw, 100px);
  opacity: 0.18;
  animation: floatY 6s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  z-index: 0;
  pointer-events: none;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}
.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  align-items: end;
  padding: 8.5rem 0 5.5rem;
}
@media (min-width: 960px) {
  .hero__layout:not(:has(.hero__product[hidden])) {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}
.hero__content {
  position: relative;
  padding: 0;
}
.hero__kicker {
  margin: 0 0 calc(0.8rem + 5px);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
}
.hero__title {
  margin: 0;
  font-size: clamp(3.8rem, 12vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--white);
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.hero__subtitle {
  margin: 0.85rem 0 0.55rem;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}
.hero__lead {
  max-width: 32rem;
  margin: 0 0 1.8rem;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero__product[hidden] { display: none !important; }
.hero__product {
  justify-self: center;
  max-width: min(380px, 86vw);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));
  animation: floatY 7s ease-in-out infinite;
}
.hero__product img {
  width: 100%;
  height: auto;
}
@media (max-width: 959px) {
  .hero__product { order: -1; max-width: 260px; margin-top: 1rem; }
  .hero__layout { padding-top: 7.5rem; padding-bottom: 6.5rem; }
  .hero__scroll {
    bottom: 1.25rem;
    z-index: 4;
    pointer-events: auto;
  }
}

.hero__dots {
  position: absolute;
  inset-inline-end: clamp(1rem, 3vw, 2.2rem);
  bottom: 2.1rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.hero__dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  transition: transform 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease;
}
.hero__dots button.is-active {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: scale(1.25);
}
.hero__dots button:hover { border-color: #fff; }

.hero__scroll {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  width: max-content;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroScrollIn 1s var(--ease) 1s forwards;
}
.hero__scroll span {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent);
  animation: drip 1.8s ease-in-out infinite;
}
.hero__scroll:hover {
  color: rgba(255, 255, 255, 0.85);
}
@keyframes heroScrollIn {
  from { opacity: 0; transform: translateX(-50%) translateY(28px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll,
  .hero__scroll span {
    opacity: 1 !important;
    animation: none !important;
    transform: translateX(-50%) !important;
  }
  .hero__slide,
  .hero__slide.is-active img {
    transition: none !important;
    animation: none !important;
  }
  .hero__slide img { transform: scale(1.04); }
  .hero__slide-img--flip { transform: scale(1.04) scaleX(-1) !important; }
}

/* Marquee removed */

/* Sections shared */
.section { padding: clamp(3.4rem, 6.5vw, 5.4rem) 0; }
.section-intro {
  max-width: 36rem;
  margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
}
.section-intro h2,
.products-head h2,
.story-copy h2,
.contact-side h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 900;
}
.section-intro p { margin: 0; color: var(--muted); }
.eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--crimson);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.eyebrow--light { color: var(--gold-soft); }
.eyebrow--gold { color: var(--gold); }
.gold-line {
  width: 64px;
  height: 2px;
  margin: 0 0 1rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Essence */
.essence {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(196, 15, 41, 0.06), transparent 40%),
    linear-gradient(180deg, var(--ivory), var(--ivory-2));
}
.essence-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(18, 12, 14, 0.1);
}
@media (min-width: 800px) {
  .essence-grid { grid-template-columns: repeat(4, 1fr); }
}
.essence-item {
  padding: 2rem 1.4rem 2.2rem;
  border-bottom: 1px solid rgba(18, 12, 14, 0.1);
  transition: background 0.35s ease;
}
@media (min-width: 800px) {
  .essence-item {
    border-bottom: 0;
    border-inline-start: 1px solid rgba(18, 12, 14, 0.1);
  }
  .essence-item:first-child { border-inline-start: 0; }
}
.essence-item:hover { background: rgba(255, 255, 255, 0.55); }
.essence-item__icon {
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1.1rem;
  color: var(--crimson);
  transition: transform 0.45s var(--ease);
}
.essence-item:hover .essence-item__icon { transform: scale(1.08) rotate(-4deg); }
.essence-item__icon img { width: 100%; height: 100%; }
.essence-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  font-weight: 800;
}
.essence-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Story */
.story {
  background: var(--white);
  overflow: hidden;
}
.story-layout {
  display: grid;
  gap: 2.8rem;
  align-items: center;
}
@media (min-width: 980px) {
  .story-layout {
    grid-template-columns: 1.05fr 1fr;
    gap: 4rem;
  }
}
.story-visual {
  position: relative;
  isolation: isolate;
}
.story-visual__frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(18, 12, 14, 0.18);
  aspect-ratio: 4 / 5;
}
.story-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.story-visual:hover .story-visual__frame img { transform: scale(1.05); }
.story-float {
  position: absolute;
  inset-inline-start: -0.6rem;
  bottom: 1.6rem;
  z-index: 2;
  display: grid;
  gap: 0.15rem;
  padding: 1.1rem 1.25rem;
  border-radius: 18px;
  background: rgba(247, 242, 236, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(18, 12, 14, 0.16);
  border: 1px solid rgba(196, 163, 90, 0.35);
}
.story-float strong {
  font-size: 2rem;
  font-weight: 900;
  color: var(--crimson);
  line-height: 1;
}
.story-float span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  max-width: 6rem;
  line-height: 1.4;
}
.story-ring {
  position: absolute;
  width: 160px;
  height: 160px;
  inset-inline-end: -1.5rem;
  top: -1.5rem;
  z-index: -1;
  color: var(--gold);
  opacity: 0.35;
  animation: spin 28s linear infinite;
}
.story-ring circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  stroke-dasharray: 6 10;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.story-copy p {
  color: var(--muted);
  margin: 0 0 1.6rem;
}
.story-list { display: grid; gap: 1.2rem; }
.story-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(18, 12, 14, 0.08);
}
.story-list__num {
  font-weight: 900;
  color: var(--gold);
  font-size: 0.95rem;
  padding-top: 0.15rem;
}
.story-list h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 800;
}
.story-list p {
  margin: 0;
  font-size: 0.94rem;
}

/* Products */
.products {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(196, 15, 41, 0.25), transparent 40%),
    linear-gradient(180deg, var(--wine-deep), #2a0a12);
  color: var(--white);
}
.products-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.product-rail {
  display: grid;
  gap: 1.2rem;
}
@media (min-width: 720px) {
  .product-rail { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .product-rail { grid-template-columns: repeat(4, 1fr); }
}
.product {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.45s var(--ease), border-color 0.35s ease, background 0.35s ease;
}
.product:hover {
  transform: translateY(-10px);
  border-color: rgba(196, 163, 90, 0.45);
  background: rgba(196, 15, 41, 0.12);
}
.product__badge {
  position: absolute;
  inset-inline-start: 0.9rem;
  top: 0.9rem;
  z-index: 2;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--crimson);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.product__media {
  aspect-ratio: 1;
  background: #fff;
  overflow: hidden;
}
.product__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.8s var(--ease);
}
.product:hover .product__media img { transform: scale(1.06); }
.product__body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: grid;
  gap: 0.3rem;
}
.product__body span {
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.product__body h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.45;
}
.product__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem;
  margin-top: 0.55rem;
}
.product__price del {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.85rem;
}
.product__price strong {
  color: #ff8a98;
  font-size: 1.05rem;
  font-weight: 800;
}

/* Statement */
.statement {
  position: relative;
  min-height: clamp(24rem, 52vw, 34rem);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.statement__bg {
  position: absolute;
  inset: -10%;
  z-index: -2;
}
.statement__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.statement__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(26, 5, 9, 0.78), rgba(61, 10, 20, 0.72));
}
.statement__inner { max-width: 44rem; padding: 4rem 0; }
.statement__divider {
  width: min(180px, 50%);
  margin: 0 auto 1.2rem;
  color: var(--gold);
  opacity: 0.8;
}
.statement__eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.86rem;
}
.statement h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
}
.statement h2 span {
  background: linear-gradient(120deg, var(--gold-soft), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.statement__text {
  margin: 0 auto 1.2rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Craft */
.craft {
  background: var(--ivory-2);
}
.craft-grid {
  display: grid;
  gap: 1.2rem;
}
@media (min-width: 860px) {
  .craft-grid { grid-template-columns: repeat(3, 1fr); }
}
.craft-card {
  padding: 1.8rem 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(18, 12, 14, 0.06);
  box-shadow: 0 20px 50px rgba(18, 12, 14, 0.05);
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}
.craft-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(18, 12, 14, 0.1);
}
.craft-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.3rem;
}
.craft-card__top span {
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(196, 15, 41, 0.2);
}
.craft-card__top img {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--crimson);
}
.craft-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
  font-weight: 800;
}
.craft-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

/* Stats */
.stats {
  padding: clamp(2.4rem, 5vw, 3.4rem) 0;
  background:
    linear-gradient(110deg, var(--wine-deep), var(--crimson) 55%, #8e0a1d);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(196, 163, 90, 0.2), transparent 40%);
  pointer-events: none;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  position: relative;
}
@media (min-width: 720px) {
  .stats__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .stats__grid { grid-template-columns: repeat(5, 1fr); }
}
.stat {
  text-align: center;
  padding: 0.6rem;
}
.stat strong {
  display: block;
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, #fff, var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span {
  display: block;
  margin-top: 0.45rem;
  font-weight: 700;
}
.stat small {
  display: block;
  margin-top: 0.15rem;
  opacity: 0.7;
  font-size: 0.8rem;
}

/* Sports */
.sports {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(30, 80, 160, 0.22), transparent 45%),
    linear-gradient(180deg, #0b1220 0%, #121a2c 55%, #0e1524 100%);
}
.sports-layout {
  display: grid;
  gap: 2.4rem;
  align-items: start;
}
@media (min-width: 980px) {
  .sports-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: stretch;
  }
}
.sports-copy h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
}
.sports-copy > p {
  margin: 0 0 1.6rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 36rem;
}
.sports-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.sports-gallery figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.sports-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.sports-gallery figure:hover img { transform: scale(1.08); }

.sports-news {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 640px) {
  .sports-news {
    grid-template-columns: 140px 1fr;
    align-items: center;
  }
}
.sports-news__media {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #fff;
}
.sports-news__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sports-news__body span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 700;
}
.sports-news__body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.45;
}
.sports-news__body p {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}
.sports-news__body a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #8ec8ff;
  font-weight: 700;
  font-size: 0.9rem;
}
.sports-news__body a:hover { color: #fff; }

.sports-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}
.sports-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 30%;
}
.sports-visual__caption {
  position: absolute;
  inset-inline: 1rem;
  bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(8, 14, 28, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.sports-visual__caption strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}
.sports-visual__caption span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .sports-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* Contact */
.contact {
  background: var(--white);
}
.contact-shell {
  display: grid;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(18, 12, 14, 0.12);
  background: var(--white);
}
@media (min-width: 960px) {
  .contact-shell { grid-template-columns: 0.95fr 1.15fr; }
}
.contact-side {
  padding: clamp(1.8rem, 4vw, 2.8rem);
  background:
    linear-gradient(160deg, #14080b 0%, #3d0a14 50%, #5c1020 100%);
  color: var(--white);
}
.contact-side p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}
.contact-list {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 1.6rem;
}
.contact-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
}
.contact-list i {
  margin-top: 0.3rem;
  color: var(--gold);
}
.contact-list strong {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}
.contact-list a,
.contact-list span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}
.contact-list a:hover { color: var(--gold-soft); }

.contact-form {
  padding: clamp(1.8rem, 4vw, 2.8rem);
}
.contact-form h3 {
  margin: 0 0 0.4rem;
  font-size: 1.5rem;
  font-weight: 900;
}
.contact-form > p {
  margin: 0 0 1.3rem;
  color: var(--muted);
}
.fields {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}
@media (min-width: 640px) {
  .fields { grid-template-columns: 1fr 1fr; }
  .field--full { grid-column: 1 / -1; }
}
.field span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--muted);
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(18, 12, 14, 0.12);
  background: #fbf8f5;
  font: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field textarea { resize: vertical; min-height: 8rem; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--crimson);
  box-shadow: 0 0 0 4px rgba(196, 15, 41, 0.1);
}
.form-note {
  margin: 0.9rem 0 0;
  color: #2f7a3e;
  font-weight: 700;
}

/* Footer */
.footer {
  position: relative;
  background: var(--wine-deep);
  color: rgba(255, 255, 255, 0.78);
  overflow: hidden;
  padding: clamp(2.8rem, 5vw, 3.8rem) 0 0;
}
.footer > .wrap {
  position: relative;
  z-index: 1;
}
.footer__glow {
  position: absolute;
  width: min(480px, 70vw);
  height: min(480px, 70vw);
  inset-inline-end: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(196, 15, 41, 0.28), transparent 65%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.4rem);
  padding-bottom: clamp(1.8rem, 3vw, 2.4rem);
  position: relative;
  align-items: start;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); }
}
.footer-brand img {
  height: clamp(40px, 5vw, 48px);
  width: auto;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 0.9rem;
}
.footer-brand p {
  margin: 0 0 0.9rem;
  max-width: 28rem;
  font-size: clamp(0.88rem, 1.5vw, 0.94rem);
  line-height: 1.85;
}
.socials { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.socials a {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: 0.3s ease;
  flex-shrink: 0;
}
.socials a:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  transform: translateY(-3px);
}
.footer-grid h4 {
  margin: 0 0 0.85rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}
.footer-grid ul { display: grid; gap: 0.45rem; }
.footer-grid a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  transition: color 0.2s ease;
  word-break: break-word;
}
.footer-grid a:hover { color: var(--gold-soft); }
.footer-contact li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.1rem 0 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1.2rem;
  font-size: clamp(0.72rem, 1.4vw, 0.8rem);
  color: rgba(255, 255, 255, 0.45);
}

/* Reveal system */
.reveal-up,
.reveal-scale,
.reveal-line,
.reveal-word {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal-scale { transform: translateY(24px) scale(0.96); }
.reveal-line { transform: translateY(12px); }
.reveal-word {
  display: inline-block;
  transform: translateY(40%);
  filter: blur(8px);
}
.is-in.reveal-up,
.is-in.reveal-scale,
.is-in.reveal-line,
.is-in.reveal-word {
  opacity: 1;
  transform: none;
  filter: none;
}
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-up, .reveal-scale, .reveal-line, .reveal-word,
  .hero__slide img, .hero__ornament, .story-ring, .hero__product {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }
  .grain { display: none; }
}

/* ── Added missing elements ── */
.trust {
  background: var(--wine-deep);
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 84px;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.15rem 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s ease;
}
.trust-item:last-child { border-left: none; }
.trust-item:hover { background: rgba(255, 255, 255, 0.03); }
.trust-item b {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 800;
}
@media (max-width: 720px) {
  .trust-row { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-left: none; }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
}
.chip {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(196, 15, 41, 0.08);
  color: var(--crimson);
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(196, 15, 41, 0.14);
}
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1rem;
  margin: 0 0 1.5rem;
}
@media (max-width: 560px) {
  .about-points { grid-template-columns: 1fr; }
}
.about-points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.about-points i {
  color: var(--crimson);
  font-size: 0.8rem;
}

.products-head__lead {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  max-width: 34rem;
}
.products-head__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.product__tag {
  position: absolute;
  inset-inline-end: 0.9rem;
  top: 0.9rem;
  z-index: 2;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--wine-deep);
  font-size: 0.72rem;
  font-weight: 800;
}
.product__cart {
  margin-top: 0.85rem;
  width: 100%;
  box-shadow: none;
}

.quality-split {
  display: grid;
  gap: 1.4rem;
}
@media (min-width: 900px) {
  .quality-split { grid-template-columns: 1fr 1.1fr; align-items: stretch; }
}
.quality-panel {
  padding: 2rem 1.7rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(26, 5, 9, 0.25) 0%, rgba(26, 5, 9, 0.55) 45%, rgba(26, 5, 9, 0.92) 100%),
    linear-gradient(145deg, rgba(196, 15, 41, 0.35), rgba(61, 10, 20, 0.2)),
    url("../assets/images/quality-paste-bg.jpg") center / cover;
  color: var(--white);
  display: grid;
  align-content: end;
  min-height: 280px;
  overflow: hidden;
  isolation: isolate;
}
.quality-panel h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 900;
}
.quality-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}
.checklist {
  display: grid;
  gap: 1rem;
  padding: 0.4rem 0;
}
.check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 12, 14, 0.06);
}
.check > i {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--crimson);
  color: #fff;
  font-size: 0.75rem;
  margin-top: 0.15rem;
}
.check strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.02rem;
  font-weight: 800;
}
.check span {
  color: var(--muted);
  font-size: 0.92rem;
}

.factory {
  background: var(--white);
}
.facility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
@media (min-width: 720px) {
  .facility-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .facility-grid { grid-template-columns: repeat(4, 1fr); }
}
.facility {
  display: grid;
  gap: 0.45rem;
  padding: 1.15rem 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, var(--ivory-2));
  border: 1px solid rgba(18, 12, 14, 0.07);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.facility:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 15, 41, 0.25);
}
.facility b {
  color: var(--crimson);
  font-size: 1.1rem;
  font-weight: 900;
}
.facility span {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.agency {
  background: var(--ivory);
}
.agency-box {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(196, 15, 41, 0.95), rgba(26, 5, 9, 0.96));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.agency-box::after {
  content: "آرنوش";
  position: absolute;
  inset-inline-end: -2%;
  bottom: -22%;
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 900;
  opacity: 0.07;
  pointer-events: none;
  line-height: 1;
}
@media (min-width: 860px) {
  .agency-box {
    grid-template-columns: 1.4fr auto;
    align-items: center;
  }
}
.agency-box h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 900;
  position: relative;
}
.agency-box p {
  margin: 0 0 1.3rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 42ch;
  position: relative;
}
.agency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  position: relative;
}
.agency-aside {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1.5rem 1.4rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  min-width: 160px;
}
.agency-aside strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.agency-aside span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.gallery { background: var(--ivory-2); }
.section-intro--center {
  text-align: center;
  margin-inline: auto;
}
.gold-line--center { margin-inline: auto 0; margin-inline: auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-auto-rows: 210px;
  gap: 0.8rem;
}
.gallery-grid a {
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  background: #ddd;
}
.gallery-grid a:first-child { grid-row: span 2; }
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.gallery-grid a:hover img { transform: scale(1.07); }
.gallery-grid a::after {
  content: attr(data-label);
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 0.7rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.3s ease;
}
.gallery-grid a:hover::after { opacity: 1; transform: none; }
.gallery-grid__contain {
  background: #fff !important;
}
.gallery-grid__contain img {
  object-fit: contain;
  padding: 1.25rem;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }
  .gallery-grid a:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 240px;
  }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.footer-claim {
  display: inline-block;
  margin: 0 0 1rem;
  background: var(--crimson);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  line-height: 1.4;
}
.footer-brand .socials { margin-top: 0.15rem; }

/* Blog / Articles */
.blog { background: var(--white); }
.blog-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(18, 12, 14, 0.08);
  background: var(--ivory);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(18, 12, 14, 0.12);
}
.blog-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ddd;
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.blog-card:hover .blog-card__media img { transform: scale(1.06); }
.blog-card__body {
  padding: 1.25rem 1.3rem 1.4rem;
  display: grid;
  gap: 0.45rem;
  flex: 1;
}
.blog-card__meta {
  color: var(--crimson);
  font-size: 0.8rem;
  font-weight: 700;
}
.blog-card h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.45;
}
.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.blog-card__more {
  margin-top: 0.5rem;
  color: var(--crimson);
  font-weight: 700;
  font-size: 0.9rem;
}
.blog-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.blog-head .section-intro { margin-bottom: 0; }

/* ── Responsive polish ── */
@media (max-width: 979px) {
  .header__tools {
    order: 2;
    margin-inline-start: auto;
  }
  .burger { order: 3; }
  .header__actions { display: none !important; }
  .header-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .nav { gap: 0.7rem; }
  .nav a { font-size: 0.8rem; }
  .nav a span { letter-spacing: -0.01em; }
  .story-visual__frame { aspect-ratio: 16 / 11; max-height: 420px; }
  .story-float { inset-inline-start: 0.8rem; bottom: 1rem; }
  .sports-layout { gap: 2rem; }
  .sports-visual { max-width: 420px; margin-inline: auto; }
  .agency-box { padding: 1.6rem; }
  .contact-shell { border-radius: 22px; }
  .blog-head { align-items: start; }
}

@media (max-width: 759px) {
  .header__inner { min-height: 4.1rem; }
  .wrap { width: min(100% - 1.6rem, var(--max)); }
  .hero__title { font-size: clamp(3rem, 16vw, 4.2rem); }
  .hero__lead { font-size: 0.98rem; margin-bottom: 1.4rem; }
  .hero__cta { gap: 0.65rem; margin-bottom: 0.5rem; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__content { padding-bottom: 0.5rem; }
  .hero__scroll {
    bottom: 0.85rem;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }
  .hero__scroll span { height: 28px; }
  .hero__layout { padding-bottom: 5.8rem; }
  .section { padding: clamp(2.8rem, 7vw, 4.2rem) 0; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat strong { font-size: clamp(1.6rem, 7vw, 2.1rem); }
  .quality-panel { min-height: 220px; padding: 1.5rem 1.3rem; }
  .sports-gallery { grid-template-columns: 1fr 1fr; }
  .sports-visual__caption { inset: auto 0.8rem 0.8rem; padding: 0.85rem; }
  .agency-box h2 { font-size: clamp(1.25rem, 5.5vw, 1.7rem); }
  .agency-actions { flex-direction: column; align-items: stretch; }
  .agency-actions .btn { width: 100%; justify-content: center; }
  .contact-list li { gap: 0.75rem; }
  .blog-grid { gap: 1rem; }
  .footer-grid > div:not(.footer-brand) { min-width: 0; }
  .to-top { left: 0.85rem; bottom: 0.85rem; width: 42px; height: 42px; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr; }
  .sports-gallery { grid-template-columns: 1fr; }
  .story-float { position: relative; inset: auto; margin-top: 1rem; width: fit-content; }
  .footer-bottom { flex-direction: column; text-align: center; align-items: center; }
}


/* ── Image perf ── */
img { max-width: 100%; height: auto; }
.page-hero__bg img,
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section.blog,
.section.sports,
.section.gallery,
.section.agency,
.section.contact,
.mid .products,
.mid .gallery {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}
