/* ─────────────────────────────────────────────────────
   boutich / style.css
   Ana sayfa bileşen stilleri — base.css'den sonra yüklenir
───────────────────────────────────────────────────── */

/* ── NAVBAR ────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 51, 38, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 28px rgba(0, 0, 0, 0.2);
}

/* ── LOGO: aynı satırda, baseline hizalı ─────────────── */
.navbar-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  text-decoration: none;
  line-height: 1;
}

.logo-icon {
  width: 22px;
  height: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  position: relative;
  top: 2px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 9px 22px !important;
  background: var(--gold);
  color: var(--green-deep) !important;
  border-radius: 50px !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  transition: background var(--transition), color var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(22, 44, 32, 0.99);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 20px 24px 28px;
  z-index: 99;
  flex-direction: column;
  gap: 2px;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-cta {
  margin-top: 16px;
  padding: 14px;
  background: var(--gold);
  color: var(--green-deep) !important;
  text-align: center;
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  border-bottom: none !important;
}
.nav-mobile-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 24px;
  max-width: 880px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 1s 0.55s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.2vw, 24px) !important;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.9s 1.25s ease forwards;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.6vw, 28px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.03em;
  line-height: 1.55;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 1s 0.8s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 1s 1.0s forwards;
}

.hero-btn-primary {
  padding: 14px 34px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.hero-btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 144, 26, 0.38);
}

.hero-btn-outline {
  padding: 13px 30px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.hero-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

/* ── HERO SLIDESHOW ─────────────────────────────────── */
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  transform: scale(1.06);
  animation: slideZoom 8s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }

@keyframes slideZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,28,20,0.45) 0%,
    rgba(15,28,20,0.18) 40%,
    rgba(15,28,20,0.72) 100%
  );
}

.slide-dots {
  position: absolute;
  bottom: 80px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 5;
}
.slide-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, width 0.3s;
}
.slide-dot.active { background: var(--gold); width: 22px; border-radius: 3px; }

.hero-eyebrow-inner {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  opacity: 0; transform: translateY(100%);
  animation: slideUpIn 0.9s 0.3s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-title-line { display: block; overflow: hidden; }
.hero-title-line-inner { display: block; opacity: 0; transform: translateY(105%); }
.hero-title-line:nth-child(1) .hero-title-line-inner { animation: slideUpIn 1s 0.55s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero-title-line:nth-child(2) .hero-title-line-inner { animation: slideUpIn 1s 0.72s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero-sub-word { display: inline-block; opacity: 0; transform: translateY(16px); }

.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  opacity: 0;
  animation: fadeIn 1s 2s forwards;
}
.scroll-arrow {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.scroll-arrow svg {
  width: 18px; height: 18px;
  stroke: rgba(255,255,255,0.6);
}

/* ── MARQUEE ───────────────────────────────────────── */
.marquee-wrap {
  background: var(--green-deep);
  padding: 18px 0;
  overflow: hidden;
  border-top: 0.5px solid rgba(255,255,255,0.05);
  border-bottom: 0.5px solid rgba(255,255,255,0.05);
  user-select: none;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 24s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  padding: 0 32px;
  position: relative;
}
.marquee-track span::after {
  content: '✦';
  font-style: normal;
  color: var(--gold);
  font-size: 11px;
  margin-left: 32px;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── INTRO ─────────────────────────────────────────── */
.intro {
  padding: var(--section-py) 0 80px;
  background: var(--cream);
}
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-text h2 { font-size: clamp(36px, 4.5vw, 58px); margin-bottom: 22px; }
.intro-text h2 em { font-style: italic; color: var(--gold-dark); }
.intro-text p { font-size: 15px; margin-bottom: 14px; }

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 12px 28px;
  background: var(--green-deep);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
}
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); }

.intro-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.intro-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-dark);
}
.intro-img:first-child { margin-top: 36px; }
.intro-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.intro-img:hover img { transform: scale(1.05); }

/* ── BRANCHES ──────────────────────────────────────── */
.branches {
  padding: 80px 0 100px;
  background: var(--green-deep);
}
.branches-header {
  text-align: center;
  margin-bottom: 56px;
}
.branches-header .section-label { justify-content: center; color: rgba(242,180,54,0.8); }
.branches-header .section-label::before { background: rgba(242,180,54,0.6); }
.branches-header h2 { font-size: clamp(34px, 4vw, 52px); color: var(--white); }

