/* ============================================================
   LENA NAKIŞ — Bölüm stilleri (Lovisa Malin referansına birebir)
   ============================================================ */

/* ---------- MEDIA (görsel çerçevesi) ---------- */
.media { position: relative; aspect-ratio: var(--ratio, 4 / 5); overflow: hidden; background: linear-gradient(145deg, #2a2015, #14100c 62%); }
.media img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.media.zoom:hover img { transform: scale(1.06); }
.frame::after { content: ""; position: absolute; inset: 0; border: 1px solid var(--hair-gold); pointer-events: none; }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100svh; overflow: hidden; background: var(--teal-deep); display: flex; align-items: center; }
.hero-bg-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-bg { position: absolute; inset: -6% 0; opacity: 0; transition: opacity 1.4s var(--ease); }
.hero-bg.active { opacity: 1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,20,28,.34) 10%, rgba(2,20,28,0) 58%), linear-gradient(90deg, rgba(2,20,28,.6) 0%, rgba(2,20,28,.2) 48%, transparent 72%); }
.hero-panel { position: absolute; top: 0; right: 0; bottom: 0; z-index: 2; width: clamp(340px, 43vw, 840px); background: var(--teal); overflow: hidden; display: flex; align-items: center; }
.hero-panel-photo { position: absolute; inset: 0; }
.hero-panel-photo img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; opacity: .5; }
.hero-panel-inner { position: relative; z-index: 3; padding-left: clamp(2rem, 4vw, 5.5rem); padding-right: clamp(4rem, 6vw, 7rem); max-width: 34rem; }
.hero-panel-text { color: var(--cream); font-size: clamp(1.05rem, .9rem + .6vw, 1.45rem); font-weight: 300; line-height: 1.7; margin-bottom: 2.2rem; }
.hero-panel-bar { position: absolute; top: 0; bottom: 0; right: 0; width: clamp(10px, 2.6vw, 52px); background: var(--gold); z-index: 2; }
.hero-inner { position: relative; z-index: 3; width: 100%; }
.hero-word { max-width: 58%; padding-top: 5rem; }
.hero-eyebrow { margin-bottom: 1.5rem; letter-spacing: .3em; color: #fff; opacity: .92; }
.hero-title { color: #fff; font-family: var(--serif); font-weight: 500; line-height: .84; font-size: var(--fs-hero); text-shadow: 0 12px 55px rgba(0,0,0,.45); }
.hero-title .hw-1 { display: block; }
.hero-title .hw-2 { display: block; padding-left: .7em; }
.hero-title .hw-2 i { font-family: var(--serif); font-style: italic; font-size: .34em; font-weight: 400; margin-right: .18em; }
.hero-dots { position: absolute; left: var(--pad-x); bottom: clamp(1.6rem, 4vw, 3.4rem); z-index: 4; display: flex; gap: .8rem; }
.hero-dot { width: clamp(42px, 5vw, 92px); height: 2px; background: rgba(255,255,255,.35); transition: background .4s; cursor: pointer; }
.hero-dot.active { background: var(--gold); }
@media (max-width: 900px) {
  .hero { flex-direction: column; }
  .hero-veil { background: linear-gradient(180deg, rgba(2,20,28,.42), rgba(2,20,28,.2) 38%, rgba(2,20,28,.85)); }
  .hero-inner { order: 1; flex: 1; display: flex; align-items: flex-end; padding-top: 7rem; padding-bottom: 2.2rem; }
  .hero-word { max-width: 100%; padding-top: 0; }
  .hero-panel { position: relative; order: 2; width: 100%; }
  .hero-panel-inner { max-width: 100%; padding: clamp(1.8rem, 6vw, 2.6rem); }
  .hero-panel-bar { display: none; }
  .hero-dots { order: 3; position: relative; left: auto; bottom: auto; padding: 1.1rem var(--pad-x); background: var(--teal); width: 100%; }
}

/* ---------- SECTION HEAD ---------- */
.sec-head { max-width: 720px; margin-bottom: clamp(2.4rem, 4vw, 4rem); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: var(--fs-h2); margin-top: 1rem; }

/* ---------- FEATURE TRIO (Frame828 üst) ---------- */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3vw, 3.5rem); }
.trio-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.trio-ic { flex-shrink: 0; width: 84px; height: 84px; display: grid; place-items: center; background: var(--teal); }
.trio-ic svg { width: 34px; color: var(--gold-2); }
.trio-item h3 { font-family: var(--sans); font-weight: 600; font-size: 1.15rem; letter-spacing: .01em; margin-bottom: .4rem; color: var(--ink); }
.trio-item p { font-size: .95rem; color: var(--ink-2); line-height: 1.6; }
@media (max-width: 780px) { .trio { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ---------- STAGGERED CARDS (Frame828 alt) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.8rem); margin-top: clamp(2.5rem, 5vw, 4.5rem); align-items: end; }
.card { position: relative; aspect-ratio: 414 / 478; overflow: hidden; display: block; }
.card:nth-child(1) { transform: translateY(0); }
.card:nth-child(2) { transform: translateY(2.5rem); }
.card:nth-child(3) { transform: translateY(-1.4rem); }
.card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.card::after { content: ""; position: absolute; inset: 0; background: rgba(2,20,28,.4); transition: background .5s; }
.card:hover img { transform: scale(1.05); }
.card:hover::after { background: rgba(2,20,28,.25); }
.card-cap { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem; text-align: center; color: #fff; padding: 1rem; }
.card-cap h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.8rem, 1.2rem + 2vw, 3rem); line-height: 1; }
.card-cap p { font-size: .95rem; opacity: .92; }
@media (max-width: 820px) { .cards { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } .card { transform: none !important; } }

