/* =========================================================================
   Bay Petshop & Pet Kuaför
   Renkler logodan ve dükkân cephesinden: tabela sarısı, tente turkuazı.
   Mobil öncelikli; 768px (tablet) ve 1100px (masaüstü) kırılımları.
   ========================================================================= */

/* ---------- Fontlar (yerel dosya, Türkçe karakter ve ₺ dahil) ---------- */
@font-face {
  font-family: "Baloo 2";
  src: url("../fonts/baloo2-latin.woff2") format("woff2");
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("../fonts/figtree-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Değişkenler ---------- */
:root {
  --tabela: #F8C02A;
  --tente: #5EC6DE;
  --ink: #312F2E;
  --ink-deep: #1F1D1C;
  --petrol: #0E4A53;
  --buz: #EAF6FA;
  --muted: #4E4B48;
  --label: #6A6663;
  --line: #E7E2D9;
  --chip-line: #D3E4E9;
  --hole: #C9C3B8;
  --dash: #E4DDD0;
  --foot-text: #BFE6EF;

  --display: "Baloo 2", "Trebuchet MS", sans-serif;
  --body: "Figtree", "Segoe UI", system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --gutter: 20px;
  --header-h: 72px;
}
@media (min-width: 768px)  { :root { --gutter: 32px; } }
@media (min-width: 1100px) { :root { --gutter: 40px; --header-h: 96px; } }

/* ---------- Temel ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
picture { display: contents; }
h1, h2, h3, p, figure, ul { margin: 0; }
ul { padding: 0; list-style: none; }
address { font-style: normal; }
a { color: var(--petrol); }
a:hover { color: var(--ink); }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--petrol); outline-offset: 3px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.container {
  width: min(var(--container), 100% - 2 * var(--gutter));
  margin-inline: auto;
}

.skip-link {
  position: absolute; left: 12px; top: -80px; z-index: 100;
  padding: 12px 18px; border-radius: 999px;
  background: var(--ink); color: #fff; font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 12px; color: #fff; }

.icon {
  width: 20px; height: 20px; flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.icon--paw { fill: currentColor; stroke: none; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 24px;
  border: 2px solid var(--ink); border-radius: 999px;
  font-family: var(--body); font-weight: 700; font-size: 17px; line-height: 1;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .1s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--ink-deep); border-color: var(--ink-deep); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--block { display: flex; width: 100%; }

/* ---------- Başlıklar ve bölümler ---------- */
.h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.25rem, 2.035rem + 1.905vw, 3.75rem);
  line-height: 1.04; letter-spacing: -0.015em; color: var(--ink);
}
.sec-head { display: flex; flex-direction: column; gap: 12px; }
.sec-head p { max-width: 560px; color: var(--muted); font-size: 17px; line-height: 1.55; }

.section { padding-block: 60px; }
.section--buz { background: var(--buz); }

/* ---------- Tabela (sabit üst bar) ---------- */
.sign {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  background: var(--tabela);
  transition: box-shadow .2s ease;
}
.sign.is-scrolled { box-shadow: 0 1px 0 rgba(49, 47, 46, .12), 0 10px 24px -14px rgba(49, 47, 46, .45); }
.sign__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.brand:hover { color: var(--ink); }
.brand__logo { width: 48px; height: 48px; }
.brand__text { display: flex; flex-direction: column; gap: 2px; }
.brand__name { font-family: var(--display); font-weight: 800; font-size: 22px; line-height: 1; }
.brand__sub { font-weight: 600; font-size: 12px; line-height: 1.2; }

.nav, .sign__cta { display: none; }
.sign__actions { display: flex; align-items: center; gap: 8px; }

