/* ==========================================================================
   Beyza Alkan Gelinlik — sayfa bölümleri (frontend)
   1. Ortak yardımcılar  2. Kartlar & karusel  3. Ana sayfa  4. Bülten penceresi
   5. İç sayfalar (koleksiyon, model, lookbook, gelinler, hakkımızda, iletişim,
      blog, yazı, sss, favoriler, yasal, 404)  6. Lightbox
   ========================================================================== */

[hidden] { display: none !important; }

/* ---------- 1. Ortak yardımcılar ---------- */
.title-lux { font-weight: 300; letter-spacing: .14em; }
.eyebrow--light { color: rgba(255, 255, 255, .88); }
.eyebrow--accent { color: var(--accent); }
.dot { display: inline-block; margin-inline: .5em; opacity: .6; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; }
.section-cta { display: flex; justify-content: center; margin-top: clamp(32px, 4vw, 56px); }
.section-head--split { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; text-align: left; }
.section-head--split .eyebrow { margin-bottom: .6rem; }
@media (min-width: 640px) { .section-head--split { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.section-head .eyebrow { margin-bottom: .8rem; }
.serif-accent { font-family: var(--font-serif); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: .01em; }

.badge {
    position: absolute; top: 12px; left: 12px; z-index: 1;
    background: #fff; color: #1c1c1c;
    font-family: var(--font-head); font-size: .62rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; line-height: 1;
    padding: 7px 10px 6px;
}
.badge--inline { position: static; display: inline-block; background: var(--accent-soft); color: var(--text); vertical-align: middle; }

.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars__i { display: inline-grid; color: var(--line-strong); }
.stars__i.is-on { color: var(--accent); }

/* Çip (filtre) */
.chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding-block: 2px; }
.chips::-webkit-scrollbar { display: none; }
.chip {
    flex-shrink: 0; min-height: 44px; padding: 10px 18px; border: 1px solid var(--line-strong); background: transparent; color: var(--text);
    font-family: var(--font-head); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; line-height: 1.2; white-space: nowrap;
    transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.chip:hover { border-color: var(--text); }
.chip[aria-pressed="true"] { background: var(--btn-bg); color: var(--btn-text); border-color: var(--btn-bg); }

/* Favori (kalp) butonu */
.fav-btn {
    width: 44px; height: 44px; border-radius: 50%; border: 0; padding: 0;
    display: grid; place-items: center;
    background: rgba(255, 255, 255, .9); color: #1c1c1c;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    transition: transform .3s var(--ease), color .2s, background-color .2s;
    -webkit-tap-highlight-color: transparent;
}
.fav-btn:hover { transform: scale(1.06); }
.fav-btn.is-active { color: #9a6a4f; }
.fav-btn.is-active .icon path { fill: currentColor; }
.fav-btn.is-active .icon { animation: favPop .45s var(--ease-out); }
@keyframes favPop { 40% { transform: scale(1.3); } }

/* ---------- 2. Gelinlik kartı ---------- */
.dress-card { position: relative; min-width: 0; }
.dress-card__media { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--bg-muted); }
.dress-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .8s var(--ease), transform 1.4s var(--ease-out); }
.dress-card__img--hover { opacity: 0; }
.dress-card__ph { position: absolute; inset: 0; background: linear-gradient(135deg, var(--bg-soft), var(--bg-muted)); }
@media (hover: hover) {
    .dress-card:hover .dress-card__img--hover { opacity: 1; }
    .dress-card:hover .dress-card__img { transform: scale(1.035); }
}
.dress-card__fav { position: absolute; top: 10px; right: 10px; z-index: 2; }
.dress-card__body { padding-top: 16px; text-align: center; min-width: 0; }
.dress-card__name { font-size: .88rem; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; margin: 0 0 5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dress-card__link { color: var(--heading); }
.dress-card__link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.dress-card__link:focus-visible { outline: none; }
.dress-card:has(.dress-card__link:focus-visible) .dress-card__media { outline: 2px solid var(--accent); outline-offset: 3px; }
.dress-card__meta { font-size: .76rem; color: var(--text-muted); margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; letter-spacing: .02em; }

.dress-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 14px; }
@media (min-width: 768px) { .dress-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 44px 22px; } }
@media (min-width: 1200px) { .dress-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 420px) { .dress-grid .dress-card__name { font-size: .8rem; letter-spacing: .14em; } .dress-grid .dress-card__fav { top: 6px; right: 6px; } }

/* ---------- Karusel ---------- */
.carousel { position: relative; --per: 1.6; --gap: 14px; --arrow-top: 38%; }
.carousel__track {
    display: grid; grid-auto-flow: column;
    grid-auto-columns: calc((100% - var(--gap) * (var(--per) - 1)) / var(--per));
    gap: var(--gap);
    overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scroll-behavior: smooth;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
    margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scroll-padding-inline: var(--gutter);
    padding-block: 4px;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track:focus-visible { outline-offset: -2px; }
.carousel__slide { scroll-snap-align: start; min-width: 0; }
.carousel__nav { display: none; }
.carousel__arrow {
    position: absolute; top: var(--arrow-top); z-index: 3; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface); color: var(--text);
    display: grid; place-items: center; box-shadow: var(--shadow-sm);
    transition: opacity .3s, background-color .2s, color .2s, transform .3s var(--ease);
}
.carousel__arrow:hover { background: var(--btn-bg); color: var(--btn-text); border-color: var(--btn-bg); }
.carousel__arrow[disabled] { opacity: 0; pointer-events: none; }
.carousel__arrow[data-carousel-prev] { left: -24px; }
.carousel__arrow[data-carousel-next] { right: -24px; }
.carousel__progress { position: relative; height: 1px; background: var(--line); margin: 28px auto 0; max-width: 320px; overflow: hidden; }
.carousel__progress span { position: absolute; left: 0; top: 0; height: 100%; width: 30%; background: var(--text); transition: transform .15s linear; }
.carousel.is-static .carousel__progress { display: none; }
@media (min-width: 768px) { .carousel { --per: 3; --gap: 20px; } }
@media (min-width: 1100px) {
    .carousel { --per: 4; --gap: 24px; }
    .carousel__track { margin-inline: 0; padding-inline: 0; scroll-padding-inline: 0; }
    .carousel__nav { display: block; }
    .carousel__progress { display: none; }
}
@media (min-width: 1100px) and (max-width: 1460px) {
    .carousel__arrow[data-carousel-prev] { left: -14px; }
    .carousel__arrow[data-carousel-next] { right: -14px; }
}