.branches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.branch-card {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.branch-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}
.branch-card:hover::after { opacity: 1; }
.branch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.3);
}

.branch-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--green-mid);
}
.branch-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: opacity var(--transition), transform 0.6s var(--ease);
}
.branch-card:hover .branch-img img { opacity: 1; transform: scale(1.05); }

.branch-body { padding: 28px 30px 32px; }
.branch-body h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 10px;
}
.branch-name-gold { color: var(--gold); }
.branch-body p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.52);
  margin-bottom: 20px;
}
.branch-meta { display: flex; flex-direction: column; gap: 7px; margin-bottom: 4px; }
.branch-meta span {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}
.branch-meta span::before {
  content: '';
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── BRANCH ACTIONS ──────────────────────────────────── */
.branch-actions {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  margin-top: 18px;
  align-items: center;
  position: relative;
  z-index: 20;
}

/* YOL TARİFİ BUTONU — kompakt, sabit genişlik */
.branch-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer !important;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto !important;
  background: rgba(242,180,54,0.10);
  border: 1px solid rgba(242,180,54,0.30);
  color: var(--gold);
  position: relative;
  overflow: hidden;
  transition: all 0.28s ease;
}
.branch-directions-btn svg {
  width: 14px; height: 14px;
  stroke: var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.branch-directions-btn:hover {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(242,180,54,0.25);
}
.branch-directions-btn:hover svg { stroke: var(--green-deep); }
/* shine sweep */
.branch-directions-btn::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.45s ease;
  pointer-events: none;
  z-index: 1;
}
.branch-directions-btn:hover::before { left: 150%; }

/* INSTAGRAM BUTONU — sabit, hep açık, ikon + isim */
.branch-instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 50px;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
  cursor: pointer !important;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto !important;
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(
    115deg,
    #f09433 0%,
    #e6683c 20%,
    #dc2743 45%,
    #cc2366 72%,
    #bc1888 100%
  );
}

.branch-instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(188,24,136,0.40);
}

.branch-instagram-btn svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.branch-instagram-btn .ig-label {
  position: relative;
  z-index: 2;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* branch map link */
.branch-map-link {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
}
.branch-map-overlay { display: none !important; }

/* ── EVENTS ────────────────────────────────────────── */
.events {
  padding: var(--section-py) 0 0;
  background: var(--cream);
}
.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}
.events-header h2 { font-size: clamp(34px, 4vw, 52px); }

.events-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

.events-scroll-wrap {
  position: relative;
  margin: 0 -24px;
  padding: 0 24px;
}
.events-scroll-wrap::after { display: none; }

.events-slider {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 12px;
  scroll-behavior: smooth;
}
.events-slider::-webkit-scrollbar { display: none; }
.events-slider .event-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  min-width: 0;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(26,51,38,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(26,51,38,0.12);
}
.event-card.hidden { display: none !important; }

.event-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
}
.event-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.event-card:hover .event-img img { transform: scale(1.06); }

.event-date-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--green-deep);
  color: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  line-height: 1.2;
}
.event-date-badge .day { font-family: var(--font-serif); font-size: 22px; font-weight: 400; display: block; }
.event-date-badge .month { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.76; }

.event-branch-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.event-sold-out {
  position: absolute; inset: 0;
  background: rgba(26,51,38,0.55);
  display: flex; align-items: center; justify-content: center;
}
.event-sold-out span {
  background: var(--white);
  color: var(--green-deep);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 2px;
  transform: rotate(-3deg);
}

.event-body { padding: 20px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.event-category { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 7px; }
.event-body h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 400; color: var(--green-deep); line-height: 1.3; margin-bottom: 8px; }
.event-body p { font-size: 13px; line-height: 1.72; color: var(--text-muted); margin-bottom: 16px; flex: 1; }

