/* =========================================================
   LAVANTA VADİ — Premium Lavanta Üreticisi
   Krem zemin · lavanta moru & altın vurgu · editoryal serif başlık
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg:        #faf7f3;   /* ana krem zemin */
  --bg-2:      #f3ecf4;   /* soluk lavanta tonlu bölüm zemini */
  --bg-3:      #ffffff;   /* kart / yükseltilmiş yüzey */
  --line:      #e4dbe6;   /* ince ayraç */
  --purple:    #6b4c8a;   /* ana lavanta moru */
  --purple-2:  #8e6bb0;   /* açık lavanta moru */
  --purple-deep:#3f2c56;  /* koyu mor (başlık/nav zemini) */
  --gold:      #7a5e26;   /* altın vurgu (metin okunurluğu için koyultuldu, bkz. eyebrow/tag) */
  --gold-2:    #d4b26a;   /* açık altın */
  --text:      #2c2432;   /* koyu mürekkep */
  --muted:     #6c6273;   /* soluk gövde metni */
  --muted-2:   #8a8090;   /* daha soluk */

  /* LHP Provence sitesiyle aynı aile: Lora, hem başlık hem gövde metninde */
  --serif: "Lora", Georgia, serif;
  --sans:  "Lora", Georgia, serif;

  --maxw: 1200px;
  --pad:  clamp(20px, 5vw, 48px);
  --radius: 6px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--purple); color: #fff;
  padding: .8em 1.4em; border-radius: var(--radius);
  font-family: var(--sans); font-size: .85rem; font-weight: 500;
  z-index: 200; transition: top .25s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 11vw, 128px); }
.bg-alt { background: var(--bg-2); }

.eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  font-weight: 700;
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  letter-spacing: 0.01em;
  color: var(--purple-deep);
}

.section-title::after {
  content: ""; display: block; width: 64px; height: 2px; margin-top: 1.1rem;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}
.section-head.center .section-title::after { margin-inline: auto; }

