/* =========================================================
   Op. Dr. Yusuf Güneş — dryusufgunes.com
   Tasarım dili: "İris" — derin petrol yeşili, krem ve altın
   ========================================================= */

:root {
  --ink: #0e2a33;          /* derin petrol */
  --ink-soft: #29505c;
  --teal: #12707e;
  --gold: #c2a35d;
  --gold-deep: #a8873c;
  --cream: #faf7f1;
  --cream-2: #f2ecdf;
  --paper: #ffffff;
  --text: #2c3e45;
  --muted: #6b7d84;
  --line: #e5ddcc;
  --radius: 14px;
  --shadow: 0 10px 40px -12px rgba(14, 42, 51, .18);
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--ink); }

h1, h2, h3, .brand-text strong {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.18rem; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: .88rem; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 8px;
}
.skip-link:focus { left: 8px; color: #fff; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1.6px solid transparent;
  transition: all .22s ease;
  cursor: pointer;
}
.btn-lg { padding: 15px 32px; font-size: 1.02rem; }
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-deep); color: #fff; transform: translateY(-2px); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-ghost-light { border-color: rgba(255,255,255,.55); color: #fff; background: transparent; }
.btn-ghost-light:hover { background: rgba(255,255,255,.14); color: #fff; }

/* ---------- Üst bar ---------- */
.topbar { background: var(--ink); color: rgba(250,247,241,.82); font-size: .82rem; }
.topbar a { color: var(--gold); font-weight: 600; }
.topbar-in { display: flex; justify-content: space-between; gap: 14px; padding-block: 7px; flex-wrap: wrap; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,241,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-block: 12px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand-mark { width: 46px; height: 46px; color: var(--teal); flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 1.22rem; }
.brand-text small { color: var(--muted); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a:not(.btn) {
  color: var(--ink-soft); font-weight: 500; font-size: .95rem;
  padding-block: 6px; border-bottom: 2px solid transparent;
}
.nav a:not(.btn):hover, .nav a.on { color: var(--ink); border-bottom-color: var(--gold); }
.nav-cta { margin-left: 6px; }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 40px; cursor: pointer; }
.nav-toggle span { display: block; height: 2.4px; background: var(--ink); margin: 7px 8px; border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(160deg, var(--cream) 55%, var(--cream-2)); }
.hero-iris {
  position: absolute; right: -280px; top: -220px; width: 860px; height: 860px;
  border-radius: 50%; pointer-events: none;
  background:
    radial-gradient(circle, transparent 30%, rgba(18,112,126,.05) 31%, transparent 33%),
    repeating-radial-gradient(circle, transparent 0 46px, rgba(18,112,126,.07) 46px 48px),
    radial-gradient(circle, rgba(194,163,93,.12) 0 18%, transparent 42%);
}
.hero-in {
  position: relative; display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 48px; align-items: center; padding-block: 72px 84px;
}
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 14px;
}
.eyebrow::before { content: "— "; color: var(--gold); }
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--teal); }
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 54ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-points { display: flex; gap: 22px; flex-wrap: wrap; list-style: none; margin-top: 34px; }
.hero-points li { font-size: .88rem; font-weight: 600; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.hero-points li::before { content: "✦"; color: var(--gold); }

.hero-photo { position: relative; }
.hero-photo img {
  border-radius: 200px 200px var(--radius) var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 3/4; object-fit: cover; width: 100%;
  border: 6px solid var(--paper);
}
.hero-photo figcaption {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--cream);
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  padding: 8px 22px; border-radius: 999px; white-space: nowrap;
}