.icon-btn {
  width: 44px; height: 44px; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--ink); border-radius: 999px;
  background: transparent; color: var(--ink); cursor: pointer;
}
.icon-btn .icon { width: 22px; height: 22px; }
.icon-btn--solid { background: var(--ink); color: #fff; }
.icon-btn--solid:hover { color: #fff; }
.icon-btn--solid .icon { width: 20px; height: 20px; }
.icon-close { display: none; }
[aria-expanded="true"] .icon-open { display: none; }
[aria-expanded="true"] .icon-close { display: block; }

/* ---------- Mobil menü ---------- */
.drawer {
  position: fixed; inset: var(--header-h) 0 0; z-index: 49;
  overflow-y: auto;
  padding: 12px var(--gutter) calc(32px + env(safe-area-inset-bottom));
  background: #fff;
}
.drawer[hidden] { display: none; }
.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav a {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px; border-bottom: 1.5px solid var(--line);
  color: var(--ink); font-family: var(--display); font-weight: 800; font-size: 28px; line-height: 1.1;
  text-decoration: none;
}
.drawer__nav .icon { width: 18px; height: 18px; color: var(--tabela); }
.drawer__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.drawer__meta { margin-top: 20px; color: var(--muted); font-size: 15px; }

/* ---------- Tente (duyuru şeridi) ---------- */
.awning { background: var(--tente); color: var(--petrol); font-weight: 600; font-size: 13px; line-height: 1.3; }
.awning__inner {
  min-height: 36px; padding-block: 8px;
  display: flex; align-items: center; justify-content: center; gap: 8px 22px;
  text-align: center;
}
.awning__inner > * { display: none; }
.awning__inner > :first-child { display: inline-flex; }
.awning__item { align-items: center; gap: 8px; }
.awning__icon { width: 16px; height: 16px; }
.awning__sep { width: 14px; height: 14px; }
.awning a { color: inherit; text-decoration: none; }
.awning a:hover { color: inherit; text-decoration: underline; }
.awning::after {
  content: ""; display: block; height: 13px;
  background: #fff radial-gradient(circle 13px at 50% 0, var(--tente) 12.5px, transparent 13px) 0 0 / 26px 13px repeat-x;
}

/* ---------- Karşılama ---------- */
.hero { padding-block: 28px 56px; overflow-x: clip; }
.hero__grid { display: grid; gap: 28px; }
.hero__text { display: flex; flex-direction: column; gap: 20px; }
.hero__loc { display: flex; align-items: center; gap: 8px; color: var(--petrol); font-weight: 600; font-size: 15px; line-height: 1.4; }
.hero__loc .icon { width: 18px; height: 18px; }
.hero__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(3.25rem, 17.4vw, 4.25rem);
  line-height: .96; letter-spacing: -0.02em;
}
.hero__lead { max-width: 600px; color: var(--muted); font-size: 17px; line-height: 1.55; }
.hero__actions { display: flex; flex-direction: column; gap: 10px; }
.facts { display: flex; flex-direction: column; gap: 10px; }
.fact { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 15px; line-height: 1.3; }
.fact__icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px; background: var(--buz); color: var(--petrol);
}

/* Vitrin kompozisyonu — mobilde kutu genişliğine göre ölçeklenir (350 birimlik tasarım) */
.hero__visual {
  position: relative; width: 100%; max-width: 420px;
  aspect-ratio: 350 / 430; margin: 8px auto 0;
  container-type: inline-size;
}
.hero__arch-bg, .hero__arch {
  position: absolute; width: 82.857cqw; height: 105.714cqw;
  border-radius: 41.43cqw 41.43cqw 6.286cqw 6.286cqw;
}
.hero__arch-bg { left: 4.571cqw; top: 4.571cqw; background: var(--tabela); }
.hero__arch { left: 0; top: 0; object-fit: cover; }
.polaroid {
  position: absolute; right: 0; bottom: 0; width: 40cqw;
  padding: 2.286cqw 2.286cqw 2.857cqw;
  display: flex; flex-direction: column; gap: 1.714cqw;
  border-radius: 5px; background: #fff;
  box-shadow: 0 14px 30px rgba(14, 74, 83, .22);
  transform: rotate(6deg);
}
.polaroid img { width: 100%; aspect-ratio: 124 / 140; object-fit: cover; border-radius: 2px; }
.polaroid figcaption { font-family: var(--display); font-weight: 700; font-size: 4cqw; line-height: 1.2; text-align: center; }
.sticker {
  position: absolute; right: 1.143cqw; top: 2.857cqw; width: 29.714cqw; aspect-ratio: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6cqw;
  border-radius: 50%; background: var(--tente); color: var(--petrol);
  text-align: center; transform: rotate(12deg);
}
.sticker .icon { width: 6.286cqw; height: 6.286cqw; }
.sticker span { font-family: var(--display); font-weight: 800; font-size: 4.857cqw; line-height: .95; }

