
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy: #0d1b2a;
      --deep: #112240;
      --teal: #1a6b6b;
      --teal-light: #2a9090;
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --cream: #f5f0e8;
      --white: #ffffff;
      --gray: #8a9bb0;
      --light-bg: #f8f6f2;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--navy);
      overflow-x: hidden;
    }

    /* ── NAVBAR ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      padding: 0 5%;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(13, 27, 42, 0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201, 168, 76, 0.2);
      overflow: visible;
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 0.03em;
    }
    .nav-logo span { color: var(--gold); }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
      flex-wrap: nowrap;
    }
    .nav-item {
      position: relative;
      list-style: none;
      flex-shrink: 0;
    }
    .nav-links > .nav-item > a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      font-size: 0.78rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: color 0.2s;
      position: relative;
      white-space: nowrap;
    }
    .nav-links > .nav-item > a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0; right: 0;
      height: 1px; background: var(--gold);
      transform: scaleX(0); transition: transform 0.3s;
    }
    .nav-links > .nav-item > a:hover { color: var(--gold); }
    .nav-links > .nav-item > a:hover::after { transform: scaleX(1); }
    .nav-links > .nav-item > a.active { color: var(--gold); }
    .nav-links > .nav-item > a.active::after { transform: scaleX(1); }
    .nav-item.has-dropdown::after {
      content: '';
      position: absolute;
      left: 0; right: 0;
      top: 100%;
      height: 12px;
      z-index: 301;
    }
    .nav-parent { display: inline-flex; align-items: center; gap: 0.35rem; }
    .nav-caret { font-size: 0.65rem; opacity: 0.7; transition: transform 0.2s; }
    .nav-item.has-dropdown:hover .nav-caret,
    .nav-item.has-dropdown.active .nav-caret { transform: rotate(180deg); }
    .mega-menu {
      display: none !important;
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      left: auto;
      transform: none;
      width: min(680px, calc(100vw - 2rem));
      background: var(--navy);
      border: 1px solid rgba(201,168,76,0.25);
      border-radius: 10px;
      padding: 1.25rem 1.25rem 0.75rem;
      box-shadow: 0 20px 50px rgba(0,0,0,0.35);
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      z-index: 400;
    }
    .nav-item.has-dropdown:hover .mega-menu,
    .nav-item.has-dropdown:focus-within .mega-menu {
      display: grid !important;
    }
    .mega-col-title {
      display: block;
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.6rem;
      padding-bottom: 0.4rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .mega-link {
      display: flex;
      gap: 0.65rem;
      align-items: flex-start;
      padding: 0.55rem 0.5rem;
      border-radius: 6px;
      text-decoration: none;
      color: rgba(255,255,255,0.75);
      transition: background 0.2s, color 0.2s;
      margin-bottom: 0.2rem;
    }
    .mega-link::after { display: none !important; }
    .mega-link:hover, .mega-link.active {
      background: rgba(201,168,76,0.12);
      color: var(--gold-light);
    }
    .mega-icon { font-size: 1.2rem; line-height: 1; flex-shrink: 0; }
    .mega-text { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
    .mega-text strong { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em; text-transform: none; }
    .mega-text small { font-size: 0.72rem; color: rgba(255,255,255,0.45); line-height: 1.35; text-transform: none; letter-spacing: 0; }
    .mega-footer {
      grid-column: 1 / -1;
      padding: 0.75rem 0 0.25rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      text-align: center;
    }
    .mega-footer a {
      font-size: 0.75rem;
      color: var(--gold);
      text-decoration: none;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .mega-footer a::after { display: none !important; }
    .mega-footer a:hover { color: var(--gold-light); }
    .nav-btn {
      padding: 0.5rem 1.4rem;
      background: var(--gold); color: var(--navy);
      border: none; border-radius: 2px;
      font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.07em; text-transform: uppercase;
      cursor: pointer; text-decoration: none;
      transition: background 0.2s;
    }
    .nav-btn:hover { background: var(--gold-light); }
    .hamburger {
      display: none; flex-direction: column;
      gap: 5px; cursor: pointer; padding: 5px;
    }
    .hamburger span { width: 24px; height: 2px; background: var(--white); }
    .mobile-nav {
      display: none !important;
      position: fixed;
      top: 72px; left: 0; right: 0;
      background: var(--navy);
      padding: 1.5rem 5%;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      flex-direction: column;
      gap: 0;
      z-index: 350;
      max-height: calc(100vh - 72px);
      overflow-y: auto;
    }
    .mobile-nav.open { display: flex !important; }
    .mobile-nav a {
      color: rgba(255,255,255,0.8); text-decoration: none;
      font-size: 0.88rem; padding: 0.8rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      text-transform: uppercase; letter-spacing: 0.07em;
    }
    .mobile-nav a:last-child { border-bottom: none; }
    .mobile-nav a:hover { color: var(--gold); }
    .mobile-nav-parent {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: none;
      border: none;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.85);
      font-size: 0.88rem;
      padding: 0.85rem 0;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      font-family: inherit;
      text-align: left;
    }
    .mobile-nav-parent.open { color: var(--gold); }
    .mobile-nav-parent.open span { transform: rotate(180deg); display: inline-block; }
    .mobile-submenu {
      display: none;
      flex-direction: column;
      padding: 0 0 0.5rem 0.75rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .mobile-submenu.open { display: flex; }
    .mobile-sub-label {
      font-size: 0.65rem;
      color: var(--teal-light);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.6rem 0 0.25rem;
    }
    .mobile-submenu a {
      font-size: 0.82rem !important;
      padding: 0.55rem 0 !important;
      text-transform: none !important;
      letter-spacing: 0.02em !important;
    }
    .mobile-nav-cta {
      color: var(--gold) !important;
      font-weight: 600 !important;
      margin-top: 0.5rem;
    }

    /* ── HERO BANNER ── */
    .page-hero {
      min-height: 52vh;
      background: linear-gradient(135deg, var(--navy) 0%, #0a3d3d 60%, #112240 100%);
      display: flex; align-items: center;
      padding: 100px 5% 60px;
      position: relative; overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute; top: -20%; right: -5%;
      width: 550px; height: 550px; border-radius: 50%;
      background: radial-gradient(circle, rgba(26,107,107,0.22) 0%, transparent 70%);
      pointer-events: none;
    }
    .page-hero::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 80px;
      background: linear-gradient(to bottom, transparent, var(--white));
      pointer-events: none;
    }
    .hero-inner {
      max-width: 1200px; margin: 0 auto; width: 100%;
      display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center;
    }
    .breadcrumb {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.72rem; color: rgba(255,255,255,0.4);
      text-transform: uppercase; letter-spacing: 0.1em;
      margin-bottom: 1.2rem;
    }
    .breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
    .breadcrumb a:hover { color: var(--gold); }
    .breadcrumb span { color: var(--gold-light); }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(201,168,76,0.15);
      border: 1px solid rgba(201,168,76,0.4);
      padding: 0.35rem 1rem; border-radius: 50px;
      font-size: 0.72rem; color: var(--gold-light);
      letter-spacing: 0.12em; text-transform: uppercase;
      margin-bottom: 1.2rem;
    }
    .page-hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 4.5vw, 3.8rem);
      font-weight: 300; color: var(--white); line-height: 1.12;
      margin-bottom: 1rem;
    }
    .page-hero h1 em { font-style: italic; color: var(--gold); }
    .page-hero p {
      color: rgba(255,255,255,0.62);
      font-size: 1rem; line-height: 1.8;
      max-width: 500px; margin-bottom: 2rem;
    }
    .hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary {
      padding: 0.85rem 1.9rem;
      background: var(--gold); color: var(--navy);
      border: none; border-radius: 2px;
      font-size: 0.82rem; font-weight: 600;
      letter-spacing: 0.06em; text-transform: uppercase;
      cursor: pointer; text-decoration: none; display: inline-block;
      transition: all 0.25s;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
    .btn-outline-light {
      padding: 0.85rem 1.9rem;
      background: transparent; color: rgba(255,255,255,0.85);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 2px; font-size: 0.82rem;
      letter-spacing: 0.06em; text-transform: uppercase;
      cursor: pointer; text-decoration: none; display: inline-block;
      transition: all 0.25s;
    }
    .btn-outline-light:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

    /* Quick Nav Chips */
    .hero-chips {
      display: flex; flex-wrap: wrap; gap: 0.5rem;
    }
    .chip {
      padding: 0.4rem 0.9rem;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 50px; color: rgba(255,255,255,0.65);
      font-size: 0.75rem; letter-spacing: 0.04em;
      text-decoration: none; transition: all 0.2s;
      cursor: pointer;
    }
    .chip:hover { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.4); color: var(--gold-light); }

    /* ── TOC (Table of Contents) ── */
    .toc-bar {
      background: var(--light-bg);
      border-bottom: 1px solid rgba(13,27,42,0.08);
      padding: 0 5%;
      position: sticky; top: 72px; z-index: 50;
    }
    .toc-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center; gap: 0;
      overflow-x: auto;
    }
    .toc-inner::-webkit-scrollbar { height: 3px; }
    .toc-inner::-webkit-scrollbar-track { background: transparent; }
    .toc-inner::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }
    .toc-item {
      padding: 1rem 1.3rem;
      color: #667; font-size: 0.78rem;
      letter-spacing: 0.06em; text-transform: uppercase;
      text-decoration: none; white-space: nowrap;
      border-bottom: 2px solid transparent;
      transition: all 0.2s; display: block;
    }
    .toc-item:hover, .toc-item.active { color: var(--teal); border-bottom-color: var(--teal); }

    /* ── MAIN LAYOUT ── */
    .page-body {
      max-width: 1200px; margin: 0 auto; width: 100%;
      display: grid; grid-template-columns: 1fr 300px;
      gap: 3rem; padding: 4rem 5%;
    }
    .main-content { overflow-wrap: break-word; word-wrap: break-word; }
    .main-content { min-width: 0; }
    .sidebar { /* sticky below */ }

    /* ── ARTICLE SECTIONS ── */
    .article-section {
      margin-bottom: 4rem;
      padding-bottom: 4rem;
      border-bottom: 1px solid rgba(13,27,42,0.07);
    }
    .article-section:last-child { border-bottom: none; }

    .section-label {
      display: flex; align-items: center; gap: 0.6rem;
      font-size: 0.68rem; color: var(--teal);
      letter-spacing: 0.14em; text-transform: uppercase;
      margin-bottom: 0.7rem;
    }
    .section-label::before { content: ''; width: 28px; height: 1px; background: var(--teal); }

    .article-section h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.7rem, 3vw, 2.4rem);
      font-weight: 300; color: var(--navy);
      line-height: 1.2; margin-bottom: 1.3rem;
    }
    .article-section h2 em { font-style: italic; color: var(--teal); }

    .article-section h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem; font-weight: 600;
      color: var(--navy); margin: 1.6rem 0 0.6rem;
    }

    .article-section p {
      color: #4a5568; line-height: 1.85;
      font-size: 0.95rem; margin-bottom: 1.1rem;
    }

    .article-section p strong { color: var(--navy); font-weight: 500; }

    /* Callout / Quote block */
    .callout {
      background: linear-gradient(135deg, rgba(26,107,107,0.07) 0%, rgba(13,27,42,0.04) 100%);
      border-left: 3px solid var(--teal);
      padding: 1.2rem 1.5rem;
      border-radius: 0 6px 6px 0;
      margin: 1.5rem 0;
    }
    .callout p { color: var(--navy); font-style: italic; font-size: 0.95rem; margin-bottom: 0; }

    /* Gold highlight quote */
    .quote-block {
      background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.03) 100%);
      border: 1px solid rgba(201,168,76,0.25);
      border-radius: 8px; padding: 1.6rem 2rem;
      margin: 2rem 0; position: relative;
    }
    .quote-block::before {
      content: '"';
      position: absolute; top: -0.5rem; left: 1.5rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 4rem; color: var(--gold); opacity: 0.4;
      line-height: 1;
    }
    .quote-block p { color: var(--navy); font-size: 1rem; line-height: 1.75; margin-bottom: 0; font-style: italic; }

    /* Info cards row */
    .info-row {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem; margin: 1.8rem 0;
    }
    .info-card {
      background: var(--light-bg);
      border-radius: 8px; padding: 1.3rem 1.4rem;
      border-top: 2px solid var(--gold);
    }
    .info-card .ic-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 600; color: var(--gold); line-height: 1;
    }
    .info-card .ic-label { font-size: 0.78rem; color: var(--gray); margin-top: 0.2rem; }
    .info-card .ic-desc { font-size: 0.85rem; color: #556; margin-top: 0.5rem; line-height: 1.5; }

    /* Process steps */
    .steps { display: flex; flex-direction: column; gap: 1.2rem; margin: 1.5rem 0; }
    .step {
      display: flex; gap: 1.2rem; align-items: flex-start;
      padding: 1.2rem; background: var(--white);
      border: 1px solid rgba(13,27,42,0.08); border-radius: 8px;
      transition: box-shadow 0.2s;
    }
    .step:hover { box-shadow: 0 4px 20px rgba(13,27,42,0.07); }
    .step-num {
      min-width: 38px; height: 38px; border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), var(--navy));
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; font-weight: 600; color: var(--white);
    }
    .step-title { font-weight: 500; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.3rem; }
    .step-desc { font-size: 0.84rem; color: #667; line-height: 1.6; }

    /* Checklist */
    .checklist { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin: 1rem 0; }
    .checklist li {
      display: flex; align-items: flex-start; gap: 0.7rem;
      font-size: 0.9rem; color: #4a5568; line-height: 1.5;
    }
    .checklist li::before {
      content: '✓';
      color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px;
    }

    /* Two-col text+image */
    .split-block {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2.5rem; align-items: center; margin: 2rem 0;
    }
    .split-img-placeholder {
      aspect-ratio: 4/3;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(26,107,107,0.15) 0%, rgba(13,27,42,0.08) 100%);
      border: 1px solid rgba(26,107,107,0.15);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 0.7rem; color: rgba(26,107,107,0.4);
      font-size: 0.78rem; text-align: center;
    }
    .split-img-placeholder svg { width: 48px; opacity: 0.35; fill: var(--teal); }

    /* Technique compare */
    .compare-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1rem; margin: 1.5rem 0;
    }
    .compare-card {
      border-radius: 8px; padding: 1.5rem;
      border: 1px solid rgba(13,27,42,0.1);
    }
    .compare-card.good { background: rgba(26,107,107,0.05); border-color: rgba(26,107,107,0.2); }
    .compare-card.bad { background: rgba(180,30,30,0.04); border-color: rgba(180,30,30,0.15); }
    .compare-label {
      font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
      font-weight: 600; margin-bottom: 0.8rem;
    }
    .compare-card.good .compare-label { color: var(--teal); }
    .compare-card.bad .compare-label { color: #c0392b; }
    .compare-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
    .compare-card ul li { font-size: 0.85rem; color: #4a5568; line-height: 1.5; }
    .compare-card.good ul li::before { content: '✓ '; color: var(--teal); font-weight: 700; }
    .compare-card.bad ul li::before { content: '✗ '; color: #c0392b; font-weight: 700; }

    /* ── SIDEBAR ── */
    .sidebar-sticky { position: sticky; top: calc(72px + 60px); }
    .sidebar-card {
      background: var(--light-bg); border-radius: 10px;
      padding: 1.6rem; margin-bottom: 1.5rem;
      border: 1px solid rgba(13,27,42,0.06);
    }
    .sidebar-card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; font-weight: 600;
      color: var(--navy); margin-bottom: 1rem;
      padding-bottom: 0.7rem;
      border-bottom: 1px solid rgba(13,27,42,0.1);
    }
    .sidebar-nav-list { list-style: none; display: flex; flex-direction: column; gap: 0.1rem; }
    .sidebar-nav-list a {
      display: flex; align-items: center; gap: 0.6rem;
      padding: 0.55rem 0.6rem; border-radius: 4px;
      color: #556; font-size: 0.85rem; text-decoration: none;
      transition: all 0.2s;
    }
    .sidebar-nav-list a::before { content: '→'; color: var(--gold); font-size: 0.75rem; }
    .sidebar-nav-list a:hover { background: white; color: var(--teal); padding-left: 1rem; }
    .sidebar-contact { background: linear-gradient(135deg, var(--navy), #0a3d3d); border-radius: 10px; padding: 1.6rem; margin-bottom: 1.5rem; color: white; }
    .sidebar-contact h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; margin-bottom: 0.6rem; }
    .sidebar-contact p { font-size: 0.83rem; color: rgba(255,255,255,0.6); margin-bottom: 1.2rem; line-height: 1.6; }
    .sidebar-contact a { display: block; padding: 0.75rem 1rem; background: var(--gold); color: var(--navy); border-radius: 4px; text-align: center; font-size: 0.82rem; font-weight: 600; text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.2s; }
    .sidebar-contact a:hover { background: var(--gold-light); }

    .sidebar-faq { display: flex; flex-direction: column; gap: 0; }
    .faq-item { border-bottom: 1px solid rgba(13,27,42,0.08); }
    .faq-item:last-child { border-bottom: none; }
    .faq-q {
      display: flex; justify-content: space-between; align-items: center;
      padding: 0.9rem 0; cursor: pointer; gap: 0.5rem;
      font-size: 0.85rem; font-weight: 500; color: var(--navy);
    }
    .faq-q .arrow { color: var(--gold); transition: transform 0.2s; flex-shrink: 0; }
    .faq-q.open .arrow { transform: rotate(180deg); }
    .faq-a { display: none; padding: 0 0 0.9rem; font-size: 0.83rem; color: #667; line-height: 1.65; }
    .faq-a.open { display: block; }

    /* ── TREATMENT GRID ── */
    .treatment-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.2rem; margin-top: 2rem;
    }
    .treatment-card {
      border: 1px solid rgba(13,27,42,0.09);
      border-radius: 10px; padding: 1.6rem;
      transition: all 0.25s; position: relative; overflow: hidden;
      cursor: default; background: var(--white);
    }
    .treatment-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--teal), var(--gold));
      transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
    }
    .treatment-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(13,27,42,0.1); }
    .treatment-card:hover::before { transform: scaleX(1); }
    .tc-icon { font-size: 2rem; margin-bottom: 0.9rem; }
    .tc-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; font-weight: 600; color: var(--navy);
      margin-bottom: 0.5rem;
    }
    .tc-desc { font-size: 0.85rem; color: #667; line-height: 1.65; }
    .tc-link {
      display: inline-flex; align-items: center; gap: 0.3rem;
      margin-top: 0.9rem; font-size: 0.78rem; color: var(--teal);
      font-weight: 500; letter-spacing: 0.04em; text-decoration: none;
      transition: gap 0.2s;
    }
    .treatment-card:hover .tc-link { gap: 0.5rem; }

    /* ── FOOTER ── */
    footer {
      background: var(--navy); color: rgba(255,255,255,0.55);
      padding: 3.5rem 5%; text-align: center; margin-top: 0;
    }
    .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--white); margin-bottom: 0.4rem; }
    .footer-logo span { color: var(--gold); }
    .footer-tagline { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 1.8rem; }
    .footer-links { display: flex; justify-content: center; gap: 2rem; list-style: none; flex-wrap: wrap; margin-bottom: 1.8rem; }
    .footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy { font-size: 0.73rem; color: rgba(255,255,255,0.25); }

    /* ── BACK TO TOP ── */
    .back-top {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 90;
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--navy); color: var(--gold);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; border: 1px solid rgba(201,168,76,0.3);
      font-size: 1.1rem; opacity: 0; transition: all 0.3s;
      box-shadow: 0 4px 16px rgba(0,0,0,0.3);
      text-decoration: none;
    }
    .back-top.visible { opacity: 1; }
    .back-top:hover { background: var(--teal); transform: translateY(-3px); }

    /* ── ANIMATIONS ── */
    @keyframes fadeInUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
    .anim { animation: fadeInUp 0.7s ease both; }
    .anim-d1 { animation-delay: 0.1s; }
    .anim-d2 { animation-delay: 0.2s; }
    .anim-d3 { animation-delay: 0.3s; }
    .anim-d4 { animation-delay: 0.4s; }

    /* ── RESPONSIVE ── */
    img, svg, video { max-width: 100%; height: auto; }

    @media (min-width: 1181px) {
      .hamburger { display: none; }
      .mobile-nav { display: none !important; }
    }

    @media (max-width: 1180px) {
      .nav-links, .nav-btn { display: none !important; }
      .hamburger { display: flex; }
      .mega-menu { display: none !important; }
      .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
      .hero-inner .hero-right { display: none; }
      .page-body { grid-template-columns: 1fr; padding: 3rem 5%; gap: 2rem; }
      .sidebar { display: none; }
      .split-block { grid-template-columns: 1fr; gap: 1.5rem; }
      .compare-grid { grid-template-columns: 1fr; }
      .toc-bar { display: none; }
      .page-hero { min-height: auto; padding: 96px 5% 48px; }
      .page-hero p { max-width: 100%; }
    }

    @media (max-width: 768px) {
      nav { padding: 0 4%; height: 64px; }
      .nav-logo { font-size: 1.15rem; }
      .mobile-nav { top: 64px; max-height: calc(100vh - 64px); }
      .page-hero { padding: 88px 4% 40px; }
      .page-hero h1 { font-size: clamp(1.85rem, 8vw, 2.6rem); }
      .page-hero p { font-size: 0.92rem; margin-bottom: 1.5rem; }
      .hero-cta-row { flex-direction: column; align-items: stretch; }
      .hero-cta-row .btn-primary,
      .hero-cta-row .btn-outline-light {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1rem;
      }
      .page-body { padding: 2.5rem 4%; }
      .article-section { margin-bottom: 2.5rem; padding-bottom: 2.5rem; }
      .article-section h2 { font-size: clamp(1.45rem, 6vw, 2rem); }
      .article-section h3 { font-size: 1.1rem; }
      .info-row { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
      .info-card { padding: 1rem; }
      .info-card .ic-num { font-size: 1.5rem; }
      .treatment-grid { grid-template-columns: 1fr; gap: 1rem; }
      .treatment-card { padding: 1.25rem; }
      .steps .step { flex-direction: column; gap: 0.75rem; padding: 1rem; }
      .quote-block { padding: 1.2rem 1.25rem; }
      .breadcrumb { flex-wrap: wrap; font-size: 0.65rem; }
      .section-pad { padding: 3rem 4%; }
      footer { padding: 2.5rem 4%; }
      .footer-links { gap: 1rem 1.25rem; }
      .back-top { bottom: 1rem; right: 1rem; width: 40px; height: 40px; }
      .site-loader { gap: 1.5rem; padding: 1.5rem; }
      .loader-catwalk-frame { width: min(220px, 72vw); }
      .loader-runway-deck { width: min(240px, 78vw); }
      .home-hero { min-height: 60vh; }
    }

    @media (max-width: 480px) {
      nav { padding: 0 3.5%; }
      .nav-btn { display: none !important; }
      .page-hero { padding: 82px 3.5% 36px; }
      .hero-tag { font-size: 0.65rem; padding: 0.3rem 0.75rem; }
      .page-body { padding: 2rem 3.5%; }
      .info-row { grid-template-columns: 1fr; }
      .chip { font-size: 0.7rem; padding: 0.35rem 0.7rem; }
      .btn-primary, .btn-outline-light { font-size: 0.78rem; }
      .contact-form { max-width: 100%; }
      .contact-form input, .contact-form select, .contact-form textarea {
        width: 100%;
        font-size: 16px;
      }
      .footer-links { flex-direction: column; align-items: center; gap: 0.6rem; }
      .loader-title { font-size: 1.65rem; }
      .loader-sub { font-size: 0.75rem; padding: 0 0.5rem; }
      .loader-progress { width: min(200px, 85vw); }
    }

    @media (max-width: 360px) {
      .nav-logo { font-size: 1rem; }
      .page-hero h1 { font-size: 1.65rem; }
      .article-section p { font-size: 0.9rem; }
    }
  
    .section-pad { padding: 4rem 5%; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-pad h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 300; margin-bottom: 1rem; }
    .section-pad h2 em { font-style: italic; color: var(--teal); }
    .section-pad > .section-inner > p { color: #4a5568; line-height: 1.85; margin-bottom: 1.5rem; }
    .alt-bg { background: var(--light-bg); }
    .contact-form { display: grid; gap: 0.8rem; max-width: 480px; margin: 1.5rem auto 0; }
    .contact-form input, .contact-form select, .contact-form textarea {
      padding: 0.85rem 1rem; border: 1px solid rgba(13,27,42,0.12); border-radius: 4px; font-family: inherit; font-size: 0.9rem;
    }
    .contact-box { text-align: center; }
    .contact-meta { margin-top: 1.5rem; font-size: 0.85rem; color: var(--gray); }
    .home-hero { min-height: 70vh; }
    article.treatment-card h3 { margin: 0; }
    .section-pad .section-label {
      display: flex; align-items: center; gap: 0.6rem;
      font-size: 0.68rem; color: var(--teal);
      letter-spacing: 0.14em; text-transform: uppercase;
      margin-bottom: 0.7rem;
    }
    .section-pad .section-label::before { content: ''; width: 28px; height: 1px; background: var(--teal); }

    /* ── SITE LOADER (feminen / lüks estetik) ── */
    body.is-loading { overflow: hidden; }
    .site-loader {
      --loader-rose: #e8a0b0;
      --loader-blush: #ffd4e0;
      --loader-gold: #d4a88c;
      --loader-champagne: #f5e6d8;
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      padding: 2rem;
      transition: opacity 0.65s ease, visibility 0.65s ease;
    }
    .site-loader.is-hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .loader-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(232, 160, 176, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 15% 80%, rgba(212, 168, 140, 0.15) 0%, transparent 50%),
        linear-gradient(155deg, #1a0c12 0%, #2d1522 38%, #1f1018 72%, #120a0e 100%);
    }
    .loader-shine {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 0;
    }
    .loader-shine::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -60%;
      width: 45%;
      height: 200%;
      background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 214, 224, 0.04) 42%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 214, 224, 0.04) 58%,
        transparent 100%
      );
      transform: rotate(12deg);
      animation: loaderShine 4.5s ease-in-out infinite;
    }
    @keyframes loaderShine {
      0% { left: -60%; opacity: 0; }
      15% { opacity: 1; }
      50% { left: 120%; opacity: 1; }
      85% { opacity: 0; }
      100% { left: 120%; opacity: 0; }
    }
    .loader-sparkles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }
    .loader-sparkle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: var(--loader-champagne);
      border-radius: 50%;
      box-shadow: 0 0 8px 2px rgba(255, 214, 224, 0.6);
      animation: loaderSparkle 2.8s ease-in-out infinite;
    }
    .loader-sparkle:nth-child(1) { top: 18%; left: 22%; animation-delay: 0s; }
    .loader-sparkle:nth-child(2) { top: 28%; right: 18%; animation-delay: 0.4s; width: 3px; height: 3px; }
    .loader-sparkle:nth-child(3) { top: 55%; left: 12%; animation-delay: 0.9s; }
    .loader-sparkle:nth-child(4) { bottom: 32%; right: 24%; animation-delay: 1.2s; width: 5px; height: 5px; }
    .loader-sparkle:nth-child(5) { top: 42%; left: 48%; animation-delay: 0.6s; opacity: 0.7; }
    .loader-sparkle:nth-child(6) { bottom: 22%; left: 30%; animation-delay: 1.6s; }
    .loader-sparkle:nth-child(7) { top: 12%; right: 35%; animation-delay: 2s; width: 3px; height: 3px; }
    .loader-sparkle:nth-child(8) { bottom: 45%; right: 12%; animation-delay: 0.2s; }
    @keyframes loaderSparkle {
      0%, 100% { opacity: 0.15; transform: scale(0.6); }
      50% { opacity: 1; transform: scale(1.2); }
    }
    .loader-orbs {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .loader-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(70px);
      opacity: 0.45;
      animation: loaderOrb 9s ease-in-out infinite;
    }
    .loader-orb-1 {
      width: 300px; height: 300px;
      background: #c97888;
      top: -10%; right: -8%;
    }
    .loader-orb-2 {
      width: 240px; height: 240px;
      background: #d4a88c;
      bottom: 8%; left: -10%;
      animation-delay: -3s;
    }
    .loader-orb-3 {
      width: 180px; height: 180px;
      background: #ff9eb0;
      top: 38%; left: 32%;
      animation-delay: -5s;
      opacity: 0.25;
    }
    @keyframes loaderOrb {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(14px, -20px) scale(1.1); }
    }
    .loader-visual {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .loader-runway {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
    .loader-runway-spot {
      position: absolute;
      top: 5%;
      width: 120px;
      height: 70%;
      pointer-events: none;
      filter: blur(40px);
      opacity: 0.35;
      z-index: 0;
    }
    .loader-runway-spot-l {
      left: -40px;
      background: radial-gradient(ellipse, rgba(255, 214, 224, 0.5) 0%, transparent 70%);
      animation: runwaySpotL 3s ease-in-out infinite;
    }
    .loader-runway-spot-r {
      right: -40px;
      background: radial-gradient(ellipse, rgba(212, 168, 140, 0.45) 0%, transparent 70%);
      animation: runwaySpotR 3s ease-in-out infinite;
    }
    @keyframes runwaySpotL {
      0%, 100% { opacity: 0.25; }
      50% { opacity: 0.5; }
    }
    @keyframes runwaySpotR {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 0.25; }
    }
    .loader-catwalk-frame {
      position: relative;
      width: min(300px, 78vw);
      aspect-ratio: 9 / 16;
      border-radius: 14px;
      overflow: hidden;
      z-index: 2;
      border: 1px solid rgba(255, 214, 224, 0.35);
      box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 0 40px rgba(232, 160, 176, 0.2);
    }
    .loader-catwalk-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
      background: #1a0c12;
    }
    .loader-catwalk-shine {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        115deg,
        transparent 35%,
        rgba(255, 255, 255, 0.08) 48%,
        transparent 62%
      );
      animation: catwalkShine 2.8s ease-in-out infinite;
      pointer-events: none;
    }
    @keyframes catwalkShine {
      0%, 100% { opacity: 0.3; transform: translateX(-30%); }
      50% { opacity: 1; transform: translateX(30%); }
    }
    .loader-catwalk-vignette {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(26, 12, 18, 0.5) 0%, transparent 22%, transparent 72%, rgba(26, 12, 18, 0.75) 100%),
        linear-gradient(90deg, rgba(26, 12, 18, 0.45) 0%, transparent 18%, transparent 82%, rgba(26, 12, 18, 0.45) 100%);
      pointer-events: none;
    }
    .loader-runway-deck {
      position: relative;
      width: min(320px, 85vw);
      height: 28px;
      perspective: 200px;
      overflow: hidden;
      z-index: 1;
    }
    .loader-runway-line {
      position: absolute;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 214, 224, 0.55), transparent);
      transform-origin: center top;
    }
    .loader-runway-line:nth-child(1) {
      top: 4px;
      animation: runwayLine 1.1s linear infinite;
      opacity: 0.9;
    }
    .loader-runway-line:nth-child(2) {
      top: 12px;
      animation: runwayLine 1.1s linear infinite 0.15s;
      opacity: 0.6;
    }
    .loader-runway-line:nth-child(3) {
      top: 20px;
      animation: runwayLine 1.1s linear infinite 0.3s;
      opacity: 0.35;
    }
    @keyframes runwayLine {
      0% { transform: scaleX(0.3) translateY(0); opacity: 0; }
      40% { opacity: 1; }
      100% { transform: scaleX(1.2) translateY(8px); opacity: 0; }
    }
    .loader-brand {
      text-align: center;
      z-index: 1;
      animation: loaderFadeUp 1s ease 0.2s both;
    }
    .loader-tag {
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--loader-blush);
      margin-bottom: 0.6rem;
      text-shadow: 0 0 20px rgba(255, 180, 196, 0.4);
    }
    .loader-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.85rem, 5vw, 2.5rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.12;
      margin-bottom: 0.5rem;
      letter-spacing: 0.02em;
    }
    .loader-title span {
      color: var(--loader-blush);
      font-style: italic;
      font-weight: 400;
      text-shadow: 0 0 28px rgba(255, 180, 196, 0.45);
    }
    .loader-sub {
      font-size: 0.84rem;
      color: rgba(255, 214, 224, 0.55);
      letter-spacing: 0.06em;
      font-style: italic;
    }
    .loader-progress {
      width: min(240px, 65vw);
      height: 3px;
      background: rgba(255, 214, 224, 0.12);
      border-radius: 4px;
      overflow: hidden;
      z-index: 1;
      box-shadow: 0 0 12px rgba(232, 160, 176, 0.15);
    }
    .loader-progress-bar {
      display: block;
      height: 100%;
      width: 0;
      background: linear-gradient(90deg, #c97888, #ffd4e0, #d4a88c);
      border-radius: 4px;
      box-shadow: 0 0 14px rgba(255, 158, 176, 0.55);
      animation: loaderProgress 10s linear forwards;
    }
    @keyframes loaderProgress {
      0% { width: 0; }
      92% { width: 96%; }
      100% { width: 100%; }
    }
    @keyframes loaderFadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @media (prefers-reduced-motion: reduce) {
      .site-loader { transition-duration: 0.2s; }
      .loader-shine::after, .loader-orb, .loader-sparkle,
      .loader-runway-spot-l, .loader-runway-spot-r, .loader-catwalk-shine,
      .loader-runway-line, .loader-brand {
        animation: none !important;
      }
      .loader-catwalk-video { display: none; }
      .loader-catwalk-frame {
        background: url('../assets/loader/catwalk-poster.jpg') center / cover no-repeat;
      }
      .loader-progress-bar {
        animation: loaderProgress 0.8s linear forwards !important;
      }
      .loader-brand { opacity: 1; transform: none; }
    }