/* ---------- 3. Ana sayfa ---------- */
/* Giriş (hero) */
.hero {
    position: relative; z-index: 2; color: #fff;
    height: calc(100vh - var(--hero-offset, var(--announce-h)));
    height: calc(100svh - var(--hero-offset, var(--announce-h)));
    min-height: 540px; max-height: 1400px;
    display: flex; align-items: flex-end;
}
@supports (height: 100dvh) { @media (min-width: 1024px) { .hero { height: calc(100dvh - var(--hero-offset, var(--announce-h))); } } }
.hero__media { position: absolute; inset: 0; overflow: hidden; background: #26221f; }
.hero__video, .hero__poster { width: 100%; height: 100%; object-fit: cover; }
.hero__video { animation: heroZoom 14s var(--ease) both; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(12, 10, 9, .34) 0%, rgba(12, 10, 9, .06) 30%, rgba(12, 10, 9, .12) 58%, rgba(12, 10, 9, .6) 100%); }
.hero__content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding-bottom: clamp(110px, 17vh, 170px); }
.hero__content > * { animation: heroIn 1.3s var(--ease-out) both; }
.hero__content > :nth-child(1) { animation-delay: .5s; }
.hero__content > :nth-child(2) { animation-delay: .65s; }
.hero__content > :nth-child(3) { animation-delay: .85s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } }
.hero__eyebrow { font-family: var(--font-head); font-size: .72rem; font-weight: 400; letter-spacing: .34em; text-transform: uppercase; margin: 0 0 18px; color: rgba(255, 255, 255, .92); }
.hero__eyebrow::before, .hero__eyebrow::after { content: ""; display: inline-block; width: 26px; height: 1px; background: currentColor; vertical-align: middle; margin: 0 14px; opacity: .7; }
.hero__title { color: #fff; margin: 0 0 32px; font-weight: 300; text-transform: uppercase; letter-spacing: .12em; line-height: 1.12; font-size: calc(clamp(1.75rem, .9rem + 3.4vw, 4rem) * var(--heading-scale)); text-shadow: 0 2px 40px rgba(0, 0, 0, .25); max-width: 22ch; }
.hero__line { display: block; }
.hero__line--serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: .01em; font-size: 1.14em; line-height: 1.15; margin-top: .06em; }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.hero__controls { position: absolute; left: var(--gutter); bottom: 26px; z-index: 3; display: flex; gap: 10px; }
.hero__ctrl {
    width: 44px; height: 44px; border-radius: 50%; padding: 0;
    border: 1px solid rgba(255, 255, 255, .55); background: rgba(0, 0, 0, .2); color: #fff;
    display: grid; place-items: center; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    transition: background-color .25s, color .25s, border-color .25s;
}
.hero__ctrl:hover { background: #fff; color: #1c1c1c; border-color: #fff; }
.hero__ctrl > span { display: grid; place-items: center; }
.hero__ctrl-on, .hero__ctrl[aria-pressed="true"] .hero__ctrl-off { display: none !important; }
.hero__ctrl[aria-pressed="true"] .hero__ctrl-on { display: grid !important; }
.hero__next {
    position: absolute; left: 50%; bottom: 0; z-index: 4; transform: translate(-50%, 50%);
    width: 68px; height: 68px; border-radius: 50%;
    background: var(--bg); color: var(--text);
    display: grid; place-items: center; box-shadow: 0 10px 34px rgba(0, 0, 0, .12);
    transition: transform .35s var(--ease), color .2s;
}
.hero__next:hover { color: var(--accent); transform: translate(-50%, calc(50% + 3px)); }
.hero__next .icon { animation: nudge 2.4s var(--ease) infinite; }
@keyframes nudge { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(3px); } }
@media (max-width: 767px) {
    .hero { min-height: 500px; }
    .hero__title { letter-spacing: .08em; margin-bottom: 26px; }
    .hero__eyebrow::before, .hero__eyebrow::after { width: 16px; margin: 0 10px; }
    .hero__actions .btn { padding-inline: 22px; }
    .hero__controls { bottom: 22px; }
    .hero__next { width: 58px; height: 58px; }
}
@media (max-height: 560px) and (orientation: landscape) { .hero { min-height: 420px; } .hero__content { padding-bottom: 90px; } .hero__title { font-size: 1.7rem; margin-bottom: 18px; } }

/* Ana sayfa: öne çıkanlar */
.featured { padding-top: clamp(84px, 10vw, 140px); }

/* Hikâyemiz bandı */
.story-band { position: relative; isolation: isolate; overflow: hidden; color: #fff; text-align: center; min-height: clamp(460px, 82vh, 820px); display: grid; place-items: center; }
.story-band__media { position: absolute; inset: -10% 0; z-index: -2; will-change: transform; }
.story-band__img { width: 100%; height: 100%; object-fit: cover; }
.story-band__shade { position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse at center, rgba(14, 12, 11, .42), rgba(14, 12, 11, .26) 70%), rgba(14, 12, 11, .12); }
.story-band__content { padding-block: 80px; display: flex; flex-direction: column; align-items: center; }
.story-band__title { color: #fff; font-weight: 300; text-transform: uppercase; letter-spacing: .14em; font-size: calc(clamp(1.9rem, 1rem + 3.4vw, 3.8rem) * var(--heading-scale)); margin-bottom: 18px; }
.story-band__text { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.15rem, 1rem + .6vw, 1.55rem); line-height: 1.45; max-width: 34ch; margin: 0 auto 30px; color: rgba(255, 255, 255, .94); }

/* Koleksiyon kartları (kademeli ızgara) */
.col-grid { display: grid; gap: 18px; }
.col-card { position: relative; display: block; isolation: isolate; overflow: hidden; aspect-ratio: 4 / 5; color: #fff; background: var(--bg-muted); }
.col-card:hover { color: #fff; }
.col-card__media { position: absolute; inset: 0; z-index: -2; }
.col-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease-out); }
.col-card:hover .col-card__img { transform: scale(1.05); }
.col-card__shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0, 0, 0, .04) 30%, rgba(0, 0, 0, .42)), rgba(0, 0, 0, .1); transition: background-color .4s; }
.col-card:hover .col-card__shade { background-color: rgba(0, 0, 0, .2); }
.col-card__body { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 28px; text-align: center; }
.col-card__tag { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.02rem, .95rem + .3vw, 1.2rem); line-height: 1.35; max-width: 26ch; opacity: .95; }
.col-card__title { color: #fff; margin: 0; font-weight: 300; text-transform: uppercase; letter-spacing: .16em; font-size: calc(clamp(1.45rem, 1rem + 1.8vw, 2.4rem) * var(--heading-scale)); text-shadow: 0 2px 24px rgba(0, 0, 0, .25); }
.col-card__btn { margin-top: 6px; }
.col-card:hover .col-card__btn { --_bg: #fff; --_fg: #1c1c1c; --_bd: #fff; }
.col-card:focus-visible { outline-offset: 4px; }
@media (min-width: 768px) {
    .col-grid { grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 44px); }
    .col-card { aspect-ratio: 3 / 4; }
    .col-grid--stagger { --stagger: clamp(56px, 9vw, 150px); padding-bottom: var(--stagger); }
    .col-grid--stagger > :nth-child(even) { top: var(--stagger); }
}

/* Randevu tanıtımı */
.appt-promo__grid { display: grid; gap: clamp(32px, 5vw, 88px); align-items: center; }
.appt-promo__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-muted); }
.appt-promo__img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease-out); }
.appt-promo__media:hover .appt-promo__img { transform: scale(1.03); }
.appt-promo__title { text-transform: uppercase; letter-spacing: .1em; font-weight: 300; margin-bottom: 18px; }
.appt-promo__text { color: var(--text-soft); max-width: 54ch; }
.appt-options { list-style: none; padding: 0; margin: 28px 0 32px; border-top: 1px solid var(--line); }
.appt-option { display: flex; align-items: center; gap: 16px; min-height: 72px; padding: 14px 4px; border-bottom: 1px solid var(--line); color: var(--text); transition: background-color .25s, padding .35s var(--ease); }
.appt-options li:last-child .appt-option { border-bottom-color: var(--line); }
.appt-option:hover { color: var(--text); background: var(--surface); padding-inline: 14px; }
.appt-option__icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--accent); background: var(--surface); }
.appt-option__text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.appt-option__label { font-family: var(--font-head); font-size: .84rem; letter-spacing: .12em; text-transform: uppercase; color: var(--heading); line-height: 1.35; }
.appt-option__tag { display: inline-block; margin-left: 4px; padding: 3px 8px 2px; border: 1px solid var(--accent); color: var(--accent); font-size: .6rem; letter-spacing: .12em; vertical-align: 2px; line-height: 1.2; white-space: nowrap; }
.appt-option__desc { font-size: .8rem; color: var(--text-muted); line-height: 1.5; }
.appt-option__arrow { flex-shrink: 0; color: var(--text-muted); transition: transform .35s var(--ease), color .2s; }
.appt-option:hover .appt-option__arrow { transform: translateX(4px); color: var(--text); }
@media (min-width: 900px) {
    .appt-promo__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
    .appt-promo__media { aspect-ratio: 3 / 4; }
}