/* ---------- Marka şeridi ---------- */
.brands { overflow: hidden; background: var(--petrol); color: #fff; }
.brands__inner { height: 64px; padding-left: var(--gutter); display: flex; align-items: center; gap: 36px; }
.brands__label { display: none; flex-shrink: 0; color: var(--tente); font-weight: 600; font-size: 15px; }
.brands__viewport {
  flex: 1; min-width: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, #000 82%, transparent);
  mask-image: linear-gradient(90deg, #000 82%, transparent);
}
.brands__track { display: flex; width: max-content; animation: marquee 60s linear infinite; }
.brands:hover .brands__track { animation-play-state: paused; }
.brands__list {
  flex-shrink: 0; display: flex; align-items: center;
  white-space: nowrap; font-family: var(--display); font-weight: 700; font-size: 22px; line-height: 1;
}
.brands__list li { display: flex; align-items: center; gap: 16px; padding-right: 16px; }
.brands__paw { width: 14px; height: 14px; color: var(--tabela); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Pet kuaför ---------- */
.groom { display: grid; gap: 22px; }
.groom__media img { width: 100%; aspect-ratio: 350 / 300; object-fit: cover; border-radius: 28px; }
.groom__body { display: flex; flex-direction: column; gap: 22px; }
.groom__lead { max-width: 560px; color: var(--muted); font-size: 17px; line-height: 1.55; }
.services { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.service {
  display: flex; align-items: center; gap: 8px;
  min-height: 60px; padding: 8px 12px; border-radius: 16px; background: #fff;
}
.service__icon { display: inline-flex; flex-shrink: 0; color: var(--petrol); }
.service__icon .icon { width: 22px; height: 22px; }
.service__title { font-family: var(--display); font-weight: 700; font-size: 17px; line-height: 1.1; }
.service__text { display: none; }
.groom__cta { display: flex; flex-direction: column; gap: 12px; }
.groom__cta .btn { width: 100%; }
.groom__note { color: var(--muted); font-size: 14px; line-height: 1.45; text-align: center; }

/* ---------- Ürünler ---------- */
.products { display: flex; flex-direction: column; gap: 20px; }
.bento {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 240px 168px 168px; gap: 10px;
}
.tile { position: relative; overflow: hidden; border-radius: 20px; background: var(--buz); }
.tile--lead { grid-column: span 2; border-radius: 24px; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tag {
  position: absolute; left: 10px; bottom: 10px;
  display: flex; align-items: center; gap: 7px;
  padding: 8px 12px 8px 9px; border-radius: 10px; background: #fff;
  color: var(--ink); font-weight: 700; font-size: 14px; line-height: 1.2;
}
.tag::before { content: ""; width: 8px; height: 8px; flex-shrink: 0; border: 2px solid var(--hole); border-radius: 50%; }
.tag__long { display: none; }
.tag--lead {
  left: 14px; right: 14px; bottom: 14px; max-width: 340px;
  align-items: flex-start; gap: 10px; padding: 12px 16px 12px 12px; border-radius: 16px;
}
.tag--lead::before { width: 10px; height: 10px; margin-top: 8px; border-width: 2.5px; }
.tag__body { display: flex; flex-direction: column; gap: 3px; }
.tag__title { font-family: var(--display); font-weight: 800; font-size: 22px; line-height: 1.05; }
.tag__text { color: var(--muted); font-weight: 400; font-size: 14px; line-height: 1.4; }

.extras { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 12px; }
.extras__label { display: none; margin-right: 4px; color: var(--muted); font-weight: 600; font-size: 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 0 16px 0 12px;
  border: 1.5px solid var(--chip-line); border-radius: 999px;
  font-weight: 600; font-size: 15px;
}
.chip .icon { width: 18px; height: 18px; color: var(--petrol); }

/* ---------- Fiyat etiketleri ---------- */
.prices { padding-block: 60px 64px; background: var(--tabela); }
.prices .sec-head p { color: var(--ink); }
.hang { position: relative; margin: 22px 0 0 var(--gutter); }
.hang::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 6px;
  border-radius: 999px 0 0 999px; background: var(--ink);
}
.tags {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 6px var(--gutter) 28px 10px;
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-padding-inline: 10px;
  scrollbar-width: none;
}
.tags::-webkit-scrollbar { display: none; }
.ptag {
  flex: 0 0 156px; scroll-snap-align: start;
  display: flex; flex-direction: column; align-items: center;
  transform: rotate(var(--tilt, 0deg)); transform-origin: 50% 0;
}
.ptag__string { position: relative; z-index: 2; width: 2px; height: var(--string, 40px); background: var(--ink); }
.ptag__card {
  position: relative; z-index: 1; width: 100%; margin-top: -20px;
  padding: 40px 14px 16px;
  display: flex; flex-direction: column; gap: 5px;
  border-radius: 14px; background: #fff;
}
.ptag__card::before {
  content: ""; position: absolute; left: 50%; top: 13px;
  width: 14px; height: 14px; margin-left: -7px;
  border: 2px solid var(--ink); border-radius: 50%; background: var(--tabela);
}
.ptag__title { font-family: var(--display); font-weight: 800; font-size: 20px; line-height: 1.05; }
.ptag__text { color: var(--muted); font-size: 14px; line-height: 1.35; }
.ptag__rule { height: 0; margin: 6px 0 3px; border-top: 2px dashed var(--dash); }
.ptag__note { color: var(--muted); font-weight: 600; font-size: 13px; line-height: 1.3; }
.ptag__price { font-family: var(--display); font-weight: 800; font-size: 40px; line-height: 1; }
.ptag__cur { font-size: 24px; }
.ptag__heart { position: absolute; right: 12px; top: 12px; width: 18px; height: 18px; color: var(--tabela); }
.ptag--dark .ptag__card { background: var(--ink); color: #fff; }
.ptag--dark .ptag__card::before { border-color: #fff; }
.ptag--dark .ptag__title { color: var(--tabela); }
.ptag--dark .ptag__text { color: #E9E4DA; }
.ptag--dark .ptag__rule { border-color: rgba(255, 255, 255, .25); }

/* ---------- Sipariş ---------- */
.order { display: grid; gap: 14px; margin-top: 20px; }
.panel {
  display: flex; flex-direction: column; gap: 12px;
  padding: 22px; border: 2px solid var(--line); border-radius: 26px; background: #fff;
}
.panel--wa { border-color: var(--tente); background: var(--tente); }
.panel__head { display: flex; align-items: center; gap: 12px; }
.panel__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px; background: var(--buz); color: var(--petrol);
}
.panel__icon .icon { width: 24px; height: 24px; }
.panel--wa .panel__icon { background: #fff; }
.panel--apps .panel__icon { background: var(--tabela); color: var(--ink); }
.panel__title { font-family: var(--display); font-weight: 800; font-size: 22px; line-height: 1.1; }
.panel p { color: var(--muted); font-size: 16px; line-height: 1.5; }
.panel--wa p { color: var(--petrol); }
.panel__phone { align-self: flex-start; color: var(--ink); font-family: var(--display); font-weight: 800; font-size: 30px; line-height: 1; text-decoration: none; }
.panel__phone:hover { color: var(--ink); text-decoration: underline; }
.panel--wa .btn { width: 100%; }
.panel .panel__hours { display: flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 600; font-size: 16px; }
.panel__hours .icon { width: 18px; height: 18px; color: var(--petrol); }
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex; align-items: center; min-height: 40px; padding: 0 18px;
  border: 1.5px solid var(--ink); border-radius: 999px;
  color: var(--ink); font-weight: 700; font-size: 15px; text-decoration: none;
}
a.pill:hover { background: var(--ink); color: #fff; }

/* Fiyatlar kapalıyken sipariş bölümü sarı bant olur (sayfanın renk ritmi korunur) */
.section--tabela { background: var(--tabela); }
.section--tabela .sec-head p { color: var(--ink); }
.section--tabela .panel { border-color: transparent; }
.link-nav {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  color: var(--petrol); font-weight: 700; font-size: 16px;
  text-decoration: underline; text-underline-offset: 4px;
}
.link-nav .icon { width: 18px; height: 18px; }

/* ---------- Instagram ---------- */
.gallery { display: flex; flex-direction: column; gap: 20px; }
.gallery__head { display: flex; flex-direction: column; gap: 6px; }
.handle { align-self: flex-start; color: var(--petrol); font-weight: 600; font-size: 16px; text-decoration: none; }
.handle:hover { color: var(--petrol); text-decoration: underline; }
.gallery__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.gallery__grid img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 18px; }
.gallery__follow { width: 100%; }

/* ---------- İletişim ---------- */
.contact { display: flex; flex-direction: column; gap: 22px; }
/* Yatay dükkân fotoğrafı; turkuaz zemin sol alttan taşar */
.contact__media { position: relative; margin: 0 0 14px 14px; }
.contact__bg { position: absolute; inset: 14px 14px -14px -14px; border-radius: 24px; background: var(--tente); }
.contact__photo { position: relative; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; }
.contact__body { display: flex; flex-direction: column; gap: 22px; }
.contact__lead { max-width: 540px; color: var(--muted); font-size: 17px; line-height: 1.55; }
.info { display: grid; gap: 14px; }
.info__item { display: flex; align-items: flex-start; gap: 12px; }
.info__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 13px; background: var(--buz); color: var(--petrol);
}
.info__label { display: block; color: var(--label); font-weight: 600; font-size: 13px; line-height: 1.4; }
.info__value { display: block; color: var(--ink); font-weight: 600; font-size: 16px; line-height: 1.4; text-decoration: none; }
a.info__value:hover { color: var(--ink); text-decoration: underline; }
.contact__actions { display: flex; flex-direction: column; gap: 10px; }

/* ---------- Alt bilgi ---------- */
.site-footer { padding-block: 44px calc(28px + env(safe-area-inset-bottom)); background: var(--petrol); color: #fff; }
.footer__top { display: flex; flex-direction: column; gap: 24px; }
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__logo { width: 56px; height: 56px; flex-shrink: 0; }
.footer__name { font-family: var(--display); font-weight: 800; font-size: 22px; line-height: 1.1; }
.footer__about { margin-top: 4px; color: var(--foot-text); font-size: 15px; line-height: 1.5; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.footer__nav a, .footer__contact a { color: #fff; font-size: 15px; line-height: 1.45; text-decoration: none; }
.footer__nav a { font-weight: 600; }
.footer__nav a:hover, .footer__contact a:hover { color: #fff; text-decoration: underline; }
.footer__contact { display: flex; flex-direction: column; gap: 8px; }
.footer__hours { color: var(--foot-text); font-size: 15px; line-height: 1.45; }
.footer__bottom {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .18);
  color: var(--foot-text); font-size: 13px; line-height: 1.4;
}
.footer__bottom a { color: var(--foot-text); text-decoration: none; }
.footer__bottom a:hover { color: #fff; text-decoration: underline; }

/* ---------- 404 ---------- */
.notfound { padding-block: 72px 104px; }
.notfound__inner { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.notfound__inner > p:not(.notfound__code) { max-width: 560px; color: var(--muted); }
.notfound__code { font-family: var(--display); font-weight: 800; font-size: clamp(5rem, 22vw, 9rem); line-height: .85; color: var(--petrol); }
.notfound__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }

/* =========================================================================
   Küçük tablet ve üstü (560px+)
   ========================================================================= */
@media (min-width: 560px) {
  .br-sm { display: none; }
  .hero__title { font-size: clamp(3.75rem, 9.5vw, 5.25rem); line-height: .98; }
  .hero__actions, .contact__actions { flex-direction: row; flex-wrap: wrap; }
}

/* =========================================================================
   Tablet (768px+)
   ========================================================================= */
@media (min-width: 768px) {
  .section { padding-block: 84px; }
  .prices { padding-block: 84px 88px; }

  .awning { font-size: 14px; }
  .awning__inner > :nth-child(-n+3) { display: inline-flex; }

  .facts { flex-direction: row; flex-wrap: wrap; gap: 12px 28px; }

  .groom__media img { aspect-ratio: 16 / 10; }
  .services { gap: 28px 36px; }
  .service { align-items: flex-start; gap: 16px; min-height: 0; padding: 0; background: none; }
  .service__icon { width: 52px; height: 52px; align-items: center; justify-content: center; border-radius: 16px; background: #fff; }
  .service__icon .icon { width: 24px; height: 24px; }
  .service__body { display: flex; flex-direction: column; gap: 4px; }
  .service__title { font-size: 23px; line-height: 1.15; }
  .service__text { display: block; color: var(--muted); font-size: 16px; line-height: 1.5; }
  .groom__cta { flex-direction: row; align-items: center; gap: 22px; }
  .groom__cta .btn { width: auto; flex-shrink: 0; }
  .groom__note { max-width: 300px; font-size: 15px; text-align: left; }

  .bento { grid-template-columns: repeat(4, minmax(0, 1fr)); grid-template-rows: repeat(2, 230px); gap: 16px; }
  .tile { border-radius: 24px; }
  .tile--lead { grid-row: span 2; border-radius: 28px; }
  .tag--lead { left: 20px; right: auto; bottom: 20px; max-width: min(380px, calc(100% - 40px)); gap: 14px; padding: 16px 20px 16px 16px; border-radius: 18px; }
  .tag--lead::before { width: 12px; height: 12px; margin-top: 10px; }
  .tag__title { font-size: 26px; }
  .tag__text { font-size: 15px; }

  .gallery__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
  .gallery__follow { width: auto; align-self: flex-start; }

  .contact__media { max-width: 640px; }
  .info { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 28px; }
  .info__item:first-child { grid-column: 1 / -1; }

  .footer__top { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 32px 72px; }
  .footer__brand { flex: 1 1 100%; }
  .footer__nav { flex-direction: column; gap: 12px; }
  .footer__nav a { white-space: nowrap; }
  .footer__contact { gap: 12px; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}

/* =========================================================================
   Masaüstü (1100px+)
   ========================================================================= */
@media (min-width: 1100px) {
  .btn { min-height: 56px; padding: 0 26px; }
  .h2 { line-height: 1.02; }
  .sec-head { gap: 16px; }
  .sec-head p { font-size: 18px; }
  .sec-head--split { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 40px; }
  .sec-head--split p { max-width: 430px; }
  .section { padding-block: 112px; }

  /* Tabela */
  .brand { gap: 14px; }
  .brand__logo { width: 64px; height: 64px; }
  .brand__name { font-size: 28px; }
  .brand__sub { font-size: 14px; }
  .nav { display: flex; align-items: center; gap: 34px; }
  .nav a { position: relative; padding: 10px 0; color: var(--ink); font-weight: 600; font-size: 16px; text-decoration: none; }
  .nav a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 2px;
    background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
  }
  .nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
  .sign__cta { display: inline-flex; min-height: 52px; padding: 0 22px; font-size: 16px; }
  .sign__actions { display: none; }
  .drawer { display: none !important; }

  /* Tente */
  .awning { font-size: 15px; }
  .awning__inner { min-height: 44px; }
  .awning__inner > * { display: inline-flex; }
  .awning__icon { display: none; }
  .awning::after {
    height: 18px;
    background-image: radial-gradient(circle 18px at 50% 0, var(--tente) 17.5px, transparent 18px);
    background-size: 36px 18px;
  }

  /* Karşılama */
  .hero { padding-block: 56px 96px; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) 440px; column-gap: 60px; align-items: center; }
  .hero__text { gap: 28px; }
  .hero__title { font-size: clamp(3.5rem, 7.06vw - 0.725rem, 5.625rem); }
  .hero__lead { font-size: 20px; }
  .hero__actions { gap: 14px; margin-top: 4px; }
  .facts { flex-direction: row; flex-wrap: wrap; gap: 16px 32px; margin-top: 8px; padding-top: 24px; border-top: 1.5px solid var(--line); }
  .fact__icon { width: 44px; height: 44px; border-radius: 14px; }
  .fact__icon .icon { width: 22px; height: 22px; }
  .hero__visual { width: 440px; max-width: none; height: 580px; aspect-ratio: auto; margin: 0; }
  .hero__arch-bg, .hero__arch { width: 440px; height: 540px; border-radius: 220px 220px 28px 28px; }
  .hero__arch-bg { left: 22px; top: 22px; }
  .polaroid {
    right: auto; left: -84px; bottom: 0; width: 188px;
    padding: 10px 10px 12px; gap: 8px; border-radius: 6px;
    box-shadow: 0 18px 40px rgba(14, 74, 83, .22);
    transform: rotate(-7deg);
  }
  .polaroid img { aspect-ratio: 168 / 196; }
  .polaroid figcaption { font-size: 17px; }
  .sticker { right: -24px; top: 28px; width: 132px; gap: 4px; }
  .sticker .icon { width: 26px; height: 26px; }
  .sticker span { font-size: 21px; }

  /* Markalar */
  .brands__inner { height: 92px; padding-left: max(var(--gutter), (100% - var(--container)) / 2); }
  .brands__label { display: block; }
  .brands__list { font-size: 30px; }
  .brands__list li { gap: 24px; padding-right: 24px; }
  .brands__paw { width: 18px; height: 18px; }

  /* Pet kuaför */
  .groom { grid-template-columns: 500px minmax(0, 1fr); gap: 72px; align-items: center; }
  .groom__media img { width: 500px; height: 580px; aspect-ratio: auto; border-radius: 36px; }
  .groom__body { gap: 24px; }
  .groom__lead { font-size: 19px; line-height: 1.6; }
  .services { margin-top: 8px; }
  .groom__cta { margin-top: 12px; }

  /* Ürünler */
  .products { gap: 40px; }
  .bento { grid-template-rows: repeat(2, 290px); gap: 20px; }
  .tag { left: 16px; bottom: 16px; gap: 10px; padding: 10px 16px 10px 12px; border-radius: 12px; font-size: 16px; }
  .tag::before { width: 10px; height: 10px; border-width: 2.5px; }
  .tag__short { display: none; }
  .tag__long { display: inline; }
  .tag--lead { left: 24px; bottom: 24px; padding: 18px 22px 18px 18px; }
  .tag--lead::before { width: 12px; height: 12px; margin-top: 10px; }
  .tag__title { font-size: 30px; }
  .tag__text { font-size: 16px; line-height: 1.45; }
  .extras__label { display: block; }
  .chips { gap: 12px; }
  .chip { min-height: 48px; padding: 0 20px 0 16px; gap: 10px; font-size: 16px; }
  .chip .icon { width: 20px; height: 20px; }

  /* Fiyatlar */
  .prices { padding-block: 112px; }
  .hang { width: min(var(--container), 100% - 2 * var(--gutter)); margin: 48px auto 0; }
  .hang::before { height: 8px; border-radius: 999px; }
  .tags { padding: 8px 14px 0; gap: 12px; justify-content: space-between; overflow: visible; }
  .ptag { flex: 0 1 180px; min-width: 0; }
  .ptag__string { height: var(--string-lg, 40px); }
  .ptag__card { margin-top: -22px; padding: 44px 18px 20px; gap: 6px; border-radius: 16px; }
  .ptag__card::before { top: 14px; width: 16px; height: 16px; margin-left: -8px; }
  .ptag__title { font-size: 22px; }
  .ptag__text { font-size: 15px; }
  .ptag__rule { margin: 8px 0 4px; }
  .ptag__note { font-size: 14px; }
  .ptag__price { font-size: 46px; }
  .ptag__cur { font-size: 28px; }
  .ptag__heart { right: 16px; top: 14px; width: 20px; height: 20px; }

  /* Sipariş */
  .order { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 48px; }
  .panel { gap: 16px; padding: 34px; border-radius: 32px; }
  .panel__head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .panel__icon { width: 60px; height: 60px; border-radius: 18px; }
  .panel__icon .icon { width: 28px; height: 28px; }
  .panel__title { font-size: 28px; }
  .panel p { font-size: 17px; }
  .panel .panel__hours { font-size: 17px; }
  .panel__phone { margin-top: auto; font-size: 34px; }
  .panel .pills, .panel .link-nav { margin-top: auto; }
  .panel--wa .btn { width: auto; align-self: flex-start; min-height: 52px; padding: 0 24px; }
  .link-nav { font-size: 17px; }
  .link-nav .icon { width: 20px; height: 20px; }

  /* Instagram */
  .section--gallery { padding-block: 104px; }
  .gallery {
    display: grid; grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "head follow" "grid grid";
    align-items: end; column-gap: 32px; row-gap: 40px;
  }
  .gallery__head { grid-area: head; gap: 8px; }
  .gallery__follow { grid-area: follow; align-self: end; }
  .gallery__grid { grid-area: grid; gap: 20px; }
  .gallery__grid img { border-radius: 22px; }
  .handle { font-size: 18px; }

  /* İletişim */
  .section--contact { padding-block: 112px 128px; }
  .contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 80px; align-items: center; }
  .contact__media { grid-column: 2; grid-row: 1; max-width: none; margin: 0 0 22px 22px; }
  .contact__bg { inset: 22px 22px -22px -22px; border-radius: 32px; }
  .contact__photo { border-radius: 32px; }
  .contact__body { grid-column: 1; grid-row: 1; gap: 28px; }
  .contact__lead { font-size: 19px; }
  .info { gap: 24px 32px; }
  .info__icon { width: 44px; height: 44px; border-radius: 14px; }
  .info__icon .icon { width: 22px; height: 22px; }
  .info__label { font-size: 14px; }
  .info__value { font-size: 18px; }
  .contact__actions { gap: 14px; margin-top: 4px; }

  /* Alt bilgi */
  .site-footer { padding-block: 72px 40px; }
  .footer__top { flex-wrap: nowrap; justify-content: space-between; gap: 48px; }
  .footer__brand { flex: 0 1 470px; gap: 18px; }
  .footer__logo { width: 76px; height: 76px; }
  .footer__name { font-size: 28px; line-height: 1.05; }
  .footer__about { margin-top: 6px; font-size: 16px; }
  .footer__nav a, .footer__contact a, .footer__hours { font-size: 16px; }
  .footer__bottom { margin-top: 48px; padding-top: 24px; font-size: 14px; }
}

/* Dar masaüstü (1100–1199px): polaroid butonlara binmesin, hizmet kartları sıkışmasın */
@media (min-width: 1100px) and (max-width: 1199.98px) {
  .hero__grid { column-gap: 48px; }
  .polaroid { left: -20px; }
  /* altı hizmet kartına yer açmak için görsel biraz daralır */
  .groom { grid-template-columns: 400px minmax(0, 1fr); gap: 56px; }
  .groom__media img { width: 400px; height: 520px; }
}

/* ---------- Hareket azaltma tercihi ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}