/* ============================================================
   zadepak — premium light theme
   Font: Roboto | Brand: #EE5049
   ============================================================ */

:root {
  --bg: #FBFAF7;
  --surface: #FFFFFF;
  --ink: #1B1815;
  --ink-soft: #45403A;
  --muted: #7A746C;
  --line: #EDE9E1;
  --brand: #EE5049;
  --brand-dark: #D93A33;
  --brand-soft: #FCEBE9;
  --brand-softer: #FDF4F2;
  --wa: #25D366;
  --wa-dark: #1DA851;
  --gold: #E8B44A;
  --radius: 22px;
  --radius-lg: 30px;
  --shadow-sm: 0 2px 10px rgba(27, 24, 21, .06);
  --shadow-md: 0 14px 40px -12px rgba(27, 24, 21, .14);
  --shadow-lg: 0 30px 70px -20px rgba(27, 24, 21, .22);
  --shadow-brand: 0 16px 40px -10px rgba(238, 80, 73, .45);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --header-h: 78px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: clip;
}

::selection { background: var(--brand); color: #fff; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: #D8D2C8;
  border-radius: 8px;
  border: 3px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--brand); }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.ic { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }
.ic-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), #FF7A5C);
  z-index: 1200;
  transition: width .12s linear;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-weight: 700;
  letter-spacing: .01em;
  border-radius: 999px;
  padding: .85em 1.7em;
  font-size: .98rem;
  transition: transform .35s var(--ease-spring), box-shadow .35s ease, background .3s ease, color .3s ease, border-color .3s;
  will-change: transform;
  white-space: nowrap;
}
.btn:active { transform: scale(.96); }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-3px); box-shadow: 0 22px 46px -12px rgba(238,80,73,.55); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.6px solid var(--line);
  box-shadow: none;
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-3px); }
.btn-ghost .ic { transition: transform .3s var(--ease-spring); }
.btn-ghost:hover .ic { transform: translateX(5px); }

.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 16px 40px -10px rgba(37, 211, 102, .5);
}
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-3px); }

.btn-outline-light {
  border: 1.6px solid rgba(255,255,255,.35);
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-3px); }

.btn-lg { padding: 1.02em 2.05em; font-size: 1.04rem; }
.btn-sm { padding: .62em 1.3em; font-size: .9rem; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s;
}
.site-header.scrolled {
  background: rgba(251, 250, 247, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -18px rgba(27,24,21,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
}
.brand-logo {
  width: 148px;
  height: auto;
  transition: transform .4s var(--ease-spring);
}
.brand:hover .brand-logo { transform: scale(1.04) rotate(-1.2deg); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  position: relative;
  font-weight: 500;
  font-size: .97rem;
  color: var(--ink-soft);
  padding: .5em .85em;
  border-radius: 999px;
  transition: color .25s, background .25s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2.4px;
  border-radius: 2px;
  background: var(--brand);
  transform: translateX(-50%);
  transition: width .3s var(--ease-out);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 42%; }
.nav-link.active { color: var(--brand); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.header-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: .58em .9em;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--ink-soft);
  font-size: .86rem;
  font-weight: 700;
  transition: color .25s, border-color .25s, transform .35s var(--ease-spring), background .25s;
}
.header-instagram .ic { width: 19px; height: 19px; color: #D62976; }
.header-instagram:hover {
  color: var(--brand);
  border-color: rgba(238,80,73,.3);
  background: var(--surface);
  transform: translateY(-2px);
}
.nav-social-mobile { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5.5px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 21px;
  height: 2.2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .35s var(--ease-out), opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.7px) rotate(-45deg); }

.nav-cta-mobile { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 46px) 0 70px;
  overflow: hidden;
}

