/* =====================================================================
   SECTION & COMPONENT STYLES
   ===================================================================== */

/* ---------------- NAV ---------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .5s var(--ease);
  padding-block: 20px;
}
.nav.scrolled {
  background: rgba(250, 245, 238, 0.82);
  backdrop-filter: blur(18px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line-soft);
  padding-block: 12px;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand b { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; letter-spacing: 0.01em; }
.brand span { font-family: var(--sans); font-size: 0.56rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--mocha-soft); margin-top: 5px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.86rem; letter-spacing: 0.04em; color: var(--mocha); position: relative; padding-block: 4px;
}
.nav-links a::after { content:""; position:absolute; left:0; bottom:-2px; width:0; height:1px; background: var(--gold); transition: width .4s var(--ease); }
.nav-links a:hover { color: var(--espresso); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { width: 24px; height: 1.5px; background: var(--espresso); transition: .4s var(--ease); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--ivory);
  display: flex; flex-direction: column; justify-content: center; padding: 0 32px;
  transform: translateY(-100%); transition: transform .6s var(--ease); gap: 6px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-size: 2.4rem; font-weight: 300; padding: 10px 0; border-bottom: 1px solid var(--line-soft); }
.mobile-menu a em { font-style: italic; color: var(--gold-deep); }
.mobile-menu .mm-foot { margin-top: 34px; display: flex; gap: 12px; }

/* ---------------- HERO ---------------- */
.hero { padding-top: clamp(120px, 18vh, 200px); padding-bottom: clamp(40px, 6vw, 80px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 0.6em; font-size: 0.78rem; letter-spacing: 0.06em;
  color: var(--gold-deep); background: rgba(255,255,255,0.65); border: 1px solid var(--line);
  padding: 0.6em 1.1em; border-radius: 100px; backdrop-filter: blur(8px); margin-bottom: 28px;
}
.hero-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage-deep); box-shadow: 0 0 0 4px rgba(174,187,160,0.3); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 4px rgba(174,187,160,0.3);} 50%{ box-shadow: 0 0 0 8px rgba(174,187,160,0);} }
.hero h1 { margin: 6px 0 22px; }
.hero .lead { margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { display: flex; gap: clamp(20px, 4vw, 44px); margin-top: 44px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; }
.trust-item b { font-family: var(--serif); font-size: 1.9rem; font-weight: 500; color: var(--espresso); line-height: 1; }
.trust-item span { font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mocha-soft); margin-top: 6px; }