/* Kombini keşfet (hotspot) */
.look__grid { display: grid; gap: 28px; }
.look__stage { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-muted); }
.look__img { width: 100%; height: 100%; object-fit: cover; }
.hotspot { position: absolute; z-index: 2; width: 48px; height: 48px; margin: -24px 0 0 -24px; padding: 0; border: 0; background: none; display: grid; place-items: center; -webkit-tap-highlight-color: transparent; }
.hotspot__dot { position: relative; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 0 rgba(255, 255, 255, .75), 0 2px 10px rgba(0, 0, 0, .25); animation: hotspotPulse 2.2s var(--ease) infinite; transition: transform .3s var(--ease); }
.hotspot__dot::after { content: ""; position: absolute; inset: 6px; border-radius: 50%; background: #1c1c1c; transform: scale(0); transition: transform .35s var(--ease-out); }
.hotspot:hover .hotspot__dot { transform: scale(1.12); }
.hotspot[aria-pressed="true"] .hotspot__dot::after { transform: scale(1); }
@keyframes hotspotPulse { 0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .7), 0 2px 10px rgba(0, 0, 0, .25); } 70%, 100% { box-shadow: 0 0 0 18px rgba(255, 255, 255, 0), 0 2px 10px rgba(0, 0, 0, .25); } }
.look__pager { display: flex; border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.look__tab { flex: 1; min-width: 0; min-height: 48px; display: flex; align-items: center; gap: 10px; padding: 12px 4px; background: none; border: 0; border-bottom: 2px solid transparent; margin-bottom: -1px; color: var(--text-muted); font-family: var(--font-head); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; text-align: left; transition: color .2s, border-color .3s; }
.look__tab[aria-pressed="true"] { color: var(--heading); border-bottom-color: var(--heading); }
.look__num { font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; letter-spacing: 0; color: var(--accent); }
.look__card.is-anim { animation: fadeUp .6s var(--ease-out); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } }
.look__desc { color: var(--text-soft); font-size: .9rem; margin: 16px 0 14px; }
.dress-card--look { max-width: 380px; }
@media (max-width: 899px) {
    .look__stage { margin-inline: calc(var(--gutter) * -1); }
    .dress-card--look { display: grid; grid-template-columns: 42% minmax(0, 1fr); gap: 18px; align-items: center; max-width: none; }
    .dress-card--look .dress-card__body { text-align: left; padding-top: 0; padding-right: 48px; }
    .dress-card--look .dress-card__fav { top: 0; right: 0; background: var(--bg-soft); color: var(--text); box-shadow: none; }
    .dress-card--look .dress-card__fav.is-active { color: #9a6a4f; }
}
@media (min-width: 900px) {
    .look__grid { grid-template-columns: minmax(0, 1.75fr) minmax(0, 1fr); gap: clamp(32px, 4vw, 72px); align-items: center; }
    .look__stage { aspect-ratio: 5 / 4; }
}

/* Gelin yorumları */
.reviews__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px 40px; margin-bottom: clamp(28px, 4vw, 52px); }
.reviews__title { margin: 0; }
.rating-summary { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.rating-summary__score { margin: 0; font-family: var(--font-serif); font-size: 1.5rem; line-height: 1; color: var(--text-muted); }
.rating-summary__score span { font-size: 3.1rem; color: var(--heading); }
.rating-summary__label { margin: 0; font-size: .8rem; color: var(--text-soft); }
.rating-summary__count { color: var(--text-muted); }
@media (min-width: 768px) { .rating-summary { align-items: flex-end; text-align: right; } }
.carousel--reviews { --per: 1.12; --arrow-top: 50%; }
@media (min-width: 700px) { .carousel--reviews { --per: 2; } }
@media (min-width: 1100px) { .carousel--reviews { --per: 3; } }
.review-card { margin: 0; height: 100%; display: flex; flex-direction: column; gap: 18px; padding: clamp(24px, 3vw, 38px); background: var(--surface); border: 1px solid var(--line); }
.review-card__text { margin: 0; flex: 1; font-family: var(--font-serif); font-style: italic; font-size: 1.24rem; line-height: 1.5; color: var(--text); }
.review-card__text p { margin: 0; }
.review-card__text p::before { content: "“"; }
.review-card__text p::after { content: "”"; }
.review-card__who { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); min-width: 0; }
.review-card__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.review-card__name-wrap { display: flex; flex-direction: column; min-width: 0; }
.review-card__name { font-family: var(--font-head); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--heading); }
.review-card__date { font-size: .75rem; color: var(--text-muted); }
[data-theme="dark"] .section--soft .review-card { background: var(--bg); }

/* Blog kartları */
.post-grid { display: grid; gap: 44px 28px; }
@media (min-width: 700px) { .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .post-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 56px 32px; } }
.post-card { display: flex; flex-direction: column; min-width: 0; height: 100%; }
.post-card__media { display: block; aspect-ratio: 10 / 7; overflow: hidden; background: var(--bg-muted); margin-bottom: 20px; }
.post-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.post-card:hover .post-card__img { transform: scale(1.04); }
.post-card__body { display: flex; flex-direction: column; align-items: flex-start; flex: 1; min-width: 0; }
.post-card__meta { font-family: var(--font-head); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin: 0 0 10px; }
.post-card__title { font-size: 1.14rem; line-height: 1.42; letter-spacing: .01em; margin: 0 0 10px; }
.post-card__title a { color: var(--heading); }
.post-card__title a:hover { color: var(--link-hover); }
.post-card__excerpt { color: var(--text-soft); font-size: .9rem; line-height: 1.7; margin: 0 0 18px; }
.post-card__more { margin-top: auto; color: var(--text); }