/* ---------- Bölümler ---------- */
.section { padding-block: 74px; }
.section-tinted { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-sub { color: var(--muted); margin-top: 12px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-rev .split-copy { order: -1; }
.split-photo img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  aspect-ratio: 4/5; object-fit: cover; object-position: center 20%; width: 100%;
}
.split-copy h2 { margin-bottom: 16px; }
.split-copy p { margin-bottom: 14px; }
.split-copy .btn { margin-top: 12px; }

.check-list { list-style: none; margin: 18px 0 10px; }
.check-list li { padding-left: 30px; position: relative; margin-bottom: 9px; font-weight: 500; color: var(--ink-soft); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  font-size: .75rem; font-weight: 700; display: grid; place-items: center;
}

/* ---------- Kartlar ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column; color: var(--text);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); color: var(--text); }
.card-img { aspect-ratio: 3/2; overflow: hidden; background: var(--cream-2); }
.card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .4s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3, .card-h3 { font-size: 1.16rem; }
.card-body p { font-size: .92rem; color: var(--muted); flex: 1; }
.card-more { color: var(--gold-deep); font-weight: 600; font-size: .88rem; }
.card:hover .card-more { color: var(--teal); }
.card-date { font-size: .8rem; color: var(--muted); }

/* Blog tipografik kart başlığı (fotoğraf yerine) */
.blog-tile {
  aspect-ratio: 3/2; display: flex; align-items: flex-end; padding: 22px 24px;
  position: relative; overflow: hidden;
  background:
    repeating-radial-gradient(circle at 115% -15%, transparent 0 34px, rgba(250,247,241,.05) 34px 36px),
    linear-gradient(150deg, var(--ink) 20%, #14505e);
}
.blog-tile::before {
  content: "✦"; position: absolute; top: 18px; left: 24px;
  color: var(--gold); font-size: .9rem; letter-spacing: .3em;
}
.blog-tile span {
  font-family: var(--font-serif); font-size: 1.35rem; line-height: 1.25;
  color: var(--cream); display: block;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.card:nth-child(3n+2) .blog-tile { background:
    repeating-radial-gradient(circle at 115% -15%, transparent 0 34px, rgba(250,247,241,.06) 34px 36px),
    linear-gradient(150deg, #14505e 10%, var(--teal)); }
.card:nth-child(3n) .blog-tile { background:
    repeating-radial-gradient(circle at 115% -15%, transparent 0 34px, rgba(14,42,51,.07) 34px 36px),
    linear-gradient(150deg, var(--cream-2), #e8dfc9); }
.card:nth-child(3n) .blog-tile span { color: var(--ink); }
.card:nth-child(3n) .blog-tile::before { color: var(--gold-deep); }
.card:hover .blog-tile span { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 5px; }

/* Yazıya özel seçilen kart rengi — otomatik (nth-child) kuralları ezer */
.card:nth-child(n) .blog-tile--ink { background:
    repeating-radial-gradient(circle at 115% -15%, transparent 0 34px, rgba(250,247,241,.05) 34px 36px),
    linear-gradient(150deg, var(--ink) 20%, #14505e); }
.card:nth-child(n) .blog-tile--ink span { color: var(--cream); }
.card:nth-child(n) .blog-tile--ink::before { color: var(--gold); }
.card:nth-child(n) .blog-tile--teal { background:
    repeating-radial-gradient(circle at 115% -15%, transparent 0 34px, rgba(250,247,241,.06) 34px 36px),
    linear-gradient(150deg, #14505e 10%, var(--teal)); }
.card:nth-child(n) .blog-tile--teal span { color: var(--cream); }
.card:nth-child(n) .blog-tile--teal::before { color: var(--gold); }
.card:nth-child(n) .blog-tile--cream { background:
    repeating-radial-gradient(circle at 115% -15%, transparent 0 34px, rgba(14,42,51,.07) 34px 36px),
    linear-gradient(150deg, var(--cream-2), #e8dfc9); }
.card:nth-child(n) .blog-tile--cream span { color: var(--ink); }
.card:nth-child(n) .blog-tile--cream::before { color: var(--gold-deep); }

.post-item-mark {
  width: 44px; height: 44px; flex: none; border-radius: 50%;
  display: grid; place-items: center; color: var(--gold-deep);
  border: 1.4px solid var(--gold); background: var(--cream);
}
.cards + .center { margin-top: 40px; }

/* ---------- Adımlar ---------- */
.steps { list-style: none; display: flex; flex-direction: column; gap: 26px; margin: 26px 0 18px; }
.steps li { display: flex; gap: 20px; align-items: flex-start; }
.step-no {
  font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold-deep);
  border: 1.6px solid var(--gold); border-radius: 50%;
  width: 58px; height: 58px; display: grid; place-items: center; flex: none;
  background: var(--paper);
}
.steps h3 { margin-bottom: 4px; }
.steps p { color: var(--muted); font-size: .95rem; }

/* ---------- Akordeon ---------- */
.accordion { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.acc-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden;
}
.acc-item summary {
  cursor: pointer; list-style: none; font-weight: 600; color: var(--ink);
  padding: 16px 48px 16px 20px; position: relative; font-size: .98rem;
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--gold-deep); transition: transform .2s;
}
.acc-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.acc-item[open] summary { border-bottom: 1px dashed var(--line); }
.acc-body { padding: 14px 20px 18px; color: var(--muted); font-size: .95rem; }
.faq-cat { margin: 34px 0 16px; font-size: 1.35rem; }
.faq-cat:first-of-type { margin-top: 0; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.two-col h2 { margin-bottom: 20px; }

/* ---------- Blog liste ---------- */
.post-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.post-item {
  display: flex; gap: 16px; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px; transition: box-shadow .2s, transform .2s;
}
.post-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.post-item img { width: 96px; height: 72px; object-fit: cover; border-radius: 8px; flex: none; }
.post-item h3 { font-size: 1rem; color: var(--ink); }
.post-item time { font-size: .8rem; color: var(--muted); }

/* ---------- Sayfa başı ---------- */
.page-head {
  background: linear-gradient(160deg, var(--ink) 30%, #14404d);
  color: rgba(250,247,241,.85);
  padding-block: 54px 58px;
  position: relative; overflow: hidden;
}
.page-head::after {
  content: ""; position: absolute; right: -140px; top: -160px;
  width: 480px; height: 480px; border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 34px, rgba(194,163,93,.14) 34px 36px);
}
.page-head h1 { color: var(--cream); position: relative; z-index: 1; }
.page-head .lead { color: rgba(250,247,241,.75); position: relative; z-index: 1; margin-top: 10px; }
.page-head .lead a { color: var(--gold); }
.crumbs { font-size: .84rem; margin-bottom: 14px; color: rgba(250,247,241,.6); position: relative; z-index: 1; }
.crumbs a { color: var(--gold); }
.crumbs span { margin-inline: 4px; }

/* ---------- Makale ---------- */
.article-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.article-hero { margin-bottom: 30px; }
.article-hero img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  aspect-ratio: 9/5; object-fit: cover; object-position: center top; width: 100%;
}
.article-body h2 { margin: 34px 0 14px; font-size: 1.5rem; }
.article-body p { margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 0 0 18px 22px; }
.article-body li { margin-bottom: 8px; }
.article-body a { font-weight: 600; border-bottom: 1px solid var(--gold); }
.article-cta {
  margin-top: 44px; padding: 32px;
  background: linear-gradient(150deg, var(--cream-2), var(--paper));
  border: 1px solid var(--line); border-radius: var(--radius); text-align: center;
}
.article-cta h2 { margin: 0 0 8px; }
.article-cta p { color: var(--muted); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }

.article-side { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 96px; }
.side-box { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.side-box h3 { margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: inline-block; }
.side-links { list-style: none; }
.side-links li { border-bottom: 1px dashed var(--line); }
.side-links li:last-child { border-bottom: 0; }
.side-links a { display: block; padding: 9px 0; color: var(--ink-soft); font-weight: 500; font-size: .93rem; }
.side-links a:hover { color: var(--teal); padding-left: 5px; }
.side-contact { background: var(--ink); border: 0; color: rgba(250,247,241,.8); }
.side-contact h3 { color: var(--cream); }
.side-contact .btn { margin-top: 14px; width: 100%; text-align: center; }

/* ---------- Etiket bulutu ---------- */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.tag {
  background: var(--paper); border: 1px solid var(--line); color: var(--ink-soft);
  border-radius: 999px; padding: 9px 20px; font-weight: 500; font-size: .92rem;
  transition: .2s;
}
.tag:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: translateY(-2px); }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; margin-bottom: 44px; }
.info-box, .contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.info-box h2 { font-size: 1.4rem; margin-bottom: 16px; }
.info-box h3 { margin: 22px 0 10px; }
.info-list { list-style: none; }
.info-list li { display: flex; flex-direction: column; padding: 10px 0; border-bottom: 1px dashed var(--line); }
.info-list strong { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-deep); }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: .94rem; }
.hours-list li span:last-child { font-weight: 600; color: var(--ink); }

.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.4px solid var(--line); border-radius: 10px;
  font: inherit; background: var(--cream); color: var(--text); transition: border-color .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: #fff; }
.hp { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }
.alert { padding: 16px 20px; border-radius: 12px; margin-bottom: 20px; font-size: .95rem; }
.alert-ok { background: #e8f4ea; border: 1px solid #b9dcc0; color: #235c31; }
.alert-err { background: #fbeaea; border: 1px solid #eec3c3; color: #7c2626; }

.map-box { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-box iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- CTA bandı ---------- */
.cta-band {
  background: linear-gradient(140deg, var(--ink), #155263);
  color: rgba(250,247,241,.85);
  padding-block: 52px;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; left: -120px; bottom: -220px;
  width: 420px; height: 420px; border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 30px, rgba(194,163,93,.13) 30px 32px);
}
.cta-band-in { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; position: relative; }
.cta-title { color: var(--cream); margin-bottom: 6px; }
.cta-band .cta-actions { margin: 0; justify-content: flex-start; }

/* ---------- Footer ---------- */
.site-footer { background: #0a1f26; color: rgba(250,247,241,.62); font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-block: 56px 40px; }
.footer-logo { font-family: var(--font-serif); font-size: 1.3rem; color: var(--cream); display: block; margin-bottom: 12px; }
.footer-col h3 { color: var(--gold); font-size: .95rem; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(250,247,241,.72); }
.footer-col a:hover { color: var(--gold); }
.footer-clinic { margin-top: 14px; font-size: .86rem; }
.footer-note {
  padding-block: 4px 20px; text-align: center;
}
.footer-note p {
  max-width: 720px; margin: 0 auto; font-size: .88rem; color: rgba(250,247,241,.55);
  border-top: 1px solid rgba(250,247,241,.1); padding-top: 20px;
}
.footer-note a { color: var(--gold); font-weight: 600; }
.footer-note a:hover { text-decoration: underline; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  padding-block: 18px; border-top: 1px solid rgba(250,247,241,.1); font-size: .8rem;
}
.footer-bottom a { color: rgba(250,247,241,.62); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- D'Cloud imza şeridi ---------- */
.credit-band {
  background: var(--cream-2); text-align: center; padding: 13px 20px;
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
}
.credit-band .credit-label { margin-right: 6px; }
.credit-band .credit-link {
  color: #a4502e; font-weight: 600; letter-spacing: .12em;
  border-bottom: 1px solid currentColor; text-transform: none;
}
.credit-band .credit-link:hover { color: var(--ink); }

/* ---------- WhatsApp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25); transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- 404 ---------- */
.center-page { padding-block: 100px; }
.err-code { font-family: var(--font-serif); font-size: 6rem; color: var(--gold); line-height: 1; }
.center-actions { justify-content: center; }

/* ---------- Reveal animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Duyarlılık ---------- */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: 1fr; }
  .article-side { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .topbar-in { justify-content: center; }
  .nav {
    position: fixed; inset: 0; top: 0; z-index: 99;
    background: var(--cream); flex-direction: column; justify-content: center;
    gap: 20px; font-size: 1.2rem;
    transform: translateX(100%); transition: transform .3s ease, visibility .3s;
    visibility: hidden;
  }
  .nav.open { transform: none; visibility: visible; }
  .nav a:not(.btn) { font-size: 1.15rem; }
  .nav-toggle { display: block; position: relative; z-index: 100; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9.4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9.4px) rotate(-45deg); }
  .hero-in { grid-template-columns: 1fr; padding-block: 48px 56px; gap: 36px; }
  .hero-photo { max-width: 420px; margin: 0 auto; }
  .split, .two-col, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .split-rev .split-copy { order: 0; }
  .section { padding-block: 54px; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .brand-text small { display: none; }
  .hero-actions .btn { width: 100%; text-align: center; }
}
