/* ============================================================
   PREMIUM İŞ GİYİM — KINETIC EDITORIAL REDESIGN v4
   Textile-Inspired Luxury Motion Design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Outfit:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

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

:root {
  --ink:     #0A0A08;
  --ink-60:  rgba(10,10,8,0.60);
  --ink-25:  rgba(10,10,8,0.10);
  --cream:   #F8F5EF;
  --warm:    #EDE8DF;
  --white:   #FFFFFF;
  --gold:    #C4973A;
  --gold-lt: #F0DFA8;
  --gold-dk: #8A6820;
  --navy:    #0B1929;
  --navy-2:  #122038;
  --rust:    #C0432A;
  --sage:    #4A6741;

  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans:  'Outfit', system-ui, sans-serif;
  --f-mono:  'Bebas Neue', sans-serif;

  --max-w:  1360px;
  --pad-x:  clamp(20px, 5.5vw, 88px);
  --sec-y:  clamp(80px, 11vw, 140px);
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-b: cubic-bezier(0.34, 1.56, 0.64, 1);

  --r-sm: 4px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-pill: 999px;
}

/* ── BASE ── */
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-60);
  background: var(--cream);
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--gold-lt); color: var(--navy); }

/* ── CUSTOM CURSOR ── */
#cursor-dot, #cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition-property: width, height, background, border-color, opacity;
  transition-timing-function: var(--ease);
}
#cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  top: 0; left: 0;
  transition-duration: 0s;
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  background: transparent;
  top: 0; left: 0;
  transition-duration: 0.18s;
  opacity: 0.7;
}
body.cursor-hover #cursor-ring {
  width: 60px; height: 60px;
  background: rgba(196,151,58,0.08);
  border-color: var(--gold);
  opacity: 1;
}
body.cursor-click #cursor-dot {
  width: 10px; height: 10px;
  background: var(--rust);
}
@media (hover: none) { #cursor-dot, #cursor-ring { display: none; } }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--warm); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 6px; }

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--rust));
  z-index: 10000;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--f-serif); font-weight: 400; line-height: 1.08; color: var(--ink); }
h1 { font-size: clamp(3.5rem, 9vw, 8rem); letter-spacing: -0.03em; line-height: 0.94; }
h2 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: 1.25rem; }

.label-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 20px;
}
.label-tag::before {
  content: '';
  display: block; width: 28px; height: 1px;
  background: var(--gold);
}

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
}
.section { padding: var(--sec-y) 0; position: relative; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  font-family: var(--f-sans); font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.04em;
  border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  cursor: none;
  transition: all 0.35s var(--ease);
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-105%);
  transition: transform 0.4s var(--ease);
  skewX(-15deg);
}
.btn:hover::after { transform: translateX(105%); }

.btn-primary { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(10,10,8,0.25); }

.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dk); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(196,151,58,0.35); }

.btn-outline { background: transparent; color: var(--ink); border-color: rgba(10,10,8,0.3); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-outline-light:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.7); }

.btn-lg { padding: 18px 40px; font-size: 0.9375rem; }
.btn-sm { padding: 10px 22px; font-size: 0.8125rem; }

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  z-index: 99998;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: var(--f-mono);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 32px;
  overflow: hidden;
}
.preloader-logo span { display: inline-block; color: var(--gold); }
.preloader-line {
  width: 200px; height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0 auto; position: relative; overflow: hidden;
}
.preloader-line::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 60%; height: 100%;
  background: var(--gold);
  animation: preload-slide 1.2s var(--ease) infinite;
}
@keyframes preload-slide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(230%); }
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy);
  padding: 9px 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative; z-index: 200;
}
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.top-bar-left { display: flex; align-items: center; gap: 24px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.65); transition: color 0.22s; }
.top-bar-item:hover { color: var(--gold-lt); }
.top-bar-social { display: flex; gap: 8px; }
.top-bar-social a {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.07); border-radius: 50%;
  color: rgba(255,255,255,0.65); transition: all 0.22s;
}
.top-bar-social a:hover { background: var(--gold); color: white; transform: translateY(-2px); }

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(248,245,239,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(10,10,8,0.06);
  transition: all 0.35s var(--ease);
}
.header.scrolled { box-shadow: 0 8px 40px rgba(10,10,8,0.08); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; padding: 12px 0;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; transition: opacity 0.2s; }
.logo:hover { opacity: 0.8; }
.logo-mark { font-family: var(--f-mono); font-size: 3.2rem; letter-spacing: 0.06em; color: var(--navy); line-height: 1; }
.logo-sep { width: 1px; height: 36px; background: var(--gold); opacity: 0.4; }
.logo-sub { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.24em; color: var(--gold); text-transform: uppercase; line-height: 1.4; }

