/* ============================================
   Latife Özcan — Kişisel Marka Web Sitesi  v2
   Lacivert #23323B · Altın #C9A24B · Krem #FBF9F6
   Playfair Display (başlık) + Inter (gövde)
   ============================================ */

:root {
  --navy: #23323B;
  --navy-deep: #1A262E;
  --gold: #C9A24B;
  --gold-soft: rgba(201, 162, 75, 0.35);
  --cream: #FBF9F6;
  --ink: #26303A;
  --sage: #6B8E5E;
  --white: #FFFFFF;
  --line: rgba(35, 50, 59, 0.1);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

::selection { background: var(--gold); color: var(--white); }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

h1, h2, h3 { font-family: var(--serif); color: var(--navy); font-weight: 500; line-height: 1.18; letter-spacing: -0.01em; }

a { color: var(--navy); }

/* ---------- Üst menü ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 249, 246, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1140px; margin: 0 auto; padding: 20px 32px;
}
.brand {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
  color: var(--navy); text-decoration: none; letter-spacing: 0.01em;
}
.brand span { color: var(--gold); }
.nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
.nav-links a:not(.nav-cta) {
  text-decoration: none; color: var(--ink); font-size: 0.88rem;
  font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  position: relative; padding: 4px 0; transition: color .3s;
}
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a:not(.nav-cta):hover, .nav-links a:not(.nav-cta).active { color: var(--navy); }
.nav-cta {
  text-decoration: none; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--navy); color: var(--cream) !important;
  padding: 12px 26px; border-radius: 100px;
  transition: background .3s, transform .3s;
}
.nav-cta:hover { background: var(--gold); transform: translateY(-1px); }

/* Mobil menü */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; padding: 10px 0; z-index: 110; }
.nav-toggle-label span, .nav-toggle-label span::before, .nav-toggle-label span::after {
  display: block; background: var(--navy); height: 2px; width: 26px;
  position: relative; transition: all .25s;
}
.nav-toggle-label span::before, .nav-toggle-label span::after { content: ''; }
.nav-toggle-label span::before { position: absolute; top: -8px; }
.nav-toggle-label span::after { position: absolute; top: 8px; }

/* ---------- Hero (lacivert, tam ekran hissi) ---------- */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 75% 20%, rgba(201, 162, 75, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 90%, rgba(107, 142, 94, 0.08), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  min-height: 82vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 110px 0 120px;
}
.hero::before {
  content: ''; position: absolute; right: -180px; top: 50%;
  transform: translateY(-50%);
  width: 640px; height: 640px; border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.18);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 440px; height: 440px; border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.28);
  pointer-events: none;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 32px;
}
.hero-kicker::before { content: ''; width: 44px; height: 1px; background: var(--gold); }
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  max-width: 850px; margin-bottom: 32px; font-weight: 500;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p.lead {
  font-size: 1.18rem; max-width: 560px;
  color: rgba(251, 249, 246, 0.78); margin-bottom: 48px;
  font-weight: 400;
}
.hero .btn-ghost { border-color: rgba(251, 249, 246, 0.35); color: var(--cream); }
.hero .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* İç sayfa hero (kısa, krem) */
.page-hero { padding: 96px 0 24px; }
.page-hero h2 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 24px; max-width: 760px; }

/* ---------- Butonlar ---------- */
.btn-row { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; font-weight: 600;
  font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 16px 34px; border-radius: 100px;
  transition: all .35s var(--ease); border: none; cursor: pointer;
  font-family: var(--sans);
}
.btn::after { content: '→'; transition: transform .35s var(--ease); }
.btn:hover::after { transform: translateX(5px); }
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover { background: #d9b466; transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(201, 162, 75, 0.5); }
.btn-dark { background: var(--navy); color: var(--cream); }
.btn-dark:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 12px 28px -12px rgba(35, 50, 59, 0.5); }
.btn-ghost { background: transparent; border: 1px solid var(--navy); color: var(--navy); padding: 15px 33px; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ---------- Bölümler ---------- */
.section { padding: 110px 0; }
.section-alt { background: var(--white); }
.section-navy { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); color: var(--cream); }
.section-navy h2, .section-navy h3 { color: var(--cream); }