.event-capacity { margin-bottom: 12px; }
.capacity-bar { height: 3px; background: var(--border-light); border-radius: 2px; overflow: hidden; margin-top: 5px; }
.capacity-fill { height: 100%; background: var(--green-light); border-radius: 2px; transition: width 0.5s var(--ease); }
.capacity-fill.warn { background: var(--gold-dark); }
.capacity-fill.full { background: #b42828; }
.capacity-text { font-size: 11px; color: var(--text-faint); display: flex; justify-content: space-between; }

.event-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 0.5px solid var(--border-light); }
.event-price { font-family: var(--font-serif); font-size: 22px; font-weight: 400; color: var(--green-deep); }
.event-price small { font-family: var(--font-sans); font-size: 11px; font-weight: 400; color: var(--text-faint); display: block; line-height: 1.2; }
.btn-ticket { padding: 9px 20px; background: var(--green-deep); color: var(--white); font-size: 12px; font-weight: 500; letter-spacing: 0.07em; border-radius: 50px; transition: background var(--transition), transform var(--transition); }
.btn-ticket:hover { background: var(--green-mid); transform: translateY(-1px); }
.btn-ticket.disabled { background: var(--cream-dark); color: var(--text-faint); cursor: not-allowed; }

/* ── TÜM ETKİNLİKLERİ GÖR ────────────────────────── */
.events-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
  padding-bottom: 64px;
  text-align: center;
  position: relative;
}

.btn-see-all {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--green-deep);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242,180,54,0); }
  50%       { box-shadow: 0 0 0 8px rgba(242,180,54,0.15); }
}

.btn-see-all::before {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.22) 50%, transparent 80%);
  transform: skewX(-15deg);
  transition: left 0.55s ease;
}
.btn-see-all:hover::before { left: 140%; }

.btn-see-all .btn-see-all-text { position: relative; z-index: 1; }
.btn-see-all svg { position: relative; z-index: 1; transition: transform 0.3s; }
.btn-see-all:hover {
  background: var(--green-mid);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(26,51,38,0.28), 0 0 0 4px rgba(242,180,54,0.25);
  animation: none;
}
.btn-see-all:hover svg { transform: translateX(5px); }
.btn-see-all:active { transform: translateY(-1px) scale(0.98); }

#confettiCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9990;
  display: none;
}

/* ── ABOUT ─────────────────────────────────────────── */
.about {
  padding: var(--section-py) 0;
  background: var(--cream);
  overflow: hidden;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3/4; background: var(--cream-dark); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float { position: absolute; bottom: -24px; right: -24px; width: 48%; aspect-ratio: 1; border-radius: var(--radius-md); overflow: hidden; border: 5px solid var(--cream); background: var(--cream-dark); }
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-gold-tag { position: absolute; top: 28px; right: -18px; background: var(--gold); color: var(--green-deep); padding: 10px 18px; font-family: var(--font-serif); font-size: 16px; font-style: italic; font-weight: 400; border-radius: var(--radius-sm); box-shadow: 0 4px 20px rgba(200,144,26,0.25); }

.about-text h2 { font-size: clamp(34px, 4vw, 52px); margin-bottom: 22px; }
.about-text h2 em { font-style: italic; color: var(--gold-dark); }
.about-text p { font-size: 15px; margin-bottom: 15px; }

.about-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 0.5px solid var(--border);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s 0.3s ease, transform 0.7s 0.3s ease;
}
.about-text.visible .about-stats { opacity: 1; transform: translateY(0); }
.stat { text-align: center; }
.stat-num { font-family: var(--font-serif); font-size: 44px; font-weight: 300; color: var(--green-deep); line-height: 1; }
.stat-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 5px; }

/* ── TESTIMONIALS ──────────────────────────────────── */
.testimonials { padding: var(--section-py) 0; background: var(--green-deep); overflow: hidden; }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-header .section-label { justify-content: center; color: rgba(242,180,54,0.75); }
.testimonials-header .section-label::before { background: rgba(242,180,54,0.5); }
.testimonials-header h2 { font-size: clamp(30px, 3.5vw, 46px); color: var(--white); }

.testimonials-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 28px;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.testimonial-card.visible { opacity: 1; transform: translateX(0); }
.testimonial-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { font-family: var(--font-serif); font-size: 17px; font-weight: 300; font-style: italic; color: rgba(255,255,255,0.78); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--green-mid); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 16px; color: rgba(255,255,255,0.7); flex-shrink: 0; }
.author-name { font-size: 13px; font-weight: 500; color: var(--white); }
.author-meta { font-size: 12px; color: rgba(255,255,255,0.38); }