/* hero visual */
.hero-visual { position: relative; }
.hero-portrait { position: relative; }
.hero-img { width: 100%; aspect-ratio: 3/4; border-radius: var(--r-xl) var(--r-xl) var(--r-xl) 110px; box-shadow: var(--shadow-lg); background: linear-gradient(160deg, #e9e6df, #dcdcd2); }
.founder-badge { position: absolute; top: 20px; left: 20px; z-index: 3; background: rgba(255,255,255,0.78); backdrop-filter: blur(14px) saturate(1.3); border: 1px solid rgba(255,255,255,0.7); border-radius: 14px; padding: 10px 16px; box-shadow: var(--shadow-sm); }
.founder-badge span { display: block; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); }
.founder-badge b { font-family: var(--serif); font-weight: 500; font-size: 1.1rem; color: var(--espresso); line-height: 1.1; }
.hero-img-2 { position: absolute; width: 38%; aspect-ratio: 3/4; bottom: -34px; left: -34px; border-radius: var(--r-md); box-shadow: var(--shadow-md); border: 6px solid var(--ivory); }
.float-card {
  position: absolute; bottom: 5%; right: -22px; width: min(252px, 64%);
  background: rgba(255,255,255,0.82); backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.7); border-radius: var(--r-md);
  padding: 18px; box-shadow: var(--shadow-md); animation: floaty 6s ease-in-out infinite; z-index: 4;
}
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }
.float-card .fc-top { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.float-card .fc-ico { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-soft), var(--gold)); display: grid; place-items: center; color: #fff; flex: 0 0 auto; }
.float-card .fc-ico svg { width: 19px; height: 19px; }
.float-card .fc-top b { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; line-height: 1.1; }
.float-card .fc-top span { font-size: 0.68rem; color: var(--mocha-soft); letter-spacing: 0.04em; }
.fc-slots { display: flex; gap: 7px; margin-bottom: 14px; }
.fc-slot { flex: 1; text-align: center; font-size: 0.7rem; padding: 8px 4px; border-radius: 10px; border: 1px solid var(--line); color: var(--mocha); cursor: pointer; transition: .3s; }
.fc-slot.on { background: var(--espresso); color: #fff; border-color: var(--espresso); }
.fc-slot:hover { border-color: var(--gold); }
.fc-btn { width: 100%; justify-content: center; font-size: 0.82rem; padding: 0.8em; }

/* marquee strip */
.marquee { border-block: 1px solid var(--line-soft); overflow: hidden; padding-block: 20px; background: rgba(255,255,255,0.35); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: marq 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--mocha); display: inline-flex; align-items: center; gap: 60px; white-space: nowrap; }
.marquee span::after { content: "✦"; color: var(--gold); font-style: normal; font-size: 0.9rem; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------------- SECTION HEAD ---------------- */
.sec-head { max-width: 720px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: 20px; }
.sec-head h2 { margin-bottom: 20px; }

/* ---------------- SERVICE UNIVERSE ---------------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 60px; }
.svc-card {
  background: var(--pearl); border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 34px 30px; position: relative; overflow: hidden; transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .4s;
}
.svc-card::before { content:""; position:absolute; inset:0; background: linear-gradient(160deg, rgba(228,199,190,0.0), rgba(205,169,105,0.14)); opacity:0; transition: opacity .55s; }
.svc-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::before { opacity: 1; }
.svc-num { font-family: var(--serif); font-size: 0.92rem; color: var(--gold-deep); letter-spacing: 0.1em; }
.svc-card h3 { font-size: 1.74rem; font-weight: 400; margin: 16px 0 12px; position: relative; }
.svc-card p { font-size: 0.92rem; color: var(--mocha); line-height: 1.6; margin-bottom: 18px; position: relative; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 7px; position: relative; }
.svc-tags li { list-style: none; font-size: 0.74rem; letter-spacing: 0.02em; color: var(--mocha); background: var(--ivory-2); border: 1px solid var(--line-soft); padding: 5px 11px; border-radius: 100px; }
.svc-ic { width: 46px; height: 46px; border-radius: 14px; background: linear-gradient(135deg, var(--ivory-2), var(--sand)); display: grid; place-items: center; color: var(--gold-deep); margin-bottom: 4px; }
.svc-ic svg { width: 24px; height: 24px; }

/* ---------------- SIGNATURE TREATMENTS ---------------- */
.sig-wrap { background: var(--espresso); color: var(--ivory); border-radius: var(--r-xl); padding: clamp(40px, 6vw, 80px); position: relative; overflow: hidden; }
.sig-wrap::after { content:""; position:absolute; width:600px; height:600px; right:-180px; top:-200px; border-radius:50%; background: radial-gradient(circle, rgba(205,169,105,0.20), transparent 65%); }
.sig-wrap .eyebrow { color: var(--gold-soft); }
.sig-wrap .eyebrow::before { background: linear-gradient(90deg, transparent, var(--gold-soft)); }
.sig-wrap h2 { color: var(--ivory); }
.sig-wrap h2 em { color: var(--gold-soft); }
.sig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; }
.sig-card { position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.sig-card .slot-img { width: 100%; height: 100%; background: linear-gradient(150deg, #3a2e24, #6b5340); }
.sig-card .sig-body { position: absolute; inset: 0; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(to top, rgba(20,15,11,0.86) 6%, rgba(20,15,11,0.15) 52%, transparent); z-index: 2; }
.sig-card h3 { font-size: 1.4rem; color: #fff; font-weight: 400; }
.sig-card p { font-size: 0.82rem; color: rgba(255,255,255,0.74); margin: 6px 0 14px; line-height: 1.5; transition: .5s var(--ease); }
.sig-card .sig-link { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); display: inline-flex; align-items: center; gap: 8px; opacity: 0; transform: translateY(8px); transition: .5s var(--ease); }
.sig-card .sig-link svg { width: 14px; }
.sig-card:hover .sig-link { opacity: 1; transform: none; }
.sig-card:hover .slot-img { transform: scale(1.05); }
.sig-card .slot-img { transition: transform 1s var(--ease); }

/* ---------------- WHY CHOOSE ---------------- */
.why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.why-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--r-md); overflow: hidden; }
.why-feat { background: var(--ivory); padding: 30px 26px; transition: background .4s; }
.why-feat:hover { background: var(--pearl); }
.why-feat .wf-ic { width: 42px; height: 42px; color: var(--gold-deep); margin-bottom: 16px; }
.why-feat .wf-ic svg { width: 100%; height: 100%; }
.why-feat h3 { font-size: 1.34rem; font-weight: 400; margin-bottom: 8px; }
.why-feat p { font-size: 0.86rem; color: var(--mocha); line-height: 1.55; }
.why-quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.35; color: var(--mocha); margin: 30px 0; }
.why-quote b { color: var(--espresso); font-style: normal; font-weight: 500; }

