/* ============================================
   otoplastyistanbul.com — Master Stylesheet
   Clinical blue palette · Medical-grade aesthetic
   ============================================ */

:root {
  --slate-deep: #1e3a52;
  --slate: #3d5a73;
  --slate-light: #6b85a0;
  --slate-pale: #e8eef4;
  --slate-mist: #f4f7fa;
  --accent: #c69963;
  --accent-deep: #a87f49;
  --ink: #1f2935;
  --ink-soft: #4a5868;
  --ink-faint: #7d8995;
  --cream: #fafaf7;
  --line: #d8dfe6;
  --line-soft: #ebeff3;
  --white: #ffffff;
  --success: #4a7c59;
  --shadow-sm: 0 2px 8px rgba(30,58,82,.06);
  --shadow-md: 0 4px 18px rgba(30,58,82,.10);
  --shadow-lg: 0 10px 35px rgba(30,58,82,.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--ink); background: var(--white);
  line-height: 1.65; font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600; color: var(--slate-deep);
  line-height: 1.2; margin: 0 0 16px; letter-spacing: -0.01em;
}
h1 { font-size: 44px; }
h2 { font-size: 32px; margin-top: 48px; }
h3 { font-size: 24px; margin-top: 36px; }
h4 { font-size: 18px; margin-top: 24px; color: var(--slate); font-family: 'Inter', sans-serif; font-weight: 600; }
p { margin: 0 0 16px; }
.lead-p { font-size: 19px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 28px; }
a { color: var(--slate); text-decoration: underline; text-decoration-color: var(--slate-light); text-underline-offset: 3px; transition: color .2s; }
a:hover { color: var(--slate-deep); text-decoration-color: var(--slate); }
ul,ol { padding-left: 22px; margin: 0 0 18px; }
li { margin-bottom: 8px; }
li::marker { color: var(--slate-light); }
strong { color: var(--slate-deep); font-weight: 600; }
em { font-style: italic; color: var(--slate); }
hr { border: none; height: 1px; background: var(--line); margin: 40px 0; }
blockquote { border-left: 3px solid var(--accent); padding: 14px 22px; margin: 24px 0; background: var(--slate-mist); font-style: italic; color: var(--ink-soft); font-size: 17px; }

/* === TOPBAR === */
.topbar { background: var(--slate-deep); color: rgba(255,255,255,.92); padding: 9px 0; font-size: 13px; }
.topbar-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.92); text-decoration: none; }
.topbar a:hover { color: var(--accent); }
.topbar-left { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar-badge { background: rgba(198,153,99,.18); color: var(--accent); padding: 3px 10px; border-radius: 3px; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }

/* === HEADER === */
.site-header { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
.site-header-inner { max-width: 1180px; margin: 0 auto; padding: 16px 24px; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--slate-deep); }
.logo-mark { width: 38px; height: 38px; background: var(--slate-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 20px; }
.logo-text { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; letter-spacing: -.01em; }
.logo-text small { display: block; font-family: 'Inter', sans-serif; font-size: 10.5px; font-weight: 500; color: var(--ink-faint); letter-spacing: .14em; text-transform: uppercase; margin-top: 1px; }
.main-nav ul { display: flex; gap: 28px; list-style: none; padding: 0; margin: 0; }
.main-nav a { text-decoration: none; color: var(--ink); font-size: 14.5px; font-weight: 500; transition: color .2s; position: relative; }
.main-nav a:hover { color: var(--slate-deep); }
.main-nav a::after { content: ''; position: absolute; bottom: -6px; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform .2s; }
.main-nav a:hover::after { transform: scaleX(1); }
.header-cta { display: inline-block; background: var(--slate-deep); color: var(--white); padding: 10px 22px; border-radius: 4px; text-decoration: none; font-size: 13.5px; font-weight: 600; transition: all .2s; white-space: nowrap; }
.header-cta:hover { background: var(--accent-deep); color: var(--white); transform: translateY(-1px); }
.mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--slate-deep); }
@media (max-width: 880px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .main-nav.active { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow-lg); padding: 20px 24px; }
  .main-nav.active ul { flex-direction: column; gap: 18px; }
}