.hero-deco { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
  animation: blobFloat 14s ease-in-out infinite alternate;
}
.blob-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #FBD4CF, transparent 68%);
  top: -160px; right: -120px;
}
.blob-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #FBEEE0, transparent 68%);
  bottom: -140px; left: -140px;
  animation-delay: -6s;
}
@keyframes blobFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.12); }
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(27,24,21,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(27,24,21,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 60% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 60% 30%, #000 30%, transparent 75%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid #F7D5D1;
  padding: .62em 1.15em;
  border-radius: 999px;
}
.hero-title {
  margin: 26px 0 22px;
  font-size: clamp(2.7rem, 5.6vw, 4.6rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.03em;
  color: var(--ink);
}
.title-accent {
  position: relative;
  color: var(--brand);
  white-space: nowrap;
}
/* "her yudumda" altındaki el çizimi çizgi — ilk açılışta soldan sağa çizilir */
.accent-line {
  position: absolute;
  left: 0; right: 0; bottom: .06em;
  width: 100%;
  height: .16em;
  overflow: visible;
  pointer-events: none;
}
.accent-line path {
  fill: none;
  stroke: var(--brand);
  stroke-width: 4;
  stroke-linecap: round;
  opacity: .45;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: accent-draw 1.15s var(--ease-out) .75s forwards;
}
@keyframes accent-draw {
  to { stroke-dashoffset: 0; }
}

.hero-sub {
  max-width: 46ch;
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 36px;
}
.hero-badges li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.hero-badges .ic { color: var(--brand); width: 1.3em; height: 1.3em; }

/* hero visual */
.hero-visual {
  position: relative;
  height: min(600px, 66vh);
}
.hero-img-wrap {
  position: absolute;
  inset: 0 8% 0 16%;
  border-radius: 300px 300px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: heroFloat 7s ease-in-out infinite;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}
.hero-img-customer { object-position: 50% 56%; }
.hero-img-ring {
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
  pointer-events: none;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(237,233,225,.9);
  border-radius: 18px;
  padding: 11px 17px 11px 11px;
  box-shadow: var(--shadow-md);
  animation: chipFloat 6s ease-in-out infinite;
  z-index: 3;
}
.chip-icon {
  width: 40px; height: 40px;
  object-fit: contain;
  background: var(--brand-softer);
  border-radius: 12px;
  padding: 5px;
}
.float-chip strong { display: block; font-size: .92rem; line-height: 1.25; }
.float-chip span { display: block; font-size: .78rem; color: var(--muted); }

.chip-1 { top: 9%; left: -2%; animation-delay: -1s; }
.chip-2 { top: 42%; right: -3%; animation-delay: -3s; }
.chip-3 { bottom: 7%; left: 4%; animation-delay: -5s; }

@keyframes chipFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-1.2deg); }
}

.orbit-badge {
  position: absolute;
  top: -4%;
  right: 4%;
  width: 132px; height: 132px;
  z-index: 4;
  display: grid;
  place-items: center;
}
.orbit-text {
  position: absolute; inset: 0;
  animation: spin 16s linear infinite;
}
.orbit-text text {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .18em;
  fill: var(--ink);
  font-family: "Roboto", sans-serif;
}
.orbit-icon {
  width: 46px;
  height: 58px;
  object-fit: contain;
  background: var(--surface);
  border-radius: 50%;
  padding: 16px;
  box-shadow: var(--shadow-md);
  width: 76px; height: 76px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s;
}
.scroll-hint:hover { color: var(--brand); }
.mouse {
  width: 24px; height: 38px;
  border: 2px solid currentColor;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.wheel {
  width: 3.4px; height: 8px;
  border-radius: 3px;
  background: currentColor;
  animation: wheel 1.6s ease-in-out infinite;
}
@keyframes wheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--brand);
  color: #fff;
  overflow: hidden;
  padding: 17px 0;
  transform: none;
  box-shadow: var(--shadow-brand);
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  display: flex;
  align-items: center;
  font-weight: 900;
  font-size: 1.06rem;
  letter-spacing: .14em;
  white-space: nowrap;
}
.marquee-track i {
  font-style: normal;
  margin: 0 22px;
  font-size: .8em;
  opacity: .75;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- stats ---------- */
.stats { padding: 84px 0 30px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 920px;
  margin-inline: auto;
}
.stat {
  text-align: center;
  padding: 34px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .45s var(--ease-spring), box-shadow .4s, border-color .3s;
}
.stat:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: #F3CFCB;
}
.stat-num {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--brand);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
}
.stat-num.stat-quality {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
}
.stat-num em {
  font-style: normal;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}