/* ---------------- TRANSFORMATION / BEFORE-AFTER ---------------- */
.transform { background: linear-gradient(180deg, var(--ivory), var(--ivory-2)); }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.ba-stage { position: relative; aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); user-select: none; touch-action: pan-y; }
.ba-layer { position: absolute; inset: 0; }
.ba-layer .slot-img { width: 100%; height: 100%; }
.ba-after { clip-path: inset(0 0 0 0); }
.ba-before { clip-path: inset(0 50% 0 0); z-index: 2; }
/* same person — "Önce" rendered dull/tired, "Sonra" radiant, for an honest before/after */
.ba-before .slot-img { filter: grayscale(0.45) brightness(0.94) contrast(0.96) sepia(0.12) saturate(0.85); }
.ba-after .slot-img { filter: brightness(1.05) contrast(1.04) saturate(1.12); }
.ba-tag { position: absolute; top: 18px; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 7px 14px; border-radius: 100px; background: rgba(255,255,255,0.82); color: var(--espresso); backdrop-filter: blur(6px); z-index: 3; }
.ba-tag.l { left: 18px; }
.ba-tag.r { right: 18px; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; z-index: 4; transform: translateX(-1px); box-shadow: 0 0 18px rgba(0,0,0,0.25); }
.ba-knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 50px; height: 50px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md); display: grid; place-items: center; cursor: ew-resize; }
.ba-knob svg { width: 22px; color: var(--gold-deep); }
.ba-cap { font-size: 0.78rem; color: var(--mocha-soft); margin-top: 16px; text-align: center; }