/* === HERO === */
.hero { background: linear-gradient(180deg, var(--slate-mist) 0%, var(--white) 100%); padding: 64px 24px 80px; }
.hero-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
.hero-text .eyebrow { font-size: 12px; color: var(--accent-deep); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.hero-text h1 { font-size: 50px; line-height: 1.12; margin: 0 0 24px; font-weight: 600; }
.hero-text h1 em { color: var(--accent-deep); font-style: italic; display: block; font-weight: 500; margin-top: 4px; }
.hero-text .lead-p { font-size: 18px; color: var(--ink-soft); margin-bottom: 28px; }
.hero-credentials { font-size: 12px; color: var(--ink-faint); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 26px; padding: 10px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--slate-deep); color: var(--white); padding: 14px 28px; border-radius: 4px; text-decoration: none; font-size: 14.5px; font-weight: 600; transition: all .2s; }
.btn-primary:hover { background: var(--accent-deep); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--slate-deep); border: 1px solid var(--slate-light); padding: 13px 26px; border-radius: 4px; text-decoration: none; font-size: 14.5px; font-weight: 600; transition: all .2s; }
.btn-secondary:hover { background: var(--slate-pale); border-color: var(--slate); color: var(--slate-deep); }
.hero-photo { position: relative; }
.hero-photo img { width: 100%; max-width: 460px; border-radius: 6px; box-shadow: var(--shadow-lg); display: block; margin: 0 0 0 auto; }
.hero-photo .photo-badge { position: absolute; bottom: 22px; left: 22px; background: rgba(255,255,255,.97); border-left: 3px solid var(--accent); padding: 12px 16px; border-radius: 3px; box-shadow: var(--shadow-md); backdrop-filter: blur(8px); }
.hero-photo .photo-badge strong { display: block; font-size: 13.5px; color: var(--slate-deep); font-weight: 700; }
.hero-photo .photo-badge small { display: block; font-size: 11px; color: var(--ink-soft); margin-top: 2px; letter-spacing: .04em; }
@media (max-width: 880px) {
  .hero { padding: 40px 20px 50px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-text h1 { font-size: 34px; }
  .hero-photo img { max-width: 320px; margin: 0; }
}

/* === SECTIONS === */
section { padding: 60px 24px; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-narrow .section-inner { max-width: 820px; }
.section-tinted { background: var(--slate-mist); }
.section-dark { background: var(--slate-deep); color: rgba(255,255,255,.92); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.85); }
.section-dark a { color: var(--accent); }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title .eyebrow { font-size: 12px; color: var(--accent-deep); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; }
.section-title h2 { font-size: 38px; margin: 0 0 14px; }
.section-title .section-lead { font-size: 17px; color: var(--ink-soft); max-width: 720px; margin: 0 auto; }

/* === BREADCRUMBS === */
.breadcrumbs { font-size: 13px; color: var(--ink-faint); padding: 16px 24px; max-width: 1180px; margin: 0 auto; }
.breadcrumbs a { color: var(--ink-faint); text-decoration: none; }
.breadcrumbs a:hover { color: var(--slate); }
.breadcrumbs .sep { margin: 0 6px; color: var(--ink-faint); }

/* === E-E-A-T AUTHOR BOX === */
.eeat-author-box { display: flex; gap: 16px; align-items: center; background: linear-gradient(135deg, var(--slate-pale) 0%, var(--cream) 100%); border-left: 4px solid var(--slate); border-radius: 6px; padding: 18px 22px; margin: 28px 0 36px; }
.eeat-author-box img.eeat-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.eeat-info { flex: 1; min-width: 0; font-size: 13.5px; line-height: 1.55; }
.eeat-name { font-weight: 700; color: var(--slate-deep); font-size: 14.5px; margin-bottom: 2px; }
.eeat-name a { color: inherit; text-decoration: none; }
.eeat-title { color: var(--ink-soft); font-size: 13px; margin-bottom: 3px; }
.eeat-credentials { color: var(--ink-faint); font-size: 11.5px; letter-spacing: .03em; }
.eeat-updated { color: var(--ink-faint); font-size: 11.5px; margin-top: 5px; font-style: italic; }

/* === FEATURED DEFINITION === */
.featured-definition { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--slate-deep); border-radius: 4px; padding: 22px 26px; margin: 28px 0; font-size: 16.5px; line-height: 1.65; }
.featured-definition strong:first-child { color: var(--slate-deep); }