.stat p {
  margin-top: 10px;
  font-size: .93rem;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- sections common ---------- */
.section {
  position: relative;
  padding: 110px 0;
  overflow: clip;
}
/* sabit header'ın altında kalmasın diye çapa boşluğu */
section[id], footer[id] { scroll-margin-top: calc(var(--header-h) + 12px); }
.ghost-text {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
  overflow: hidden;
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 900;
  letter-spacing: .04em;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(27,24,21,.055);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.section-head {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 62px;
}
.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .26em;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid #F7D5D1;
  padding: .55em 1.2em;
  border-radius: 999px;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.12;
}
.section-title span { color: var(--brand); }
.section-sub {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.06rem;
}

/* ---------- products ---------- */
.products { background: var(--bg); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-grid-single {
  grid-template-columns: minmax(0, 880px);
  justify-content: center;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .45s ease, border-color .35s;
  transform-style: preserve-3d;
  will-change: transform;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: #F3CFCB;
}
.product-media {
  position: relative;
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.product-card:hover .product-media img { transform: scale(1.09) rotate(.6deg); }

/* tek "Karton Bardak" kartı içinde yan yana referans görselleri */
.product-media-strip {
  aspect-ratio: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  background: var(--line);
}
.ps-shot {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg);
}
.ps-shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.product-card:hover .product-media-strip img { transform: none; }
.product-media-strip .ps-shot:hover img { transform: scale(1.07); }

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--brand);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .5em 1em;
  border-radius: 999px;
  box-shadow: var(--shadow-brand);
}
.badge-alt { background: var(--ink); box-shadow: var(--shadow-md); }
.badge-dark { background: #B98A2F; box-shadow: var(--shadow-md); }

.product-body { padding: 28px 28px 30px; }
.product-body h3 {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -.01em;
}
.product-body > p {
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: .98rem;
}
/* ---------- ölçü / kullanım alanı tablosu ---------- */
.size-guide {
  max-width: 880px;
  margin: 44px auto 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.size-guide-head {
  padding: 30px 30px 20px;
  text-align: center;
}
.size-guide-head h3 {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -.01em;
}
.size-guide-head p {
  margin-top: 8px;
  color: var(--muted);
  font-size: .95rem;
}
.size-table-wrap { overflow-x: auto; }
.size-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.size-table th,
.size-table td { padding: 14px 30px; }
.size-table thead th {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-softer);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.size-table tbody tr + tr { border-top: 1px solid var(--line); }
.size-table tbody tr { transition: background .25s; }
.size-table tbody tr:hover { background: var(--brand-softer); }
.size-table tbody th {
  width: 1%;
  white-space: nowrap;
  font-weight: 400;
}
.size-badge {
  display: inline-block;
  min-width: 74px;
  text-align: center;
  background: var(--brand);
  color: #fff;
  font-size: .87rem;
  font-weight: 900;
  padding: .42em .9em;
  border-radius: 999px;
}
.size-table tbody td {
  color: var(--ink-soft);
  font-size: .97rem;
  font-weight: 500;
}

.product-specs { margin-bottom: 22px; }
.product-specs li {
  position: relative;
  padding-left: 24px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.product-specs li::before {
  content: "";
  position: absolute;
  left: 0; top: .48em;
  width: 12px; height: 6.5px;
  border-left: 2.4px solid var(--brand);
  border-bottom: 2.4px solid var(--brand);
  transform: rotate(-45deg);
  border-radius: 1px;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: .96rem;
  color: var(--brand);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color .3s, gap .3s var(--ease-spring);
}
.product-link:hover { border-color: var(--brand); gap: 14px; }

/* ---------- features ---------- */
.features {
  background: linear-gradient(180deg, var(--brand-softer), var(--bg) 70%);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-grid-three { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 26px 30px;
  overflow: hidden;
  transition: transform .45s var(--ease-spring), box-shadow .4s;
}
.feature-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-lg); }
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), #FF8A66);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 62px; height: 62px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 22px;
  transition: transform .5s var(--ease-spring), background .3s, color .3s;
}
.feature-icon .ic { width: 28px; height: 28px; }
.feature-card:hover .feature-icon {
  transform: rotate(-8deg) scale(1.08);
  background: var(--brand);
  color: #fff;
}
.feature-card h3 { font-size: 1.2rem; font-weight: 900; margin-bottom: 9px; }
.feature-card p { font-size: .93rem; color: var(--muted); }
.feature-num {
  position: absolute;
  right: 18px; top: 16px;
  font-size: 2.6rem;
  font-weight: 900;
  color: rgba(27,24,21,.06);
  line-height: 1;
  transition: color .4s;
}
.feature-card:hover .feature-num { color: rgba(238,80,73,.16); }