/* ---------------- BOOKING JOURNEY + AI ---------------- */
.book { background: var(--espresso); color: var(--ivory); }
.book .eyebrow { color: var(--gold-soft); }
.book .eyebrow::before { background: linear-gradient(90deg, transparent, var(--gold-soft)); }
.book h2 { color: var(--ivory); }
.book h2 em { color: var(--gold-soft); }
.book .lead { color: rgba(250,245,238,0.7); }
.book-grid { display: grid; grid-template-columns: 1fr 0.86fr; gap: clamp(40px, 6vw, 80px); align-items: center; margin-top: 56px; }
.steps { display: flex; flex-direction: column; gap: 8px; }
.step { display: flex; gap: 22px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.step:last-child { border-bottom: none; }
.step .s-num { font-family: var(--serif); font-size: 2.4rem; font-weight: 300; color: var(--gold-soft); line-height: 1; flex: 0 0 auto; width: 54px; }
.step h3 { font-size: 1.5rem; font-weight: 400; color: #fff; margin-bottom: 8px; }
.step p { font-size: 0.92rem; color: rgba(250,245,238,0.66); line-height: 1.6; max-width: 42ch; }
.book-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* AI phone concierge */
.phone {
  width: min(330px, 100%); margin-inline: auto; background: #0e0a07; border-radius: 46px; padding: 12px;
  box-shadow: 0 50px 100px -30px rgba(0,0,0,0.7), inset 0 0 0 1.5px rgba(255,255,255,0.08); position: relative;
}
.phone::before { content:""; position:absolute; top:24px; left:50%; transform:translateX(-50%); width:110px; height:28px; background:#0e0a07; border-radius:0 0 16px 16px; z-index: 5; }
.phone-screen { background: var(--ivory); border-radius: 36px; overflow: hidden; height: 600px; display: flex; flex-direction: column; position: relative; }
.ph-top { padding: 40px 20px 14px; background: linear-gradient(135deg, #fff, var(--ivory-2)); border-bottom: 1px solid var(--line-soft); display: flex; align-items: center; gap: 11px; }
.ph-ai-ic { width: 38px; height: 38px; border-radius: 12px; background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep)); display: grid; place-items: center; color: #fff; flex: 0 0 auto; }
.ph-ai-ic svg { width: 20px; }
.ph-top b { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; display: block; line-height: 1.1; color: var(--espresso); }
.ph-top span { font-size: 0.66rem; color: var(--sage-deep); letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 5px; }
.ph-top span::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--sage-deep); }
.ph-chat { flex: 1; overflow-y: auto; padding: 18px 16px; display: flex; flex-direction: column; gap: 11px; scrollbar-width: none; }
.ph-chat::-webkit-scrollbar { display: none; }
.bub { max-width: 82%; padding: 11px 14px; border-radius: 16px; font-size: 0.82rem; line-height: 1.45; opacity: 0; transform: translateY(10px); animation: bub .5s var(--ease) forwards; }
@keyframes bub { to { opacity: 1; transform: none; } }
.bub.ai { background: #fff; border: 1px solid var(--line-soft); border-bottom-left-radius: 5px; color: var(--espresso); align-self: flex-start; box-shadow: var(--shadow-sm); }
.bub.me { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #fff; border-bottom-right-radius: 5px; align-self: flex-end; }
.bub.chips { background: none; border: none; box-shadow: none; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; max-width: 100%; align-self: flex-start; }
.chip { font-size: 0.74rem; padding: 8px 13px; border-radius: 100px; background: #fff; border: 1px solid var(--gold-soft); color: var(--gold-deep); cursor: pointer; transition: .3s; }
.chip:hover { background: var(--gold); color: #fff; }
.ph-input { padding: 12px 14px; border-top: 1px solid var(--line-soft); display: flex; gap: 9px; align-items: center; background: #fff; }
.ph-input .pi-box { flex: 1; font-size: 0.8rem; color: var(--mocha-soft); background: var(--ivory); border-radius: 100px; padding: 10px 15px; }
.ph-input .pi-send { width: 38px; height: 38px; border-radius: 50%; background: var(--espresso); color: #fff; display: grid; place-items: center; flex: 0 0 auto; }
.ph-input .pi-send svg { width: 17px; }
.typing { display: inline-flex; gap: 4px; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--mocha-soft); animation: typ 1.2s infinite; }
.typing i:nth-child(2){ animation-delay:.2s;} .typing i:nth-child(3){ animation-delay:.4s;}
@keyframes typ { 0%,60%,100%{ transform: translateY(0); opacity:.4;} 30%{ transform: translateY(-4px); opacity:1;} }
.ai-badge-row { display: flex; align-items: center; gap: 12px; justify-content: center; margin-top: 24px; font-size: 0.78rem; color: rgba(250,245,238,0.6); letter-spacing: 0.04em; }
.ai-badge-row b { color: var(--gold-soft); font-weight: 400; }

/* ---------------- SMART TRACKING / AI APP ---------------- */
.smart { background: linear-gradient(180deg, var(--ivory) 0%, #EDF0E7 60%, var(--ivory) 100%); }
.smart-feature { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(34px, 6vw, 80px); align-items: center; margin-top: 56px; }
.diet-badge { display: inline-flex; align-items: center; gap: 0.6em; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; background: linear-gradient(135deg, var(--sage-deep), #6f8260); padding: 0.55em 1.1em; border-radius: 100px; margin-bottom: 22px; box-shadow: 0 12px 30px -14px rgba(110,130,90,0.7); }
.smart-feature h3 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 300; line-height: 1.1; margin-bottom: 16px; }
.smart-feature h3 em { font-style: italic; color: var(--sage-deep); }
.feat-list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.feat-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 0.98rem; color: var(--mocha); line-height: 1.5; }
.feat-list .fl-ic { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--sage); color: #fff; display: grid; place-items: center; margin-top: 1px; }
.feat-list .fl-ic svg { width: 14px; }
.feat-list b { color: var(--espresso); font-weight: 500; }

/* diet phone */
.phone.diet { box-shadow: 0 50px 100px -34px rgba(110,130,90,0.5), inset 0 0 0 1.5px rgba(255,255,255,0.08); }
.ph-feed { flex: 1; overflow: hidden; padding: 16px 14px; display: flex; flex-direction: column; gap: 12px; background: var(--ivory); }
.note { background: #fff; border: 1px solid var(--line-soft); border-radius: 16px; padding: 13px 14px; box-shadow: var(--shadow-sm); }
.note-h { display: flex; align-items: center; gap: 9px; margin-bottom: 7px; }
.note-h .n-ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex: 0 0 auto; color: #fff; }
.note-h .n-ic.green { background: linear-gradient(135deg, var(--sage), var(--sage-deep)); }
.note-h .n-ic.gold { background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep)); }
.note-h .n-ic.rose { background: linear-gradient(135deg, var(--blush), var(--rose-deep)); }
.note-h .n-ic svg { width: 16px; }
.note-h b { font-size: 0.84rem; font-weight: 500; color: var(--espresso); display: block; line-height: 1.1; }
.note-h span { font-size: 0.64rem; color: var(--mocha-soft); }
.note p { font-size: 0.78rem; color: var(--mocha); line-height: 1.45; }
.menu-rows { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.menu-rows div { display: flex; justify-content: space-between; font-size: 0.76rem; }
.menu-rows div b { font-weight: 500; color: var(--espresso); }
.menu-rows div span { color: var(--mocha-soft); }
.water-bar { height: 7px; border-radius: 100px; background: var(--ivory-2); margin-top: 8px; overflow: hidden; }
.water-bar i { display: block; height: 100%; width: 48%; background: linear-gradient(90deg, var(--sage), var(--sage-deep)); border-radius: 100px; }
.coach { display: flex; gap: 9px; align-items: center; }
.coach .c-av { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--blush), var(--rose)); flex: 0 0 auto; }

/* per-service smart cards */
.smart-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 72px; }
.smart-card { background: var(--pearl); border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 28px 24px; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.smart-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.smart-card .sc-ic { width: 44px; height: 44px; border-radius: 13px; background: linear-gradient(135deg, var(--ivory-2), var(--sand)); display: grid; place-items: center; color: var(--gold-deep); margin-bottom: 18px; }
.smart-card .sc-ic svg { width: 22px; }
.smart-card h4 { font-family: var(--serif); font-size: 1.32rem; font-weight: 400; margin-bottom: 8px; }
.smart-card p { font-size: 0.86rem; color: var(--mocha); line-height: 1.5; }
.smart-note { text-align: center; margin-top: 30px; font-size: 0.8rem; color: var(--mocha-soft); letter-spacing: 0.02em; }
@media (max-width: 980px) {
  .smart-feature { grid-template-columns: 1fr; }
  .smart-feature .phone { order: 2; }
  .smart-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .smart-cards { grid-template-columns: 1fr; }
}

/* ---------------- AUTO CAROUSELS (CSS-driven, no JS, no waiting) ---------------- */
.carousel { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.carousel-track { display: flex; width: max-content; gap: 18px; will-change: transform; }
.carousel-track.slow { animation: slideX 48s linear infinite; }
.carousel-track.med { animation: slideX 34s linear infinite; }
.carousel:hover .carousel-track { animation-play-state: paused; }
@keyframes slideX { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 9px)); } }
@media (prefers-reduced-motion: reduce) { .carousel-track { animation: none !important; } }

/* testimonial carousel cards */
.tc-card { flex: 0 0 auto; width: 380px; max-width: 84vw; background: var(--pearl); border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 32px 30px; display: flex; flex-direction: column; }

/* photo carousel strip */
.photo-strip { padding-block: clamp(20px, 4vw, 40px); }
.pc-item { flex: 0 0 auto; width: clamp(220px, 26vw, 320px); aspect-ratio: 4/5; border-radius: var(--r-md); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.pc-item image-slot { width: 100%; height: 100%; }
.pc-item img { width: 100%; height: 100%; object-fit: cover; }
.pc-item.pc-empty { background: linear-gradient(150deg, var(--ivory-2), var(--blush)); }
.pc-item.pc-empty::after { content: "Görsel"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mocha-soft); }
.pc-item .pc-cap { position: absolute; left: 14px; bottom: 12px; z-index: 2; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; background: rgba(20,15,11,0.42); backdrop-filter: blur(6px); padding: 6px 12px; border-radius: 100px; }
.strip-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }


/* ---------------- GALLERY ---------------- */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; margin-top: 56px; }
.gal-item { border-radius: var(--r-md); overflow: hidden; position: relative; }
.gal-item .slot-img { width: 100%; height: 100%; }
.gal-item .gal-cap { position: absolute; left: 16px; bottom: 14px; z-index: 2; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; background: rgba(20,15,11,0.4); backdrop-filter: blur(6px); padding: 6px 12px; border-radius: 100px; opacity: 0; transform: translateY(8px); transition: .5s var(--ease); }
.gal-item:hover .gal-cap { opacity: 1; transform: none; }
.gal-item .slot-img { transition: transform 1.1s var(--ease); }
.gal-item:hover .slot-img { transform: scale(1.06); }
.g-tall { grid-row: span 2; } .g-wide { grid-column: span 2; } .g-big { grid-column: span 2; grid-row: span 2; }

/* ---------------- TESTIMONIALS ---------------- */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.test-card { background: var(--pearl); border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 34px 30px; display: flex; flex-direction: column; }
.test-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 18px; }
.test-stars svg { width: 17px; }
.test-card blockquote { font-family: var(--serif); font-size: 1.34rem; font-weight: 400; line-height: 1.45; color: var(--espresso); flex: 1; }
.test-card .t-meta { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.t-av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blush), var(--rose)); display: grid; place-items: center; font-family: var(--serif); color: #fff; font-size: 1.1rem; }
.t-meta b { font-weight: 500; font-size: 0.94rem; }
.t-meta span { font-size: 0.76rem; color: var(--mocha-soft); display: block; }
.placeholder-note { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mocha-soft); text-align: center; margin-top: 28px; opacity: 0.7; }