/* Yeni mağaza teaser (koyu, ince bant) */
.teaser { background: #151311; color: #f3eee7; }
.teaser__inner { display: grid; gap: 28px; align-items: center; padding-block: clamp(40px, 6vw, 72px); }
.teaser__media { aspect-ratio: 16 / 10; overflow: hidden; background: #221f1c; }
.teaser__img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease-out); }
.teaser:hover .teaser__img { transform: scale(1.03); }
.teaser__title { color: #fbf8f4; font-weight: 300; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; }
.teaser__title .serif-accent { display: block; font-size: 1.15em; letter-spacing: .01em; color: #e3d2b6; }
.teaser__text { color: #ddd5cb; max-width: 52ch; margin-bottom: 26px; }
.teaser .btn--light:hover { --_bg: transparent; --_fg: #fff; --_bd: #fff; }
@media (min-width: 768px) { .teaser__inner { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(32px, 5vw, 80px); } .teaser__media { aspect-ratio: 5 / 4; } }

/* Instagram akışı */
.insta__title { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: calc(clamp(1.9rem, 1.3rem + 1.8vw, 2.8rem) * var(--heading-scale)); letter-spacing: .01em; margin: 0; overflow-wrap: anywhere; }
.insta__grid { list-style: none; margin: 0; padding: 0 var(--gutter); display: grid; grid-auto-flow: column; grid-auto-columns: 44%; gap: 6px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); scrollbar-width: none; overscroll-behavior-x: contain; }
.insta__grid::-webkit-scrollbar { display: none; }
.insta__cell { scroll-snap-align: start; min-width: 0; }
.insta__item { position: relative; display: block; aspect-ratio: 1; overflow: hidden; background: var(--bg-muted); color: #fff; }
.insta__img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.insta__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 16px; text-align: center; background: rgba(18, 16, 14, .5); opacity: 0; transition: opacity .4s var(--ease); }
.insta__cap { font-size: .78rem; line-height: 1.45; max-width: 22ch; }
.insta__item:hover, .insta__item:focus-visible { color: #fff; }
.insta__item:hover .insta__overlay, .insta__item:focus-visible .insta__overlay { opacity: 1; }
.insta__item:hover .insta__img { transform: scale(1.06); }
.insta__item:focus-visible { outline-offset: -3px; }
.insta .section-cta .btn { gap: 10px; }
@media (min-width: 768px) { .insta__grid { grid-auto-flow: row; grid-template-columns: repeat(min(var(--n), 4), minmax(0, 1fr)); overflow: visible; padding: 0; } }
@media (min-width: 1100px) { .insta__grid { grid-template-columns: repeat(var(--n), minmax(0, 1fr)); } }

/* ---------- 4. Bülten açılır penceresi ---------- */
.nl-popup { position: fixed; inset: 0; z-index: 95; pointer-events: none; }
.nl-popup__backdrop { position: absolute; inset: 0; background: rgba(14, 12, 11, .32); opacity: 0; transition: opacity .45s var(--ease); pointer-events: auto; }
.nl-popup.is-open .nl-popup__backdrop { opacity: 1; }
.nl-popup__card {
    position: absolute; right: 24px; bottom: 24px;
    width: min(400px, calc(100vw - 48px)); max-height: calc(100vh - 48px); max-height: calc(100dvh - 48px); overflow-y: auto; overscroll-behavior: contain;
    background: var(--surface); color: var(--text); box-shadow: 0 24px 70px rgba(0, 0, 0, .22); border: 1px solid var(--line);
    pointer-events: auto; opacity: 0; transform: translateY(28px);
    transition: opacity .45s var(--ease), transform .7s var(--ease-out);
}
.nl-popup.is-open .nl-popup__card { opacity: 1; transform: none; }
.nl-popup__card:focus { outline: none; }
.nl-popup__close { position: absolute; top: 10px; right: 10px; z-index: 2; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .9); color: #1c1c1c; display: grid; place-items: center; transition: transform .3s var(--ease); }
.nl-popup__close:hover { transform: rotate(90deg); }
.nl-popup__media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-muted); }
.nl-popup__img { width: 100%; height: 100%; object-fit: cover; }
.nl-popup__body { padding: 26px 28px 22px; }
.nl-popup__body .eyebrow { margin-bottom: 8px; color: var(--accent); }
.nl-popup__title { font-size: 1.28rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 400; margin-bottom: 10px; }
.nl-popup__text { color: var(--text-soft); font-size: .88rem; line-height: 1.65; margin-bottom: 18px; }
.nl-popup__form { display: flex; flex-direction: column; gap: 14px; }
.nl-popup__form .form-message { margin: 0; }
.nl-popup__form .form-message:empty { display: none; }
@media (max-width: 599px) {
    .nl-popup__card { left: 0; right: 0; bottom: 0; width: 100%; max-height: 90vh; max-height: 90dvh; border: 0; border-top: 1px solid var(--line); transform: translateY(100%); padding-bottom: env(safe-area-inset-bottom); }
    .nl-popup__card::before { content: ""; position: absolute; top: 8px; left: 50%; z-index: 2; width: 40px; height: 4px; margin-left: -20px; border-radius: 4px; background: rgba(255, 255, 255, .85); }
    .nl-popup__media { aspect-ratio: 16 / 7; }
    .nl-popup__body { padding: 20px 20px 18px; }
    .nl-popup__backdrop { background: rgba(14, 12, 11, .5); }
}

/* ==========================================================================
   5. İç sayfalar
   ========================================================================== */
.section--flush-top { padding-top: 0; }
.page-hero--lux { padding-block: clamp(32px, 6vw, 88px) clamp(32px, 4.5vw, 64px); }
.page-hero--lux .page-hero__title { font-weight: 300; letter-spacing: .14em; }
.page-hero--lux .eyebrow { margin-bottom: .7rem; }
.crumbs .breadcrumb { margin-bottom: 18px; }
.breadcrumb li { min-width: 0; }
.breadcrumb a, .breadcrumb span { display: inline-block; padding-block: 6px; }
.breadcrumb [aria-current] { color: var(--text-soft); max-width: min(52vw, 420px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; vertical-align: bottom; }
.crumbs--left .breadcrumb { justify-content: flex-start; }
.crumbs--light .breadcrumb, .crumbs--light .breadcrumb a, .crumbs--light .breadcrumb [aria-current] { color: rgba(255, 255, 255, .86); }
.crumbs--light .breadcrumb a:hover { color: #fff; }
.link-underline { display: inline-flex; align-items: center; gap: 8px; }

/* Boş durum */
.empty-state { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: clamp(40px, 6vw, 80px) 20px; border: 1px dashed var(--line-strong); text-align: center; color: var(--text-soft); }
.empty-state__title { font-family: var(--font-head); font-size: 1.05rem; letter-spacing: .1em; text-transform: uppercase; color: var(--heading); margin: 0 0 6px; }
.empty-state p { max-width: 50ch; margin: 0 0 14px; }
.empty-state__icon { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); margin-bottom: 12px; }

/* Randevu çağrı bandı */
.cta-band { position: relative; isolation: isolate; overflow: hidden; color: #fff; text-align: center; }
.cta-band__media { position: absolute; inset: -10% 0; z-index: -2; will-change: transform; }
.cta-band__img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__shade { position: absolute; inset: 0; z-index: -1; background: rgba(14, 12, 11, .52); }
.cta-band__inner { display: flex; flex-direction: column; align-items: center; padding-block: clamp(72px, 10vw, 140px); }
.cta-band__title { color: #fff; font-weight: 300; text-transform: uppercase; letter-spacing: .12em; max-width: 24ch; }
.cta-band__text { color: rgba(255, 255, 255, .9); max-width: 56ch; margin-bottom: 30px; }

/* Koleksiyon satırı (kompakt kartlar) */
.col-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 900px) { .col-row { grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr)); gap: 20px; } }
.col-card--compact { aspect-ratio: 3 / 4; }
.col-card--compact .col-card__body { justify-content: flex-end; gap: 8px; padding: 18px 14px 24px; }
.col-card--compact .col-card__title { font-size: calc(clamp(.95rem, .75rem + 1vw, 1.6rem) * var(--heading-scale)); letter-spacing: .14em; }
.col-card__count { font-family: var(--font-head); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; opacity: .92; }
@media (max-width: 599px) { .col-card--compact .col-card__btn { display: none; } .col-card--compact .col-card__title { letter-spacing: .08em; } }

/* Filtre çubuğu */
.filter-bar { display: flex; flex-direction: column; gap: 16px; padding-block: 18px; margin-bottom: clamp(26px, 3vw, 44px); border-block: 1px solid var(--line); }
.filter-bar--center { flex-direction: row; justify-content: center; border: 0; padding: 0; }
.filter-group { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.filter-group__label { flex-shrink: 0; min-width: 82px; font-family: var(--font-head); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); }
.filter-group .chips { min-width: 0; margin-right: calc(var(--gutter) * -1); padding-right: var(--gutter); }
.filter-sort { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; }
.filter-sort__select { width: auto; min-width: 190px; min-height: 44px; padding-block: 8px; }
.filter-reset { background: none; border: 0; padding: 10px 0; color: var(--text); }
.filter-count { margin: 0; font-size: .8rem; letter-spacing: .06em; color: var(--text-muted); }
@media (min-width: 768px) {
    .filter-group { flex-direction: row; align-items: center; gap: 14px; }
    .filter-group .chips { margin-right: 0; padding-right: 0; flex-wrap: wrap; overflow: visible; }
}
@media (min-width: 1100px) {
    .filter-bar:not(.filter-bar--center) { display: grid; grid-template-columns: minmax(0, 1fr) auto; column-gap: 32px; }
    .filter-sort { grid-column: 2; grid-row: 1 / span 2; justify-content: flex-end; align-self: center; }
}

/* Koleksiyon detay */
.col-hero { padding-top: clamp(0px, 3vw, 40px); }
.col-hero__grid { display: grid; gap: 28px; align-items: center; }
.col-hero__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-muted); margin-inline: calc(var(--gutter) * -1); }
.col-hero__img { width: 100%; height: 100%; object-fit: cover; animation: slowZoom 16s var(--ease) both; }
@keyframes slowZoom { from { transform: scale(1.07); } }
.col-hero__title { margin-bottom: 12px; overflow-wrap: anywhere; }
.col-hero__tagline { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.3rem, 1.1rem + .8vw, 1.8rem); line-height: 1.35; color: var(--text); margin-bottom: 18px; }
.col-hero__text { color: var(--text-soft); max-width: 54ch; }
.col-hero__meta { max-width: 54ch; margin: 22px 0 26px; padding-top: 16px; border-top: 1px solid var(--line); font-family: var(--font-head); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); }
@media (min-width: 900px) {
    .col-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 100px); }
    .col-hero__media { margin-inline: 0; max-height: calc(100vh - var(--header-h) - 60px); min-height: 520px; }
}