.section-label {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 22px;
}
.section-label::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
.section h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 24px; max-width: 700px; }
.section p { max-width: 660px; }
.muted { opacity: 0.8; }

.gold-rule { width: 64px; height: 1px; background: var(--gold); margin: 32px 0; border: none; }

/* ---------- Kartlar ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 64px; }
.card {
  background: var(--white); padding: 44px 36px 40px;
  border-radius: 18px; border: 1px solid var(--line);
  position: relative; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.card::before {
  content: ''; position: absolute; top: 0; left: 36px;
  width: 40px; height: 2px; background: var(--gold);
  transition: width .5s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -30px rgba(35, 50, 59, 0.25); }
.card:hover::before { width: calc(100% - 72px); }
.section-alt .card { background: var(--cream); }
.section-navy .card {
  background: rgba(251, 249, 246, 0.04);
  border-color: rgba(251, 249, 246, 0.12);
}
.section-navy .card:hover { box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.5); }
.card h3 { font-size: 1.3rem; margin-bottom: 14px; }
.card p { font-size: 0.95rem; opacity: 0.82; line-height: 1.7; }
.card .card-num {
  font-family: var(--serif); font-style: italic; font-size: 1.05rem;
  color: var(--gold); display: block; margin-bottom: 22px;
}

/* ---------- Alıntı bandı ---------- */
.quote-band { text-align: center; padding: 130px 32px; position: relative; overflow: hidden; }
.quote-band::before {
  content: '\201C'; position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif); font-size: 15rem; line-height: 1;
  color: rgba(201, 162, 75, 0.12); pointer-events: none;
}
.quote-band blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem); max-width: 820px;
  margin: 0 auto; line-height: 1.45; position: relative;
}
.quote-band cite {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 36px; font-family: var(--sans); font-style: normal;
  font-size: 0.8rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.quote-band cite::before, .quote-band cite::after { content: ''; width: 36px; height: 1px; background: var(--gold-soft); }

/* ---------- Hakkımda ---------- */
.about-grid { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start; }
.portrait {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 200px 200px 18px 18px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait-placeholder {
  font-family: var(--serif); font-style: italic; font-size: 4.5rem;
  color: var(--gold); letter-spacing: 0.04em;
}
.portrait::after {
  content: ''; position: absolute; inset: 14px;
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: 186px 186px 10px 10px; pointer-events: none;
}

/* ---------- İlkeler ---------- */
.principles { list-style: none; margin-top: 48px; counter-reset: ilke; }
.principles li {
  padding: 30px 0 30px 84px; border-bottom: 1px solid var(--line);
  position: relative; font-size: 1.02rem; counter-increment: ilke;
  transition: padding-left .35s var(--ease);
}
.principles li:hover { padding-left: 94px; }
.principles li::before {
  content: '0' counter(ilke);
  position: absolute; left: 0; top: 26px;
  font-family: var(--serif); font-style: italic; font-size: 1.6rem;
  color: var(--gold);
}
.principles li strong { color: var(--navy); }

/* ---------- Hizmet detay ---------- */
.service-block {
  display: grid; grid-template-columns: 140px 1fr; gap: 48px;
  padding: 72px 0; border-bottom: 1px solid var(--line);
}
.service-block:last-of-type { border-bottom: none; }
.service-num {
  font-family: var(--serif); font-style: italic;
  font-size: 4.2rem; line-height: 1; color: transparent;
  -webkit-text-stroke: 1px var(--gold);
}
.service-block h3 { font-size: 1.7rem; margin-bottom: 18px; }
.service-block .tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sage); font-weight: 600; margin-bottom: 16px;
}
.service-block .tag::before { content: ''; width: 24px; height: 1px; background: var(--sage); }
.service-block ul { margin: 24px 0 0; list-style: none; }
.service-block li {
  margin-bottom: 12px; font-size: 0.97rem; padding-left: 28px; position: relative;
}
.service-block li::before {
  content: '→'; position: absolute; left: 0; color: var(--gold); font-weight: 600;
}

