/* ============================================================
   YILDIZ KIZILCAN · KİŞİSEL BAKIM MERKEZİ
   v3 "Maison" · LV tasarım dili · Futura/Jost
   beyaz + şampanya + hairline · köşe yarıçapı: 0 (tüm sayfa)
   ============================================================ */

:root {
  --bg: #ffffff;
  --wash: #faf7f1;
  --ink: #16130e;
  --ink-soft: #6f6a60;
  --ink-faint: #a39d92;
  --hairline: #e9e4dc;
  --hairline-soft: #f1ede6;
  --champagne: #b3986a;
  --champagne-deep: #7d6538;

  --display: "Futura", "Jost", "Avenir Next", "Century Gothic", sans-serif;
  --sans: "Jost", "Futura", "Avenir Next", -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.21, 1);
  --nav-h: 76px;
  --gutter: clamp(20px, 5vw, 72px);
  color-scheme: light;
}

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

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

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

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

section { scroll-margin-top: calc(var(--nav-h) + 12px); }

/* ---------- ortak ---------- */

.section {
  padding: clamp(72px, 10vw, 128px) var(--gutter);
  max-width: 1400px;
  margin: 0 auto;
}

.section__head { margin-bottom: clamp(36px, 5vw, 64px); }

.section__sub {
  color: var(--ink-soft);
  max-width: 52ch;
  margin-top: 12px;
}

h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  color: var(--champagne-deep);
  margin-bottom: 18px;
}

/* ---------- butonlar ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  padding: 17px 34px;
  border: 1px solid var(--ink);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.15s var(--ease);
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn--solid { background: var(--ink); color: #fff; }
.btn--solid:hover { background: var(--champagne-deep); border-color: var(--champagne-deep); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--hairline); }
.btn--ghost:hover { border-color: var(--ink); }

/* ---------- reveal animasyonu ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s var(--ease) var(--d, 0s), transform 0.9s var(--ease) var(--d, 0s);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .brands__frame img { transition: none !important; }
  .hero__media img { animation: none !important; }
  .footer__bemacci { animation: none !important; }
  * { transition-duration: 0.01ms !important; }
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow 0.4s var(--ease);
}

.nav--scrolled { box-shadow: 0 14px 40px rgba(22, 19, 14, 0.06); }

.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 44px);
}

.nav__logo img { width: auto; height: 42px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 34px);
  margin-left: auto;
}

.nav__link,
.ndrop__t {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--ink);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav__link::after,
.ndrop__t::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--champagne-deep);
  transition: right 0.35s var(--ease);
}

.nav__link:hover::after,
.ndrop:hover .ndrop__t::after,
.ndrop.open .ndrop__t::after { right: 0; }

.ndrop__t i {
  width: 5px; height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s var(--ease);
}

.ndrop:hover .ndrop__t i,
.ndrop.open .ndrop__t i { transform: rotate(225deg) translateY(-1px); }

.ndrop { position: relative; }

.ndrop__m {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--hairline);
  box-shadow: 0 24px 60px rgba(22, 19, 14, 0.08);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}

.ndrop__m::before {
  content: "";
  position: absolute;
  top: -15px; left: 0; right: 0;
  height: 15px;
}

.ndrop:hover .ndrop__m,
.ndrop.open .ndrop__m,
.ndrop:focus-within .ndrop__m {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.ndrop__m a {
  display: block;
  padding: 10px 26px;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: color 0.25s, padding-left 0.25s var(--ease);
}

.ndrop__m a:hover { color: var(--champagne-deep); padding-left: 32px; }

.ndrop__ext { border-top: 1px solid var(--hairline-soft); margin-top: 8px; padding-top: 14px !important; color: var(--ink-soft) !important; }
.ndrop__ext:hover { color: var(--champagne-deep) !important; }

.nav__right {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.nav__tel {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  transition: color 0.25s;
}

.nav__tel:hover { color: var(--ink); }

.btn--nav { padding: 12px 24px; font-size: 0.66rem; }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.nav__burger span {
  width: 22px; height: 1px;
  background: var(--ink);
  transition: transform 0.35s var(--ease);
}

.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* mobil menü */

.mmenu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 49;
  background: #fff;
  padding: 40px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}

.mmenu.open { opacity: 1; visibility: visible; transform: none; }

.mmenu__links { display: flex; flex-direction: column; }

.mmenu__links a {
  font-family: var(--display);
  font-size: clamp(1.5rem, 6vw, 2rem);
  font-weight: 300;
  padding: 13px 0;
  border-bottom: 1px solid var(--hairline-soft);
}

.mmenu__ext { color: var(--champagne-deep); }

.mmenu__foot { padding-top: 26px; color: var(--ink-soft); font-size: 0.9rem; }
.mmenu__foot a { font-weight: 400; color: var(--ink); font-size: 1.05rem; }
.mmenu__foot p { margin-top: 6px; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  min-height: 100dvh;
  padding-top: var(--nav-h);
}