/* Model detay */
.dress-top { padding-top: 14px; }
.dress { display: grid; gap: 28px; padding-bottom: clamp(48px, 7vw, 110px); }
.gallery { display: grid; gap: 12px; min-width: 0; }
.gallery__main { position: relative; min-width: 0; margin-inline: calc(var(--gutter) * -1); }
.gallery__track { display: flex; aspect-ratio: 3 / 4; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-x: contain; background: var(--bg-muted); }
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__track:focus-visible { outline-offset: -3px; }
.gallery__slide { flex: 0 0 100%; min-width: 0; scroll-snap-align: start; scroll-snap-stop: always; display: block; cursor: zoom-in; }
.gallery__img { width: 100%; height: 100%; object-fit: cover; }
.gallery__main .badge { top: 16px; left: 16px; }
.gallery__zoom { position: absolute; right: 14px; bottom: 14px; display: none; align-items: center; gap: 6px; padding: 8px 12px; background: rgba(255, 255, 255, .9); color: #1c1c1c; font-family: var(--font-head); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; pointer-events: none; }
.gallery__arrow { position: absolute; top: 50%; z-index: 2; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .92); color: #1c1c1c; display: none; place-items: center; box-shadow: var(--shadow-sm); transition: opacity .3s, transform .3s var(--ease); }
.gallery__arrow--prev { left: 14px; }
.gallery__arrow--next { right: 14px; }
.gallery__arrow[disabled] { opacity: 0 !important; pointer-events: none; }
.gallery__dots { position: absolute; left: 0; right: 0; bottom: 16px; display: flex; justify-content: center; gap: 6px; pointer-events: none; }
.gallery__dot { width: 6px; height: 6px; border-radius: 6px; background: rgba(255, 255, 255, .6); box-shadow: 0 0 0 1px rgba(0, 0, 0, .08); transition: width .35s var(--ease), background-color .3s; }
.gallery__dot.is-active { width: 20px; background: #fff; }
.gallery__thumbs { display: none; }
.gallery__thumb { display: block; width: 100%; aspect-ratio: 3 / 4; padding: 0; border: 1px solid transparent; background: var(--bg-muted); overflow: hidden; opacity: .55; transition: opacity .25s, border-color .25s; flex-shrink: 0; }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb:hover, .gallery__thumb.is-active { opacity: 1; }
.gallery__thumb.is-active { border-color: var(--text); }
@media (min-width: 900px) {
    .dress { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(36px, 5vw, 84px); align-items: start; }
    .gallery { grid-template-columns: 80px minmax(0, 1fr); }
    .gallery--single { grid-template-columns: minmax(0, 1fr); }
    .gallery__main { margin-inline: 0; }
    .gallery__thumbs { display: flex; flex-direction: column; gap: 10px; height: 0; min-height: 100%; overflow-y: auto; scrollbar-width: thin; }
    .gallery__dots { display: none; }
    .gallery__arrow { display: grid; opacity: 0; }
    .gallery__main:hover .gallery__arrow, .gallery__arrow:focus-visible { opacity: 1; }
    .gallery__zoom { display: inline-flex; }
    .dress-info__sticky { position: sticky; top: calc(var(--header-h) + 24px); }
}
.dress-info { min-width: 0; }
.dress-info__col { display: inline-block; margin-bottom: 12px; padding-block: 4px; }
.dress-info__col:hover { color: var(--text); }
.dress-info__title { font-weight: 300; text-transform: uppercase; letter-spacing: .14em; font-size: calc(clamp(1.8rem, 1.3rem + 1.6vw, 2.7rem) * var(--heading-scale)); line-height: 1.15; margin-bottom: 14px; overflow-wrap: anywhere; }
.dress-info__lead { font-family: var(--font-serif); font-style: italic; font-size: 1.3rem; line-height: 1.45; color: var(--text); margin-bottom: 26px; }
.spec-list { margin: 0 0 28px; border-top: 1px solid var(--line); }
.spec-list__row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
.spec-list dt { flex-shrink: 0; font-family: var(--font-head); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-muted); }
.spec-list dd { margin: 0; min-width: 0; text-align: right; color: var(--text); }
.dress-info__actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.dress-info__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.dress-info__row .btn { padding-inline: 14px; }
.btn--wa .icon { color: #1fae59; }
.btn--wa:hover .icon { color: currentColor; }
.fav-toggle__on, .fav-toggle.is-active .fav-toggle__off { display: none; }
.fav-toggle.is-active .fav-toggle__on { display: inline; }
.fav-toggle.is-active { --_fg: var(--accent); --_bd: var(--accent); }
.fav-toggle.is-active .icon path { fill: currentColor; }
.fav-toggle.is-active:hover { --_fg: var(--btn-text); }
.perks { list-style: none; margin: 0 0 28px; padding: 18px 20px; display: flex; flex-direction: column; gap: 10px; background: var(--bg-soft); font-size: .85rem; color: var(--text-soft); }
.perks li { display: flex; align-items: center; gap: 12px; }
.perks .icon { color: var(--accent); }

/* Akordeon */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__head { margin: 0; font-size: inherit; letter-spacing: 0; line-height: inherit; }
.acc__trigger { width: 100%; min-height: 58px; display: flex; align-items: center; gap: 14px; padding: 16px 0; border: 0; background: none; text-align: left; font-family: var(--font-head); font-size: .82rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; color: var(--heading); -webkit-tap-highlight-color: transparent; }
.acc__trigger:hover { color: var(--accent); }
.acc__icon { position: relative; width: 14px; height: 14px; margin-left: auto; flex-shrink: 0; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: currentColor; transition: transform .4s var(--ease); }
.acc__icon::after { transform: rotate(90deg); }
.acc__trigger[aria-expanded="true"] .acc__icon::after { transform: rotate(0deg); }
.acc__panel { display: grid; grid-template-rows: 0fr; visibility: hidden; transition: grid-template-rows .45s var(--ease), visibility 0s linear .45s; }
.acc__panel.is-open { grid-template-rows: 1fr; visibility: visible; transition: grid-template-rows .45s var(--ease), visibility 0s; }
.acc__inner { min-height: 0; overflow: hidden; }
.acc__inner::after { content: ""; display: block; height: 18px; }
.acc__inner > :last-child { margin-bottom: 0; }
.acc .prose { font-size: .92rem; line-height: 1.8; }
.no-js .acc__panel { grid-template-rows: 1fr; visibility: visible; }

/* Lookbook & gelinler: taş duvar (masonry) */
.masonry { columns: 2; column-gap: 12px; }
@media (min-width: 768px) { .masonry { columns: 3; column-gap: 22px; } }
@media (min-width: 1200px) { .masonry:not(.masonry--brides) { columns: 4; } }
.lb-item { break-inside: avoid; margin: 0 0 18px; min-width: 0; }
@media (min-width: 768px) { .lb-item { margin-bottom: 28px; } }
.lb-item__link { position: relative; display: block; overflow: hidden; background: var(--bg-muted); cursor: zoom-in; }
.lb-item--r45 .lb-item__link { aspect-ratio: 4 / 5; }
.lb-item--r34 .lb-item__link { aspect-ratio: 3 / 4; }
.lb-item--r23 .lb-item__link { aspect-ratio: 2 / 3; }
.lb-item--r11 .lb-item__link { aspect-ratio: 1; }
.lb-item__img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease-out); }
.lb-item__link:hover .lb-item__img { transform: scale(1.04); }
.lb-item__link:focus-visible { outline-offset: 2px; }
.lb-item__cap { display: flex; flex-direction: column; gap: 1px; padding-top: 10px; min-width: 0; }
.lb-item__title { font-family: var(--font-head); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--heading); }
.lb-item__sub { font-size: .74rem; color: var(--text-muted); }
.bride-card__cap { display: flex; flex-direction: column; gap: 2px; padding-top: 12px; min-width: 0; }
.bride-card__name { font-family: var(--font-head); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--heading); }
.bride-card__text { font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; line-height: 1.4; color: var(--text); }
.bride-card__dress { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; padding-block: 8px; font-size: .78rem; color: var(--text-soft); text-decoration: underline; text-underline-offset: 3px; }
.hashtag-box { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: clamp(40px, 6vw, 80px); padding-top: clamp(32px, 4vw, 56px); border-top: 1px solid var(--line); text-align: center; }
.hashtag-box__tag { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.8rem, 1.3rem + 1.8vw, 2.8rem); line-height: 1.2; color: var(--heading); margin: 0; overflow-wrap: anywhere; }
.hashtag-box__text { color: var(--text-soft); max-width: 50ch; margin-bottom: 16px; }