/* ---------- Form ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 90px; margin-top: 64px; }
.form-field { margin-bottom: 34px; }
.form-field label {
  display: block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 10px; color: var(--navy); opacity: 0.7;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 14px 2px; border: none;
  border-bottom: 1px solid rgba(35, 50, 59, 0.25);
  border-radius: 0; font-family: var(--sans); font-size: 1.05rem;
  background: transparent; color: var(--ink);
  transition: border-color .3s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-bottom: 1px solid var(--gold);
}
.form-field textarea { resize: vertical; }
.contact-info h3 { font-size: 1.15rem; margin-bottom: 8px; }
.contact-info .info-item {
  margin-bottom: 20px; padding: 28px 30px;
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.contact-info .info-item:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -28px rgba(35, 50, 59, 0.25); }
.contact-info a { color: var(--navy); font-weight: 500; text-decoration-color: var(--gold-soft); }
.contact-info a:hover { color: var(--gold); }

/* ---------- CTA bandı ---------- */
.cta-band { text-align: center; padding: 120px 32px; }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3rem); max-width: 720px; margin: 0 auto 24px; }
.cta-band p { max-width: 560px; margin: 0 auto 44px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep); color: rgba(251, 249, 246, 0.65);
  padding: 72px 0 48px; font-size: 0.92rem;
}
.footer-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 40px;
}
.site-footer .brand { color: var(--cream); font-size: 1.25rem; }
.site-footer a { color: rgba(251, 249, 246, 0.65); text-decoration: none; transition: color .25s; }
.site-footer a:hover { color: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.footer-links a { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-contact p { margin-bottom: 10px; }
.footer-bottom {
  max-width: 1140px; margin: 56px auto 0; padding: 28px 32px 0;
  border-top: 1px solid rgba(251, 249, 246, 0.1);
  font-size: 0.8rem; opacity: 0.6; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }
.reveal-d3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Video / Hakkımda bölümü ---------- */
.video-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px; align-items: center; }
.video-wrap {
  position: relative; aspect-ratio: 16/9; border-radius: 20px; overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow: 0 40px 80px -40px rgba(26, 38, 46, 0.55);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 18px;
  color: rgba(251, 249, 246, 0.75); text-align: center; padding: 24px;
}
.video-placeholder .play-ring {
  width: 84px; height: 84px; border-radius: 50%;
  border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.5rem; padding-left: 6px;
  transition: transform .4s var(--ease), background .4s;
}
.video-wrap:hover .play-ring { transform: scale(1.08); background: rgba(201, 162, 75, 0.12); }
.video-placeholder small { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.7; }

/* ---------- Landing (düşüş) sayfaları ---------- */
.lp-hero {
  background:
    radial-gradient(ellipse 70% 55% at 80% 15%, rgba(201, 162, 75, 0.10), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream); padding: 104px 0 96px;
}
.lp-hero h1 { color: var(--cream); font-size: clamp(2.2rem, 5vw, 3.5rem); max-width: 780px; margin-bottom: 28px; }
.lp-hero h1 em { font-style: italic; color: var(--gold); }
.lp-hero p.lead { font-size: 1.12rem; max-width: 580px; color: rgba(251, 249, 246, 0.78); margin-bottom: 44px; }
.lp-hero .btn-ghost { border-color: rgba(251, 249, 246, 0.35); color: var(--cream); }
.lp-hero .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.pain-list { list-style: none; margin-top: 48px; display: grid; gap: 16px; max-width: 720px; }
.pain-list li {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 26px 22px 58px; position: relative; font-size: 1rem;
}
.pain-list li::before {
  content: '?'; position: absolute; left: 22px; top: 20px;
  font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--gold);
}