/* ---------- TYPO BAND (Frame834) ---------- */
.typo { position: relative; overflow: hidden; }
.typo-words { display: flex; flex-direction: column; gap: .1em; }
.typo-row { display: flex; align-items: center; gap: .3em; flex-wrap: wrap; line-height: .96; }
.typo-w { font-family: var(--serif); font-weight: 500; font-size: clamp(2.4rem, 1rem + 6.5vw, 8.1rem); letter-spacing: -.005em; }
.typo-w.teal { color: var(--teal); }
.typo-w.gold { color: var(--gold); }
.typo-row:nth-child(2) { padding-left: clamp(1rem, 6vw, 7rem); }
.typo-row:nth-child(3) { padding-left: clamp(2rem, 10vw, 12rem); }
.typo-row:nth-child(4) { padding-left: clamp(1rem, 5vw, 6rem); }
.typo-tile { display: inline-block; width: clamp(80px, 9vw, 150px); aspect-ratio: 16 / 11; overflow: hidden; vertical-align: middle; box-shadow: var(--shadow-soft); }
.typo-tile img { width: 100%; height: 100%; object-fit: cover; }
.typo-foot { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 4vw, 5rem); align-items: end; margin-top: clamp(2.5rem, 5vw, 5rem); }
.typo-foot .lead { max-width: 46ch; }
.typo-foot .btn { margin-top: 1.6rem; }
.typo-img { aspect-ratio: 591 / 500; }
@media (max-width: 820px) { .typo-foot { grid-template-columns: 1fr; } .typo-row { padding-left: 0 !important; } }

/* ---------- SPLIT (Frame835) ---------- */
.split-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 4vw, 5rem); align-items: center; }
.split-text h2 { font-size: var(--fs-h2); margin: 1rem 0 1.4rem; }
.split-text p + p { margin-top: 1.1rem; }
.split-text .btn { margin-top: 1.8rem; }
.split-media { aspect-ratio: 1166 / 755; }
@media (max-width: 820px) { .split-grid { grid-template-columns: 1fr; } }

/* ---------- SHOWCASE / ATÖLYE (Frame842) ---------- */
.showcase-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 4vw, 5rem); align-items: center; }
.showcase-media { position: relative; }
.showcase-media .sh-a { aspect-ratio: 374 / 604; }
.showcase-media .sh-b { position: absolute; right: -8%; bottom: -12%; width: 56%; aspect-ratio: 3/4; border: 5px solid var(--paper); box-shadow: var(--shadow-soft); }
.showcase-text h2 { font-size: var(--fs-h2); margin: 1rem 0 1.2rem; }
.showcase-list { margin: 1.6rem 0; display: flex; flex-direction: column; gap: .8rem; }
.showcase-list li { display: flex; gap: .7rem; align-items: flex-start; color: inherit; }
.showcase-list svg { width: 20px; color: var(--gold); flex-shrink: 0; margin-top: .15rem; }
@media (max-width: 820px) { .showcase-grid { grid-template-columns: 1fr; gap: 4rem; } }