/* ── INSTAGRAM ─────────────────────────────────────── */
.instagram { padding: 80px 0 100px; background: var(--cream); text-align: center; }
.instagram h2 { font-size: clamp(30px, 4vw, 46px); color: var(--green-deep); margin-bottom: 8px; }
.instagram-handle { font-size: 14px; color: var(--text-muted); letter-spacing: 0.05em; margin-bottom: 42px; }
.instagram-handle a { color: var(--gold-dark); font-weight: 500; transition: color var(--transition); }
.instagram-handle a:hover { color: var(--green-deep); }

.social-cta { text-align: center; margin-top: 36px; }
.btn-instagram {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 30px;
  background: transparent;
  border: 1.5px solid rgba(26,51,38,0.22);
  color: var(--green-deep);
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  border-radius: 50px;
  transition: all var(--transition);
}
.btn-instagram:hover { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); transform: translateY(-2px); }
.btn-instagram svg { width: 16px; height: 16px; }

/* ── INSTAGRAM GRID — gerçek IG profil görünümü ────── */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 8px;
}

.ig-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-dark);
  display: block;
}
.ig-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.ig-tile:hover img { transform: scale(1.06); }

/* hover'da beliren beğeni / yorum sayıları */
.ig-tile-overlay {
  position: absolute; inset: 0;
  background: rgba(26,51,38,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.ig-tile:hover .ig-tile-overlay { opacity: 1; }

.ig-stat {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
.ig-stat svg { width: 17px; height: 17px; }

/* çift tıkla kalp animasyonu */
.ig-tile-heart {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0;
}
.ig-tile-heart.pop { opacity: 1; animation: heartPop 0.7s ease forwards; }
.ig-tile-heart span { font-size: 56px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35)); }
@keyframes heartPop {
  0%   { opacity: 0; transform: scale(0.3); }
  30%  { opacity: 1; transform: scale(1.25); }
  55%  { opacity: 1; transform: scale(1.0); }
  80%  { opacity: 0.85; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(0.92); }
}

@media (max-width: 860px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
  .ig-stat { font-size: 13px; gap: 5px; }
  .ig-stat svg { width: 14px; height: 14px; }
  .ig-tile-overlay { gap: 18px; }
}

/* ── CONTACT ───────────────────────────────────────── */
.contact { padding: var(--section-py) 0; background: var(--green-deep); }
.contact-header { text-align: center; margin-bottom: 60px; }
.contact-header .section-label { justify-content: center; color: rgba(242,180,54,0.75); }
.contact-header .section-label::before { background: rgba(242,180,54,0.5); }
.contact-header h2 { font-size: clamp(34px, 4vw, 50px); color: var(--white); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-branch h3 { font-family: var(--font-serif); font-size: 26px; font-weight: 300; color: var(--white); margin-bottom: 22px; padding-bottom: 16px; border-bottom: 0.5px solid rgba(255,255,255,0.1); }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-row { display: flex; align-items: flex-start; gap: 12px; }
.contact-icon { width: 36px; height: 36px; background: rgba(242,180,54,0.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-row-text { font-size: 14px; color: rgba(255,255,255,0.58); line-height: 1.65; }
.contact-row-text strong { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 2px; }

.contact-row-link { display: flex; align-items: flex-start; gap: 12px; text-decoration: none; border-radius: 8px; padding: 8px; margin: -8px; transition: background 0.25s ease; }
.contact-row-link:hover { background: rgba(255,255,255,0.05); }
.contact-row-link:hover .contact-icon { background: rgba(242,180,54,0.2); }

.contact-maps { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }

/* ── MAP EMBED — label solda, open-link hover'da görünür ── */
.map-embed {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 40px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.map-embed:hover { transform: translateY(-4px); box-shadow: 0 18px 56px rgba(0,0,0,0.38); }
.map-embed::before { content: ''; position: absolute; inset: 0; border-radius: 18px; border: 1.5px solid rgba(242,180,54,0); transition: border-color 0.35s ease; z-index: 2; pointer-events: none; }
.map-embed:hover::before { border-color: rgba(242,180,54,0.35); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.9) brightness(0.95); transition: filter 0.35s ease; }
.map-embed:hover iframe { filter: saturate(1.1) brightness(1); }

/* Harita etiketi — sol alt */
.map-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--green-deep);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  z-index: 3;
  transition: opacity 0.25s ease;
}

/* "Büyük Haritada Aç" — normalde gizli, hover'da label'ın yerini alır */
.map-open-link {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  z-index: 4;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.map-embed:hover .map-label { opacity: 0; }
.map-embed:hover .map-open-link {
  opacity: 1;
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* ── FOOTER ────────────────────────────────────────── */
.footer-new { background: var(--green-deep); padding: 64px 0 0; overflow: hidden; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 0.5px solid rgba(255,255,255,0.08); }
.footer-brand-logo { font-family: var(--font-serif); font-size: 36px; font-weight: 300; color: var(--white); letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-brand-tagline { font-family: var(--font-serif); font-style: italic; font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 22px; }
.footer-social-links { display: flex; gap: 10px; }
.footer-social-links a { width: 38px; height: 38px; border-radius: 50%; border: 0.5px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all var(--transition); }
.footer-social-links a:hover { border-color: var(--gold); color: var(--gold); background: rgba(242,180,54,0.08); }
.footer-social-links svg { width: 15px; height: 15px; }
.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { font-size: 14px; color: rgba(255,255,255,0.58); transition: color var(--transition); line-height: 1.4; }
.footer-col-links a:hover { color: var(--gold); }
.footer-col-info { display: flex; flex-direction: column; gap: 10px; }
.footer-col-info span { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.5; }
.footer-col-info strong { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 1px; }
.footer-big-text { font-family: var(--font-serif); font-size: clamp(56px, 10vw, 120px); font-weight: 300; font-style: italic; color: rgba(255,255,255,0.04); text-align: center; line-height: 1; padding: 20px 0 0; letter-spacing: -0.02em; white-space: nowrap; overflow: hidden; }
.footer-bottom-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 18px 0 24px; margin-top: -8px; }
.footer-bottom-bar p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.25); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.55); }

/* ── GOOGLE REVIEW BUTTON ───────────────────────────── */
.btn-google-review {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 13px; font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.28s ease;
}
.btn-google-review:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.3); }