/* Hakkımızda */
.about-hero { position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: flex-end; min-height: clamp(420px, 72vh, 760px); color: #fff; }
.about-hero__media { position: absolute; inset: 0; z-index: -2; }
.about-hero__img { width: 100%; height: 100%; object-fit: cover; animation: slowZoom 18s var(--ease) both; }
.about-hero__shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(12, 10, 9, .18), rgba(12, 10, 9, .55)); }
.about-hero__content { display: flex; flex-direction: column; align-items: center; text-align: center; padding-block: 60px clamp(48px, 7vw, 100px); }
.about-hero__title { color: #fff; margin: 0; font-weight: 300; text-transform: uppercase; letter-spacing: .14em; font-size: calc(clamp(2rem, 1.2rem + 3.4vw, 4rem) * var(--heading-scale)); text-shadow: 0 2px 30px rgba(0, 0, 0, .25); }
.about-intro__text { margin: 0; text-align: center; font-family: var(--font-serif); font-style: italic; font-size: clamp(1.45rem, 1.1rem + 1.4vw, 2.3rem); line-height: 1.4; color: var(--heading); }
.about-story__grid { display: grid; gap: 32px; align-items: center; }
.about-story__media { aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-muted); }
.about-story__img { width: 100%; height: 100%; object-fit: cover; }
.about-story__title { margin-bottom: 18px; }
.about-story__body .prose { margin-bottom: 26px; }
@media (min-width: 900px) { .about-story__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(48px, 7vw, 120px); } }
.quote-band { background: var(--bg-soft); padding-block: clamp(64px, 9vw, 130px); text-align: center; }
.quote-band__fig { margin: 0; }
.quote-band__text { margin: 0; }
.quote-band__text p { margin: 0 0 24px; font-family: var(--font-serif); font-style: italic; font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.8rem); line-height: 1.3; color: var(--heading); }
.quote-band__text p::before { content: "“"; }
.quote-band__text p::after { content: "”"; }
.quote-band__by { display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-head); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--text-muted); }
.quote-band__by::before { content: ""; width: 32px; height: 1px; background: currentColor; }
.values__grid { display: grid; gap: 18px; }
@media (min-width: 768px) { .values__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; } }
.value-card { position: relative; padding: clamp(28px, 3vw, 44px); border: 1px solid var(--line); background: var(--surface); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card__num { position: absolute; top: 18px; right: 22px; font-family: var(--font-serif); font-style: italic; font-size: 2.2rem; line-height: 1; color: var(--line-strong); }
.value-card__icon { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); margin-bottom: 22px; }
.value-card__title { font-size: 1rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 10px; }
.value-card__text { margin: 0; font-size: .9rem; color: var(--text-soft); }

