    * { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --font-body: 'Instrument Sans', 'Segoe UI', sans-serif;
      --font-display: 'Marcellus', 'Georgia', serif;
      --nav-ink: #111111;
      --nav-accent: #f6b25f;
    }
    body {
      opacity: 0;
      transition: opacity 0.22s ease;
    }
    body.is-ready {
      opacity: 1;
    }
    @media (prefers-reduced-motion: reduce) {
      body { transition: none; }
    }
    #wrapper-navbar {
      background: transparent;
      position: sticky;
      top: 0;
      z-index: 1400;
      padding: 14px 16px 0;
      transition: transform 0.32s ease, opacity 0.32s ease;
      will-change: transform, opacity;
    }
    #wrapper-navbar.is-hidden {
      transform: translateY(-135%);
      opacity: 0;
      pointer-events: none;
    }
    .navbar {
      padding: 1rem 0;
      border-radius: 24px;
      position: relative;
      overflow: visible;
      border: 1px solid rgba(255, 255, 255, 0.48);
      background: rgba(255, 255, 255, 0.14);
      box-shadow: 0 18px 30px rgba(11, 13, 32, 0.22);
      backdrop-filter: blur(14px);
    }
    .navbar::before {
      content: '';
      position: absolute;
      inset: 1px;
      border-radius: 23px;
      pointer-events: none;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08) 40%, rgba(255, 255, 255, 0.2));
    }
    .navbar-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: clamp(0.55rem, 1.4vw, 1.2rem);
      position: relative;
      z-index: 1;
    }
    .navbar-menu {
      display: none;
      list-style: none;
      gap: 0.35rem;
      margin: 0;
      padding: 0;
      align-items: center;
      flex: 1;
    }
    .navbar-left { order: 1; justify-content: flex-end; padding-right: 0.35rem; }
    .navbar-right { order: 3; justify-content: flex-start; padding-left: 0.35rem; }
    .navbar-logo { display: flex; align-items: center; order: 2; margin: 0 clamp(0.15rem, 0.9vw, 0.7rem); flex-shrink: 0; }
    .navbar-logo img {
      height: 68px;
      width: auto;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.45);
      box-shadow: 0 8px 22px rgba(11, 13, 32, 0.38), 0 0 0 3px rgba(255, 255, 255, 0.07);
      transition: all 0.3s;
    }
    .navbar-logo img:hover {
      transform: translateY(-2px) scale(1.01);
      box-shadow: 0 12px 26px rgba(11, 13, 32, 0.5), 0 0 0 3px rgba(246, 178, 95, 0.17);
    }
    .nav-item { margin: 0; }
    .nav-dropdown { position: relative; }
    .nav-dropdown::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      height: 12px;
    }
    .nav-link {
      text-decoration: none;
      color: var(--nav-ink);
      font-weight: 600;
      font-size: 0.83rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: all 0.3s;
      padding: 0.65rem 1rem;
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      position: relative;
      border-radius: 999px;
      border: 1px solid transparent;
      background: transparent;
      cursor: pointer;
      font-family: inherit;
    }
    .nav-link-dropdown {
      box-shadow: none;
      appearance: none;
      -webkit-appearance: none;
    }
    .nav-link-dropdown:focus,
    .nav-link-dropdown:focus-visible {
      outline: none;
      box-shadow: none;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 50%;
      width: 24px;
      height: 2px;
      transform: translateX(-50%) scaleX(0);
      background: linear-gradient(90deg, #ffe3b5, var(--nav-accent));
      transition: transform 0.28s ease;
    }
    .nav-link:hover,
    .nav-link.active {
      color: #111111;
      border-color: rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.09);
    }
    .nav-link:hover::after,
    .nav-link.active::after {
      transform: translateX(-50%) scaleX(1);
    }
    .cart-link {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.2);
    }
    .nav-count {
      min-width: 20px;
      height: 20px;
      padding: 0 6px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      background: linear-gradient(135deg, #ffd9a6, var(--nav-accent));
      color: #24162f;
      box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.45);
    }
    .nav-caret {
      font-size: 0.72rem;
      line-height: 1;
      transform: translateY(1px);
      transition: transform 0.25s ease;
    }
    .nav-dropdown-menu {
      list-style: none;
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      min-width: 220px;
      margin: 0;
      padding: 0.4rem;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(17, 17, 17, 0.08);
      box-shadow: 0 14px 30px rgba(12, 16, 38, 0.18);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      pointer-events: none;
      transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
      z-index: 25;
    }
    .nav-dropdown-link {
      display: block;
      padding: 0.6rem 0.75rem;
      color: #1a2042;
      text-decoration: none;
      border-radius: 8px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: background-color 0.2s ease, color 0.2s ease;
    }
    .nav-dropdown-link:hover,
    .nav-dropdown-link:focus-visible,
    .nav-dropdown-link.active {
      background: rgba(246, 178, 95, 0.18);
      color: #111;
    }
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }
    .nav-dropdown:hover .nav-caret,
    .nav-dropdown:focus-within .nav-caret {
      transform: translateY(1px) rotate(180deg);
    }

    .navbar-toggler {
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(17, 17, 17, 0.22);
      border-radius: 11px;
      padding: 0.55rem;
      cursor: pointer;
      z-index: 1001;
      box-shadow: 0 10px 22px rgba(12, 18, 40, 0.12);
      transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }
    .navbar-toggler:focus-visible {
      outline: 2px solid rgba(246, 178, 95, 0.75);
      outline-offset: 4px;
    }
    .navbar-toggler-icon {
      width: 22px;
      height: 16px;
      display: inline-flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .toggler-line {
      width: 22px;
      height: 2px;
      background: #111;
      border-radius: 2px;
      transition: transform 0.28s ease, opacity 0.28s ease;
    }
    .navbar-toggler.is-open { background: rgba(255, 255, 255, 0.92); border-color: rgba(17, 17, 17, 0.3); box-shadow: 0 14px 28px rgba(12, 18, 40, 0.16); }
    .navbar-toggler.is-open .navbar-toggler-icon { position: relative; justify-content: center; }
    .navbar-toggler.is-open .toggler-line:nth-child(1), .navbar-toggler.is-open .toggler-line:nth-child(3) { position: absolute; left: 0; }
    .navbar-toggler.is-open .toggler-line:nth-child(1) { transform: rotate(45deg); }
    .navbar-toggler.is-open .toggler-line:nth-child(2) { opacity: 0; }
    .navbar-toggler.is-open .toggler-line:nth-child(3) { transform: rotate(-45deg); }

    .mobile-nav {
      display: block;
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      right: 0;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.84);
      backdrop-filter: blur(14px);
      box-shadow: 0 20px 40px rgba(10, 13, 31, 0.22);
      padding: 0.7rem;
      border: 1px solid rgba(255, 255, 255, 0.55);
      max-height: 0;
      opacity: 0;
      visibility: hidden;
      overflow: hidden;
      transform: translateY(-8px) scale(0.985);
      transform-origin: top center;
      pointer-events: none;
      transition: max-height 0.38s ease, opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    }
    .mobile-nav::before {
      content: "";
      position: absolute;
      inset: 1px;
      border-radius: 17px;
      pointer-events: none;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.14) 40%, rgba(255, 255, 255, 0.24));
    }
    .mobile-nav.is-open {
      max-height: 560px;
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }
    .mobile-nav .navbar-nav {
      list-style: none;
      padding: 0.2rem;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      position: relative;
      z-index: 1;
    }
    .mobile-nav .nav-link {
      color: #111;
      width: 100%;
      justify-content: space-between;
      padding: 0.85rem 1rem;
      border-radius: 12px;
      border: 1px solid rgba(17, 17, 17, 0.08);
      background: rgba(255, 255, 255, 0.55);
    }
    .mobile-nav .nav-link:hover,
    .mobile-nav .nav-link:focus-visible {
      background: rgba(246, 178, 95, 0.16);
      border-color: rgba(246, 178, 95, 0.3);
      color: #111;
    }
    .mobile-nav .nav-link.active {
      border-color: rgba(246, 178, 95, 0.35);
      background: rgba(246, 178, 95, 0.18);
      color: #111;
    }
    .mobile-nav .nav-link::after { display: none; }
    .mobile-nav .nav-dropdown::after { display: none; }
    .mobile-nav .nav-dropdown-menu {
      position: static;
      min-width: 100%;
      margin-top: 0.25rem;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(17, 17, 17, 0.08);
      box-shadow: none;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      max-height: 0;
      overflow: hidden;
      pointer-events: none;
      transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }
    .mobile-nav .nav-dropdown-menu.is-open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      max-height: 220px;
      pointer-events: auto;
    }
    .mobile-nav .nav-dropdown-link {
      color: #111;
      border-radius: 10px;
      font-size: 0.74rem;
    }
    .mobile-nav .nav-dropdown-link:hover,
    .mobile-nav .nav-dropdown-link:focus-visible,
    .mobile-nav .nav-dropdown-link.active {
      background: rgba(246, 178, 95, 0.18);
      color: #111;
    }

    @media (min-width: 1100px) {
      .navbar-menu { display: flex; }
      .navbar-toggler { display: none; }
    }
    body {
      font-family: var(--font-body);
      color: #1c2550;
      background: #ffffff;
      min-height: 100vh;
    }
    .navbar,
    .navbar-menu,
    .nav-link,
    .nav-link-dropdown,
    .nav-dropdown-link,
    .mobile-nav {
      font-family: var(--font-body);
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

.contact-section {
      padding: 48px 20px 72px;
      background: #ffffff;
      min-height: 100vh;
      min-height: 100svh;
    }
    .contact-shell {
      max-width: 1140px;
      margin: 0 auto;
      display: grid;
      gap: 34px;
    }
    .contact-hero {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 28px;
      align-items: center;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(31, 40, 80, 0.1);
    }
    .contact-hero-copy {
      display: grid;
      gap: 14px;
      max-width: 520px;
      animation: hero-rise 0.8s ease both;
    }
    .contact-kicker {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #f6b25f;
      font-weight: 700;
      margin: 0;
    }
    .contact-hero-copy h1 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 2.9rem);
      color: #1f2850;
      margin: 0;
    }
    .contact-lede {
      color: #4f5d88;
      font-size: 1rem;
      line-height: 1.7;
      margin: 0;
    }
    .contact-hero-links {
      display: grid;
      gap: 8px;
      margin-top: 6px;
    }
    .contact-hero-links a {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #1f2850;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.98rem;
      line-height: 1.5;
      position: relative;
      width: fit-content;
    }
    .contact-icon,
    .detail-icon {
      width: 18px;
      height: 18px;
      color: #f6b25f;
      flex: 0 0 auto;
    }
    .contact-hero-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 100%;
      height: 2px;
      background: rgba(246, 178, 95, 0.55);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.2s ease;
    }
    .contact-hero-links a:hover::after,
    .contact-hero-links a:focus-visible::after {
      transform: scaleX(1);
    }
    .contact-hero-media img {
      width: 100%;
      height: clamp(220px, 28vw, 360px);
      object-fit: cover;
      display: block;
    }
    @keyframes hero-rise {
      from {
        opacity: 0;
        transform: translateY(16px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    @media (prefers-reduced-motion: reduce) {
      .contact-hero-copy {
        animation: none;
      }
      .contact-hero-links a::after {
        transition: none;
      }
    }
    .contact-grid {
      display: grid;
      grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
      gap: 36px;
      align-items: start;
    }
    .contact-details {
      padding: 0 28px 0 0;
      background: transparent;
      border-right: 1px solid rgba(31, 40, 80, 0.12);
    }
    .contact-details h2 {
      font-family: var(--font-display);
      font-size: 1.4rem;
      color: #1f2850;
      margin: 0 0 0.4rem;
    }
    .contact-note {
      margin: 0 0 1.4rem;
      color: #4f5d88;
      line-height: 1.6;
      font-size: 0.95rem;
      max-width: 38ch;
    }
    .detail-block {
      margin-bottom: 1.1rem;
      padding-bottom: 0.95rem;
      border-bottom: 1px solid rgba(31, 40, 80, 0.08);
    }
    .detail-block:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: 0;
    }
    .detail-label {
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #6a7397;
      font-weight: 800;
      margin-bottom: 0.28rem;
    }
    .detail-value,
    .detail-value a {
      color: #1f2850;
      text-decoration: none;
      font-size: 0.98rem;
      line-height: 1.6;
      font-weight: 600;
    }
    .detail-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .detail-value-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }
    .detail-value a:hover {
      text-decoration: underline;
      color: #283467;
    }
    .contact-form-wrap {
      padding: 0;
    }
    .contact-form-head {
      display: grid;
      gap: 6px;
      margin-bottom: 12px;
    }
    .contact-form-head h2 {
      font-family: var(--font-display);
      font-size: 1.4rem;
      color: #1f2850;
      margin: 0;
    }
    .contact-form-head p {
      margin: 0;
      color: #4f5d88;
      font-size: 0.95rem;
      line-height: 1.6;
      max-width: 48ch;
    }
    form {
      display: grid;
      gap: 14px;
      max-width: 100%;
    }
    .row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .field {
      display: grid;
      gap: 0.35rem;
    }
.field label {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5f6a94;
  font-weight: 700;
}
input, textarea {
      width: 100%;
      border: 1px solid #d4daf2;
      border-radius: 8px;
      padding: 12px 13px;
      font: inherit;
      color: #1f2850;
      background: #fcfdff;
      transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    }
    input[aria-invalid="true"],
    textarea[aria-invalid="true"] {
      border-color: #c53b56;
      box-shadow: 0 0 0 2px rgba(197, 59, 86, 0.12);
      background: #fffafb;
    }
    textarea { min-height: 140px; resize: vertical; }
    input:focus, textarea:focus {
      outline: none;
      border-color: rgba(246, 178, 95, 0.8);
      box-shadow: 0 0 0 3px rgba(246, 178, 95, 0.18);
      background: #ffffff;
    }
    .field-error {
      min-height: 1.05em;
      margin: 0;
      font-size: 0.76rem;
      color: #b02f45;
      line-height: 1.3;
    }
    .hidden-field {
      position: absolute !important;
      left: -9999px !important;
      opacity: 0 !important;
      pointer-events: none !important;
      height: 0 !important;
      width: 0 !important;
    }
    .actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start;
      margin-top: 4px;
    }
    .contact-section button, .contact-section .back {
      border: 0;
      text-decoration: none;
      cursor: pointer;
      border-radius: 10px;
      padding: 12px 22px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.78rem;
      font-weight: 700;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    }
    .contact-section button {
      color: #ffffff;
      background: var(--palette-orange, #E88020);
      box-shadow: 0 9px 18px rgba(232, 128, 32, 0.35);
    }
    .back {
      color: #28325b;
      background: #eef1ff;
    }
    .back:hover {
      background: #e6ebff;
    }
    .contact-section button:hover, .contact-section .back:hover { transform: translateY(-2px); }
    .status {
      margin-top: 8px;
      font-size: 0.92rem;
      min-height: 1.4em;
      font-weight: 600;
    }
    .status.success { color: #237942; }
    .status.error { color: #b02f45; }

    .map-wrap {
      border-top: 1px solid rgba(31, 40, 80, 0.12);
      padding-top: 24px;
      margin-top: 36px;
    }
    .map-wrap iframe {
      width: 100%;
      height: 360px;
      border: 0;
      display: block;
    }

    .footer {
      background:
        linear-gradient(135deg, rgba(85, 51, 255, 0.18), rgba(85, 51, 255, 0.08)),
        image-set(
          url('/images/footer-960.avif') type('image/avif') 1x,
          url('/images/footer.avif') type('image/avif') 2x,
          url('/images/footer-960.webp') type('image/webp') 1x,
          url('/images/footer.webp') type('image/webp') 2x
        );
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color: #fff;
      padding: 2.2rem 20px 0.9rem;
      font-family: var(--font-body);
    }
    .footer-content {
      display: flex;
      justify-content: center;
      gap: 1.2rem;
      margin-bottom: 1.4rem;
      text-align: center;
    }
    .footer-col h4 {
      margin-bottom: 0.8rem;
      color: #ffffff;
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 700;
    }
    .footer-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-col ul li {
      margin-bottom: 0.4rem;
    }
    .footer-col a {
      color: #fff;
      text-decoration: none;
      transition: color 0.3s;
      font-size: 0.88rem;
      letter-spacing: 0.03em;
    }
    .footer-col a:hover {
      color: #ffd8a6;
    }
    .footer-social-link {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      margin-top: 0.6rem;
      padding: 0.45rem 0.7rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
    }
    .footer-social-link svg {
      width: 15px;
      height: 15px;
      fill: currentColor;
    }
    .footer-bottom {
      text-align: center;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(255,255,255,0.22);
      font-size: 0.82rem;
      letter-spacing: 0.02em;
    }

    @media (max-width: 1040px) {
      .contact-hero {
        grid-template-columns: 1fr;
      }
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .contact-details {
        border-right: none;
        border-bottom: 1px solid rgba(31, 40, 80, 0.1);
        padding: 0 0 16px;
      }
      .contact-form-wrap {
        padding: 0;
      }
    }

    @media (max-width: 680px) {
      .contact-section {
        padding: 28px 16px 42px;
      }
      .contact-hero {
        padding-bottom: 20px;
      }
      .contact-hero-copy {
        max-width: 100%;
      }
      .contact-details,
      .contact-form-wrap {
        padding-left: 0;
        padding-right: 0;
      }
      .row {
        grid-template-columns: 1fr;
      }
      .actions {
        justify-content: center;
      }
      .map-wrap iframe {
        height: 300px;
      }
      .contact-hero-media img {
        height: 220px;
      }
    }

    @media (max-width: 520px) {
      .actions {
        flex-direction: column;
        align-items: stretch;
      }
      .contact-section button,
      .contact-section .back {
        width: 100%;
        justify-content: center;
        text-align: center;
      }
    }