/* ---------------- FAQ ---------------- */
.faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 0; font-family: var(--serif); font-size: clamp(1.2rem, 2.4vw, 1.6rem); font-weight: 400; color: var(--espresso); }
.faq-q .fq-ic { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: .4s var(--ease); position: relative; }
.faq-q .fq-ic::before, .faq-q .fq-ic::after { content:""; position:absolute; background: var(--gold-deep); transition: .4s var(--ease); }
.faq-q .fq-ic::before { width: 12px; height: 1.5px; }
.faq-q .fq-ic::after { width: 1.5px; height: 12px; }
.faq-item.open .fq-ic { background: var(--gold); border-color: var(--gold); }
.faq-item.open .fq-ic::before, .faq-item.open .fq-ic::after { background: #fff; }
.faq-item.open .fq-ic::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a p { font-size: 0.96rem; color: var(--mocha); line-height: 1.7; padding-bottom: 26px; max-width: 60ch; }

/* ---------------- FINAL CTA ---------------- */
.final { text-align: center; overflow: hidden; }
.final-card { background: linear-gradient(160deg, var(--champagne), var(--blush) 120%); border-radius: var(--r-xl); padding: clamp(50px, 8vw, 110px) clamp(24px, 5vw, 80px); position: relative; overflow: hidden; }
.final-card::before { content:""; position:absolute; width: 460px; height:460px; border-radius:50%; background: radial-gradient(circle, rgba(255,255,255,0.6), transparent 70%); top:-160px; left:-120px; }
.final-card::after { content:""; position:absolute; width: 500px; height:500px; border-radius:50%; background: radial-gradient(circle, rgba(174,187,160,0.35), transparent 70%); bottom:-220px; right:-140px; }
.final-card > * { position: relative; z-index: 1; }
.final h2 { font-size: clamp(2.6rem, 8vw, 5.4rem); margin: 18px 0 24px; }
.final .lead { margin-inline: auto; margin-bottom: 38px; }
.final-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------- FOOTER ---------------- */
.footer { background: var(--espresso); color: rgba(250,245,238,0.7); padding-top: clamp(60px, 8vw, 100px); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.foot-brand b { font-family: var(--serif); font-size: 1.8rem; font-weight: 500; color: var(--ivory); display: block; }
.foot-brand span { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-soft); }
.foot-brand p { margin-top: 18px; font-size: 0.9rem; line-height: 1.7; max-width: 32ch; }
.foot-col h4 { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 18px; font-weight: 400; }
.foot-col a, .foot-col p { display: block; font-size: 0.9rem; padding: 6px 0; color: rgba(250,245,238,0.72); transition: color .3s; }
.foot-col a:hover { color: var(--ivory); }
.foot-social { display: flex; gap: 10px; margin-top: 18px; }
.foot-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.16); display: grid; place-items: center; color: var(--ivory); transition: .4s; padding: 0; }
.foot-social a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.foot-social svg { width: 18px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding: 28px 0; font-size: 0.8rem; color: rgba(250,245,238,0.5); }
.foot-bottom .credit { letter-spacing: 0.04em; }
.foot-bottom .credit a { color: rgba(250,245,238,0.5); transition: color .4s; }
.foot-bottom .credit a:hover { color: var(--gold-soft); }

/* ---------------- MOBILE STICKY CTA ---------------- */
.m-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); gap: 10px; background: rgba(250,245,238,0.9); backdrop-filter: blur(16px); border-top: 1px solid var(--line); }
.m-cta a { flex: 1; justify-content: center; padding: 0.95em; font-size: 0.88rem; }
.m-cta .m-ico { flex: 0 0 auto; width: 50px; }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; margin-top: 30px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .sig-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .m-cta { display: flex; }
  body { padding-bottom: 76px; }
}
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .sig-grid { grid-template-columns: 1fr 1fr; }
  .why-feats { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .g-big { grid-column: span 2; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 24px; }
  .float-card { right: 0; width: 200px; }
  .hero-img-2 { display: none; }
}