/* ── CUSTOM CURSOR ─────────────────────────────────── */
html, body { cursor: none !important; }
a, button, [role="button"], input, select, textarea, label { cursor: none !important; }
#cursor-dot { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: width 0.2s ease, height 0.2s ease, background 0.2s ease; }
#cursor-ring { width: 36px; height: 36px; border: 1.5px solid rgba(242,180,54,0.55); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); transition: width 0.25s ease, height 0.25s ease, border-color 0.2s ease; }
#cursor-coffee { display: none !important; }
body.cursor-hover #cursor-dot { width: 14px; height: 14px; background: var(--green-deep); }
body.cursor-hover #cursor-ring { width: 50px; height: 50px; border-color: rgba(26,51,38,0.4); }
body.cursor-ig #cursor-dot { width: 8px; height: 8px; background: rgba(255,255,255,0.9); }
body.cursor-ig #cursor-ring { width: 44px; height: 44px; border-color: rgba(255,255,255,0.5); }

/* ── SCROLL REVEAL ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.split-reveal .word { display: inline-block; overflow: hidden; }
.split-reveal .word-inner { display: inline-block; transform: translateY(110%); opacity: 0; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), opacity 0.5s ease; }
.split-reveal.visible .word-inner { transform: translateY(0); opacity: 1; }
.split-reveal.visible .word:nth-child(1) .word-inner { transition-delay: 0s; }
.split-reveal.visible .word:nth-child(2) .word-inner { transition-delay: 0.06s; }
.split-reveal.visible .word:nth-child(3) .word-inner { transition-delay: 0.12s; }
.split-reveal.visible .word:nth-child(4) .word-inner { transition-delay: 0.18s; }
.split-reveal.visible .word:nth-child(5) .word-inner { transition-delay: 0.24s; }
.split-reveal.visible .word:nth-child(6) .word-inner { transition-delay: 0.30s; }
.split-reveal.visible .word:nth-child(7) .word-inner { transition-delay: 0.36s; }
.split-reveal.visible .word:nth-child(8) .word-inner { transition-delay: 0.42s; }

.stagger-item { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.stagger-item.visible { opacity: 1; transform: translateY(0); }

.section-label { opacity: 0; transform: translateX(-20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible .section-label, .section-label.visible { opacity: 1; transform: translateX(0); }

/* ── WHATSAPP WIDGET ──────────────────────────────────── */
.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9980;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-fab {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  position: relative;
  flex-shrink: 0;
}
.wa-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55), 0 4px 14px rgba(0,0,0,0.25);
}
.wa-fab:active { transform: scale(0.95); }