.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 96px) var(--gutter);
}

.hero__title { font-weight: 300; }

.hero__name {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.7vw, 3.6rem);
  font-weight: 200;
  letter-spacing: 0.13em;
  line-height: 1.08;
  white-space: nowrap;
}

.hero__tag {
  display: block;
  font-size: clamp(0.72rem, 1.3vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.46em;
  color: var(--champagne-deep);
  margin-top: 16px;
}

.hero__sub {
  margin-top: 30px;
  max-width: 46ch;
  font-size: 1.02rem;
  color: var(--ink-soft);
}

.hero__cta {
  margin-top: 42px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__media {
  position: relative;
  overflow: hidden;
}

.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 2.6s var(--ease) both;
}

@keyframes heroZoom {
  from { transform: scale(1.07); }
  to { transform: scale(1); }
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

/* ============================================================
   TARİH BANDI
   ============================================================ */

.facts {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--wash);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.facts__item {
  padding: clamp(34px, 4vw, 56px) var(--gutter);
  text-align: center;
}

.facts__item + .facts__item { border-left: 1px solid var(--hairline); }

.facts__num {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 200;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.facts__label {
  display: block;
  margin-top: 8px;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

/* ============================================================
   BAKIMLAR
   ============================================================ */

.svc__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(36px, 5vw, 84px);
  align-items: start;
}

.svc__media {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.svc__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--wash);
}

.svc__frame img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s var(--ease), transform 1.1s var(--ease);
}

.svc__frame img.is-active { opacity: 1; transform: scale(1); }

.svc__frame::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.svc__row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "name arrow" "desc arrow";
  align-items: center;
  column-gap: 20px;
  padding: clamp(22px, 2.6vw, 34px) 0;
  border-bottom: 1px solid var(--hairline);
  transition: padding-left 0.4s var(--ease);
}

.svc__row:first-child { border-top: 1px solid var(--hairline); }

.svc__name {
  grid-area: name;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}

.svc__desc {
  grid-area: desc;
  margin-top: 7px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  max-width: 56ch;
  transition: color 0.3s;
}

.svc__arrow {
  grid-area: arrow;
  font-size: 1.15rem;
  font-weight: 200;
  color: var(--hairline);
  transition: color 0.3s, transform 0.4s var(--ease);
}

.svc__row:hover,
.svc__row.is-current { padding-left: 14px; }

.svc__row:hover .svc__name,
.svc__row.is-current .svc__name { color: var(--champagne-deep); }

.svc__row:hover .svc__desc,
.svc__row.is-current .svc__desc { color: var(--ink); }

.svc__row:hover .svc__arrow,
.svc__row.is-current .svc__arrow { color: var(--champagne-deep); transform: translateX(6px); }

.svc__note {
  margin-top: 26px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.svc__note a {
  color: var(--champagne-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* ============================================================
   DÖRT İLKE
   ============================================================ */

.principles {
  background: var(--wash);
  max-width: none;
}

.principles h2 { max-width: 1400px; margin: 0 auto; }

.principles__grid {
  max-width: 1400px;
  margin: clamp(36px, 5vw, 60px) auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.principles__item {
  padding: clamp(30px, 3.6vw, 52px);
  border-top: 1px solid var(--hairline);
}

.principles__item:nth-child(odd) { border-right: 1px solid var(--hairline); padding-left: 0; }
.principles__item:nth-child(even) { padding-right: 0; }

.principles__item h3 {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  color: var(--champagne-deep);
  margin-bottom: 14px;
}

.principles__item p { color: var(--ink-soft); max-width: 46ch; }

/* ============================================================
   HAKKIMIZDA
   ============================================================ */

.about {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(36px, 5vw, 84px);
  align-items: center;
}

.about__media { position: relative; }

.about__media img { width: 100%; }

.about__media::after {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 1px solid var(--champagne);
  pointer-events: none;
  z-index: -1;
}

.about__text p { margin-top: 18px; color: var(--ink-soft); max-width: 54ch; }

.about__text h2 + p { margin-top: 26px; }

.about__sign {
  font-style: italic;
  color: var(--ink) !important;
  font-size: 1.06rem;
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
  margin-top: 30px !important;
}

.about__sign span {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  color: var(--champagne-deep);
  margin-top: 10px;
}

/* ---------- hikaye zaman çizelgesi ---------- */

.chapters { margin-top: 28px; }

.chapter {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-top: 1px solid var(--hairline-soft);
  align-items: start;
}

.chapter:first-child { border-top: 0; padding-top: 0; }

.chapter__year {
  font-family: var(--display);
  font-weight: 400;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  color: var(--champagne-deep);
  padding-top: 4px;
  white-space: nowrap;
}

.chapter p { margin: 0 !important; color: var(--ink-soft); max-width: 50ch; }

/* ============================================================
   BÜYÜK ALINTILAR (fotoğraf kartları)
   ============================================================ */

.pullquote {
  padding: clamp(60px, 7vw, 100px) var(--gutter);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.pullquote__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 36px);
}

.pullquote__item {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  display: flex;
}

.pullquote__item--photo .pullquote__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 1.2s var(--ease);
}

.pullquote__item--photo:hover .pullquote__bg { transform: scale(1.04); }

.pullquote__overlay {
  position: relative;
  z-index: 1;
  margin-top: auto;
  width: 100%;
  padding: clamp(22px, 2.4vw, 34px);
  background: linear-gradient(to top, rgba(22, 19, 14, 0.85), rgba(22, 19, 14, 0.45) 62%, transparent);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.pullquote__overlay blockquote {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.15rem, 1.65vw, 1.5rem);
  line-height: 1.42;
  padding-bottom: 3px;
}

.pullquote__name { font-size: 0.78rem; color: rgba(255, 255, 255, 0.85); }

.pullquote__name b {
  display: block;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: #fff;
  margin-bottom: 2px;
}

.pullquote__item--text {
  background: var(--wash);
  border: 1px solid var(--hairline);
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 2.6vw, 38px);
}

.pullquote__item--text blockquote {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  line-height: 1.55;
  padding-bottom: 3px;
  margin: auto 0;
}

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

.pullquote__who span { text-align: left; font-size: 0.8rem; color: var(--ink-soft); }

.pullquote__who b {
  display: block;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--ink);
  margin-bottom: 2px;
}