.steps { list-style: none; margin-top: 56px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; counter-reset: adim; }
.steps li {
  counter-increment: adim; background: var(--cream); border: 1px solid var(--line);
  border-radius: 16px; padding: 32px 26px; position: relative;
}
.steps li::before {
  content: '0' counter(adim); display: block;
  font-family: var(--serif); font-style: italic; font-size: 2rem;
  color: transparent; -webkit-text-stroke: 1px var(--gold); margin-bottom: 14px;
}
.steps li strong { display: block; font-family: var(--serif); font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.steps li span { font-size: 0.92rem; opacity: 0.8; line-height: 1.65; display: block; }

.faq { margin-top: 48px; max-width: 760px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 26px 40px 26px 0;
  font-family: var(--serif); font-size: 1.15rem; color: var(--navy);
  position: relative; transition: color .3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 4px; top: 24px;
  font-family: var(--sans); font-size: 1.4rem; color: var(--gold);
  transition: transform .35s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--gold); }
.faq details p { padding: 0 0 26px; font-size: 0.97rem; opacity: 0.85; max-width: 680px; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-top: 64px; }
.post-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  text-decoration: none; transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.post-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -30px rgba(35, 50, 59, 0.28); }
.post-card-top {
  padding: 30px 30px 0; display: flex; align-items: center; gap: 14px;
}
.post-tag {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: var(--sage);
  border: 1px solid rgba(107, 142, 94, 0.35); border-radius: 100px; padding: 5px 14px;
}
.post-date { font-size: 0.78rem; opacity: 0.55; }
.post-card h3 { font-size: 1.3rem; padding: 18px 30px 0; line-height: 1.35; transition: color .3s; }
.post-card:hover h3 { color: var(--gold); }
.post-card p { font-size: 0.93rem; opacity: 0.78; padding: 12px 30px 0; }
.post-more {
  margin: auto 30px 30px; padding-top: 22px; text-decoration: none;
  font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: var(--navy);
  display: inline-flex; align-items: center; gap: 8px;
}
.post-more::after { content: '→'; color: var(--gold); transition: transform .35s var(--ease); }
.post-card:hover .post-more::after { transform: translateX(5px); }

/* Yazı detay */
.article { max-width: 720px; margin: 0 auto; }
.article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.article h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 20px; color: var(--navy); }
.article-body { margin-top: 40px; }
.article-body p { margin-bottom: 24px; font-size: 1.05rem; line-height: 1.85; }
.article-body h2 {
  font-size: 1.5rem; margin: 48px 0 18px;
  padding-left: 20px; border-left: 2px solid var(--gold);
}
.article-body blockquote {
  font-family: var(--serif); font-style: italic; font-size: 1.25rem;
  color: var(--navy); border-left: 2px solid var(--gold);
  padding: 8px 0 8px 28px; margin: 36px 0; line-height: 1.6;
}
.article-body ul { margin: 0 0 24px 4px; list-style: none; }
.article-body ul li { padding-left: 28px; position: relative; margin-bottom: 12px; }
.article-body ul li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }
.back-link {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; font-size: 0.8rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600; color: var(--navy);
  margin-bottom: 40px; transition: color .3s;
}
.back-link::before { content: '←'; color: var(--gold); }
.back-link:hover { color: var(--gold); }
.article-cta {
  margin-top: 64px; padding: 40px; background: var(--white);
  border: 1px solid var(--line); border-radius: 18px; text-align: center;
}
.article-cta h3 { font-size: 1.35rem; margin-bottom: 12px; }
.article-cta p { margin: 0 auto 28px; font-size: 0.95rem; opacity: 0.8; }
.article-cta .btn-row { justify-content: center; }

/* ---------- Mobil ---------- */
@media (max-width: 860px) {
  .video-grid { grid-template-columns: 1fr; gap: 44px; }
  .lp-hero { padding: 72px 0; }
  .nav-toggle-label { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; gap: 0;
    border-bottom: 1px solid var(--line); padding: 16px 0 24px;
    box-shadow: 0 24px 40px -24px rgba(35, 50, 59, 0.2);
  }
  .nav-links li { width: 100%; text-align: center; padding: 14px 0; }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .hero { min-height: auto; padding: 88px 0 96px; }
  .hero::before, .hero::after { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .portrait { max-width: 340px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .service-block { grid-template-columns: 1fr; gap: 12px; padding: 56px 0; }
  .service-num { font-size: 3rem; }
  .section { padding: 72px 0; }
  .quote-band { padding: 96px 24px; }
}