/* ---------- STORY / LOVISA (Frame843) ---------- */
.story-head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.story-word { font-family: var(--serif); font-size: clamp(3rem, 1.5rem + 8vw, 8rem); letter-spacing: .02em; line-height: 1; margin-top: .5rem; font-weight: 500; }
.story-grid { display: grid; grid-template-columns: 1fr .8fr .8fr 1fr; gap: clamp(1.4rem, 2.5vw, 3rem); align-items: center; }
.story-col p + .btn { margin-top: 1.6rem; }
.story-img { aspect-ratio: 3/4; }
.story-img-b { margin-top: 2.4rem; }
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr 1fr; } .story-col { grid-column: 1 / -1; } .story-col-2 { order: 5; } }
@media (max-width: 540px) { .story-grid { grid-template-columns: 1fr; } .story-img-b { margin-top: 0; } }

/* ---------- CULTURE BAND (Frame844) ---------- */
.band { position: relative; overflow: hidden; isolation: isolate; text-align: center; color: #fff; padding-block: clamp(5rem, 4rem + 9vw, 11rem); }
.band-bg { position: absolute; inset: -8% 0; z-index: -2; }
.band-bg img { width: 100%; height: 100%; object-fit: cover; }
.band-veil { position: absolute; inset: 0; z-index: -1; background: rgba(2,20,28,.55); }
.band-line { font-family: var(--serif); font-weight: 500; font-size: clamp(3rem, 1.5rem + 9vw, 11rem); line-height: .95; }

/* ---------- GALLERY (Frame851) ---------- */
.gallery-stagger { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(.7rem, 1vw, 1.3rem); }
.g-item { position: relative; display: block; aspect-ratio: 277 / 390; overflow: hidden; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.g-item:hover img { transform: scale(1.06); }
.g-item:nth-child(even) { margin-top: 2.6rem; }
.g-label { position: absolute; left: .8rem; bottom: .8rem; z-index: 2; color: #fff; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; padding: .4rem .8rem; background: rgba(2,20,28,.5); border: 1px solid var(--hair-gold); }
@media (max-width: 820px) { .gallery-stagger { grid-template-columns: repeat(2, 1fr); } .g-item:nth-child(even) { margin-top: 0; } }

/* ---------- MAP (Frame852) ---------- */
.locmap { position: relative; overflow: hidden; }
.locmap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 5rem); align-items: center; }
.locmap-name { font-family: var(--serif); font-size: clamp(2.4rem, 1.4rem + 4vw, 5rem); line-height: 1; }
.locmap-name i { font-style: italic; font-size: .55em; color: var(--gold-2); }
.locmap-embed { aspect-ratio: 4/3; overflow: hidden; position: relative; border: 1px solid var(--hair-gold); }
.locmap-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.05) brightness(.95); }
.locmap-rows { margin-top: 1.6rem; display: flex; flex-direction: column; gap: .9rem; }
.locmap-rows li, .locmap-rows a { display: flex; gap: .7rem; align-items: flex-start; }
.locmap-rows svg { width: 20px; color: var(--gold-2); flex-shrink: 0; margin-top: .2rem; }
@media (max-width: 820px) { .locmap-grid { grid-template-columns: 1fr; } }

/* ---------- SECTORS MARQUEE ---------- */
.sectors { padding-block: 1.5rem; overflow: hidden; }
.marquee { overflow: hidden; }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: marquee 36s linear infinite; }
.mq-item { display: inline-flex; align-items: center; gap: .7rem; font-family: var(--serif); font-size: 1.5rem; color: var(--cream-2); white-space: nowrap; }
.mq-item svg { width: 16px; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; } }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 860px; }
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq { border: 1px solid var(--hair-dark); background: #fff; overflow: hidden; transition: border-color .4s; }
.faq[open] { border-color: var(--hair-gold); }
.faq summary { list-style: none; cursor: pointer; padding: 1.3rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: var(--serif); font-size: clamp(1.1rem, 1rem + .5vw, 1.4rem); font-weight: 500; }
.faq summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--gold-deep); transition: transform .4s var(--ease); }
.faq-plus::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq-plus::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq[open] .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a { padding: 0 1.5rem 1.4rem; color: var(--ink-2); }
.faq-a p { max-width: 68ch; }