/* ============================================================
   RANDEVU BANDI
   ============================================================ */

.ctaband {
  background: var(--wash);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
  padding: clamp(64px, 8vw, 104px) var(--gutter);
}

.ctaband p {
  max-width: 54ch;
  margin: 16px auto 30px;
  color: var(--ink-soft);
}

.ctaband__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.ctaband__tel {
  font-size: 0.88rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}

.ctaband__tel:hover { color: var(--ink); border-color: var(--ink); }

/* ============================================================
   MARKALAR
   ============================================================ */

.brands {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(56px, 7vw, 96px) var(--gutter);
  overflow: hidden;
}

.brands__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(36px, 5vw, 84px);
  align-items: center;
}

.brands__intro {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--ink-soft);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.brands__list { list-style: none; }

.brands__list li {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.9vw, 1.6rem);
  font-weight: 300;
  letter-spacing: 0.24em;
  color: var(--ink-soft);
  padding: 13px 0;
  border-top: 1px solid var(--hairline-soft);
  transition: color 0.3s;
}

.brands__list li:first-child { border-top: 0; padding-top: 0; }
.brands__list li:hover { color: var(--champagne-deep); }

.brands__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--wash);
}

.brands__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.1s var(--ease), transform 4.5s var(--ease);
}

.brands__frame img.is-active { opacity: 1; transform: scale(1); }

.brands__frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

/* ============================================================
   GÖRÜŞLER
   ============================================================ */

.quotes { max-width: none; padding-right: 0; }

.quotes .section__head { max-width: 1400px; margin-left: auto; margin-right: auto; padding-right: var(--gutter); }

.quotes__rail {
  display: flex;
  gap: clamp(20px, 2.6vw, 36px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px var(--gutter) 26px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--hairline) transparent;
}

.quotes__rail::-webkit-scrollbar { height: 4px; }
.quotes__rail::-webkit-scrollbar-thumb { background: var(--hairline); }

.quote {
  flex: 0 0 min(420px, 82vw);
  scroll-snap-align: start;
  border-top: 1px solid var(--champagne);
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
}

.quote:first-child { margin-left: max(var(--gutter), calc((100vw - 1400px) / 2)); }

.quote blockquote {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
}