/* Nav */
.nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-link {
  padding: 9px 14px; font-size: 0.875rem; font-weight: 500;
  color: var(--ink-60); border-radius: var(--r-sm);
  transition: all 0.2s; display: flex; align-items: center; gap: 4px;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-icon { transition: transform 0.25s var(--ease); }
.nav-dropdown:hover .dropdown-icon { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 220px;
  background: var(--white); border-radius: var(--r-md);
  box-shadow: 0 24px 60px rgba(10,10,8,0.14);
  padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all 0.25s var(--ease);
  border: 1px solid rgba(10,10,8,0.06);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 9px 14px;
  font-size: 0.875rem; color: var(--ink-60);
  border-radius: var(--r-sm); transition: all 0.18s;
}
.dropdown-menu a:hover { background: var(--cream); color: var(--ink); padding-left: 18px; }

.header-cta { padding: 12px 24px; font-size: 0.875rem; }

/* Mobile Toggle */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; height: 20px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.menu-toggle span {
  width: 100%; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: all 0.3s var(--ease); transform-origin: left center;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(42deg) scaleX(1.05); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-42deg) scaleX(1.05); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: min(340px, 90vw); height: 100vh;
  background: var(--white); padding: 88px 32px 40px;
  transition: right 0.4s var(--ease); z-index: 999;
  box-shadow: -20px 0 60px rgba(10,10,8,0.12);
  overflow-y: auto;
}
.mobile-menu.active { right: 0; }
.mobile-nav-list { list-style: none; }
.mobile-nav-link {
  display: block; padding: 14px 0;
  font-family: var(--f-serif); font-size: 1.4rem; font-weight: 400;
  color: var(--ink); border-bottom: 1px solid rgba(10,10,8,0.06);
  transition: all 0.22s; letter-spacing: -0.01em;
}
.mobile-nav-link:hover { color: var(--gold); padding-left: 8px; }
.mobile-cta { margin-top: 32px; width: 100%; justify-content: center; }

.overlay {
  position: fixed; inset: 0;
  background: rgba(10,10,8,0.5); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 998;
}
.overlay.active { opacity: 1; visibility: visible; }

/* ══════════════════════════════════
   HERO — SPLIT EDITORIAL
══════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  overflow: hidden;
  position: relative;
}

/* Textile grid overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 72px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 72px);
  pointer-events: none; z-index: 0;
}

.hero-left {
  padding: clamp(60px,10vw,120px) clamp(28px,5vw,72px);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
}

/* Animated line accent */
.hero-line {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.hero-line-bar {
  height: 1px; width: 0;
  background: var(--gold);
  animation: line-grow 1s var(--ease) 0.6s forwards;
}
@keyframes line-grow { to { width: 48px; } }
.hero-eyebrow {
  font-family: var(--f-mono); font-size: 0.72rem;
  letter-spacing: 0.22em; color: var(--gold);
  opacity: 0; animation: fade-up 0.7s var(--ease) 0.8s forwards;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  overflow: hidden;
}
.hero h1 .word {
  display: inline-block;
  opacity: 0; transform: translateY(60px);
}
.hero h1 .word.italic { font-style: italic; color: var(--gold-lt); margin-left: 0.15em; }
.hero h1 .word:nth-child(1) { animation: word-up 0.8s var(--ease) 0.4s forwards; }
.hero h1 .word:nth-child(2) { animation: word-up 0.8s var(--ease) 0.55s forwards; }
.hero h1 .word:nth-child(3) { animation: word-up 0.8s var(--ease) 0.7s forwards; }
.hero h1 .word:nth-child(4) { animation: word-up 0.8s var(--ease) 0.85s forwards; }
@keyframes word-up {
  to { opacity: 1; transform: translateY(0); }
}

.hero-desc {
  color: rgba(255,255,255,0.55); font-size: clamp(0.95rem,1.6vw,1.15rem);
  font-weight: 300; max-width: 480px; margin-bottom: 40px;
  opacity: 0; animation: fade-up 0.8s var(--ease) 1.1s forwards;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 56px;
  opacity: 0; animation: fade-up 0.8s var(--ease) 1.3s forwards;
}

.hero-stats {
  display: flex; gap: clamp(20px,4vw,48px);
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0; animation: fade-up 0.8s var(--ease) 1.5s forwards;
}
.hero-stat-num {
  font-family: var(--f-mono); font-size: clamp(2rem,3.5vw,2.8rem);
  color: var(--white); line-height: 1; letter-spacing: 0.02em;
}
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.42); margin-top: 4px; letter-spacing: 0.05em; }