/* ---------- process ---------- */
.process { background: var(--bg); overflow: hidden; }
.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 74px;
}
.process-line::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 6%;
  right: 6%;
  height: 2.4px;
  background: repeating-linear-gradient(90deg, #E5DFD4 0 10px, transparent 10px 20px);
}
.process-step {
  position: relative;
  text-align: center;
  padding: 0 8px;
}
.step-dot {
  position: relative;
  width: 68px; height: 68px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.6px solid var(--line);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease-spring), background .3s, border-color .3s;
  z-index: 2;
}
.step-dot span {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--brand);
  transition: color .3s;
}
.process-step:hover .step-dot {
  transform: scale(1.12) rotate(6deg);
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: var(--shadow-brand);
}
.process-step:hover .step-dot span { color: #fff; }
.process-step h3 { font-size: 1.14rem; font-weight: 900; margin-bottom: 8px; }
.process-step p { font-size: .9rem; color: var(--muted); }

.process-media {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 22px;
}
.pm-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 10;
}
.pm-item video, .pm-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.pm-item:hover video, .pm-item:hover img { transform: scale(1.06); }
.pm-label {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(27,24,21,.72);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .55em 1.05em;
  border-radius: 999px;
}

/* ---------- gallery ---------- */
.gallery { background: var(--surface); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.g-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  outline: none;
}
.g-item:focus-visible {
  box-shadow: 0 0 0 4px var(--surface), 0 0 0 7px var(--brand), var(--shadow-md);
}
.g-item:nth-child(3n+2) { transform: translateY(24px); }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out), filter .5s;
}
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,24,21,.72), transparent 46%);
  opacity: 0;
  transition: opacity .45s;
}
.g-item figcaption {
  position: absolute;
  left: 18px; bottom: 16px;
  z-index: 2;
  color: #fff;
  transform: translateY(14px);
  opacity: 0;
  transition: transform .5s var(--ease-out), opacity .4s;
}
.g-item figcaption strong { display: block; font-size: 1.02rem; font-weight: 900; }
.g-item figcaption span { font-size: .8rem; opacity: .85; font-weight: 500; }
.g-item:hover::after { opacity: 1; }
.g-item:hover figcaption { transform: translateY(0); opacity: 1; }
.g-item:hover img { transform: scale(1.08); }