/* === KEY FACTS === */
.key-facts-box { background: var(--slate-mist); border: 1px solid var(--line); border-radius: 6px; padding: 26px 30px; margin: 32px 0; }
.key-facts-box h3 { font-family: 'Cormorant Garamond', serif; color: var(--slate-deep); font-size: 22px; margin: 0 0 18px; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.key-facts-box ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px 28px; }
.key-facts-box li { padding: 6px 0; border-bottom: 1px dotted var(--line); font-size: 14px; margin-bottom: 0; }
.key-facts-box li strong { display: block; font-size: 11px; color: var(--accent-deep); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 3px; font-weight: 600; }

/* === CARDS === */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin: 24px 0; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 26px 24px; transition: all .2s; text-decoration: none; color: inherit; display: block; position: relative; }
.card:hover { border-color: var(--slate); box-shadow: var(--shadow-md); transform: translateY(-2px); color: inherit; }
.card h3 { font-size: 19px; margin: 0 0 10px; color: var(--slate-deep); }
.card p { font-size: 14px; color: var(--ink-soft); margin-bottom: 12px; line-height: 1.55; }
.card .card-meta { font-size: 11.5px; color: var(--accent-deep); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.card-link { margin-top: 14px; display: inline-block; font-size: 13px; color: var(--slate); font-weight: 600; text-decoration: none; }
.card-link::after { content: ' →'; transition: transform .2s; display: inline-block; }
.card:hover .card-link::after { transform: translateX(4px); }

/* === STATS === */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; margin: 32px 0; padding: 32px; background: var(--slate-mist); border-radius: 6px; text-align: center; }
.stat-item .stat-number { font-family: 'Cormorant Garamond', serif; font-size: 42px; color: var(--slate-deep); font-weight: 600; display: block; line-height: 1; }
.stat-item .stat-label { font-size: 12px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .08em; margin-top: 6px; }

/* === TIMELINE === */
.timeline { position: relative; margin: 32px 0; padding-left: 32px; border-left: 2px solid var(--line); }
.timeline-item { position: relative; padding: 8px 0 24px 16px; }
.timeline-item::before { content: ''; position: absolute; left: -41px; top: 14px; width: 14px; height: 14px; background: var(--accent); border: 3px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 1px var(--line); }
.timeline-item h4 { color: var(--slate-deep); font-size: 16px; margin: 0 0 4px; font-family: 'Inter', sans-serif; }
.timeline-item .timeline-time { font-size: 11.5px; color: var(--accent-deep); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin-bottom: 6px; }
.timeline-item p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* === FAQ === */
.faq-list { margin: 24px 0; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 4px; margin-bottom: 12px; overflow: hidden; }
.faq-item summary { padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: 15.5px; color: var(--slate-deep); list-style: none; position: relative; padding-right: 50px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--slate); font-weight: 300; transition: transform .2s; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item[open] summary { border-bottom: 1px solid var(--line-soft); }
.faq-item-content { padding: 16px 22px 22px; color: var(--ink-soft); font-size: 14.5px; }
.faq-item-content p:last-child { margin-bottom: 0; }