/* Hero Right — Floating Cards Visual */
.hero-right {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0f2540 0%, #162d4a 60%, #0B1929 100%);
  min-height: 500px;
}

/* Ambient glow spots */
.hero-right::before {
  content: '';
  position: absolute; top: 20%; right: 10%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(196,151,58,0.18) 0%, transparent 70%);
  animation: glow-pulse 6s ease-in-out infinite;
  pointer-events: none;
}
.hero-right::after {
  content: '';
  position: absolute; bottom: 15%; left: 5%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(192,67,42,0.12) 0%, transparent 70%);
  animation: glow-pulse 8s ease-in-out 2s infinite;
  pointer-events: none;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.15); }
}

/* Floating fabric cards */
.fabric-cards {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}

.fabric-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  padding: 20px 24px;
  color: white;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.fabric-card.c1 {
  top: 18%; left: 8%; width: 160px;
  animation: float-1 4.2s ease-in-out infinite alternate;
  border-color: rgba(196,151,58,0.3);
}
.fabric-card.c2 {
  top: 10%; right: 12%; width: 140px;
  animation: float-2 5.1s ease-in-out infinite alternate;
}
.fabric-card.c3 {
  bottom: 22%; left: 14%; width: 170px;
  animation: float-3 4.7s ease-in-out infinite alternate;
  border-color: rgba(192,67,42,0.3);
}
.fabric-card.c4 {
  bottom: 15%; right: 8%; width: 150px;
  animation: float-1 5.5s ease-in-out 0.8s infinite alternate;
}
.fabric-card.c5 {
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 180px; text-align: center;
  border-color: rgba(196,151,58,0.4);
  animation: float-2 6s ease-in-out 1.2s infinite alternate;
  background: rgba(196,151,58,0.12);
}

@keyframes float-1 {
  0%   { transform: translateY(0px) rotate(-1deg); }
  100% { transform: translateY(-18px) rotate(1.5deg); }
}
@keyframes float-2 {
  0%   { transform: translateY(0px) rotate(1.5deg); }
  100% { transform: translateY(-22px) rotate(-2deg); }
}
@keyframes float-3 {
  0%   { transform: translateY(0px) rotate(-2deg); }
  100% { transform: translateY(-14px) rotate(1deg); }
}

.fabric-card-num {
  font-family: var(--f-mono); font-size: 1.8rem; color: var(--gold-lt);
  line-height: 1; margin-bottom: 4px;
}
.fabric-card-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; }
.fabric-card-icon { font-size: 1.5rem; margin-bottom: 6px; }

/* Diagonal divider */
.hero-divider {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  opacity: 0.4;
}

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════
   MARQUEE TICKER
══════════════════════════════════ */
.ticker {
  background: var(--gold);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex; gap: 0;
  animation: ticker-scroll 28s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 20px;
  padding: 0 28px;
  font-family: var(--f-mono); font-size: 0.78rem;
  letter-spacing: 0.18em; color: rgba(255,255,255,0.9);
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-sep { width: 4px; height: 4px; background: rgba(255,255,255,0.5); border-radius: 50%; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════
   SERVICES — EDITORIAL GRID
══════════════════════════════════ */
.services-wrap { background: var(--cream); }

.section-intro {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: clamp(48px,7vw,80px);
}
.section-intro-right { max-width: 380px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(10,10,8,0.08);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: clamp(28px,4vw,44px);
  transition: background 0.35s var(--ease);
  position: relative; overflow: hidden;
  cursor: none;
}

/* Ink sweep on hover */
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--navy);
  transform: translateY(102%);
  transition: transform 0.55s var(--ease);
  z-index: 0;
}
.service-card:hover::before { transform: translateY(0); }
.service-card:hover .service-num { color: rgba(196,151,58,0.2); }
.service-card:hover .service-icon-wrap { background: rgba(255,255,255,0.12); }
.service-card:hover .service-title { color: var(--white); }
.service-card:hover .service-desc { color: rgba(255,255,255,0.6); }
.service-card:hover .service-link { color: var(--gold-lt); }