/* İletişim */
.contact__grid { display: grid; gap: 40px; }
@media (min-width: 1000px) { .contact__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 5vw, 88px); align-items: start; } }
.contact-cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
@media (min-width: 600px) and (max-width: 999px) { .contact-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.contact-card { display: flex; gap: 16px; min-width: 0; padding: 20px; border: 1px solid var(--line); background: var(--surface); }
.contact-card__icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); }
.contact-card__icon--wa { background: #e5f7ec; color: #178a45; }
[data-theme="dark"] .contact-card__icon--wa { background: rgba(37, 211, 102, .14); color: #6fe3a0; }
.contact-card__body { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; min-width: 0; }
.contact-card__title { margin: 2px 0 4px; font-family: var(--font-head); font-size: .7rem; font-weight: 400; letter-spacing: .16em; text-transform: uppercase; color: var(--text-muted); }
.contact-card__link { font-size: 1rem; font-weight: 400; color: var(--heading); padding-block: 4px; overflow-wrap: anywhere; }
.contact-card__text { margin: 0; font-style: normal; font-size: .92rem; line-height: 1.65; color: var(--text); }
.contact-card__note { font-size: .78rem; color: var(--text-muted); }
.contact-card__more { margin-top: 8px; padding-block: 6px; }
.contact__social { margin-top: 28px; }
.contact__social .eyebrow { margin-bottom: 8px; }
.contact__social .social-row a { width: 44px; height: 44px; border: 1px solid var(--line); }
.contact__form-wrap { background: var(--bg-soft); padding: clamp(24px, 4vw, 52px); margin-inline: calc(var(--gutter) * -1); }
@media (min-width: 640px) { .contact__form-wrap { margin-inline: 0; } }
.contact__form-title { font-size: calc(clamp(1.3rem, 1.1rem + .8vw, 1.7rem) * var(--heading-scale)); text-transform: uppercase; margin-bottom: 8px; }
.contact__form-text { color: var(--text-soft); font-size: .9rem; margin-bottom: 28px; }
.contact__form-text a { text-decoration: underline; text-underline-offset: 3px; }
.contact-form__kvkk { margin: 20px 0 10px; }
.contact-form__submit { margin-top: 10px; min-width: 220px; }
@media (max-width: 639px) { .contact-form__submit { width: 100%; } }
.map-wrap { height: clamp(320px, 45vw, 520px); background: var(--bg-muted); border-top: 1px solid var(--line); }
.map-wrap__frame { display: block; width: 100%; height: 100%; border: 0; filter: grayscale(.4) contrast(1.02); }
[data-theme="dark"] .map-wrap__frame { filter: grayscale(1) invert(.9) hue-rotate(180deg) contrast(.9); }

/* Blog listesi */
.post-feature { display: grid; gap: 24px; align-items: center; margin-bottom: clamp(56px, 7vw, 100px); }
@media (min-width: 900px) { .post-feature { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); } }
.post-feature__media { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--bg-muted); }
.post-feature__img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.post-feature:hover .post-feature__img { transform: scale(1.03); }
.post-feature__body { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; }
.post-feature__tag { display: inline-block; margin-right: 12px; padding: 3px 8px; background: var(--accent-soft); color: var(--text); }
.post-feature__title { font-size: calc(clamp(1.5rem, 1.1rem + 1.4vw, 2.3rem) * var(--heading-scale)); line-height: 1.3; margin-bottom: 16px; }
.post-feature__title a { color: var(--heading); }
.post-feature__title a:hover { color: var(--link-hover); }
.post-feature__excerpt { color: var(--text-soft); margin-bottom: 26px; }
.blog-list__title { font-size: .85rem; letter-spacing: .22em; text-transform: uppercase; padding-bottom: 16px; margin-bottom: 36px; border-bottom: 1px solid var(--line); }
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: clamp(48px, 6vw, 80px); }
.pagination__num, .pagination__arrow { min-width: 46px; height: 46px; padding: 0 10px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--text); font-family: var(--font-head); font-size: .85rem; transition: background-color .2s, color .2s, border-color .2s; }
.pagination a:hover { border-color: var(--text); color: var(--text); }
.pagination__num.is-current { background: var(--btn-bg); color: var(--btn-text); border-color: var(--btn-bg); }

/* Blog yazısı */
.article__head { padding-block: clamp(16px, 3vw, 40px) clamp(28px, 3vw, 44px); }
.article__meta { font-family: var(--font-head); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.article__cat { color: var(--accent); padding-block: 6px; }
.article__title { font-size: calc(clamp(1.8rem, 1.2rem + 2.4vw, 3rem) * var(--heading-scale)); line-height: 1.2; letter-spacing: .005em; margin-bottom: 18px; overflow-wrap: anywhere; }
.article__lead { font-size: 1.12rem; line-height: 1.7; color: var(--text-soft); margin-bottom: 26px; }
.article__author { display: flex; align-items: center; gap: 12px; font-size: .86rem; }
.article__author strong { display: block; font-weight: 500; color: var(--heading); }
.article__role { display: block; font-size: .78rem; color: var(--text-muted); }
.article__avatar { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--heading); background: var(--surface); }
.article__mark { width: 26px; height: auto; stroke-width: 9; }
.article__cover { margin: 0 auto clamp(32px, 5vw, 64px); }
.article__cover-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: var(--bg-muted); }
@media (max-width: 639px) { .article__cover { padding-inline: 0; } .article__cover-img { aspect-ratio: 4 / 3; } }
.article__layout { display: grid; }
.article__content { min-width: 0; width: 100%; max-width: 720px; margin-inline: auto; }
.article__prose { font-size: 1.05rem; }
.article__prose > p:first-of-type::first-letter { float: left; font-family: var(--font-serif); font-size: 3.6em; line-height: .85; padding: 6px 10px 0 0; color: var(--heading); }
.article__share { display: none; }
.article__share-label { font-family: var(--font-head); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); }
.share-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface); color: var(--text); display: grid; place-items: center; padding: 0; transition: background-color .2s, color .2s, border-color .2s; }
.share-btn:hover { background: var(--btn-bg); color: var(--btn-text); border-color: var(--btn-bg); }
.share-btn.is-done { color: var(--success); border-color: var(--success); }
@media (min-width: 1100px) {
    .article__layout { grid-template-columns: minmax(0, 1fr) minmax(0, 720px) minmax(0, 1fr); column-gap: 40px; }
    .article__share { grid-column: 1; grid-row: 1; justify-self: end; align-self: start; position: sticky; top: calc(var(--header-h) + 40px); display: flex; flex-direction: column; align-items: center; gap: 10px; }
    .article__content { grid-column: 2; grid-row: 1; }
}
.article-cta { display: grid; gap: 20px; margin: clamp(40px, 5vw, 64px) 0; padding: clamp(24px, 4vw, 44px); background: var(--bg-soft); border-left: 2px solid var(--accent); }
@media (min-width: 700px) { .article-cta { grid-template-columns: minmax(0, 1fr) auto; align-items: center; } }
.article-cta .eyebrow { margin-bottom: 6px; }
.article-cta__title { font-size: 1.3rem; margin-bottom: 8px; letter-spacing: .02em; }
.article-cta__text { margin: 0; font-size: .9rem; color: var(--text-soft); }
.article-cta__actions { display: flex; flex-direction: column; gap: 10px; }
.article__foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; padding-top: 24px; margin-bottom: clamp(56px, 7vw, 100px); border-top: 1px solid var(--line); }
.article__foot .link-underline { padding-block: 8px; }
.article__share-inline { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.prose table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: .88rem; }
.prose th, .prose td { padding: 12px 10px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose th { font-family: var(--font-head); font-size: .7rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); }
.table-scroll { overflow-x: auto; margin: 1.5em 0; -webkit-overflow-scrolling: touch; }