/* === COMPARE TABLE === */
.compare-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; background: var(--white); }
.compare-table th, .compare-table td { padding: 14px 18px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare-table th { background: var(--slate-deep); color: var(--white); font-weight: 600; font-size: 13px; }
.compare-table tr:nth-child(even) { background: var(--slate-mist); }

/* === CALLOUTS === */
.callout { padding: 20px 26px; border-radius: 6px; margin: 24px 0; border-left: 4px solid; font-size: 14.5px; line-height: 1.6; }
.callout-info { background: var(--slate-pale); border-left-color: var(--slate); }
.callout-warning { background: #fef6e7; border-left-color: var(--accent); }
.callout-success { background: #eef5ef; border-left-color: var(--success); }
.callout strong { display: block; margin-bottom: 4px; }

/* === CTA === */
.cta-section { background: var(--slate-deep); color: var(--white); padding: 64px 24px; text-align: center; }
.cta-section h2 { color: var(--white); font-size: 36px; margin: 0 0 16px; }
.cta-section p { color: rgba(255,255,255,.85); font-size: 17px; max-width: 640px; margin: 0 auto 28px; }
.cta-section .btn-primary { background: var(--accent); color: var(--slate-deep); }
.cta-section .btn-primary:hover { background: var(--white); color: var(--slate-deep); }
.cta-section .btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.cta-section .btn-secondary:hover { background: rgba(255,255,255,.1); color: var(--white); border-color: var(--white); }

/* === MEDICAL DISCLAIMER === */
.medical-disclaimer { background: var(--cream); border-top: 1px solid var(--line); padding: 22px 26px; margin: 48px 0 0; border-radius: 4px; font-size: 12.5px; color: var(--ink-soft); line-height: 1.65; font-style: italic; }
.medical-disclaimer strong { color: var(--ink); font-style: normal; }

/* === RELATED TOPICS === */
.related-topics-section { background: linear-gradient(180deg, transparent, var(--slate-pale)); padding: 56px 24px; margin-top: 60px; border-top: 1px solid var(--line); }
.related-topics-section .section-inner { max-width: 980px; }
.related-topics-section h2 { font-size: 30px; text-align: center; margin: 0 0 32px; }
.related-topics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.related-topics-grid a { background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--slate); border-radius: 4px; padding: 16px 20px; text-decoration: none; color: var(--ink); font-size: 14px; font-weight: 500; transition: all .2s; display: flex; align-items: center; gap: 10px; }
.related-topics-grid a:hover { border-left-color: var(--accent); background: var(--slate-mist); transform: translateX(2px); }
.related-topics-grid a::before { content: '→'; color: var(--slate-light); font-weight: bold; }

/* === FOOTER === */
.site-footer { background: #14283a; color: rgba(255,255,255,.7); padding: 56px 24px 24px; font-size: 13.5px; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 12px; display: block; text-decoration: none; }
.footer-tagline { color: rgba(255,255,255,.55); font-size: 12.5px; line-height: 1.6; margin-bottom: 20px; }
.footer-contact { font-size: 12.5px; line-height: 1.8; color: rgba(255,255,255,.65); }
.footer-contact strong { color: rgba(255,255,255,.92); display: block; margin-bottom: 4px; }
.footer-contact a { color: rgba(255,255,255,.85); text-decoration: none; }
.footer-contact a:hover { color: var(--accent); }
.footer-col h5 { color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 16px; font-family: 'Inter', sans-serif; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,.65); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { max-width: 1180px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; font-size: 11.5px; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }
.footer-credentials { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.footer-credential-badge { background: rgba(198,153,99,.12); color: var(--accent); padding: 3px 10px; border-radius: 3px; font-size: 10.5px; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* === WHATSAPP FAB === */
.wa-fab { position: fixed; bottom: 22px; right: 22px; background: #25D366; color: #fff; border-radius: 30px; padding: 14px 22px; text-decoration: none; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 30px rgba(37,211,102,.35); z-index: 99; transition: all .2s; }
.wa-fab:hover { background: #1ebd5a; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,211,102,.45); }
.wa-fab svg { width: 22px; height: 22px; }
@media (max-width: 600px) { .wa-fab { padding: 12px 18px; bottom: 16px; right: 16px; } .wa-fab span { display: none; } }

/* === ARTICLE === */
.article-body { max-width: 760px; margin: 0 auto; font-size: 17px; line-height: 1.75; }
.article-body p, .article-body li { font-size: 17px; line-height: 1.75; }
.article-body h2 { font-size: 30px; margin-top: 56px; }
.article-body h3 { font-size: 22px; margin-top: 36px; }
.article-body img { max-width: 100%; height: auto; border-radius: 6px; margin: 24px 0; }
.article-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: var(--ink-faint); margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }

/* === FORMS === */
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 36px; box-shadow: var(--shadow-sm); max-width: 720px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 12.5px; color: var(--slate-deep); font-weight: 600; letter-spacing: .02em; }
.form-field input, .form-field textarea, .form-field select { padding: 11px 14px; border: 1px solid var(--line); border-radius: 4px; font-size: 14.5px; font-family: inherit; background: var(--white); color: var(--ink); transition: border-color .2s; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--slate); }
.form-field textarea { min-height: 110px; resize: vertical; }
.form-consent { font-size: 12.5px; color: var(--ink-soft); margin: 18px 0; display: flex; align-items: flex-start; gap: 8px; }
.form-consent input { margin-top: 3px; }
.form-submit { width: 100%; background: var(--slate-deep); color: var(--white); padding: 14px; border: none; border-radius: 4px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all .2s; }
.form-submit:hover { background: var(--accent-deep); transform: translateY(-1px); }

/* === UTIL === */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 32px; }
.mb-2 { margin-bottom: 32px; }
.hidden { display: none !important; }
.text-muted { color: var(--ink-faint); }

@media print { .topbar, .site-header, .wa-fab, .cta-section, .site-footer { display: none; } body { font-size: 11pt; } }


/* ── Accessibility: skip-to-main link ───────────────────── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--slate-deep);
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  font-weight: 600;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}


/* ── Cookie consent banner ──────────────────────────────── */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border-soft, #d4cab8);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(30, 58, 82, 0.18);
  padding: 18px 22px;
  z-index: 9999;
  font-family: 'Inter', system-ui, sans-serif;
  animation: cookieSlideUp .35s cubic-bezier(.16,1,.3,1) both;
}
@keyframes cookieSlideUp { from { transform: translateY(40px); opacity: 0;} to { transform: translateY(0); opacity:1;}}
.cookie-consent[hidden] { display: none; }
.cookie-consent-inner { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.cookie-consent-text { flex: 1 1 280px; font-size: 14px; line-height: 1.5; color: var(--slate-deep, #1e3a52); margin: 0; }
.cookie-consent-text a { color: var(--accent, #c69963); text-decoration: underline; }
.cookie-consent-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn { font-family: inherit; font-size: 14px; font-weight: 600; padding: 10px 18px; border-radius: 6px; cursor: pointer; border: 0; transition: all .2s; min-height: 44px; }
.cookie-btn-primary { background: var(--slate-deep, #1e3a52); color: #fff; }
.cookie-btn-primary:hover { background: var(--accent, #c69963); }
.cookie-btn-secondary { background: transparent; color: var(--slate-deep, #1e3a52); border: 1px solid var(--border-soft, #d4cab8); }
.cookie-btn-secondary:hover { background: var(--cream, #f7f3ec); }
@media (max-width: 560px) {
  .cookie-consent { left: 8px; right: 8px; bottom: 8px; padding: 14px 16px; }
  .cookie-consent-buttons { width: 100%; }
  .cookie-btn { flex: 1; }
}