.quote figcaption {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quote figcaption img {
  width: 54px; height: 54px;
  object-fit: cover;
  object-position: top;
}

.quote figcaption span { font-size: 0.8rem; color: var(--ink-soft); }

.quote figcaption b {
  display: block;
  font-weight: 400;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: var(--ink);
  margin-bottom: 3px;
}

.gstars {
  font-style: normal;
  color: var(--champagne);
  letter-spacing: 0.12em;
  margin-right: 4px;
}

.quotes__glink {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.86rem;
  color: var(--champagne-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.25s;
}

.quotes__glink:hover { color: var(--ink); }

/* ============================================================
   GALERİ
   ============================================================ */

.gallery h2 { margin-bottom: clamp(30px, 4vw, 52px); }

.gallery__grid {
  columns: 3;
  column-gap: 18px;
}

.gallery__grid img {
  margin-bottom: 18px;
  break-inside: avoid;
  transition: opacity 0.4s var(--ease);
}

.gallery__grid img:hover { opacity: 0.92; }

/* ============================================================
   HEDİYE
   ============================================================ */

.gift {
  background: var(--wash);
  max-width: none;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.gift__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.gift__text p {
  max-width: 48ch;
  margin: 18px 0 34px;
  color: var(--ink-soft);
}

.gift__media { position: relative; }

.gift__media img {
  width: min(330px, 74vw);
  border: 1px solid var(--hairline);
}

.gift__media::after {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 1px solid var(--champagne);
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 760px) {
  .gift__inner { grid-template-columns: 1fr; }
  .gift__media { justify-self: center; }
}

/* ============================================================
   RANDEVU + İLETİŞİM
   ============================================================ */

.contact {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(36px, 5vw, 84px);
  position: relative;
}

.contact__anchor { position: absolute; top: 0; }

.contact__lead { margin-top: 18px; color: var(--ink-soft); max-width: 44ch; }

.contact__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 34px;
}

.contact__tile {
  border: 1px solid var(--hairline);
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s, background 0.3s;
}

.contact__tile:hover { border-color: var(--champagne); background: var(--wash); }

.contact__tile svg { width: 26px; height: 26px; color: var(--champagne-deep); flex-shrink: 0; }

.contact__tile span { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.45; }

.contact__tile b {
  display: block;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact__addr { font-style: normal; margin-top: 34px; color: var(--ink-soft); }

.contact__addr p + p { margin-top: 12px; }

.contact__links { display: flex; gap: 26px; flex-wrap: wrap; }

.contact__links a {
  color: var(--champagne-deep);
  font-size: 0.88rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.contact__map {
  border: 1px solid var(--hairline);
  min-height: 420px;
}

.contact__map iframe {
  width: 100%; height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(1.04) opacity(0.92);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  border-top: 1px solid var(--hairline);
  padding: clamp(48px, 6vw, 72px) var(--gutter) 36px;
}

.footer__top {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__logo { height: 26px; width: auto; }

.footer__nav { display: flex; gap: clamp(16px, 2.6vw, 34px); flex-wrap: wrap; }

.footer__nav a {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  text-transform: uppercase;
  transition: color 0.25s;
}

.footer__nav a:hover { color: var(--champagne-deep); }

.footer__bottom {
  max-width: 1400px;
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-soft);
  color: var(--ink-soft);
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__note {
  flex-basis: 100%;
  color: var(--ink-faint);
  font-size: 0.74rem;
}

.footer__powered {
  flex-basis: 100%;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
  transition: color 0.3s;
}

.footer__powered:hover { color: var(--ink-soft); }

.footer__bemacci {
  display: inline-block;
  width: 92px;
  height: 20px;
  background: linear-gradient(100deg, #8a6f38 0%, #c9ab6d 30%, #f0e3bf 50%, #c9ab6d 70%, #8a6f38 100%);
  background-size: 240% 100%;
  -webkit-mask: url("images/bemacci-logo.png") no-repeat center / contain;
  mask: url("images/bemacci-logo.png") no-repeat center / contain;
  animation: bemacciShine 5.5s linear infinite;
}

@supports not ((-webkit-mask-image: url("")) or (mask-image: url(""))) {
  .footer__bemacci {
    background: url("images/bemacci-logo.png") no-repeat center / contain;
    animation: none;
  }
}

@keyframes bemacciShine {
  from { background-position: 240% 0; }
  to { background-position: -240% 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1120px) {
  .nav__tel { display: none; }
}

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__right { margin-left: auto; }

  .hero__name { white-space: normal; }

  .pullquote__grid { grid-template-columns: 1fr; gap: 20px; max-width: 440px; }

  .brands__inner { grid-template-columns: 1fr; }
  .brands__media { max-width: 520px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__media { order: -1; height: min(52vh, 460px); }
  .hero__media img { height: 100%; }

  .svc__grid { grid-template-columns: 1fr; }
  .svc__media { position: static; max-width: 520px; }

  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 560px; }

  .contact { grid-template-columns: 1fr; }
  .gallery__grid { columns: 2; }
}

@media (max-width: 640px) {
  .facts { grid-template-columns: 1fr; }
  .facts__item + .facts__item { border-left: 0; border-top: 1px solid var(--hairline); }
  .facts__item { padding: 26px var(--gutter); }

  .principles__grid { grid-template-columns: 1fr; }
  .principles__item:nth-child(odd) { border-right: 0; }
  .principles__item { padding-left: 0; padding-right: 0; }

  .contact__tiles { grid-template-columns: 1fr; }
  .gallery__grid { columns: 1; }

  .btn { padding: 15px 26px; letter-spacing: 0.18em; }
  .hero__cta .btn { flex: 1 1 100%; }
}