/* ---------- reviews ---------- */
.testimonials {
  background:
    radial-gradient(circle at 90% 0%, rgba(238,80,73,.1), transparent 35%),
    var(--bg);
}
.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}
.reviews-head .section-title { margin-bottom: 0; }
.reviews-marquee {
  overflow: hidden;
  padding: 6px max(24px, calc((100vw - 1200px) / 2)) 24px;
  margin-inline: calc(50% - 50vw);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.reviews-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  transform: translate3d(calc(-50% - 9px), 0, 0);
  animation: reviewsMoveRight 58s linear infinite;
  will-change: transform;
}
.reviews-set {
  display: flex;
  align-items: stretch;
  gap: 18px;
}
.review-shot {
  display: block;
  width: clamp(270px, 23vw, 340px);
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: transform .45s var(--ease-spring), box-shadow .35s;
}
.review-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1320 / 2346;
  object-fit: cover;
}
.review-shot:hover,
.review-shot:focus-visible {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.review-shot:focus-visible { outline: 3px solid rgba(238,80,73,.4); outline-offset: 4px; }
.reviews-marquee:hover .reviews-track,
.reviews-marquee:focus-within .reviews-track { animation-play-state: paused; }
.reviews-note { color: var(--muted); font-size: .82rem; margin-top: 4px; text-align: center; }

@keyframes reviewsMoveRight {
  from { transform: translate3d(calc(-50% - 9px), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.reels-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
/* referanslar bölümünde tek video + Instagram kartı */
.reels-row.reels-row-single {
  grid-template-columns: repeat(2, minmax(0, 280px));
  justify-content: center;
}
.reel-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9 / 15;
  box-shadow: var(--shadow-md);
}
.reel-card video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.reel-card:hover video { transform: scale(1.05); }
.reel-tag {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(27,24,21,.6);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  padding: .5em .95em;
  border-radius: 999px;
}
.reel-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: var(--radius);
  border: 2px dashed #E4DCD0;
  color: var(--muted);
  text-align: center;
  transition: border-color .3s, background .3s, transform .45s var(--ease-spring);
  aspect-ratio: 9 / 15;
}
.reel-more:hover {
  border-color: var(--brand);
  background: var(--brand-softer);
  transform: translateY(-6px);
  color: var(--brand);
}
.reel-more-plus {
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
}
.reel-more strong { font-size: 1rem; font-weight: 900; color: var(--ink); }
.reel-more:hover strong { color: var(--brand); }
.reel-more span { font-size: .82rem; font-weight: 500; }

/* ---------- cta band ---------- */
.cta-band {
  position: relative;
  background: #181410;
  color: #fff;
  padding: 110px 0;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238,80,73,.32), transparent 65%);
  top: -260px; right: -160px;
  pointer-events: none;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.tag-light {
  background: rgba(238,80,73,.16);
  border-color: rgba(238,80,73,.4);
  color: #FF8D85;
}
.cta-copy h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.12;
}
.cta-copy h2 em {
  font-style: normal;
  color: var(--brand);
}
.cta-copy p {
  margin: 18px 0 32px;
  color: rgba(255,255,255,.66);
  font-size: 1.08rem;
  max-width: 44ch;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.7);
  transform: rotate(2.4deg);
  transition: transform .6s var(--ease-spring);
}
.cta-visual:hover { transform: rotate(0deg) scale(1.02); }
.cta-visual img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ---------- location ---------- */
.location-section {
  padding: 92px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.location-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 54px;
}
.location-copy h2 {
  margin: 16px 0 20px;
  color: var(--ink);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -.035em;
}
.location-copy h2 strong { color: var(--brand); }
.location-copy p { color: var(--muted); max-width: 46ch; font-size: 1.02rem; }
.location-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 28px; }
.location-instagram { color: var(--ink-soft); font-weight: 700; border-bottom: 1px solid var(--line); padding: .55em .1em; }
.location-instagram:hover { color: var(--brand); border-color: var(--brand); }
.map-frame {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.map-frame::after {
  content: "Konya Merkez";
  position: absolute;
  left: 18px;
  bottom: 18px;
  pointer-events: none;
  color: #fff;
  background: rgba(27,24,21,.78);
  backdrop-filter: blur(8px);
  padding: .65em 1em;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 430px; border: 0; display: block; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 76px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 56px;
}
.footer-grid-compact {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
  align-items: start;
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}
.footer-grid-compact .footer-brand p { margin-inline: auto; }
.footer-grid-compact .footer-social { justify-content: center; }
.footer-grid-compact .footer-contact h4 { text-align: center; }
.footer-grid-compact .footer-contact a,
.footer-grid-compact .footer-contact span { justify-content: center; }
.footer-logo { width: 158px; margin-bottom: 18px; }
.footer-brand p {
  color: var(--muted);
  font-size: .95rem;
  max-width: 34ch;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.footer-social a {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: transform .4s var(--ease-spring), background .3s, color .3s, border-color .3s;
}
.footer-social a .ic { width: 20px; height: 20px; }
.footer-social a:hover {
  transform: translateY(-4px) rotate(-6deg);
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}
.footer-col a, .footer-contact span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .96rem;
  font-weight: 500;
  margin-bottom: 13px;
  transition: color .25s, transform .3s var(--ease-out);
}
.footer-col a:hover { color: var(--brand); transform: translateX(5px); }
.footer-contact .ic { color: var(--brand); width: 18px; height: 18px; }

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .88rem;
}
.footer-credit {
  color: color-mix(in srgb, var(--muted) 78%, transparent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: right;
}
.footer-mini { font-weight: 500; text-align: right; }

/* ---------- floating bubbles ---------- */
.float-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.float-btn {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 12px;
  min-height: 58px;
  transform: scale(0);
  animation: bubbleIn .7s var(--ease-spring) forwards;
}
.float-wa { animation-delay: 1.1s; }
.float-ig { animation-delay: 1.35s; }
@keyframes bubbleIn {
  from { transform: scale(0) translateY(26px); }
  to { transform: scale(1) translateY(0); }
}

.float-circle {
  position: relative;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 14px 34px -8px rgba(27,24,21,.4);
  transition: transform .45s var(--ease-spring), box-shadow .35s;
  z-index: 2;
}
.float-circle .ic { width: 27px; height: 27px; }
.float-wa .float-circle { background: linear-gradient(145deg, #2BE476, var(--wa-dark)); }
.float-ig .float-circle { background: linear-gradient(45deg, #FEDA75 0%, #FA7E1E 25%, #D62976 55%, #962FBF 80%, #4F5BD5 100%); }
.float-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  filter: blur(12px);
  opacity: .55;
  z-index: -1;
  transition: opacity .35s;
}
.float-btn:hover .float-circle {
  transform: scale(1.13) rotate(-8deg);
  box-shadow: 0 20px 44px -8px rgba(27,24,21,.5);
}
.float-btn:hover .float-circle::after { opacity: .85; }

/* idle wiggle */
.float-wa .float-circle { animation: waWiggle 5.5s ease-in-out infinite 2.6s; }
@keyframes waWiggle {
  0%, 88%, 100% { transform: rotate(0) scale(1); }
  90% { transform: rotate(-12deg) scale(1.08); }
  92% { transform: rotate(10deg) scale(1.1); }
  94% { transform: rotate(-8deg) scale(1.08); }
  96% { transform: rotate(6deg) scale(1.05); }
  98% { transform: rotate(-3deg) scale(1.02); }
}

/* pulse ring (whatsapp) */
.float-ring {
  position: absolute;
  right: 0; bottom: 0;
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 2.5px solid var(--wa);
  animation: ringPulse 2.2s cubic-bezier(.2,.6,.4,1) infinite;
  pointer-events: none;
}
@keyframes ringPulse {
  0% { transform: scale(1); opacity: .9; }
  70%, 100% { transform: scale(1.75); opacity: 0; }
}

.float-label {
  background: var(--surface);
  color: var(--ink);
  font-size: .84rem;
  font-weight: 700;
  padding: .62em 1.1em;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .35s, transform .45s var(--ease-spring);
  pointer-events: none;
  white-space: nowrap;
}
.float-btn:hover .float-label {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- fullscreen gallery ---------- */
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  grid-template-columns: minmax(52px, 90px) minmax(0, 1fr) minmax(52px, 90px);
  align-items: center;
  gap: 16px;
  padding: 68px 24px 40px;
  background: rgba(13,12,11,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.lightbox-figure {
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: calc(100svh - 150px);
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 100px rgba(0,0,0,.55);
}
.lightbox-figure figcaption { color: #fff; font-size: .94rem; font-weight: 700; text-align: center; }
.lightbox-close, .lightbox-nav {
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  transition: background .25s, transform .3s var(--ease-spring);
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--brand); transform: scale(1.06); }
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  font-size: 2rem;
  line-height: 1;
}
.lightbox-nav { width: 56px; height: 56px; justify-self: center; border-radius: 18px; }
.lightbox-nav .ic { width: 24px; height: 24px; }
.lightbox-counter {
  position: absolute;
  left: 20px;
  top: 24px;
  color: rgba(255,255,255,.78);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .12em;
}
body.menu-open, body.modal-open { overflow: hidden; }

/* online dot on whatsapp */
.float-wa::after {
  content: "";
  position: absolute;
  right: 1px; bottom: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #2BE476;
  border: 3px solid var(--bg);
  z-index: 3;
}

/* ---------- reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .8s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 120ms);
  will-change: opacity, transform;
}
.reveal[data-delay="1"] { --d: 1; }
.reveal[data-delay="2"] { --d: 2; }
.reveal[data-delay="3"] { --d: 3; }
.reveal[data-delay="4"] { --d: 4; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .header-instagram span { display: none; }
  .header-instagram { width: 42px; height: 42px; justify-content: center; padding: 0; }
  .hero-grid { gap: 34px; }
  .feature-grid, .feature-grid-three { grid-template-columns: repeat(2, 1fr); }
  .process-line { grid-template-columns: repeat(2, 1fr); gap: 40px 22px; }
  .process-line::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .g-item:nth-child(3n+2) { transform: none; }
  .reels-row { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 920px) {
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 14px; right: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(16px);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 14px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-14px) scale(.98);
    pointer-events: none;
    transition: opacity .35s, transform .45s var(--ease-spring);
    max-height: calc(100dvh - var(--header-h) - 24px);
    overflow-y: auto;
    z-index: 1001;
  }
  .main-nav.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  .nav-link { padding: .85em 1.1em; font-size: 1.04rem; }
  .nav-link::after { display: none; }
  .nav-link:hover { background: var(--brand-softer); color: var(--brand); }
  .nav-cta-mobile { display: inline-flex; justify-content: center; margin-top: 8px; }
  .nav-social-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: .85em 1.1em;
    color: var(--ink-soft);
    font-size: .96rem;
    font-weight: 700;
    border-radius: 14px;
    background: var(--brand-softer);
  }
  .nav-social-mobile span { color: var(--brand); }
  .site-header.menu-open {
    background: rgba(251,250,247,.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .hero { padding-top: calc(var(--header-h) + 26px); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-cta, .hero-badges { justify-content: center; }
  .hero-visual {
    height: 460px;
    max-width: 480px;
    margin: 20px auto 0;
    width: 100%;
  }
  .scroll-hint { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .process-media { grid-template-columns: 1fr 1fr; }
  .pm-img { display: none; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .review-shot { width: min(76vw, 320px); }
  .location-grid { grid-template-columns: 1fr; gap: 34px; }
  .location-copy { text-align: center; }
  .location-copy p { margin-inline: auto; }
  .location-actions { justify-content: center; }
}

@media (max-width: 640px) {
  .section { padding: 78px 0; }
  .stats { padding-top: 62px; }
  .stats-grid, .feature-grid, .feature-grid-three { grid-template-columns: 1fr; }
  .eyebrow {
    font-size: .7rem;
    letter-spacing: .15em;
    padding: .6em .95em;
    gap: 8px;
  }
  .hero-title { font-size: clamp(2.35rem, 11vw, 3rem); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
  .reels-row { grid-template-columns: repeat(2, 1fr); gap: 13px; }
  .reels-row.reels-row-single { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reel-card, .reel-more { aspect-ratio: 9 / 14; }
  .product-media-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .size-guide { border-radius: var(--radius); margin-top: 32px; }
  .size-guide-head { padding: 24px 20px 16px; }
  .size-guide-head h3 { font-size: 1.18rem; }
  .size-table th, .size-table td { padding: 12px 18px; }
  .size-table tbody td { font-size: .92rem; }
  .size-badge { min-width: 62px; font-size: .81rem; }
  .process-media { grid-template-columns: 1fr; }
  .pm-item { aspect-ratio: 16 / 11; }
  .hero-visual { height: 400px; }
  .orbit-badge { width: 106px; height: 106px; top: -2%; right: 0; }
  .orbit-icon { width: 60px; height: 60px; padding: 12px; }
  .float-chip { padding: 8px 13px 8px 8px; border-radius: 15px; }
  .chip-icon { width: 32px; height: 32px; }
  .float-chip strong { font-size: .82rem; }
  .float-chip span { font-size: .7rem; }
  .chip-1 { left: 1%; }
  .chip-2 { right: 1%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; }
  .footer-credit { text-align: center; }
  .footer-mini { text-align: center; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .float-actions { right: 16px; bottom: max(16px, env(safe-area-inset-bottom)); flex-direction: row; align-items: center; }
  .float-label { display: none; }
  .float-btn { min-height: 54px; }
  .float-circle { width: 54px; height: 54px; }
  .float-ring { width: 54px; height: 54px; }
  .brand-logo { width: 128px; }
  .header-actions { gap: 9px; }
  .header-instagram { width: 42px; height: 42px; }
  .reviews-head { align-items: center; margin-bottom: 28px; }
  .reviews-marquee {
    padding-inline: 24px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  }
  .reviews-track, .reviews-set { gap: 14px; }
  .reviews-track {
    transform: translate3d(calc(-50% - 7px), 0, 0);
    animation-duration: 48s;
  }
  .review-shot { width: min(82vw, 310px); }
  .location-section { padding: 76px 0; }
  .location-actions { flex-direction: column; align-items: stretch; }
  .location-actions .btn, .location-instagram { width: 100%; justify-content: center; text-align: center; }
  .map-frame, .map-frame iframe { min-height: 330px; }
  .gallery-lightbox {
    grid-template-columns: 1fr;
    padding: 70px 14px 94px;
  }
  .lightbox-figure img { max-height: calc(100svh - 190px); }
  .lightbox-nav {
    position: absolute;
    bottom: 24px;
    width: 52px;
    height: 52px;
  }
  .lightbox-prev { left: calc(50% - 64px); }
  .lightbox-next { right: calc(50% - 64px); }
  .lightbox-counter { top: 26px; left: 16px; }
}

@media (hover: none) {
  .g-item::after { opacity: .72; }
  .g-item figcaption { opacity: 1; transform: translateY(0); }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .accent-line path { animation: none; stroke-dashoffset: 0; }
  .reviews-marquee { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
  .reviews-track { animation: none; transform: none; }
  .reviews-set[aria-hidden="true"] { display: none; }
}
