   /* ========== RESET ========== */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    html { scroll-behavior: smooth; scroll-padding-top: 100px; }
    body {
      font-family: "Jost", system-ui, sans-serif;
      background-color: #f4f1ec;
      color: #0a0a0a;
      font-weight: 300;
      letter-spacing: 0.01em;
      line-height: 1.5;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    ul { list-style: none; }

    :root {
      --ink: #0a0a0a;
      --ink-soft: #1a1a1a;
      --bone: #f4f1ec;
      --bone-soft: #ebe6dd;
      --gold: #b89968;
      --gold-light: #c9a875;
      --graphite: #6b6b6b;
      --line: #e5e1d8;
      --heading: "Manrope", "Inter", system-ui, sans-serif;
    }

    /* ========== TYPOGRAPHY ========== */
    .font-heading {
      font-family: var(--heading);
      letter-spacing: -0.025em;
      font-weight: 500;
      font-feature-settings: "ss01", "cv11", "tnum";
    }
    .numeric {
      font-family: var(--heading);
      font-weight: 400;
      font-feature-settings: "lnum", "tnum";
    }
    .eyebrow {
      font-family: "Jost", sans-serif;
      font-size: 11px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--gold);
    }
    .hairline {
      display: inline-block;
      width: 48px;
      height: 1px;
      background: var(--gold);
      vertical-align: middle;
    }
    .hairline-v {
      display: inline-block;
      width: 1px;
      height: 32px;
      background: var(--gold);
    }

    /* ========== LAYOUT ========== */
    .container {
      max-width: 1480px;
      margin: 0 auto;
      padding: 0 24px;
    }
    @media (min-width: 768px) { .container { padding: 0 40px; } }

    /* ========== BUTTONS ========== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 18px 36px;
      font-size: 12px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      font-weight: 500;
      transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      border: 1px solid transparent;
      white-space: nowrap;
      font-family: inherit;
    }
    @media (max-width: 768px) { .btn { padding: 14px 24px; font-size: 11px; } }
    .btn svg { width: 16px; height: 16px; flex-shrink: 0; }
    .btn-primary { background: var(--ink); color: var(--bone); border-color: var(--ink); }
    .btn-primary:hover { background: transparent; color: var(--ink); }
    .btn-light { background: var(--bone); color: var(--ink); border-color: var(--bone); }
    .btn-light:hover { background: transparent; color: var(--ink); }
    .btn-ghost { background: transparent; color: var(--bone); border-color: rgba(244, 241, 236, 0.3); }
    .btn-ghost:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }
    .btn-block { width: 100%; justify-content: center; }
    @media (min-width: 640px) { .btn-block { width: auto; justify-content: flex-start; } }

    /* ========== HEADER ========== */
    .header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 50;
      padding: 24px 0;
      transition: all 0.5s ease;
      background: transparent;
    }
    .header.scrolled {
      background: rgba(244, 241, 236, 0.9);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 16px 0;
      border-bottom: 1px solid rgba(229, 225, 216, 0.6);
    }
    .header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
    .logo__mark {
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      background: var(--ink); color: var(--gold-light);
      font-family: var(--heading);
      font-size: 20px; font-weight: 600;
      border-radius: 2px;
      transition: background 0.5s;
    }
    .logo__text { display: flex; flex-direction: column; line-height: 1; }
    .logo__name {
      font-family: var(--heading);
      font-size: 20px; font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--bone);
      transition: color 0.5s;
    }
    .header.scrolled .logo__name { color: var(--ink); }
    .logo__sub {
      font-size: 9px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: rgba(244, 241, 236, 0.5);
      margin-top: 4px;
      transition: color 0.5s;
    }
    .header.scrolled .logo__sub { color: var(--graphite); }
    .nav { display: none; }
    @media (min-width: 1024px) {
      .nav { display: flex; align-items: center; gap: 40px; }
      .nav a {
        font-size: 12px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(244, 241, 236, 0.8);
        position: relative;
        transition: color 0.3s;
      }
      .nav a:hover { color: var(--bone); }
      .header.scrolled .nav a { color: rgba(10, 10, 10, 0.8); }
      .header.scrolled .nav a:hover { color: var(--ink); }
      .nav a::after {
        content: "";
        position: absolute;
        left: 0; bottom: -4px;
        width: 100%; height: 1px;
        background: currentColor;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .nav a:hover::after { transform: scaleX(1); transform-origin: left; }
    }
    .header__right { display: flex; align-items: center; gap: 16px; }
    .header__phone {
      display: none;
      align-items: center;
      gap: 12px;
      color: var(--bone);
      transition: color 0.5s;
    }
    .header.scrolled .header__phone { color: var(--ink); }
    .header__phone svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
    .header__phone span { font-size: 14px; font-weight: 500; letter-spacing: 0.02em; }
    @media (min-width: 768px) { .header__phone { display: flex; } }
    .burger {
      display: flex;
      width: 40px; height: 40px;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }
    @media (min-width: 1024px) { .burger { display: none; } }
    .burger span {
      display: block;
      width: 24px; height: 1px;
      background: var(--bone);
      transition: all 0.3s;
    }
    .header.scrolled .burger span { background: var(--ink); }
    .burger.active span:nth-child(1) { transform: rotate(45deg) translate(2px, 2px); }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(2px, -2px); }

    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 40;
      background: var(--ink);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s;
    }
    .mobile-menu.active { opacity: 1; pointer-events: auto; }
    .mobile-menu a {
      font-family: var(--heading);
      font-size: 28px;
      color: var(--bone);
      transition: color 0.3s;
    }
    .mobile-menu a:hover { color: var(--gold-light); }
    @media (min-width: 1024px) { .mobile-menu { display: none; } }
    .mobile-menu__phone {
      margin-top: 12px;
      color: var(--gold-light);
      letter-spacing: 0.1em;
      font-size: 14px;
    }

    /* ========== HERO ========== */
    .hero {
      position: relative;
      min-height: 100svh;
      width: 100%;
      overflow: hidden;
      background: var(--ink);
      color: var(--bone);
      display: flex;
      flex-direction: column;
    }
    .hero__bg { position: absolute; inset: 0; }
    .hero__bg img {
      width: 100%; height: 100%;
      object-fit: cover;
      animation: slowZoom 18s ease-out forwards;
    }
    .hero__bg::before {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.9) 100%);
    }
    .hero__bg::after {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(10,10,10,0.8) 0%, transparent 100%);
    }
    .hero__side-label {
      display: none;
      position: absolute;
      left: 0; top: 50%;
      transform: translateY(-50%) rotate(-90deg);
      transform-origin: left;
      z-index: 10;
      margin-left: 32px;
    }
    .hero__side-label span {
      font-size: 10px;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: rgba(244, 241, 236, 0.5);
      white-space: nowrap;
    }
    @media (min-width: 768px) { .hero__side-label { display: flex; } }
    .hero__content {
      position: relative; z-index: 10;
      flex: 1;
      display: flex;
      align-items: center;
      padding-top: 120px;
      padding-bottom: 40px;
    }
    @media (min-width: 768px) {
      .hero__content { padding-top: 140px; padding-bottom: 60px; }
    }
    .hero__eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
    }
    @media (min-width: 768px) { .hero__eyebrow { margin-bottom: 32px; gap: 16px; } }
    .hero__title {
      font-family: var(--heading);
      font-weight: 500;
      letter-spacing: -0.025em;
      font-size: 2.5rem;
      line-height: 1.05;
      max-width: 1000px;
    }
    @media (min-width: 640px) { .hero__title { font-size: 3rem; } }
    @media (min-width: 768px) { .hero__title { font-size: 3.75rem; } }
    @media (min-width: 1024px) { .hero__title { font-size: 5.25rem; line-height: 0.98; } }
    .hero__title-line { display: block; }
    .hero__title .accent { color: var(--gold-light); font-weight: 500; }
    .hero__title .sub {
      display: block;
      margin-top: 16px;
      color: rgba(244, 241, 236, 0.85);
      font-size: 1.125rem;
      font-weight: 300;
      letter-spacing: -0.01em;
      line-height: 1.3;
    }
    @media (min-width: 640px) { .hero__title .sub { font-size: 1.375rem; } }
    @media (min-width: 768px) { .hero__title .sub { font-size: 1.75rem; } }
    @media (min-width: 1024px) { .hero__title .sub { font-size: 2rem; } }
    .hero__desc {
      margin-top: 28px;
      max-width: 640px;
      color: rgba(244, 241, 236, 0.7);
      font-size: 0.9375rem;
      line-height: 1.6;
    }
    @media (min-width: 768px) {
      .hero__desc { margin-top: 40px; font-size: 1.0625rem; }
    }
    .hero__ctas {
      margin-top: 32px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    @media (min-width: 640px) {
      .hero__ctas { flex-direction: row; gap: 16px; margin-top: 48px; }
    }
    .hero__stats {
      position: relative; z-index: 10;
      border-top: 1px solid rgba(244, 241, 236, 0.15);
      padding-top: 24px;
      padding-bottom: 32px;
    }
    @media (min-width: 768px) { .hero__stats { padding-top: 32px; padding-bottom: 40px; } }
    .hero__stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px 24px;
      width: 100%;
    }
    @media (min-width: 640px) { .hero__stats-grid { grid-template-columns: repeat(4, 1fr); gap: 24px 40px; } }
    @media (min-width: 768px) { .hero__stats-grid { gap: 32px 48px; } }
    .hero__stat-value {
      font-family: var(--heading);
      font-weight: 500;
      font-size: 1.625rem;
      letter-spacing: -0.02em;
    }
    @media (min-width: 640px) { .hero__stat-value { font-size: 1.875rem; } }
    @media (min-width: 768px) { .hero__stat-value { font-size: 2.25rem; } }
    .hero__stat-label {
      font-size: 9px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: rgba(244, 241, 236, 0.5);
      margin-top: 4px;
    }
    @media (min-width: 640px) { .hero__stat-label { font-size: 10px; letter-spacing: 0.28em; } }

    /* ========== SECTIONS ========== */
    .section {
      position: relative;
      padding: 80px 0;
      overflow: hidden;
    }
    @media (min-width: 768px) { .section { padding: 110px 0; } }
    @media (min-width: 1024px) { .section { padding: 140px 0; } }
    .section--ink { background: var(--ink); color: var(--bone); }
    .section--bone-soft { background: var(--bone-soft); color: var(--ink); }
    .section--bone { background: var(--bone); color: var(--ink); }

    .section__label {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
    }
    .section__heading {
      font-family: var(--heading);
      font-weight: 500;
      letter-spacing: -0.025em;
      font-size: 2rem;
      line-height: 1.1;
    }
    @media (min-width: 768px) { .section__heading { font-size: 2.75rem; } }
    @media (min-width: 1024px) { .section__heading { font-size: 3.5rem; line-height: 1.05; } }
    .section__heading .accent-gold { color: var(--gold); }
    .section__heading .accent-gold-light { color: var(--gold-light); }
    .section__heading .muted { color: rgba(244, 241, 236, 0.8); }
    .section__subheading {
      margin-top: 16px;
      font-size: 0.875rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--graphite);
    }

    .accent-gold { color: var(--gold); font-weight: 500; }
    .accent-gold-light { color: var(--gold-light); font-weight: 500; }
    .text-soft { color: rgba(10, 10, 10, 0.8); }
    .text-bone-soft { color: rgba(244, 241, 236, 0.7); }
    .text-graphite { color: var(--graphite); }

    /* Section header layout */
    .section-head {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      margin-bottom: 60px;
    }
    @media (min-width: 1024px) {
      .section-head { grid-template-columns: 5fr 7fr; gap: 60px; margin-bottom: 80px; }
    }
    .section-head--roof { grid-template-columns: 1fr; }
    @media (min-width: 1024px) {
      .section-head--roof { grid-template-columns: 5fr 7fr; }
    }
    .section-head__right { padding-top: 0; }
    @media (min-width: 1024px) {
      .section-head__right { padding-top: 64px; }
      .section-head__right--lift { padding-top: 40px; }
      .section-head__right--slide { padding-top: 64px; }
    }
    .section-intro {
      font-size: 1.0625rem;
      line-height: 1.6;
    }
    @media (min-width: 768px) { .section-intro { font-size: 1.125rem; } }
    .section--ink .section-intro { color: rgba(244, 241, 236, 0.7); }
    .section--bone .section-intro,
    .section--bone-soft .section-intro { color: rgba(10, 10, 10, 0.8); }

    /* ========== FEATURES GRID ========== */
    .features {
      margin-top: 40px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
    }
    @media (min-width: 640px) { .features { grid-template-columns: 1fr 1fr; gap: 28px 32px; } }
    .feature { display: flex; gap: 16px; }
    .feature__num {
      font-family: var(--heading);
      font-weight: 400;
      color: var(--gold);
      font-size: 1.5rem;
      flex-shrink: 0;
      line-height: 1;
    }
    .feature__title {
      font-family: var(--heading);
      font-weight: 500;
      font-size: 1.0625rem;
      line-height: 1.3;
      margin-bottom: 6px;
    }
    .feature__desc {
      font-size: 0.9375rem;
      color: var(--graphite);
      line-height: 1.5;
    }

    /* ========== BENTO GALLERY ========== */
    .bento {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }
    @media (min-width: 768px) {
      .bento { grid-template-columns: repeat(12, 1fr); gap: 16px; }
    }
    .bento__item {
      position: relative;
      overflow: hidden;
      height: 280px;
      border-radius: 2px;
    }
    @media (min-width: 768px) {
      .bento__item { height: 320px; }
    }
    .bento__item img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .bento__item:hover img { transform: scale(1.06); }
    .bento__item::after {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,10,10,0.65) 0%, transparent 50%);
    }
    .bento__caption {
      position: absolute;
      bottom: 20px; left: 20px; right: 20px;
      z-index: 2;
    }
    .bento__caption-tag {
      display: inline-block;
      font-size: 10px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: rgba(244, 241, 236, 0.7);
      margin-bottom: 6px;
    }
    .bento__caption-title {
      font-family: var(--heading);
      font-size: 1.0625rem;
      color: var(--bone);
      line-height: 1.25;
      font-weight: 500;
    }
    @media (min-width: 768px) {
      .bento__item--col-4 { grid-column: span 12; height: 280px; }
      .bento__item--col-5 { grid-column: span 12; height: 300px; }
      .bento__item--col-6 { grid-column: span 12; height: 300px; }
      .bento__item--col-7 { grid-column: span 12; height: 400px; }
      .bento__item--tall-5 { grid-column: span 6; height: 300px; }
      .bento__item--tall-6 { grid-column: span 6; height: 300px; }
    }
    @media (min-width: 1024px) {
      .bento__item--col-4 { grid-column: span 4; height: 280px; }
      .bento__item--col-5 { grid-column: span 5; }
      .bento__item--col-6 { grid-column: span 6; }
      .bento__item--col-7 { grid-column: span 7; grid-row: span 2; height: 640px; }
      .bento__item--tall-5 { grid-column: span 5; height: 312px; }
      .bento__item--tall-6 { grid-column: span 6; height: 300px; }
    }

    /* ========== SPECS STRIP ========== */
    .specs {
      margin-top: 64px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    @media (min-width: 768px) { .specs { grid-template-columns: repeat(4, 1fr); } }
    .specs__item {
      padding: 28px 20px;
      border-bottom: 1px solid var(--line);
    }
    .specs__item:nth-child(odd) { border-right: 1px solid var(--line); }
    .specs__item:nth-last-child(-n+2) { border-bottom: none; }
    @media (min-width: 768px) {
      .specs__item { padding: 40px 24px; border-bottom: none; }
      .specs__item:nth-child(odd) { border-right: none; }
      .specs__item:not(:first-child) { border-left: 1px solid var(--line); }
    }
    .specs__value {
      font-family: var(--heading);
      font-weight: 500;
      font-size: 1.75rem;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }
    @media (min-width: 768px) { .specs__value { font-size: 2.125rem; } }
    .specs__label {
      font-size: 10px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--graphite);
      margin-top: 10px;
    }

    /* ========== QUOTE ========== */
    .quote {
      max-width: 800px;
      margin: 80px auto 0;
      text-align: center;
    }
    .quote__icon {
      width: 40px; height: 40px;
      margin: 0 auto 24px;
      color: var(--gold);
      opacity: 0.7;
    }
    .quote__text {
      font-family: var(--heading);
      font-size: 1.375rem;
      line-height: 1.35;
      font-weight: 500;
    }
    @media (min-width: 768px) { .quote__text { font-size: 1.75rem; } }
    .quote__divider {
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }
    .quote__line { width: 32px; height: 1px; background: var(--gold); }
    .quote__label {
      font-size: 10px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: rgba(244, 241, 236, 0.5);
    }

    /* ========== LIFT LIST ========== */
    .lift-list { margin-top: 24px; }
    .lift-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 18px 0;
      border-bottom: 1px solid rgba(244, 241, 236, 0.1);
    }
    .lift-item:last-child { border-bottom: none; }
    .lift-item__num {
      flex-shrink: 0;
      width: 40px; height: 40px;
      border: 1px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--heading);
      font-weight: 500;
      font-size: 14px;
      color: var(--gold);
      transition: all 0.3s;
    }
    .lift-item:hover .lift-item__num {
      background: var(--gold);
      color: var(--bone);
    }
    .lift-item__title {
      font-family: var(--heading);
      font-size: 1.0625rem;
      font-weight: 500;
      margin-bottom: 4px;
    }
    .lift-item__desc {
      font-size: 0.875rem;
      color: rgba(244, 241, 236, 0.6);
      line-height: 1.5;
    }

    /* ========== CTA STRIP ========== */
    .cta-strip {
      margin-top: 80px;
      background: var(--ink);
      color: var(--bone);
      padding: 40px 28px;
      position: relative;
      overflow: hidden;
    }
    @media (min-width: 768px) {
      .cta-strip { padding: 56px 56px; }
    }
    @media (min-width: 1024px) {
      .cta-strip { padding: 64px 64px; }
    }
    .cta-strip::before {
      content: "";
      position: absolute;
      top: 0; right: 0;
      width: 384px; height: 384px;
      background: rgba(184, 153, 104, 0.1);
      border-radius: 50%;
      filter: blur(48px);
    }
    .cta-strip__grid {
      position: relative;
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      align-items: center;
    }
    @media (min-width: 768px) { .cta-strip__grid { grid-template-columns: 2fr 1fr; } }
    .cta-strip__title {
      font-family: var(--heading);
      font-weight: 500;
      font-size: 1.625rem;
      line-height: 1.25;
      margin-top: 12px;
    }
    @media (min-width: 768px) { .cta-strip__title { font-size: 2rem; } }
    .cta-strip__right { text-align: left; }
    @media (min-width: 768px) { .cta-strip__right { text-align: right; } }

    /* ========== ABOUT ========== */
    .about-head {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
    }
    @media (min-width: 1024px) {
      .about-head { grid-template-columns: 5fr 6fr; gap: 60px; }
    }
    .about-text { font-size: 1.0625rem; line-height: 1.6; }
    @media (min-width: 768px) { .about-text { font-size: 1.125rem; } }
    .about-text + .about-text { margin-top: 20px; }
    .about-text { color: rgba(10, 10, 10, 0.8); }
    .about-actions { margin-top: 36px; }

    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    @media (min-width: 768px) { .stats-grid { gap: 16px; } }
    .stat-card {
      border: 1px solid var(--line);
      background: var(--bone-soft);
      padding: 24px;
      transition: border-color 0.3s;
    }
    @media (min-width: 768px) { .stat-card { padding: 28px; } }
    .stat-card:hover { border-color: var(--gold); }
    .stat-card__value {
      font-family: var(--heading);
      font-weight: 500;
      font-size: 2rem;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }
    @media (min-width: 768px) { .stat-card__value { font-size: 2.5rem; } }
    .stat-card__label {
      font-size: 10px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--graphite);
      margin-top: 10px;
    }
    .guarantee {
      margin-top: 24px;
      border-left: 2px solid var(--gold);
      padding: 8px 0 8px 24px;
    }
    .guarantee__text {
      font-family: var(--heading);
      font-size: 1.25rem;
      line-height: 1.3;
      font-weight: 500;
    }
    @media (min-width: 768px) { .guarantee__text { font-size: 1.5rem; } }
    .guarantee__label {
      font-size: 10px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--graphite);
      margin-top: 12px;
      display: block;
    }

    /* ========== MARQUEE ========== */
    .marquee {
      margin-top: 80px;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 28px 0;
      overflow: hidden;
    }
    .marquee__track {
      display: flex;
      align-items: center;
      gap: 48px;
      white-space: nowrap;
      animation: scrollX 40s linear infinite;
    }
    .marquee__item {
      display: flex;
      align-items: center;
      gap: 48px;
    }
    .marquee__text {
      font-family: var(--heading);
      font-size: 1.5rem;
      color: rgba(10, 10, 10, 0.3);
      font-weight: 500;
    }
    @media (min-width: 768px) { .marquee__text { font-size: 2rem; } }
    .marquee__dot {
      width: 10px; height: 10px;
      background: rgba(184, 153, 104, 0.6);
      transform: rotate(45deg);
      flex-shrink: 0;
    }

    /* ========== CONTACT ========== */
    .contact-head {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      margin-bottom: 0;
    }
    @media (min-width: 1024px) {
      .contact-head { grid-template-columns: 5fr 6fr; gap: 60px; }
    }
    .contact-blocks {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .contact-block {
      border-top: 1px solid rgba(244, 241, 236, 0.15);
      padding-top: 28px;
    }
    .contact-block__label {
      font-size: 10px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: rgba(244, 241, 236, 0.5);
      margin-bottom: 14px;
    }
    .contact-block__phone {
      font-family: var(--heading);
      font-size: 1.75rem;
      color: var(--bone);
      transition: color 0.3s;
      display: inline-block;
      font-weight: 500;
      letter-spacing: -0.02em;
    }
    @media (min-width: 768px) { .contact-block__phone { font-size: 2.75rem; } }
    .contact-block__phone:hover { color: var(--gold-light); }
    .contact-block__address {
      font-family: var(--heading);
      font-size: 1.375rem;
      line-height: 1.35;
      font-weight: 500;
      letter-spacing: -0.01em;
    }
    @media (min-width: 768px) { .contact-block__address { font-size: 1.75rem; } }
    .contact-block__schedule {
      font-size: 0.875rem;
      color: rgba(244, 241, 236, 0.55);
      margin-top: 14px;
      letter-spacing: 0.02em;
    }
    .messengers { display: flex; flex-wrap: wrap; gap: 12px; }
    .messenger-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 12px 24px;
      border: 1px solid rgba(244, 241, 236, 0.2);
      transition: all 0.3s;
      font-size: 0.875rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    .messenger-btn:hover { border-color: var(--gold-light); color: var(--gold-light); }
    .messenger-btn__dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

    /* ========== FORM ========== */
    .form-section {
      margin-top: 80px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
    }
    @media (min-width: 1024px) {
      .form-section { grid-template-columns: 5fr 7fr; gap: 60px; }
    }
    .form-section__title {
      font-family: var(--heading);
      font-size: 1.75rem;
      font-weight: 500;
      line-height: 1.2;
      margin-top: 12px;
      letter-spacing: -0.02em;
    }
    @media (min-width: 768px) { .form-section__title { font-size: 2rem; } }
    .form-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
    }
    @media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
    .form-field { display: flex; flex-direction: column; }
    .form-field--full { grid-column: 1 / -1; }
    .form-label {
      font-size: 10px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: rgba(244, 241, 236, 0.5);
      margin-bottom: 12px;
    }
    .form-input,
    .form-select {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(244, 241, 236, 0.2);
      padding: 12px 0;
      color: var(--bone);
      font-family: inherit;
      font-size: 1rem;
      transition: border-color 0.3s;
      outline: none;
    }
    .form-input::placeholder { color: rgba(244, 241, 236, 0.3); }
    .form-input:focus,
    .form-select:focus { border-color: var(--gold-light); }
    .form-select option { background: var(--ink); color: var(--bone); }
    .form-footer {
      grid-column: 1 / -1;
      display: flex;
      flex-direction: column;
      gap: 24px;
      padding-top: 16px;
    }
    @media (min-width: 768px) {
      .form-footer { flex-direction: row; align-items: center; justify-content: space-between; gap: 32px; }
    }
    .form-disclaimer {
      font-size: 0.75rem;
      color: rgba(244, 241, 236, 0.45);
      line-height: 1.5;
      max-width: 500px;
    }

    /* ========== FOOTER ========== */
    .footer {
      background: var(--ink-soft);
      color: rgba(244, 241, 236, 0.6);
      padding: 40px 0;
      border-top: 1px solid rgba(244, 241, 236, 0.1);
    }
    .footer__inner {
      display: flex;
      flex-direction: column;
      gap: 24px;
      align-items: flex-start;
    }
    @media (min-width: 768px) {
      .footer__inner { flex-direction: row; align-items: center; justify-content: space-between; }
    }
    .footer__brand {
      display: flex; align-items: center; gap: 12px;
    }
    .footer__mark {
      width: 32px; height: 32px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(244,241,236,0.05);
      color: var(--gold-light);
      font-family: var(--heading);
      font-size: 18px;
      font-weight: 600;
    }
    .footer__name {
      font-family: var(--heading);
      color: var(--bone);
      font-size: 18px;
      line-height: 1;
      font-weight: 600;
    }
    .footer__tagline {
      font-size: 9px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: rgba(244,241,236,0.4);
      margin-top: 4px;
    }
    .footer__links {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    .footer__links a { transition: color 0.3s; }
    .footer__links a:hover { color: var(--gold-light); }
    .footer__copy { font-size: 0.75rem; color: rgba(244, 241, 236, 0.4); }

    /* ========== DECORATIVE SIDE LABEL ========== */
    .side-label {
      display: none;
      position: absolute;
      right: 40px;
      top: 160px;
      transform: rotate(-90deg);
      transform-origin: right;
      z-index: 5;
    }
    @media (min-width: 1280px) { .side-label { display: flex; } }
    .side-label span {
      font-size: 10px;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: rgba(107, 107, 107, 0.6);
      white-space: nowrap;
    }
    .section--ink .side-label span { color: rgba(244, 241, 236, 0.4); }

    .section--ink::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(184, 153, 104, 0.4), transparent);
      z-index: 1;
    }

    /* ========== NUMBERED LIST (slide) ========== */
    .numbered-list { padding-top: 8px; }
    .numbered-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(244, 241, 236, 0.1);
    }
    .numbered-item:last-child { border-bottom: none; }
    .numbered-item__num {
      font-family: var(--heading);
      font-weight: 500;
      color: var(--gold-light);
      font-size: 1.125rem;
      margin-top: 2px;
      flex-shrink: 0;
    }
    .numbered-item__text {
      color: rgba(244, 241, 236, 0.85);
      font-size: 1rem;
      line-height: 1.5;
    }

    /* ========== ANIMATIONS ========== */
    @keyframes slowZoom {
      from { transform: scale(1); }
      to { transform: scale(1.08); }
    }
    @keyframes scrollX {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .reveal {
      opacity: 0;
      animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    .reveal-1 { animation-delay: 0.1s; }
    .reveal-2 { animation-delay: 0.25s; }
    .reveal-3 { animation-delay: 0.4s; }
    .reveal-4 { animation-delay: 0.55s; }

    ::-webkit-scrollbar { width: 8px; height: 8px; }
    ::-webkit-scrollbar-track { background: var(--bone); }
    ::-webkit-scrollbar-thumb { background: var(--gold); }
    ::-webkit-scrollbar-thumb:hover { background: var(--ink); }
    ::selection { background: var(--gold); color: var(--bone); }