.service-num {
  font-family: var(--f-mono); font-size: 3.5rem; color: rgba(10,10,8,0.06);
  line-height: 1; margin-bottom: 20px;
  position: relative; z-index: 1;
  transition: color 0.35s;
}
.service-icon-wrap {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  border-radius: var(--r-sm);
  color: var(--gold-lt); margin-bottom: 18px;
  transition: background 0.35s;
  position: relative; z-index: 1;
}
.service-title {
  font-family: var(--f-serif); font-size: 1.35rem; font-weight: 400;
  color: var(--ink); margin-bottom: 10px; line-height: 1.3;
  transition: color 0.35s; position: relative; z-index: 1;
}
.service-desc {
  font-size: 0.9rem; color: var(--ink-60); line-height: 1.7;
  margin-bottom: 22px; transition: color 0.35s; position: relative; z-index: 1;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--navy);
  letter-spacing: 0.04em;
  transition: gap 0.3s, color 0.35s; position: relative; z-index: 1;
}
.service-link:hover { gap: 12px; }
.service-link svg { transition: transform 0.3s var(--ease-b); }
.service-link:hover svg { transform: translateX(4px); }


/* Service card cover image */
.service-cover {
  width: 100%; height: 180px;
  overflow: hidden; position: relative;
  flex-shrink: 0;
  border-radius: 0;
}
.service-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: brightness(0.88);
}
.service-card:hover .service-cover img {
  transform: scale(1.07);
  filter: brightness(0.7);
}
.service-cover-placeholder {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  display: flex; align-items: center; justify-content: center;
}
.service-cover-placeholder svg { opacity: 0.15; }

/* ══════════════════════════════════
   PRODUCTS — FLOATING CARDS
══════════════════════════════════ */
.products-section { background: var(--warm); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(10,10,8,0.06);
  transition: border-color 0.4s, box-shadow 0.4s;
  position: relative;
  cursor: none;
  /* Floating animation applied via JS with unique delays */
}
.product-card.floating {
  animation: product-sway var(--sway-dur, 4s) ease-in-out var(--sway-delay, 0s) infinite alternate;
}
@keyframes product-sway {
  0%   { transform: translateY(0px) rotate(var(--sway-rot-from, -0.4deg)); }
  100% { transform: translateY(var(--sway-y, -10px)) rotate(var(--sway-rot-to, 0.4deg)); }
}
.product-card:hover {
  border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(196,151,58,0.20);
  animation-play-state: paused;
  transform: translateY(-8px) scale(1.02) !important;
}

.product-image {
  height: 180px;
  background: linear-gradient(135deg, var(--warm) 0%, #E8E1D5 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.product-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-image img { transform: scale(1.08); }
.product-image-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.product-image-placeholder svg { color: rgba(10,10,8,0.12); }
.product-image-placeholder span { font-size: 0.7rem; letter-spacing: 0.14em; color: rgba(10,10,8,0.2); font-family: var(--f-mono); }

/* Product overlay CTA */
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(11,25,41,0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s;
  backdrop-filter: blur(2px);
}
.product-card:hover .product-overlay { opacity: 1; }

.product-content { padding: 18px 20px 22px; }
.product-title {
  font-family: var(--f-serif); font-size: 1.05rem; font-weight: 400;
  color: var(--ink); margin-bottom: 5px;
}
.product-desc { font-size: 0.82rem; color: var(--ink-60); line-height: 1.6; }

/* ══════════════════════════════════
   WHY US — ASYMMETRIC LAYOUT
══════════════════════════════════ */
.why-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,88px); align-items: center;
}
.why-list { display: flex; flex-direction: column; margin-top: 36px; }
.why-item {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid rgba(10,10,8,0.06);
  transition: padding-left 0.4s var(--ease);
}
.why-item:first-child { border-top: 1px solid rgba(10,10,8,0.06); }
.why-item:hover { padding-left: 10px; }
.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); border-radius: var(--r-sm);
  color: var(--gold-lt); margin-top: 2px;
  transition: background 0.3s, transform 0.3s var(--ease-b);
}
.why-item:hover .why-icon { background: var(--gold); transform: rotate(6deg); }
.why-text h4 { font-size: 0.9375rem; color: var(--ink); margin-bottom: 4px; font-weight: 600; font-family: var(--f-sans); }
.why-text p { font-size: 0.875rem; color: var(--ink-60); margin: 0; }