.wa-fab::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.22); opacity: 0; }
}

.wa-fab-icon {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease;
}
.wa-fab-icon-wa { color: #fff; }
.wa-fab-icon-wa svg { width: 28px; height: 28px; }
.wa-fab-icon-close { color: #fff; opacity: 0; transform: rotate(-90deg) scale(0.5); }
.wa-fab-icon-close svg { width: 22px; height: 22px; }

.wa-widget.open .wa-fab-icon-wa { opacity: 0; transform: rotate(90deg) scale(0.5); }
.wa-widget.open .wa-fab-icon-close { opacity: 1; transform: rotate(0deg) scale(1); }

.wa-panel {
  width: 320px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.1);
  overflow: hidden;
  transform: scale(0.85) translateY(20px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
}
.wa-widget.open .wa-panel {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.wa-panel-header {
  background: #075E54;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #128C7E;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.wa-avatar svg { width: 22px; height: 22px; }
.wa-panel-title { flex: 1; }
.wa-panel-title span { display: block; font-size: 15px; font-weight: 600; color: #fff; font-family: var(--font-sans); }
.wa-panel-title small { font-size: 12px; color: rgba(255,255,255,0.7); font-family: var(--font-sans); }
.wa-close { background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.7); padding: 4px; border-radius: 50%; transition: color 0.2s, background 0.2s; display: flex; align-items: center; justify-content: center; }
.wa-close:hover { color: #fff; background: rgba(255,255,255,0.15); }
.wa-close svg { width: 16px; height: 16px; }

.wa-panel-body {
  padding: 20px 16px;
  background: #ECE5DD;
  min-height: 100px;
}
.wa-bubble {
  background: #fff;
  border-radius: 12px 12px 12px 2px;
  padding: 12px 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  position: relative;
  max-width: 90%;
}
.wa-bubble p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 6px;
  font-family: var(--font-sans);
}
.wa-bubble p:last-of-type { margin-bottom: 4px; }
.wa-time { font-size: 11px; color: #999; display: block; text-align: right; font-family: var(--font-sans); }

.wa-panel-footer {
  padding: 14px 16px;
  background: #f0f0f0;
  border-top: 1px solid #ddd;
}
.wa-start-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 13px;
  background: #25D366;
  color: #fff;
  font-size: 14px; font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-sans);
  transition: background 0.25s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}
.wa-start-btn:hover { background: #1EBE5D; transform: translateY(-1px); }
.wa-start-btn svg { fill: #fff; }

/* ── KEYFRAME ANIMATIONS ───────────────────────────── */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes slideUpIn { to { opacity: 1; transform: translateY(0); } }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .testimonials-track { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  :root { --section-py: 72px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .intro-inner { grid-template-columns: 1fr; }
  .intro-images { order: -1; grid-template-columns: 1fr 1fr; }
  .intro-img:first-child { margin-top: 0; }
  .branches-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img-float { right: 0; bottom: 0; }
  .about-gold-tag { right: 0; }
  .testimonials-track { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-maps { grid-template-columns: 1fr; grid-column: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-big-text { font-size: 52px; }
}

@media (max-width: 600px) {
  :root { --container-px: 18px; }
  .hero-title { font-size: clamp(36px, 11vw, 56px); }
  .events-slider .event-card { flex: 0 0 280px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-big-text { font-size: 40px; }
  .about-stats { gap: 18px; }
  .about-stats .stat-num { font-size: 36px; }
  .contact-maps { grid-template-columns: 1fr; }
  .branch-actions { flex-wrap: nowrap; }
  .wa-panel { width: 290px; }
  .wa-widget { bottom: 18px; right: 18px; }
}