.section-head { margin-bottom: clamp(36px, 6vw, 64px); }
.section-head.center { text-align: center; max-width: 640px; margin-inline: auto; }
.section-lead { color: var(--muted); margin-top: 1.1rem; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5em;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95em 1.9em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .35s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-solid  { background: var(--purple); color: #fff; font-weight: 500; }
.btn-solid:hover  { background: var(--purple-deep); transform: translateY(-2px); }
.btn-outline { border-color: #fff; color: #fff; background: rgba(255,255,255,.06); }
.btn-outline:hover { background: #fff; color: var(--purple-deep); }
.btn-outline.on-light { border-color: var(--purple); color: var(--purple); background: transparent; }
.btn-outline.on-light:hover { background: var(--purple); color: #fff; }

/* ---------- Duyuru Şeridi ---------- */
:root { --announce-h: 40px; }
.announcement-bar {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 110;
  height: var(--announce-h);
  /* purple-2 yerine biraz daha koyu bir ton: beyaz metin/link kontrastı gradyanın açık ucunda da AA eşiğini (4.5:1) geçsin */
  background: linear-gradient(90deg, var(--purple), #775897);
  color: #fff;
}
.announcement-bar .container {
  height: 100%; display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: .78rem; letter-spacing: .04em; text-align: center; flex-wrap: nowrap;
}
.announcement-bar span { opacity: .95; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.announcement-bar a {
  flex: none; color: #fff; font-weight: 700; text-decoration: underline;
  text-underline-offset: 3px; white-space: nowrap;
}
.announcement-bar a:hover { color: var(--gold-2); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset-block-start: var(--announce-h); inset-inline: 0; z-index: 100;
  padding-block: 14px;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-solid {
  background: rgba(250, 247, 243, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 8px;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.brand { display: flex; align-items: center; gap: 10px; position: relative; z-index: 2; }
.brand img { width: 46px; height: 46px; border-radius: 50%; }
.brand-name {
  font-family: var(--serif); font-weight: 600; font-size: 1.3rem;
  color: #fff; letter-spacing: .01em;
  transition: color .35s var(--ease);
}
.site-header.is-solid .brand-name { color: var(--purple-deep); }

.main-nav { display: flex; flex-wrap: nowrap; align-items: center; gap: clamp(10px, 1.8vw, 32px); }
.main-nav a {
  /* Tüm menü öğeleri (ör. "Neden Biz") tek satırda kalsın; gerekirse hepsi
     birlikte, aynı oranda küçülerek tek satıra sığsın */
  font-size: clamp(.74rem, .95vw + .28rem, .96rem);
  letter-spacing: clamp(.04em, .5vw, .1em);
  white-space: nowrap;
  color: #fff;
  text-transform: uppercase; font-weight: 500;
  padding-block: 6px; position: relative;
  transition: color .3s var(--ease);
}
.site-header.is-solid .main-nav a { color: var(--text); }
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 10px; position: relative; z-index: 2; }

/* Açık lila zemin: header saydam ya da katı olsun, her iki dil seçeneği de her zaman
   net ve okunaklı kalsın (koyu mor yazı rengiyle). */
.lang-toggle {
  display: flex; background: #f1e9f6; border: 1px solid rgba(107,76,138,.25);
  border-radius: 20px; overflow: hidden; box-shadow: 0 2px 10px rgba(63,44,86,.18);
  transition: box-shadow .35s var(--ease);
}
.lang-toggle button {
  padding: 6px 14px; font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  color: var(--purple-deep);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.lang-toggle button[aria-pressed="true"] { background: var(--gold); color: #fff; font-weight: 700; }
.lang-toggle button[aria-pressed="false"] { color: var(--purple); }
.lang-toggle button[aria-pressed="false"]:hover { background: rgba(107,76,138,.12); }

.nav-toggle {
  display: none; width: 40px; height: 40px; border-radius: 50%;
  align-items: center; justify-content: center; color: #fff;
}
.site-header.is-solid .nav-toggle { color: var(--purple-deep); }
.site-header.is-solid .header-actions .btn-outline {
  border-color: var(--purple); color: var(--purple); background: transparent;
}
.site-header.is-solid .header-actions .btn-outline:hover { background: var(--purple); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 58%;
  /* Fotoğraf zaten aydınlık/canlı tonda geldi; ekstra filtre uygulanmıyor */
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  /* Görsel daha aydınlık göründüğü için karartma biraz azaltıldı, metin okunurluğu korunuyor */
  background: linear-gradient(180deg, rgba(50,32,64,.44) 0%, rgba(38,24,50,.36) 45%, rgba(28,18,38,.74) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 720px; padding-block: 172px 80px; }
.hero .eyebrow { color: var(--gold-2); }
.hero-title {
  font-family: var(--serif); font-weight: 600; line-height: 1.04;
  font-size: clamp(2.6rem, 7vw, 4.8rem); letter-spacing: .01em;
  text-shadow: 0 2px 20px rgba(0,0,0,.4), 0 1px 3px rgba(0,0,0,.5);
}
.hero-title em {
  font-style: italic; color: var(--gold-2);
  text-transform: uppercase; letter-spacing: .02em;
  font-size: 1.12em; display: inline-block;
}
.hero-lead {
  margin-top: 1.4rem; font-size: 1.15rem; max-width: 540px; color: rgba(255,255,255,.94);
  text-shadow: 0 1px 10px rgba(0,0,0,.35);
}
.hero-actions { margin-top: 2.3rem; display: flex; flex-wrap: wrap; gap: 14px; }
/* ---------- Hero kaydırma göstergesi: lavanta dalı + ok ---------- */
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: block; line-height: 0;
  color: #c9a4e8; /* belirgin lavanta moru */
  opacity: 1; transition: opacity .6s var(--ease), filter .45s var(--ease), color .3s var(--ease);
  filter: drop-shadow(0 1px 6px rgba(107, 76, 138, .55));
  border-radius: 50%;
}
.hero-scroll:hover,
.hero-scroll:focus-visible {
  color: #dcb8f5;
  filter: drop-shadow(0 0 12px rgba(201, 164, 232, .7));
}
.hero-scroll.is-hidden { opacity: 0; pointer-events: none; }

.hero-scroll-icon { width: 22px; height: auto; display: block; }

.hero-scroll-sway {
  transform-box: fill-box;
  transform-origin: 50% 4%;
  animation: hero-scroll-sway 4.6s ease-in-out infinite;
}
@keyframes hero-scroll-sway {
  0%, 100% { transform: rotate(-3deg); }
  50%      { transform: rotate(3deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-sway { animation: none; }
}

/* ---------- Marka şeridi ---------- */
.strip {
  background: var(--purple-deep); color: #f1e9f5;
  padding-block: 22px;
}
.strip .container { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(20px,4vw,56px); }
.strip-item { display: flex; align-items: center; gap: 10px; font-size: .82rem; letter-spacing: .04em; }
.strip-item svg { width: 18px; height: 18px; flex: none; color: var(--gold-2); }

/* ---------- Hikaye (about) ---------- */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.story-media { position: relative; }
.story-media img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.story-media .ribbon {
  position: absolute; bottom: -22px; right: -22px; background: var(--gold);
  color: #2c2432; padding: 18px 26px; border-radius: var(--radius);
  font-family: var(--serif); text-align: center; box-shadow: 0 14px 34px rgba(107,76,138,.25);
}
.story-media .ribbon strong { display: block; font-size: 1.9rem; font-weight: 600; line-height: 1; }
.story-media .ribbon span { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.story-text p { color: var(--muted); margin-top: 1.1rem; }
.story-text p:first-of-type { margin-top: 1.4rem; }

.story-points { margin-top: 2rem; display: grid; gap: 14px; }
.story-points li { display: flex; align-items: flex-start; gap: 12px; font-size: .95rem; color: var(--text); }
.story-points svg { flex: none; width: 20px; height: 20px; color: var(--purple); margin-top: 2px; }

/* ---------- Özellikler ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.feature-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 24px; text-align: center; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
/* Kartın üstünde editoryal fotoğraf: negatif kenar boşluğuyla kart kenarlarına taşınır,
   kartın overflow:hidden + border-radius'u sayesinde üst köşeler kartla tam uyumlu yuvarlanır */
.feature-photo {
  margin: -32px -24px 22px; aspect-ratio: 3 / 2; overflow: hidden; background: var(--bg-2);
}
.feature-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease); will-change: transform;
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--bg-2);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
  color: var(--purple); transition: color .3s var(--ease);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--purple-deep); transition: color .3s var(--ease); }
.feature-card p { margin-top: 8px; font-size: .9rem; color: var(--muted); transition: color .3s var(--ease); }

/* Premium hover etkileşimleri — yalnızca gerçek imleçli (masaüstü) cihazlarda; mobilde çalışmaz */
@media (hover: hover) and (pointer: fine) {
  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(107,76,138,.20), 0 0 26px rgba(142,107,176,.16);
    border-color: rgba(142,107,176,.45);
  }
  .feature-card:hover .feature-photo img { transform: scale(1.05); }
  .feature-card:hover .feature-icon { color: var(--purple-deep); }
  .feature-card:hover h3 { color: var(--purple-deep); }
  .feature-card:hover p { color: #4b4356; }
}

/* ---------- Ürünler ---------- */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px); }
.product-card {
  background: var(--bg-3); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(107,76,138,.16); }
.product-media { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.06); }

.product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(63,44,86,0) 40%, rgba(37,25,51,.88) 100%);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 22px; text-align: center;
  opacity: 0; transition: opacity .4s var(--ease);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay span {
  color: #fff; font-family: var(--serif); font-style: italic; font-size: 1.15rem;
  transform: translateY(6px); transition: transform .4s var(--ease);
}
.product-card:hover .product-overlay span { transform: translateY(0); }
.product-body { padding: 22px 22px 26px; }
.product-body .tag {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold);
}
.product-body h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; margin-top: 6px; color: var(--purple-deep); }
.product-body p { margin-top: 8px; font-size: .9rem; color: var(--muted); }

.products-cta { text-align: center; margin-top: clamp(36px, 6vw, 56px); }

/* ---------- Öne çıkan ürün kartları (kolonya, yağ ...) — fotoğraf + boy/fiyat ---------- */
/* Fotoğraf kırpılmadan, ürün ortada, etrafında nefes alan boşlukla */
.product-card.has-sizes .product-media { background: #f5efe6; padding: 14px; }
.product-card.has-sizes .product-media img { object-fit: contain; }
.product-card.has-sizes:hover .product-media img { transform: scale(1.03); }

/* Boy seçenekleri — sade, iki sütunlu premium liste (dropdown/tab/buton yok) */
.size-options { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.size-options .options-title {
  display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 12px;
}
.size-options ul { display: flex; flex-direction: column; }
.size-options li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-bottom: 1px solid var(--line);
}
.size-options li:last-child { border-bottom: 0; padding-bottom: 0; }
.size-options li span:first-child { color: var(--text); font-size: .95rem; }
.size-options li span:last-child {
  color: var(--purple-deep); font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap;
}
.size-options .options-head {
  padding-top: 0; padding-bottom: 8px;
  font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
}
.size-options .options-head span { color: var(--muted-2); font-weight: 700; font-size: .66rem; }
/* Tek fiyatlı ürün (boy seçeneği olmayan) için sade fiyat gösterimi */
.size-options .single-price {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  color: var(--purple-deep); margin-top: 2px;
}

/* ---------- Kafemizden Lezzetler ---------- */
/* Kutu oranı fotoğrafların gerçek en-boy oranıyla (941:1672) birebir eşleşir;
   böylece object-fit:cover görseli hiç kırpmadan/deforme etmeden doldurur. */
.cafe-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2.2vw, 26px);
}
.cafe-grid a {
  display: block; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 941 / 1672; background: var(--bg-2);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cafe-grid img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .cafe-grid a:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(107,76,138,.18); }
  .cafe-grid a:hover img { transform: scale(1.05); }
}
@media (max-width: 980px) {
  .cafe-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .cafe-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Galeri ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 14px;
}
.gallery-grid a { display: block; border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-grid a:hover img { transform: scale(1.08); }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid .wide { grid-column: span 2; }

/* Marka tescil belgesi — doküman olduğu için kırpılmadan tam görünsün */
.gallery-grid a.belge img,
.photo-strip a.belge img { object-fit: contain; background: #fff; }
.gallery-grid a.belge:hover img,
.photo-strip a.belge:hover img { transform: none; }

/* ---------- Yorum / alıntı ---------- */
.quote {
  background: var(--purple-deep); color: #fff; text-align: center; position: relative;
}
.quote blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem); max-width: 820px; margin-inline: auto; line-height: 1.4;
}
.quote cite { display: block; margin-top: 1.6rem; font-style: normal; font-size: .82rem; letter-spacing: .1em; color: var(--gold-2); text-transform: uppercase; }

/* ---------- İletişim ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 72px); }
.contact-info { display: grid; gap: 22px; align-content: start; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; }
.contact-card .ic {
  width: 46px; height: 46px; border-radius: 50%; background: var(--bg-2);
  display: flex; align-items: center; justify-content: center; flex: none; color: var(--purple);
}
.contact-card .ic svg { width: 22px; height: 22px; }
.contact-card h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--purple-deep); }
.contact-card p, .contact-card a { color: var(--muted); font-size: .94rem; }
.contact-card a:hover { color: var(--purple); }

.phone-row { display: flex; align-items: center; gap: 10px; }
.whatsapp-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%; background: #25d366; color: #fff; flex: none;
  transition: transform .15s ease, background .15s ease;
}
.whatsapp-link:hover { background: #1ebe5b; color: #fff; transform: scale(1.08); }

.contact-actions { margin-top: 6px; display: flex; flex-wrap: wrap; gap: 12px; }

.map-col { display: flex; flex-direction: column; gap: 14px; }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 340px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* Haritanın altındaki yol tarifi butonları — açık lila, sade ve zarif.
   Kullanıcı Google Haritalar ya da Apple Haritalar (Haritalar) arasında
   seçim yapabilsin; ikisi de evrensel web linki olduğu için mobilde
   uygulama yüklüyse doğrudan uygulamayı açar, yoksa tarayıcıda gösterir. */
.directions-group { display: flex; flex-wrap: wrap; gap: 12px; }
.directions-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #f1e9f6; color: var(--purple-deep);
  border: 1px solid rgba(107,76,138,.22);
  border-radius: var(--radius);
  padding: .85em 1.5em;
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.directions-btn svg { width: 18px; height: 18px; flex: none; color: var(--purple); }
.directions-btn:hover {
  background: #e8dbf3;
  box-shadow: 0 10px 24px rgba(107,76,138,.18);
  transform: translateY(-1px);
}
/* İkincil seçenek (Apple Haritalar): daha soluk, ana CTA ile yarışmasın */
.directions-btn.alt { background: transparent; border-color: rgba(107,76,138,.3); }
.directions-btn.alt:hover { background: #f1e9f6; box-shadow: 0 8px 18px rgba(107,76,138,.14); }
@media (max-width: 640px) {
  .directions-group { flex-direction: column; }
  .directions-btn { justify-content: center; }
}

/* ---------- Foto şerit (footer üstü) ---------- */
.photo-strip {
  display: flex; gap: 12px; overflow-x: auto; scrollbar-width: thin;
  background: var(--bg-2); padding: 16px var(--pad);
}
.photo-strip a {
  flex: 0 0 clamp(150px, 18vw, 184px); aspect-ratio: 1 / 1;
  overflow: hidden; display: block; border-radius: 14px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.photo-strip img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .3s var(--ease);
  filter: saturate(.94);
}
/* Premium hover — yalnızca gerçek imleçli cihazlarda */
@media (hover: hover) and (pointer: fine) {
  .photo-strip a:hover { box-shadow: 0 12px 30px rgba(107,76,138,.22); }
  .photo-strip a:hover img { transform: scale(1.04); filter: saturate(1.02); }
}

/* ---------- Footer ---------- */
.site-footer { background: #23172f; color: #cfc3d8; padding-block: 56px 26px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { width: 42px; height: 42px; border-radius: 50%; }
.footer-brand span { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: #fff; }
.site-footer p { font-size: .88rem; color: #b6a9c2; max-width: 320px; }
.footer-col h4 { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 14px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: .9rem; color: #cfc3d8; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  font-size: .78rem; color: #8f7f9c;
}

/* ---------- Mobile nav ---------- */
@media (max-width: 900px) {
  .main-nav { position: fixed; inset: 0; top: 0; background: var(--purple-deep);
    flex-direction: column; justify-content: center; align-items: center; gap: 28px;
    transform: translateY(-100%); transition: transform .4s var(--ease); }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { color: #fff; font-size: 1.2rem; }
  .nav-toggle { display: flex; }
  .header-actions .lang-toggle { display: none; }
  .main-nav .lang-toggle-mobile { display: flex; }
}
@media (min-width: 901px) { .lang-toggle-mobile { display: none; } }

@media (max-width: 980px) {
  .story { grid-template-columns: 1fr; }
  .story-media { order: -1; max-width: 420px; margin-inline: auto; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery-grid .wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .products-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .strip .container { gap: 14px; }
}

@media (max-width: 520px) {
  .announcement-bar span { display: none; }
  .announcement-bar .container { justify-content: center; }
}
