:root {
      --bg: #e7e3dd;
      --paper: #fffdf8;
      --ink: #4c4644;
      --heading: #4b4543;
      --muted: #7c746e;
      --accent: #8a8178;
      --warm: #b2a28e;
      --line: rgba(138, 129, 120, .28);
      --header-h: 92px;
      --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
      --sans: "Open Sans", Arial, Helvetica, sans-serif;
      --ui: Raleway, Arial, Helvetica, sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--ink);
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.8;
    }
    body.menu-open,
    body.logo-open { overflow: hidden; }
    body.menu-open:not(.logo-open) { overflow: auto; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; }
    section { scroll-margin-top: calc(var(--header-h) + 22px); }

    .site-header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 50;
      height: var(--header-h);
      background: transparent;
      border-bottom: 1px solid transparent;
      backdrop-filter: none;
      transition: background .28s ease, border-color .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
    }

    .site-header.is-scrolled {
      background: rgba(255, 253, 248, .82);
      border-bottom-color: rgba(138, 129, 120, .22);
      box-shadow: 0 6px 18px rgba(75, 69, 67, .035);
      backdrop-filter: blur(6px);
    }

    .header-inner {
      width: min(100% - 48px, 1640px);
      height: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0;
      min-width: 0;
    }

    .logo-button {
      width: 104px;
      height: 70px;
      border: 0;
      border-radius: 8px;
      background: rgba(255, 253, 248, .9);
      color: var(--heading);
      cursor: pointer;
      display: grid;
      place-items: center;
      box-shadow: 0 2px 14px rgba(75, 69, 67, .06);
    }

    .logo-mark {
      width: 78px;
      height: 46px;
      position: relative;
      display: grid;
      place-items: center;
      font-family: var(--ui);
      color: var(--heading);
      font-size: 10px;
      letter-spacing: .12em;
      line-height: 1.1;
      text-align: center;
    }

    .logo-mark::before,
    .logo-mark::after {
      content: "";
      position: absolute;
      inset: 2px 0;
      border: 2px solid var(--accent);
      border-left-color: transparent;
      border-right-color: transparent;
      border-radius: 50%;
      opacity: .95;
    }

    .logo-mark::before { clip-path: inset(0 50% 0 0); }
    .logo-mark::after { clip-path: inset(0 0 0 50%); }

    .brand-text {
      color: var(--heading);
      font-family: var(--serif);
      font-size: clamp(1.12rem, 1.25vw, 1.42rem);
      line-height: 1.16;
      white-space: nowrap;
    }

    .brand-text em {
      color: var(--warm);
      font-style: italic;
    }

    .site-nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: clamp(18px, 2vw, 34px);
      color: var(--heading);
      font-family: var(--ui);
      font-size: clamp(.84rem, .88vw, .96rem);
      letter-spacing: .02em;
      line-height: 1.35;
    }

    .nav-item { position: relative; }

    .nav-item::after {
      content: "";
      position: absolute;
      left: -18px;
      right: -18px;
      top: 100%;
      height: 18px;
      display: none;
    }

    .nav-item:hover::after,
    .nav-item:focus-within::after,
    .nav-item.is-open::after { display: block; }

    .nav-link,
    .dropdown-toggle {
      border: 0;
      background: transparent;
      padding: 12px 0;
      color: var(--heading);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .nav-link:hover,
    .dropdown-toggle:hover { color: var(--warm); }

    .chevron {
      width: 8px;
      height: 8px;
      border-right: 1px solid currentColor;
      border-bottom: 1px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
    }

    .dropdown {
      position: absolute;
      top: calc(100% + 1px);
      left: 50%;
      z-index: 60;
      min-width: 250px;
      max-width: min(420px, 90vw);
      transform: translateX(-50%) translateY(8px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      background: rgba(255, 253, 248, .98);
      border: 1px solid var(--line);
      box-shadow: 0 20px 45px rgba(75, 69, 67, .1);
      padding: 12px;
      transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    }

    .nav-item:hover .dropdown,
    .nav-item:focus-within .dropdown,
    .nav-item.is-open .dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    .dropdown a {
      display: block;
      padding: 10px 12px;
      color: var(--heading);
      border-bottom: 1px solid rgba(138, 129, 120, .14);
      line-height: 1.45;
    }

    .dropdown a:last-child { border-bottom: 0; }

    .dropdown a:hover {
      color: var(--warm);
      background: rgba(178, 162, 142, .08);
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
    }

    .menu-button {
      display: none;
      width: 46px;
      height: 46px;
      border: 0;
      background: transparent;
      color: var(--heading);
      cursor: pointer;
      position: relative;
    }

    .menu-button span,
    .menu-button::before,
    .menu-button::after {
      content: "";
      position: absolute;
      left: 10px;
      right: 10px;
      height: 2px;
      background: currentColor;
      transition: transform .2s ease, opacity .2s ease;
    }

    .menu-button::before { top: 14px; }
    .menu-button span { top: 22px; }
    .menu-button::after { top: 30px; }
    .menu-open .menu-button::before { transform: translateY(8px) rotate(45deg); }
    .menu-open .menu-button span { opacity: 0; }
    .menu-open .menu-button::after { transform: translateY(-8px) rotate(-45deg); }
    .hero {
      background-image:
        linear-gradient(rgba(248,244,238,0.35), rgba(248,244,238,0.35));
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 100vh;
    }

    .hero-inner {
      width: min(100% - 48px, 1640px);
      margin: 0 auto;
      min-height: 100svh;
      display: grid;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-copy {
      width: min(690px, 100%);
      padding: calc(var(--header-h) + 64px) 0 86px;
    }

    .hero h1 {
      color: var(--heading);
      font-size: clamp(2.55rem, 3.65vw, 4.35rem);
    }
    .hero .hero-subtitle { color: var(--ink); }
    .hero .text-link { color: var(--heading); }
    .hero .eyebrow { color: var(--warm); }

    .eyebrow,
    .section-kicker {
      margin: 0 0 28px;
      color: var(--warm);
      font-family: var(--ui);
      font-size: .76rem;
      letter-spacing: .16em;
      line-height: 1.55;
      text-transform: uppercase;
      font-weight: 500;
    }

    h1, h2, h3 {
      color: var(--heading);
      font-family: var(--serif);
      font-weight: 600;
      line-height: 1.18;
      margin: 0;
    }

    h1 { font-size: clamp(2.85rem, 4.55vw, 5.35rem); }
    h2 { font-size: clamp(2.02rem, 3.15vw, 3.85rem); }
    h3 { font-size: clamp(1.34rem, 1.65vw, 1.9rem); }

    .rule {
      border: 0;
      width: 88px;
      height: 1px;
      background: var(--warm);
      margin: 34px 0 40px;
    }

    .hero-subtitle {
      font-size: clamp(1.08rem, 1.22vw, 1.28rem);
      line-height: 1.78;
      max-width: 660px;
      margin: 0 0 48px;
      color: var(--ink);
    }

    .text-link {
      display: inline-block;
      color: var(--heading);
      text-transform: uppercase;
      font-family: var(--ui);
      font-size: .76rem;
      letter-spacing: .15em;
      font-weight: 500;
      border-bottom: 1px solid var(--warm);
      padding-bottom: 12px;
    }

    .section {
      padding: clamp(76px, 9vw, 148px) 0;
      border-top: 1px solid rgba(138, 129, 120, .18);
    }

    #pristup-radu {
      padding-top: clamp(42px, 5vw, 78px);
    }

    .container { width: min(100% - 48px, 1340px); margin: 0 auto; }
    .narrow { width: min(100% - 48px, 960px); margin: 0 auto; }

    .prose { max-width: 72ch; }

    .prose p {
      margin: 0 0 30px;
      font-size: clamp(1rem, 1.04vw, 1.08rem);
      line-height: 1.9;
    }

    .leitmotif {
      display: block;
      max-width: 66ch;
      margin: 26px 0 40px;
      color: var(--accent);
      font-size: clamp(.84rem, .9vw, .92rem);
      letter-spacing: .04em;
      line-height: 1.95;
      text-transform: none;
      font-style: italic;
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
      gap: clamp(42px, 6vw, 96px);
      align-items: start;
    }

    .image-stack { display: grid; gap: 34px; }

    .photo-placeholder {
      border: 1px solid var(--line);
      background:
        linear-gradient(135deg, rgba(255,253,248,.88), rgba(178,162,142,.1)),
        repeating-linear-gradient(135deg, transparent, transparent 18px, rgba(138,129,120,.04) 18px, rgba(138,129,120,.04) 19px);
      min-height: 310px;
      display: grid;
      place-items: center;
      padding: 26px;
    }

    .photo-placeholder span {
      color: var(--muted);
      text-transform: uppercase;
      font-family: var(--ui);
      letter-spacing: .18em;
      font-size: .76rem;
      text-align: center;
    }

    .quote-band {
      background: #4b4543;
      color: var(--paper);
      padding: clamp(64px, 8vw, 120px) 0;
    }

    .quote-band h2,
    .quote-band p { color: var(--paper); }
    .quote-band .section-kicker { color: #c7b8a6; }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
      margin-top: 64px;
    }

    .service-card {
      min-height: 285px;
      padding: clamp(28px, 3vw, 44px);
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(255, 253, 248, .2);
    }

    .service-card .num {
      display: block;
      color: var(--warm);
      font-family: var(--ui);
      font-size: .74rem;
      letter-spacing: .1em;
      margin-bottom: 30px;
    }

    .service-card p {
      margin: 18px 0 0;
      font-size: .96rem;
      line-height: 1.84;
    }

    .service-card .service-link {
      display: inline-block;
      margin-top: 18px;
      color: var(--accent);
      font-family: var(--ui);
      font-size: .78rem;
      letter-spacing: .04em;
    }

    .service-card .service-link:hover {
      color: var(--heading);
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .faq-list { display: grid; gap: 18px; margin-top: 44px; }

    details {
      border-top: 1px solid var(--line);
      padding: 24px 0;
    }

    details:last-child { border-bottom: 1px solid var(--line); }

    summary {
      cursor: pointer;
      color: var(--heading);
      font-family: var(--serif);
      font-size: clamp(1.22rem, 1.4vw, 1.58rem);
      font-weight: 300;
      line-height: 1.38;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    summary::-webkit-details-marker { display: none; }

    summary::after {
      content: "";
      width: 9px;
      height: 9px;
      flex: 0 0 auto;
      border-right: 1px solid currentColor;
      border-bottom: 1px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      transition: transform .2s ease;
    }

    details[open] summary::after {
      transform: rotate(225deg) translateY(-2px);
    }

    details p {
      margin: 20px 0 0;
      max-width: 72ch;
      font-size: clamp(1rem, 1.04vw, 1.08rem);
      line-height: 1.88;
    }

    .reviews-list {
      width: min(100% - 48px, 1340px);
      margin: 56px auto 0;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      grid-auto-rows: 1fr;
      gap: clamp(24px, 2.3vw, 32px);
    }

    .review-card {
      min-height: 430px;
      padding: clamp(24px, 2.3vw, 34px);
      border: 1px solid rgba(138, 129, 120, .22);
      border-radius: 16px;
      background: rgba(255, 253, 248, .9);
      box-shadow: 0 18px 42px rgba(75, 69, 67, .075);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .review-card h3 {
      margin: 0 0 16px;
      color: var(--heading);
      font-family: var(--ui);
      font-size: clamp(.98rem, 1.1vw, 1.1rem);
      letter-spacing: .04em;
      line-height: 1.35;
      text-transform: uppercase;
    }

    .review-card blockquote {
      margin: 0;
      color: var(--ink);
      font-size: clamp(.98rem, 1vw, 1.04rem);
      line-height: 1.78;
    }

    .review-author {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: .95rem;
      line-height: 1.5;
    }

    .review-author::before {
      content: "";
      display: block;
      width: 44px;
      height: 1px;
      margin-top: 0;
      margin-bottom: 14px;
      background: var(--line);
    }

    .reviews-google-link {
      margin-top: 28px;
      text-align: center;
    }

    .reviews-google-link p {
      margin: 0 0 12px;
      color: var(--accent);
      font-size: .96rem;
    }

    .google-review-mark {
      display: inline-block;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0;
      line-height: 1;
    }

    .google-review-mark:hover {
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .google-blue { color: #4285f4; }
    .google-red { color: #ea4335; }
    .google-yellow { color: #fbbc05; }
    .google-green { color: #34a853; }

    .published-work {
      margin: 0 0 14px;
      color: var(--ink);
    }

    .published-work a {
      color: var(--accent);
      font-family: var(--ui);
      font-size: .82rem;
      letter-spacing: .04em;
    }

    .published-work a:hover {
      color: var(--heading);
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
      gap: clamp(38px, 6vw, 88px);
      align-items: start;
    }

    .contact-list {
      display: grid;
      gap: 20px;
      margin-top: 42px;
    }

    .contact-intro {
      max-width: 58ch;
      margin: 18px 0 0;
      font-size: clamp(1rem, 1.04vw, 1.08rem);
      line-height: 1.86;
    }

    .contact-row {
      border-top: 1px solid var(--line);
      padding-top: 18px;
      line-height: 1.7;
    }

    .contact-row small {
      display: block;
      color: var(--warm);
      font-family: var(--ui);
      font-size: .73rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 5px;
    }

    .whatsapp-icon {
      width: 28px;
      height: 28px;
      margin-right: 8px;
      color: #25d366;
      vertical-align: middle;
    }

    .contact-row .whatsapp-icon {
      display: inline-block;
      width: 28px;
      min-width: 28px;
      max-width: 28px;
      height: 28px;
      min-height: 28px;
      max-height: 28px;
      flex: 0 0 28px;
    }

    .appointment-box {
      border: 1px solid var(--line);
      background: rgba(255,253,248,.34);
      padding: clamp(30px, 4vw, 52px);
    }

    .appointment-box p {
      font-size: clamp(1rem, 1.04vw, 1.08rem);
      line-height: 1.88;
    }

    .online-consultations {
      margin-top: 28px;
      padding-top: 28px;
      border-top: 1px solid var(--line);
    }

    .online-consultations h4 {
      margin: 0 0 18px;
      color: var(--heading);
      font-family: var(--serif);
      font-size: clamp(1.18rem, 1.28vw, 1.44rem);
      font-weight: 300;
      line-height: 1.25;
    }

    .site-footer {
      padding: 30px 0 44px;
      color: var(--muted);
      border-top: 1px solid var(--line);
      font-size: .88rem;
      line-height: 1.6;
    }

    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 22px;
      margin: 0 0 14px;
      font-family: var(--ui);
      font-size: .9rem;
      letter-spacing: .02em;
      text-transform: none;
    }

    .footer-copy {
      display: block;
      font-size: .72rem;
      line-height: 1.5;
    }

    .footer-nav a:hover {
      color: var(--heading);
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .site-note {
      padding: 34px 0;
      color: var(--muted);
      border-top: 1px solid var(--line);
      font-size: .86rem;
      line-height: 1.7;
    }

    .site-note h2 {
      margin: 0 0 10px;
      font-family: var(--ui);
      font-size: .86rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .site-note p {
      max-width: 82ch;
      margin: 0;
    }

    .logo-modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 28px;
      background: rgba(40, 38, 34, .5);
    }

    .logo-modal.is-open { display: flex; }

    .logo-modal-content {
      width: min(760px, 94vw);
      background: var(--paper);
      padding: clamp(34px, 7vw, 86px);
      position: relative;
      box-shadow: 0 30px 80px rgba(40, 38, 34, .2);
    }

    .logo-modal .logo-mark {
      width: min(560px, 76vw);
      height: 250px;
      font-size: clamp(1rem, 2vw, 1.4rem);
    }

    .logo-modal .logo-mark strong {
      display: block;
      font-size: clamp(2.5rem, 9vw, 6.6rem);
      font-weight: 400;
      letter-spacing: 0;
    }

    .logo-modal-close {
      position: absolute;
      right: 10px;
      top: 8px;
      border: 0;
      background: transparent;
      font-size: 2rem;
      color: var(--heading);
      cursor: pointer;
    }

    @media (min-width: 1025px) {
      .hero-inner {
        grid-template-columns: minmax(420px, .44fr) minmax(420px, .56fr);
        align-items: center;
      }

      .hero-copy {
        width: min(620px, 100%);
        padding: calc(var(--header-h) + clamp(48px, 7vh, 78px)) 0 clamp(58px, 8vh, 92px);
      }
    }

    @media (min-width: 1025px) and (max-height: 820px) {
      .hero-copy {
        padding: 42px 0 54px;
      }

      .rule {
        margin-top: 28px;
        margin-bottom: 32px;
      }

      .hero-subtitle {
        margin-bottom: 36px;
      }
    }

    @media (max-width: 1180px) {
      :root { --header-h: 86px; }
      .reviews-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

      .split,
      .contact-grid { grid-template-columns: 1fr; }
      .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 720px) {
      :root { --header-h: 82px; }
      .header-inner,
      .hero-inner,
      .container,
      .narrow { width: min(100% - 42px, 100%); }
      .brand { min-width: 0; gap: 12px; }
      .brand-text { font-size: .98rem; }
      .logo-button { width: 70px; height: 52px; }
      .logo-mark { width: 54px; height: 32px; font-size: 7px; }

      .hero {
        background-image: linear-gradient(rgba(255, 253, 248, .68), rgba(255, 253, 248, .68)) !important;
        background-position: center top !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
      }

      .hero::before,
      .hero::after {
        content: none !important;
        display: none !important;
        background-image: none !important;
      }

      .hero-copy { padding: calc(var(--header-h) + 38px) 0 64px; }
      h1 { font-size: clamp(2.48rem, 10vw, 3.55rem); }
      h2 { font-size: clamp(1.82rem, 7vw, 2.72rem); }
      h3 { font-size: clamp(1.26rem, 4.8vw, 1.56rem); }
      .hero-subtitle { font-size: 1.04rem; line-height: 1.82; }
      .eyebrow,
      .section-kicker {
        margin-bottom: 22px;
        letter-spacing: .14em;
      }
      .rule { margin: 30px 0 34px; }
      .prose p {
        margin-bottom: 28px;
        line-height: 1.86;
      }
      .section { padding: 74px 0; }
      .service-grid { grid-template-columns: 1fr; }
      .reviews-list {
        width: min(100% - 28px, 100%);
        margin-top: 42px;
        grid-template-columns: 1fr;
      }

      .review-card {
        min-height: 430px;
      }
      .footer-nav {
        flex-wrap: nowrap;
        gap: 8px;
        font-size: .76rem;
        letter-spacing: 0;
      }
      .footer-copy { font-size: .64rem; }
      .service-card { min-height: 0; }
      .photo-placeholder { min-height: 235px; }
    }

    @media (max-width: 430px) {
      .header-inner { gap: 10px; }
      .brand { gap: 10px; }
      .brand-text { font-size: .88rem; }
      .logo-button { width: 58px; height: 46px; }
      .logo-mark { width: 44px; height: 27px; font-size: 6px; }
      .site-nav { padding: 20px 24px 48px; }
      .nav-link,
      .dropdown-toggle {
        padding: 13px 0;
        font-size: .9rem;
      }
      .dropdown a {
        padding: 8px 12px;
        font-size: .86rem;
      }
      h1 { font-size: clamp(2.24rem, 10.5vw, 3.05rem); }
      h2 { font-size: clamp(1.72rem, 7.5vw, 2.42rem); }
      .hero-subtitle { font-size: 1rem; }
      .footer-nav { font-size: .7rem; gap: 6px; }
      .footer-copy { font-size: .58rem; }
    }

    @media (max-width: 360px) {
      .brand-text { font-size: .8rem; }
      .brand { gap: 8px; }
      .logo-button { width: 52px; height: 42px; }
      .logo-mark { width: 40px; height: 24px; font-size: 5.5px; }
    }

    @media (max-width: 900px) {
      html,
      body {
        max-width: 100%;
        overflow-x: hidden;
      }

      body.menu-open:not(.logo-open) {
        overflow: hidden;
      }

      .site-header .brand {
        min-width: 0;
        flex: 1 1 auto;
      }

      .site-header .brand-text {
        display: inline-block;
        min-width: 0;
        white-space: nowrap;
        font-size: 1.02rem;
      }

      .site-header .logo-button,
      .site-header .menu-button {
        flex: 0 0 auto;
      }

      .site-header .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 60;
        display: none !important;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        width: 100%;
        box-sizing: border-box;
        background: rgba(231, 227, 221, .98);
        padding: 16px 24px 22px;
        overflow: visible;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateY(-8px);
        transition: transform .25s ease, opacity .2s ease, visibility .2s ease;
      }

      .site-header .menu-button {
        display: flex !important;
        align-items: center;
        justify-content: center;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        z-index: 70;
      }

      body.menu-open .site-header .site-nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0);
      }

      .site-header .site-nav > .nav-link,
      .site-header .site-nav > .nav-item {
        display: block;
        width: 100%;
      }

      .site-header .nav-link,
      .site-header .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 10px 0;
        font-size: .9rem;
        line-height: 1.25;
        text-align: left;
      }

      .site-header .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border: 0;
        box-shadow: none;
        background: transparent;
        transition: max-height .25s ease;
      }

      .site-header .nav-item::after { display: none !important; }

      .site-header .nav-item:hover .dropdown,
      .site-header .nav-item:focus-within .dropdown {
        max-height: 0;
        padding: 0;
        transform: none;
      }

      .site-header .nav-item.is-open .dropdown {
        max-height: none;
        overflow: visible;
        padding: 2px 0 8px;
        transform: none;
      }

      .site-header .dropdown a {
        width: 100%;
        padding: 6px 12px;
        font-size: .84rem;
        line-height: 1.28;
        white-space: normal;
      }
    }

    @media (max-width: 900px) {
      body:not(.menu-open) .site-header nav.site-nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
      }

      body.menu-open .site-header nav.site-nav {
        display: flex !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        overflow: visible !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
      }

      .site-header nav.site-nav > a.nav-link,
      .site-header nav.site-nav > .nav-item {
        display: block !important;
        width: 100% !important;
      }

      .site-header .menu-button {
        display: flex !important;
      }

      body.menu-open .site-header .nav-item.is-open .dropdown {
        max-height: none !important;
        overflow: visible !important;
      }
    }

    @media (max-width: 900px) {
      .site-header {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: 0 !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible;
        transform: none !important;
        visibility: visible !important;
        opacity: 1 !important;
      }

      .site-header .header-inner {
        width: 100%;
        max-width: 100%;
        padding-inline: 21px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        overflow: visible;
      }

      .site-header .brand {
        flex: 1 1 0;
        max-width: calc(100% - 56px);
        min-width: 0;
        overflow: hidden;
      }

      .site-header .brand-text {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .site-header .menu-button {
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex: 0 0 46px;
        width: 46px;
        height: 46px;
        margin-left: auto;
        color: var(--heading);
        position: relative;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        z-index: 70;
      }

      .site-header .site-nav,
      body.menu-open .site-header nav.site-nav {
        left: 0 !important;
        right: 0 !important;
        width: auto !important;
        max-width: 100% !important;
        box-sizing: border-box;
        overflow-x: hidden !important;
      }
    }

    @media (max-width: 900px) {
      .site-header:not(.is-scrolled) {
        background: transparent;
        border-bottom-color: transparent;
        box-shadow: none;
        backdrop-filter: none;
      }

      .site-header.is-scrolled {
        background: rgba(255, 253, 248, .82);
        border-bottom-color: rgba(138, 129, 120, .22);
      }

      .site-header .header-inner {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .site-header .brand {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 58px);
      }

      .site-header .brand-text {
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .site-header .menu-button {
        flex: 0 0 46px;
        min-width: 46px;
        max-width: 46px;
      }

      body.menu-open .site-header nav.site-nav {
        max-height: calc(100svh - var(--header-h));
        overflow-y: auto !important;
      }
    }

    @media (min-width: 901px) {
      .site-header .site-nav {
        position: static !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: clamp(18px, 2vw, 34px) !important;
        width: auto !important;
        padding: 0 !important;
        overflow: visible !important;
        background: transparent !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
      }

      .site-header .site-nav > .nav-link,
      .site-header .site-nav > .nav-item {
        display: inline-flex !important;
        width: auto !important;
      }

      .site-header .nav-item {
        position: relative;
        align-items: center;
      }

      .site-header .nav-link,
      .site-header .dropdown-toggle {
        width: auto;
        justify-content: flex-start;
        padding: 12px 0;
        text-align: left;
      }

      .site-header .dropdown {
        display: none !important;
        position: absolute !important;
        top: calc(100% + 1px) !important;
        left: 50% !important;
        z-index: 60;
        min-width: 250px;
        max-width: min(420px, 90vw);
        max-height: none !important;
        overflow: visible !important;
        transform: translateX(-50%) translateY(8px) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        padding: 12px;
        border: 1px solid var(--line);
        background: rgba(255, 253, 248, .98);
        box-shadow: 0 20px 45px rgba(75, 69, 67, .1);
      }

      .site-header .nav-item:hover .dropdown,
      .site-header .nav-item:focus-within .dropdown,
      .site-header .nav-item.is-open .dropdown {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateX(-50%) translateY(0) !important;
      }

      .site-header .menu-button {
        display: none !important;
      }
    }

    @media (max-width: 900px) {
      .site-header {
        position: fixed !important;
        display: block !important;
        inset: 0 0 auto 0 !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: var(--header-h) !important;
        min-height: var(--header-h) !important;
        z-index: 9999 !important;
        overflow: visible !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        clip-path: none !important;
      }

      .site-header .header-inner {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 18px !important;
        overflow: visible !important;
        transform: none !important;
      }

      .site-header .brand {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        max-width: calc(100% - 58px) !important;
        overflow: hidden !important;
      }

      .site-header .brand-text {
        display: block !important;
        max-width: 100% !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
      }

      .site-header .menu-button {
        position: relative !important;
        inset: auto !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 46px !important;
        width: 46px !important;
        min-width: 46px !important;
        max-width: 46px !important;
        height: 46px !important;
        min-height: 46px !important;
        max-height: 46px !important;
        margin: 0 0 0 auto !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        color: var(--heading) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        z-index: 10000 !important;
      }

      .site-header .menu-button span,
      .site-header .menu-button::before,
      .site-header .menu-button::after {
        display: block !important;
        position: absolute !important;
        left: 10px !important;
        right: 10px !important;
        width: auto !important;
        height: 2px !important;
        background: currentColor !important;
        opacity: 1 !important;
        visibility: visible !important;
        content: "" !important;
      }

      .site-header .menu-button::before { top: 14px !important; }
      .site-header .menu-button span { top: 22px !important; }
      .site-header .menu-button::after { top: 30px !important; }

      body.menu-open .site-header .menu-button span {
        opacity: 0 !important;
      }

      .site-header .site-nav {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        z-index: 9998 !important;
      }
    }