/* SSS */
.faq__grid { display: grid; gap: 36px; }
.faq__aside { order: 2; }
.faq__card { padding: clamp(24px, 3vw, 36px); background: var(--bg-soft); }
.faq__card-title { font-size: 1.1rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.faq__card p { color: var(--text-soft); font-size: .9rem; }
.faq__card-actions { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 12px; }
.faq__phone { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; font-size: .95rem; color: var(--text); }
@media (min-width: 1000px) {
    .faq__grid { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(48px, 6vw, 96px); align-items: start; }
    .faq__aside { order: 0; }
    .faq__card { position: sticky; top: calc(var(--header-h) + 24px); }
}
.acc--faq .acc__trigger { align-items: flex-start; padding: 22px 0; font-size: calc(clamp(1rem, .95rem + .3vw, 1.15rem) * var(--heading-scale)); letter-spacing: .01em; text-transform: none; line-height: 1.45; }
.acc__num { min-width: 30px; font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; line-height: 1.3; color: var(--accent); }
.acc__q { flex: 1; min-width: 0; }
.acc--faq .acc__icon { margin: 6px 0 0; }
.acc--faq .acc__inner { padding-left: 44px; color: var(--text-soft); }
.acc--faq .acc__inner p { margin-bottom: .6em; }
@media (max-width: 599px) { .acc--faq .acc__inner { padding-left: 0; } }

/* Favoriler */
.favs__bar { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; padding-bottom: 20px; margin-bottom: 32px; border-bottom: 1px solid var(--line); }
.favs__count { margin: 0; font-size: .9rem; letter-spacing: .2em; text-transform: uppercase; }
.favs__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; }
.favs__actions .link-underline { background-color: transparent; border: 0; padding-block: 10px; color: var(--text); }
html:not(.no-js) .favs:not(.is-ready) .favs__empty { visibility: hidden; }

/* Yasal metinler */
.legal__grid { display: grid; gap: 32px; }
.legal__nav { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; margin-right: calc(var(--gutter) * -1); padding-right: var(--gutter); }
.legal__nav::-webkit-scrollbar { display: none; }
.legal__link { flex-shrink: 0; display: flex; align-items: center; min-height: 44px; padding: 10px 16px; border: 1px solid var(--line-strong); font-family: var(--font-head); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft); white-space: nowrap; }
.legal__link.is-active { background: var(--btn-bg); color: var(--btn-text); border-color: var(--btn-bg); }
.legal__toc { display: none; }
.legal__body { max-width: 760px; min-width: 0; }
.legal__body h2 { scroll-margin-top: calc(var(--header-h) + 20px); }
.legal__note { margin-top: 40px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .8rem; color: var(--text-muted); }
@media (min-width: 1000px) {
    .legal__grid { grid-template-columns: 260px minmax(0, 1fr); gap: clamp(48px, 6vw, 96px); align-items: start; }
    .legal__aside { position: sticky; top: calc(var(--header-h) + 24px); }
    .legal__nav { flex-direction: column; gap: 0; margin: 0; padding: 0; border-top: 1px solid var(--line); }
    .legal__link { border: 0; border-bottom: 1px solid var(--line); padding: 14px 0; white-space: normal; }
    .legal__link.is-active { background: none; color: var(--accent); }
    .legal__toc { display: block; margin-top: 32px; }
    .legal__toc ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
    .legal__toc a { display: block; padding-block: 5px; font-size: .84rem; color: var(--text-soft); }
    .legal__toc a:hover { color: var(--text); }
}

/* 404 */
.not-found { padding-block: clamp(56px, 10vw, 140px); text-align: center; }
.not-found__inner { display: flex; flex-direction: column; align-items: center; }
.not-found__code { display: flex; gap: .04em; margin: 0 0 14px; font-family: var(--font-serif); font-size: clamp(6rem, 4rem + 10vw, 11rem); line-height: .9; color: var(--heading); }
.not-found__zero { font-style: italic; color: var(--accent); }
.not-found__title { font-weight: 300; text-transform: uppercase; letter-spacing: .14em; }
.not-found__text { color: var(--text-soft); max-width: 48ch; margin-bottom: 28px; }
.not-found__actions { justify-content: center; }
.not-found__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0 26px; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); }
.not-found__links a { padding-block: 10px; font-family: var(--font-head); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-soft); }
.not-found__links a:hover { color: var(--text); }

/* ==========================================================================
   6. Lightbox
   ========================================================================== */
.lightbox { position: fixed; inset: 0; z-index: 200; opacity: 0; transition: opacity .3s var(--ease); }
.lightbox.is-open { opacity: 1; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(12, 11, 10, .95); }
.lightbox__figure { position: absolute; inset: 0; margin: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: calc(68px + env(safe-area-inset-top)) 16px calc(74px + env(safe-area-inset-bottom)); touch-action: pan-y; }
.lightbox__img { max-width: min(100%, 1400px); max-height: 100%; min-height: 0; width: auto; height: auto; object-fit: contain; opacity: 0; transition: opacity .35s var(--ease), transform .2s; user-select: none; -webkit-user-drag: none; }
.lightbox__img.is-in { opacity: 1; }
.lightbox__cap { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 4px 16px; margin-top: 14px; font-size: .86rem; color: #e9e3da; text-align: center; }
.lightbox__link { padding-block: 10px; font-family: var(--font-head); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.lightbox__link:hover { color: #e3d2b6; }
.lightbox__btn { position: absolute; z-index: 2; width: 50px; height: 50px; border-radius: 50%; padding: 0; border: 1px solid rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .08); color: #fff; display: grid; place-items: center; transition: background-color .2s, color .2s; }
.lightbox__btn:hover { background: #fff; color: #1c1c1c; }
.lightbox__close { top: calc(12px + env(safe-area-inset-top)); right: 12px; }
.lightbox__prev, .lightbox__next { top: 50%; transform: translateY(-50%); }
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__count { position: absolute; z-index: 2; top: calc(26px + env(safe-area-inset-top)); left: 20px; margin: 0; font-family: var(--font-head); font-size: .76rem; letter-spacing: .16em; color: rgba(255, 255, 255, .82); }
.lightbox :focus-visible { outline-color: #fff; }
@media (max-width: 767px) {
    .lightbox__prev, .lightbox__next { top: auto; bottom: calc(12px + env(safe-area-inset-bottom)); transform: none; }
    .lightbox__prev { left: calc(50% - 62px); }
    .lightbox__next { right: calc(50% - 62px); }
}

/* ==========================================================================
   7. Erişilebilirlik & çekirdek cilası (dokunma alanı ≥ 44px, taşma koruması)
   ========================================================================== */
@media (max-width: 999px) { .legal__grid, .faq__grid, .contact__grid { grid-template-columns: minmax(0, 1fr); } }
.legal__grid > *, .faq__grid > *, .contact__grid > * { min-width: 0; }
.link-underline, .contact-card__link, .contact-card__more, .bride-card__dress, .dress-info__col, .not-found__links a, .article__cat, .post-card__title a { position: relative; }
.link-underline::before, .contact-card__link::before, .bride-card__dress::before, .dress-info__col::before, .not-found__links a::before, .article__cat::before { content: ""; position: absolute; inset: -10px -4px; }
@media (max-width: 480px) { .hero__actions { width: 100%; } .hero__actions .btn { flex: 1 1 100%; min-width: 0; } }
[data-theme="dark"] .teaser { border-block: 1px solid var(--line); }
[data-theme="dark"] .fav-btn { background: rgba(255, 255, 255, .92); }