/* ---------- CONTACT (Frame859) ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4.5rem); align-items: start; }
.contact-info h2 { font-size: var(--fs-h2); margin: 1rem 0 1.2rem; }
.contact-rows { margin: 1.8rem 0; display: flex; flex-direction: column; gap: 1rem; }
.contact-rows li, .contact-rows a { display: flex; gap: .8rem; align-items: flex-start; color: var(--cream); }
.contact-rows svg { width: 20px; color: var(--gold); flex-shrink: 0; margin-top: .2rem; }
.contact-form-card { background: rgba(255,255,255,.03); border: 1px solid var(--hair-gold); padding: clamp(1.6rem, 1rem + 2vw, 2.6rem); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- LEAD FORM ---------- */
.lead-form { display: flex; flex-direction: column; gap: 1.1rem; }
.lf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.lf-field { display: flex; flex-direction: column; gap: .5rem; }
.lf-field > span { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); font-weight: 500; }
.lf-field input, .lf-field select, .lf-field textarea { background: transparent; border: 0; border-bottom: 1px solid var(--hair-gold); padding: .7rem .1rem; font-size: 1rem; color: var(--cream); transition: border-color .3s; }
.lf-field select option { color: #1a140a; }
.lf-field input:focus, .lf-field select:focus, .lf-field textarea:focus { outline: none; border-color: var(--gold-2); }
.lf-field input::placeholder, .lf-field textarea::placeholder { color: var(--cream-2); opacity: .55; }
.lf-foot { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap; margin-top: .4rem; }
.lf-check { display: flex; align-items: flex-start; gap: .6rem; font-size: .84rem; max-width: 40ch; line-height: 1.5; color: var(--cream-2); }
.lf-check input { margin-top: .2rem; accent-color: var(--gold); }
.lf-check a { color: var(--gold-2); text-decoration: underline; }
.lf-note { color: #e8b4a0; font-size: .85rem; }
@media (max-width: 560px) { .lf-grid { grid-template-columns: 1fr; } .lf-foot { flex-direction: column; align-items: stretch; } .lf-foot .btn { justify-content: center; } }

/* ---------- FOOT CTA + FOOTER (Frame862) ---------- */
.foot-cta { position: relative; padding-block: clamp(5rem, 4rem + 7vw, 10rem); color: var(--cream); overflow: hidden; isolation: isolate; text-align: center; }
.foot-cta-media { position: absolute; inset: 0; z-index: -1; }
.foot-cta-media img { width: 100%; height: 100%; object-fit: cover; }
.foot-cta-veil { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(2,20,28,.86), rgba(2,20,28,.72)); }
.foot-cta-inner { max-width: 760px; margin-inline: auto; }
.foot-cta-title { font-size: var(--fs-display); margin: 1.1rem 0; }
.foot-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }
.site-footer { background: var(--teal-deep); color: var(--cream-2); padding-block: clamp(3.5rem, 2.5rem + 3vw, 5.5rem) 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: clamp(2rem, 1rem + 3vw, 4rem); }
.footer-logo { height: 58px; width: auto; margin-bottom: 1.3rem; }
.footer-tag { max-width: 34ch; line-height: 1.7; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.6rem; }
.footer-social a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--hair-gold); color: var(--cream); transition: background .4s, color .4s; }
.footer-social a svg { width: 19px; height: 19px; }
.footer-social a:hover { background: var(--gold-grad); color: #14333f; border-color: transparent; }
.footer-h { font-family: var(--sans); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 1.2rem; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col a { color: var(--cream-2); transition: color .3s; font-size: .96rem; }
.footer-col a:hover { color: var(--gold-2); }
.fc-row { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .9rem; line-height: 1.5; font-size: .96rem; color: var(--cream-2); }
.fc-row svg { width: 18px; color: var(--gold); flex-shrink: 0; margin-top: .15rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; font-size: .85rem; opacity: .8; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- PAGE HERO (alt sayfalar) ---------- */
.page-hero { position: relative; padding-top: clamp(8rem, 6rem + 8vw, 12rem); padding-bottom: clamp(3.5rem, 2.5rem + 5vw, 6rem); overflow: hidden; isolation: isolate; }
.page-hero-bg { position: absolute; inset: -10% 0; z-index: -2; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-veil { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(2,20,28,.8), rgba(2,20,28,.66)); }
.crumbs { display: flex; gap: .6rem; align-items: center; font-size: .82rem; color: var(--cream-2); margin-bottom: 1.4rem; flex-wrap: wrap; }
.crumbs a { color: var(--cream-2); }
.crumbs a:hover, .crumbs [aria-current] { color: var(--gold-2); }
.page-hero-title { font-size: var(--fs-display); margin-top: 1rem; max-width: 18ch; }
.page-hero-sub { margin-top: 1.4rem; max-width: 58ch; color: var(--cream-2); }