/* Stats box */
.why-right-box {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: clamp(36px,5vw,60px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background-color: rgba(255,255,255,0.06);
  overflow: hidden; border-radius: var(--r-xl);
}
.why-stat-cell {
  background: var(--navy);
  padding: 32px 24px; text-align: center;
  transition: background 0.3s;
}
.why-stat-cell:hover { background: rgba(255,255,255,0.05); }
.why-stat-cell:nth-child(1) { border-radius: var(--r-lg) 0 0 0; }
.why-stat-cell:nth-child(2) { border-radius: 0 var(--r-lg) 0 0; }
.why-stat-cell:nth-child(3) { border-radius: 0 0 0 var(--r-lg); }
.why-stat-cell:nth-child(4) { border-radius: 0 0 var(--r-lg) 0; }
.why-stat-big {
  font-family: var(--f-mono); font-size: 3rem; color: var(--gold-lt);
  line-height: 1; margin-bottom: 8px; letter-spacing: 0.03em;
}
.why-stat-small { font-size: 0.78rem; color: rgba(255,255,255,0.38); letter-spacing: 0.08em; }

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.refs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ref-card {
  background: var(--white);
  border: 1px solid rgba(10,10,8,0.06);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: all 0.4s var(--ease);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.ref-card::before {
  content: '"';
  position: absolute; top: 16px; left: 24px;
  font-family: var(--f-serif); font-size: 5rem; font-weight: 400;
  color: var(--gold); opacity: 0.12; line-height: 1;
  pointer-events: none;
}
.ref-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(196,151,58,0.14);
}
.ref-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 18px; }
.ref-quote {
  font-family: var(--f-serif); font-size: 1.05rem; font-style: italic;
  color: var(--ink); line-height: 1.75; flex: 1; margin-bottom: 24px;
}
.ref-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid rgba(10,10,8,0.06); }
.ref-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 1rem; flex-shrink: 0;
}
.ref-info h4 { font-size: 0.875rem; font-family: var(--f-sans); font-weight: 600; color: var(--ink); margin-bottom: 1px; }
.ref-info p { font-size: 0.775rem; color: var(--ink-60); margin: 0; }

/* ══════════════════════════════════
   BLOG
══════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(10,10,8,0.06); background: var(--white);
  transition: all 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: 0 24px 60px rgba(10,10,8,0.12); transform: translateY(-6px); border-color: transparent; }
.blog-image { height: 200px; overflow: hidden; background: var(--warm); display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-image img { transform: scale(1.07); }
.blog-cat {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px;
  background: var(--gold); color: white;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: var(--r-pill);
}
.blog-content { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { font-size: 0.775rem; color: rgba(10,10,8,0.35); margin-bottom: 10px; }
.blog-title { font-family: var(--f-serif); font-size: 1.2rem; font-weight: 400; margin-bottom: 10px; line-height: 1.35; }
.blog-title a { color: var(--ink); transition: color 0.25s; }
.blog-title a:hover { color: var(--gold-dk); }
.blog-excerpt { font-size: 0.875rem; color: var(--ink-60); line-height: 1.68; flex: 1; margin-bottom: 16px; }
.blog-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8125rem; font-weight: 600; color: var(--navy); transition: gap 0.25s, color 0.25s; margin-top: auto; }
.blog-link:hover { gap: 12px; color: var(--gold-dk); }

/* ══════════════════════════════════
   SEO GRID
══════════════════════════════════ */
.seo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(10,10,8,0.07);
  border-radius: var(--r-xl); overflow: hidden;
}
.seo-item { background: var(--white); padding: 32px 28px; }
.seo-item h3 { font-family: var(--f-sans); font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; letter-spacing: 0.01em; }
.seo-item p { font-size: 0.875rem; color: var(--ink-60); line-height: 1.72; margin: 0; }

/* ══════════════════════════════════
   CTA STRIP
══════════════════════════════════ */
.cta-strip {
  background: var(--navy);
  padding: clamp(60px,8vw,100px) 0;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; top: -30%; left: -8%;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(196,151,58,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-strip::after {
  content: '';
  position: absolute; bottom: -20%; right: -5%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(192,67,42,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; position: relative; z-index: 1;
}
.cta-text h2 { color: var(--white); margin-bottom: 10px; }
.cta-text p { color: rgba(255,255,255,0.52); font-size: 1.1rem; font-weight: 300; }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: clamp(60px,8vw,100px) 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-logo {
  font-family: var(--f-mono); font-size: 1.5rem; letter-spacing: 0.06em;
  color: var(--white); margin-bottom: 14px; display: block;
}
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 0.875rem; line-height: 1.72; margin-bottom: 20px; color: rgba(255,255,255,0.42); }
.footer-contact { display: flex; flex-direction: column; gap: 9px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; font-size: 0.85rem; color: rgba(255,255,255,0.48); }
.footer-contact-item svg { flex-shrink: 0; opacity: 0.4; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.48); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold-lt); }
.footer-title { font-family: var(--f-sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 18px; display: block; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.48); transition: all 0.22s; }
.footer-links a:hover { color: var(--gold-lt); padding-left: 5px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 26px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.copyright { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); border-radius: 50%;
  color: rgba(255,255,255,0.48); transition: all 0.25s var(--ease);
}
.footer-social a:hover { background: var(--gold); color: white; transform: translateY(-3px); }

/* ══════════════════════════════════
   FIXED ELEMENTS
══════════════════════════════════ */
#backToTop, .back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--ink); color: white;
  border: none; border-radius: 50%; cursor: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(10,10,8,0.2);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: all 0.35s var(--ease); z-index: 100;
}
#backToTop.visible, .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover, .back-to-top:hover { background: var(--gold); transform: translateY(-3px); }

#floatingContact, .floating-contact {
  position: fixed; bottom: 86px; right: 28px; z-index: 100;
}
#floatingContactBtn, .floating-contact-btn {
  width: 54px; height: 54px;
  background: var(--gold); border: none; border-radius: 50%; cursor: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(196,151,58,0.38);
  color: white; transition: all 0.35s var(--ease);
}
#floatingContactBtn:hover, .floating-contact-btn:hover { background: var(--gold-dk); transform: scale(1.1) rotate(8deg); }
.floating-contact-menu {
  position: absolute; bottom: 66px; right: 0;
  background: var(--white); border-radius: var(--r-md);
  box-shadow: 0 20px 60px rgba(10,10,8,0.15);
  padding: 10px; min-width: 185px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.3s var(--ease);
  border: 1px solid rgba(10,10,8,0.06);
}
.floating-contact.active .floating-contact-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.floating-contact-item {
  display: flex; align-items: center; gap: 11px; padding: 10px 13px;
  color: var(--ink); border-radius: var(--r-sm);
  font-size: 0.875rem; font-weight: 500; transition: background 0.2s;
}
.floating-contact-item:hover { background: var(--cream); }

/* ══════════════════════════════════
   SCROLL REVEAL — BASE STATES
══════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal-scale.active { opacity: 1; transform: scale(1); }

.stagger-1 { transition-delay: 0.06s; }
.stagger-2 { transition-delay: 0.13s; }
.stagger-3 { transition-delay: 0.20s; }
.stagger-4 { transition-delay: 0.27s; }
.stagger-5 { transition-delay: 0.34s; }
.stagger-6 { transition-delay: 0.41s; }
.stagger-7 { transition-delay: 0.48s; }
.stagger-8 { transition-delay: 0.55s; }

/* ══════════════════════════════════
   PAGE HEADERS (inner pages)
══════════════════════════════════ */
.page-header-section {
  background: var(--navy); padding: clamp(60px,8vw,90px) 0;
  position: relative; overflow: hidden;
}
.page-header-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 72px);
  pointer-events: none;
}
.page-header-title { font-family: var(--f-serif); font-size: clamp(3rem,7vw,6rem); color: white; letter-spacing: -0.03em; position: relative; z-index: 1; }
.page-header-desc { color: rgba(255,255,255,0.55); font-size: 1.1rem; font-weight: 300; max-width: 520px; margin-top: 12px; position: relative; z-index: 1; }

/* ══════════════════════════════════
   FORMS
══════════════════════════════════ */
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 13px 16px;
  font-family: var(--f-sans); font-size: 0.9375rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid rgba(10,10,8,0.12);
  border-radius: var(--r-sm); transition: all 0.25s; appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(196,151,58,0.10);
}
.form-textarea { min-height: 140px; resize: vertical; }

/* ══════════════════════════════════
   COUNTING NUMBERS
══════════════════════════════════ */
.count-num { transition: all 0.1s; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .seo-grid { grid-template-columns: repeat(2, 1fr); }
  .refs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 80px var(--pad-x); min-height: 100svh; justify-content: center; }
  .why-layout { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .section-intro { flex-direction: column; gap: 16px; }
}

@media (max-width: 768px) {
  :root { --sec-y: 60px; }
  .top-bar-social { display: none; }
  .top-bar-left { gap: 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .refs-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .seo-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .why-right-box { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #backToTop, .back-to-top, #floatingContact, .floating-contact { bottom: 20px; right: 16px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .why-right-box { grid-template-columns: 1fr; }
  .hero h1 { font-size: 3rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Mobile cursor off ── */
@media (hover: none) {
  .btn { cursor: pointer; }
  .service-card { cursor: pointer; }
  .product-card { cursor: pointer; }
}

/* ══════════════════════════════════
   MASKOT SİSTEMİ
══════════════════════════════════ */

/* Intro ekran */
#mascotIntro { transition: opacity .45s; }

/* Floating maskot */
#mascotFloat {
  pointer-events: none;
  will-change: transform, bottom;
}
#mascotFloat #msvg {
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.32));
  transition: filter .3s;
}
#mascotFloat:hover #msvg {
  filter: drop-shadow(0 12px 32px rgba(196,151,58,.4));
}

/* Konuşma balonu ok */
#fBubble::after {
  content: '';
  position: absolute;
  right: -8px;
  bottom: 14px;
  border: 8px solid transparent;
  border-left-color: white;
  border-right: none;
}

/* İntro balonu ok */
#introBubble::after {
  content: '';
  position: absolute;
  left: -8px;
  bottom: 12px;
  border: 8px solid transparent;
  border-right-color: white;
  border-left: none;
}

/* Mobil ayar */
@media (max-width: 768px) {
  #mascotFloat {
    right: 12px !important;
    bottom: 180px !important;
  }
  #mascotFloat #msvg { width: 88px; height: 117px; }
  #fBubble { font-size: 11px !important; right: 98px !important; }
}

/* ══════════════════════════════════════
   DÜZELTMELER v13
══════════════════════════════════════ */

/* Scroll restore — tarayıcı smooth ile çakışmasin */
html { overflow-anchor: none; }

/* ── Mobilde back-to-top ve iletişim butonu çakışması ── */
@media (max-width: 768px) {
  #floatingContact, .floating-contact { bottom: 80px; right: 14px; }
  #backToTop, .back-to-top           { bottom: 14px; right: 14px; }
}

/* ── İletişim menüsü açılınca maskotu yukarı it ── */
/* floatingContact.active → mascotFloat yukarı kayar */
#mascotFloat {
  transition: bottom 0.45s cubic-bezier(0.34,1.56,0.64,1), opacity 0.6s;
}
/* Menü açıkken maskot daha yukarıya çıkar */
body.contact-open #mascotFloat {
  bottom: 280px !important;
}

/* ── Hero responsive (hizmet/şehir detay) ── */
@media (max-width: 768px) {
  /* Hizmet detay & şehir detay hero grid */
  section[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  section[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Hero right paneli mobilde gizle */
  .hero-detail-right { display: none !important; }
}

/* ── Products grid mobil ── */
@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ── Services grid mobil ── */
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── Why layout mobil ── */
@media (max-width: 768px) {
  .why-layout { grid-template-columns: 1fr !important; }
}

/* ── Refs grid mobil ── */
@media (max-width: 640px) {
  .refs-grid { grid-template-columns: 1fr; }
}

/* ── Blog grid mobil ── */
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ── Detay content grid mobil ── */
@media (max-width: 768px) {
  div[style*="grid-template-columns:2fr 1fr"],
  div[style*="grid-template-columns: 2fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Floating product cards canvas ── */
.hizmet-urun-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── 81 il canvas ── */
.sehir-map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Detay sayfaları hero mobil ── */
@media (max-width: 768px) {
  .detail-hero-section {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .hero-detail-right {
    display: none !important;
  }
  .detail-hero-section > div:first-child {
    padding: clamp(80px,12vw,100px) clamp(20px,5vw,40px) clamp(40px,6vw,60px) !important;
  }
}

/* ── İçerik grid mobil (2fr 1fr → 1fr) ── */
@media (max-width: 900px) {
  .detail-hero-section + section .container > div[style*="2fr 1fr"],
  .detail-hero-section + section .container > div[style*="2fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
