    :root {
      --ink: #282522;
      --soft-ink: #4c4742;
      --muted: #746c65;
      --line: #ded4ca;
      --paper: #f6f0ea;
      --milk: #fffaf5;
      --warm: #e5d9ce;
      --sage: #aeb4a3;
      --clay: #b78376;
      --clay-dark: #8b5a50;
      --smoke: #d3d2cd;
      --shadow: 0 24px 70px rgba(40, 37, 34, 0.13);
      --radius: 8px;
      --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --serif: Georgia, "Times New Roman", serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.55;
      letter-spacing: 0;
    }

    img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    .page {
      min-height: 100vh;
      overflow-x: hidden;
    }

    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 20;
      border-bottom: 1px solid rgba(255, 250, 245, 0.42);
      background: rgba(246, 240, 234, 0.82);
      backdrop-filter: blur(18px);
    }

    .nav {
      width: min(1180px, calc(100% - 36px));
      min-height: 72px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .brand {
      min-width: 0;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-family: var(--serif);
      line-height: 1;
      white-space: nowrap;
    }

    .brand-mark {
      flex: 0 0 auto;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(139, 90, 80, 0.16);
      border-radius: 50%;
      display: block;
      overflow: hidden;
      background: rgba(255, 250, 245, 0.76);
      box-shadow: 0 8px 20px rgba(80, 63, 51, 0.1);
    }

    .brand-mark img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .brand-copy {
      display: grid;
      gap: 2px;
    }

    .brand-name {
      color: var(--ink);
      font-family: var(--serif);
      font-size: 20px;
      line-height: 1;
      font-weight: 400;
    }

    .brand-subtitle {
      color: var(--clay-dark);
      font-family: var(--sans);
      font-size: 9px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.22em;
      text-transform: lowercase;
    }

    .nav-links,
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-links {
      color: var(--muted);
      font-size: 12px;
      letter-spacing: -0.01em;
      flex-wrap: nowrap;
    }

    .nav-links a {
      white-space: nowrap;
    }

    .nav-links a[href="#process"] {
      display: none;
    }

    .lang {
      display: inline-grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid rgba(40, 37, 34, 0.16);
      border-radius: 999px;
      overflow: hidden;
      background: rgba(255, 250, 245, 0.72);
      color: var(--muted);
      font-size: 11px;
      opacity: 0.72;
    }

    .lang a {
      min-width: 34px;
      padding: 7px 9px;
      text-align: center;
    }

    .lang a.active {
      background: var(--ink);
      color: var(--milk);
    }

    .icon-link,
    .small-btn,
    .btn,
    .card-action {
      border: 1px solid rgba(40, 37, 34, 0.16);
      border-radius: 999px;
      background: rgba(255, 250, 245, 0.78);
      color: var(--ink);
      cursor: pointer;
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
    }

    .icon-link {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      color: var(--ink);
    }

    .icon-link svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .social-icon-img {
      width: 19px;
      height: 19px;
      object-fit: contain;
      opacity: 0.92;
    }

    .social-icon-fill {
      fill: currentColor;
      stroke: none;
    }

    .social-icon-threads {
      width: 19px;
      height: 19px;
      fill: currentColor;
      stroke: none;
    }

    .social-icon-threads text {
      font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
      font-size: 16px;
      font-weight: 900;
      fill: currentColor;
    }

    .small-btn {
      min-height: 40px;
      padding: 0 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      white-space: nowrap;
    }

    .btn {
      min-height: 48px;
      padding: 0 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      font-size: 14px;
      font-weight: 700;
    }

    .btn.primary,
    .small-btn.primary {
      background: var(--ink);
      color: var(--milk);
      border-color: var(--ink);
      box-shadow: 0 14px 32px rgba(40, 37, 34, 0.16);
    }

    .btn.clay {
      background: var(--clay);
      border-color: var(--clay);
      color: #fffaf5;
    }

    .feature-copy .btn.clay {
      align-self: flex-start;
      min-height: 54px;
      padding: 0 28px;
      background: var(--ink);
      border-color: var(--ink);
      box-shadow: 0 18px 42px rgba(40, 37, 34, 0.22);
    }

    .icon-link:hover,
    .small-btn:hover,
    .btn:hover,
    .card-action:hover {
      transform: translateY(-2px);
      border-color: rgba(40, 37, 34, 0.34);
      box-shadow: 0 10px 28px rgba(40, 37, 34, 0.11);
    }

    .hero {
      min-height: 74vh;
      position: relative;
      display: grid;
      align-items: end;
      padding: 104px 0 42px;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(26, 22, 20, 0.72), rgba(41, 33, 29, 0.46) 44%, rgba(246, 240, 234, 0.08)),
        linear-gradient(180deg, rgba(255, 250, 245, 0.08), rgba(28, 24, 22, 0.22) 46%, rgba(28, 24, 22, 0.42) 82%, rgba(246, 240, 234, 0.18));
    }

    .hero-media {
      position: absolute;
      inset: 0;
      display: block;
      z-index: 0;
      background: #d9c9bb;
    }

    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 45%;
      transform: scale(1.18);
      display: block;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(24, 20, 19, 0.72), rgba(34, 28, 25, 0.42) 46%, rgba(34, 28, 25, 0.08)),
        linear-gradient(180deg, rgba(24, 20, 19, 0.18), rgba(24, 20, 19, 0.18) 44%, rgba(24, 20, 19, 0.42));
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      height: 120px;
      background: linear-gradient(180deg, rgba(246, 240, 234, 0), var(--paper));
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 3;
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 720px);
      gap: 24px;
      align-items: end;
    }

    .eyebrow {
      margin: 0 0 14px;
      color: rgba(255, 250, 245, 0.86);
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: 0.14em;
      font-weight: 800;
      text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 660px;
      margin-bottom: 18px;
      color: var(--milk);
      font-family: var(--serif);
      font-size: clamp(42px, 6vw, 78px);
      line-height: 0.96;
      font-weight: 400;
      letter-spacing: 0;
      text-shadow: 0 3px 22px rgba(0, 0, 0, 0.36);
    }

    .hero-copy {
      max-width: 560px;
      margin-bottom: 24px;
      color: rgba(255, 250, 245, 0.92);
      font-size: 18px;
      font-weight: 700;
      text-shadow: 0 2px 18px rgba(0, 0, 0, 0.46);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
    }

    .hero-trust span {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 12px;
      border: 1px solid rgba(36, 54, 79, 0.14);
      border-radius: 999px;
      background: #24364f;
      color: var(--milk);
      font-size: 12px;
      font-weight: 800;
      box-shadow: none;
      backdrop-filter: none;
      cursor: default;
      pointer-events: none;
    }

    @media (min-width: 1081px) {
      h1 {
        max-width: 680px;
        font-size: clamp(48px, 6.4vw, 86px);
      }

      .hero-copy {
        max-width: 580px;
        font-size: 19px;
      }

      .hero-actions {
        gap: 14px;
      }

      .hero-actions .btn {
        min-height: 54px;
        padding: 0 26px;
        font-size: 15px;
      }
    }

    .hero-note {
      padding: 24px;
      border: 1px solid rgba(255, 250, 245, 0.64);
      border-radius: var(--radius);
      background: rgba(255, 250, 245, 0.72);
      backdrop-filter: blur(20px);
      color: var(--soft-ink);
      box-shadow: 0 24px 70px rgba(80, 63, 51, 0.14);
    }

    .hero-note strong {
      display: block;
      margin-bottom: 10px;
      color: var(--ink);
      font-family: var(--serif);
      font-size: 24px;
      font-weight: 400;
    }

    .hero-note p {
      margin-bottom: 18px;
      color: var(--muted);
      font-size: 14px;
    }

    .cities {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 14px;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 24px;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      color: var(--soft-ink);
      font-size: 13px;
      font-weight: 700;
      cursor: default;
    }

    .pill::before {
      content: "";
      width: 7px;
      height: 7px;
      border: 2px solid var(--clay-dark);
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
      opacity: 0.72;
    }

    .section {
      padding: 88px 0;
    }

    .section.alt {
      background: var(--milk);
    }

    .sales-section {
      background: linear-gradient(180deg, var(--paper), var(--milk));
    }

    .wrap {
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
      gap: 34px;
      align-items: end;
      margin-bottom: 34px;
    }

    .section-kicker {
      margin-bottom: 12px;
      color: var(--clay-dark);
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: 0.14em;
      font-weight: 800;
    }

    h2 {
      margin-bottom: 0;
      font-family: var(--serif);
      font-size: clamp(34px, 4.8vw, 64px);
      line-height: 1;
      font-weight: 400;
      letter-spacing: 0;
    }

    .section-head p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 16px;
    }

    .sales-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .sales-card {
      min-width: 0;
      min-height: 330px;
      padding: 22px;
      border: 1px solid rgba(40, 37, 34, 0.1);
      border-radius: var(--radius);
      background: rgba(255, 250, 245, 0.84);
      box-shadow: 0 10px 30px rgba(40, 37, 34, 0.055);
      display: flex;
      flex-direction: column;
      gap: 18px;
      transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
    }

    .sales-card:hover {
      transform: translateY(-2px);
      border-color: rgba(139, 90, 80, 0.3);
      box-shadow: 0 16px 44px rgba(40, 37, 34, 0.08);
    }

    .sales-card.selected {
      transform: translateY(-3px);
      border-color: rgba(139, 90, 80, 0.34);
      box-shadow: 0 16px 42px rgba(139, 90, 80, 0.12);
    }

    .sales-card.selected::after {
      content: attr(data-selected-label);
      align-self: flex-end;
      min-height: 26px;
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 0 9px;
      border: 1px solid rgba(139, 90, 80, 0.22);
      background: rgba(255, 250, 245, 0.9);
      color: var(--clay-dark);
      font-size: 11px;
      font-weight: 700;
    }

    .sales-card h3 {
      margin-bottom: 12px;
      font-family: var(--serif);
      font-size: clamp(30px, 3.4vw, 44px);
      line-height: 1;
      font-weight: 400;
    }

    .sales-card p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .sales-use {
      min-height: 34px;
      margin-bottom: 14px;
      color: var(--soft-ink);
      font-weight: 800;
    }

    .sales-price {
      display: block;
      margin-bottom: 14px;
      color: var(--clay-dark);
      font-size: 20px;
    }

    .sales-card ul {
      margin: auto 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .sales-card li {
      position: relative;
      padding-left: 18px;
      color: var(--soft-ink);
      font-size: 14px;
    }

    .sales-card li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.72em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--sage);
    }

    .sales-action {
      margin-top: 4px;
      background: rgba(40, 37, 34, 0.04);
      color: var(--ink);
      border-color: rgba(40, 37, 34, 0.14);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 18px;
      font-size: 14px;
      line-height: 1;
      text-align: center;
      white-space: nowrap;
    }

    .sales-action span {
      display: inline-block;
      color: inherit;
    }

    .sales-note {
      max-width: 720px;
      margin: 22px auto 0;
      color: var(--muted);
      text-align: center;
      font-size: 14px;
      font-weight: 700;
    }

    .process-section {
      background: var(--milk);
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .process-card {
      min-width: 0;
      min-height: 230px;
      padding: 22px;
      border: 1px solid rgba(40, 37, 34, 0.1);
      border-radius: var(--radius);
      background: #fffdfb;
      box-shadow: 0 12px 36px rgba(40, 37, 34, 0.06);
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .process-number {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--ink);
      color: var(--milk);
      font-size: 13px;
      font-weight: 800;
    }

    .process-card h3 {
      margin-bottom: 0;
      font-family: var(--serif);
      font-size: 25px;
      line-height: 1.08;
      font-weight: 400;
    }

    .process-card p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .process-note {
      margin-top: 18px;
      padding: 22px;
      border: 1px solid rgba(139, 90, 80, 0.2);
      border-radius: var(--radius);
      background: linear-gradient(135deg, rgba(229, 217, 206, 0.74), rgba(216, 222, 208, 0.74));
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .process-note p {
      max-width: 760px;
      margin-bottom: 0;
      color: var(--soft-ink);
      font-weight: 800;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .card {
      position: relative;
      min-width: 0;
      border: 1px solid rgba(40, 37, 34, 0.1);
      border-radius: var(--radius);
      background: var(--milk);
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(40, 37, 34, 0.052);
      cursor: pointer;
      transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
    }

    .card:hover {
      transform: translateY(-2px);
      border-color: rgba(139, 90, 80, 0.34);
      box-shadow: 0 16px 44px rgba(40, 37, 34, 0.08);
    }

    .card.selected {
      transform: translateY(-3px);
      border-color: rgba(139, 90, 80, 0.28);
      box-shadow: 0 16px 42px rgba(139, 90, 80, 0.12);
    }

    .card.selected::after {
      content: attr(data-selected-label);
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
      min-height: 26px;
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 0 9px;
      border: 1px solid rgba(139, 90, 80, 0.22);
      background: rgba(255, 250, 245, 0.86);
      color: var(--clay-dark);
      font-size: 11px;
      font-weight: 700;
      backdrop-filter: blur(10px);
    }

    .media {
      position: relative;
      aspect-ratio: 4 / 5;
      background: var(--warm);
      overflow: hidden;
    }

    .filling .media {
      aspect-ratio: 1 / 1;
    }

    .media img {
      object-position: center;
      transition: transform 700ms ease, filter 700ms ease;
    }

    .card:hover .media img {
      transform: scale(1.04);
      filter: saturate(0.92) contrast(0.98);
    }

    .media-badge {
      position: absolute;
      left: 12px;
      top: 12px;
      min-height: 24px;
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 0 9px;
      border: 1px solid rgba(255, 250, 245, 0.42);
      background: rgba(255, 250, 245, 0.66);
      color: var(--muted);
      font-size: 11px;
      font-weight: 700;
      backdrop-filter: blur(12px);
    }

    .tone-dot {
      position: absolute;
      right: 12px;
      bottom: 12px;
      width: 24px;
      height: 24px;
      border: 1px solid rgba(255, 250, 245, 0.34);
      border-radius: 50%;
      background: rgba(255, 250, 245, 0.28);
      color: var(--milk);
      display: grid;
      place-items: center;
      font-size: 0;
      line-height: 1;
    }

    .card-body {
      min-height: 148px;
      padding: 18px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .card h3 {
      margin-bottom: 0;
      font-family: var(--serif);
      font-size: 23px;
      line-height: 1.08;
      font-weight: 400;
    }

    .card p {
      margin-bottom: auto;
      color: var(--muted);
      font-size: 14px;
    }

    .card-action {
      width: 100%;
      min-height: 42px;
      background: transparent;
      font-weight: 700;
    }

    .filling .card-action,
    .design-card .card-action {
      background: rgba(40, 37, 34, 0.03);
    }

    .design-card .card-body {
      min-height: 188px;
    }

    .design-card .card-action {
      width: auto;
      margin-top: auto;
      align-self: center;
      padding: 0 22px;
      text-align: center;
    }

    .sales-card .sales-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 18px;
      background: rgba(40, 37, 34, 0.04);
      color: var(--ink);
      border-color: rgba(40, 37, 34, 0.14);
      font-size: 14px;
      line-height: 1;
      text-align: center;
      white-space: nowrap;
    }

    .sales-card .sales-action span {
      display: inline-block;
      color: inherit;
    }

    .card.selected .card-action {
      background: rgba(183, 131, 118, 0.14);
      color: var(--clay-dark);
      border-color: rgba(139, 90, 80, 0.28);
    }

    .is-hidden {
      display: none;
    }

    .show-more {
      margin-top: 22px;
      display: flex;
      justify-content: center;
    }

    .feature-band {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 18px;
      align-items: stretch;
      margin-bottom: 28px;
    }

    .feature-copy {
      min-height: 320px;
      padding: 34px;
      border-radius: var(--radius);
      background: linear-gradient(135deg, #e4d7cc, #d5d8cf);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .feature-copy h2 {
      max-width: 620px;
    }

    .feature-copy p {
      max-width: 530px;
      color: var(--soft-ink);
    }

    .feature-image {
      min-height: 320px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .feature-image img {
      object-position: center 42%;
    }

    .trust {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 30px;
    }

    .trust-item {
      min-width: 0;
      padding: 20px;
      border: 1px solid rgba(40, 37, 34, 0.1);
      border-radius: var(--radius);
      background: rgba(255, 250, 245, 0.7);
    }

    .trust-item strong {
      display: block;
      margin-bottom: 8px;
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 400;
    }

    .trust-item span {
      color: var(--muted);
      font-size: 14px;
    }

    .works {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 1fr;
      grid-auto-rows: 220px;
      gap: 16px;
    }

    .work {
      position: relative;
      min-width: 0;
      border: 0;
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--warm);
      box-shadow: 0 12px 34px rgba(40, 37, 34, 0.07);
      cursor: pointer;
      padding: 0;
      text-align: left;
    }

    .work img {
      object-position: center 38%;
    }

    .work.large {
      grid-row: span 2;
    }

    .work.wide {
      grid-column: span 2;
    }

    .design-card:nth-child(1) .media img {
      object-position: center 44%;
    }

    .design-card:nth-child(2) .media img {
      object-position: center 46%;
    }

    .design-card:nth-child(3) .media img {
      object-position: center 30%;
    }

    .design-card:nth-child(4) .media img {
      object-position: center 56%;
    }

    .design-card:nth-child(5) .media img {
      object-position: center 60%;
    }

    .design-card:nth-child(6) .media img {
      object-position: center 46%;
    }

    .design-card:nth-child(7) .media img {
      object-position: center 52%;
    }

    .design-card:nth-child(8) .media img {
      object-position: center 36%;
    }

    .work:nth-child(1) img {
      object-position: center 46%;
    }

    .work:nth-child(2) img {
      object-position: center 68%;
    }

    .work:nth-child(3) img {
      object-position: center 74%;
    }

    .work:nth-child(4) img {
      object-position: center 66%;
    }

    .work:nth-child(5) img {
      object-position: center 78%;
    }

    .work:nth-child(6) img {
      object-position: center 74%;
    }

    .work::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(40, 37, 34, 0), rgba(40, 37, 34, 0.34));
      opacity: 0.86;
    }

    .work.selected {
      outline: 2px solid rgba(139, 90, 80, 0.42);
      outline-offset: -2px;
    }

    .work.selected::before {
      content: attr(data-selected-label);
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
      min-height: 26px;
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 0 9px;
      border: 1px solid rgba(255, 250, 245, 0.38);
      background: rgba(255, 250, 245, 0.82);
      color: var(--clay-dark);
      font-size: 11px;
      font-weight: 700;
      backdrop-filter: blur(10px);
    }

    .work span {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 16px;
      z-index: 1;
      color: var(--milk);
      font-family: var(--serif);
      font-size: 24px;
    }

    .work.selected span {
      color: #fff8f2;
    }

    .order {
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      gap: 28px;
      align-items: start;
    }

    .order-panel {
      position: sticky;
      top: 98px;
      padding: 30px;
      border-radius: var(--radius);
      background: var(--ink);
      color: var(--milk);
      overflow: hidden;
    }

    .order-panel::before {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      right: -100px;
      top: -100px;
      border-radius: 50%;
      background: rgba(174, 180, 163, 0.28);
      filter: blur(2px);
    }

    .order-panel > * {
      position: relative;
      z-index: 1;
    }

    .order-panel h2 {
      margin-bottom: 18px;
      color: var(--milk);
      font-size: clamp(34px, 4vw, 58px);
    }

    .order-panel p {
      color: rgba(255, 250, 245, 0.76);
    }

    .contact-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 24px 0 28px;
    }

    .contact-row a {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      border: 1px solid rgba(255, 250, 245, 0.22);
      border-radius: 999px;
      padding: 0 15px;
      background: rgba(255, 250, 245, 0.08);
      color: rgba(255, 250, 245, 0.92);
      font-size: 13px;
      font-weight: 700;
      transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
    }

    .contact-row a:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 250, 245, 0.42);
      background: rgba(255, 250, 245, 0.14);
    }

    .proof-list {
      display: grid;
      gap: 10px;
      margin: 0 0 28px;
    }

    .proof-item {
      padding: 14px;
      border: 1px solid rgba(255, 250, 245, 0.16);
      border-radius: var(--radius);
      background: rgba(255, 250, 245, 0.08);
    }

    .proof-item strong {
      display: block;
      margin-bottom: 6px;
      color: var(--milk);
      font-size: 14px;
    }

    .proof-item p {
      margin-bottom: 0;
      color: rgba(255, 250, 245, 0.76);
      font-size: 13px;
    }

    .after-request {
      margin-bottom: 24px;
      padding: 16px;
      border: 1px solid rgba(255, 250, 245, 0.16);
      border-radius: var(--radius);
      background: rgba(255, 250, 245, 0.08);
    }

    .after-request strong {
      display: block;
      margin-bottom: 10px;
      color: var(--milk);
      font-size: 15px;
    }

    .after-request ul {
      margin: 0;
      padding-left: 18px;
      display: grid;
      gap: 8px;
      color: rgba(255, 250, 245, 0.82);
      font-size: 13px;
    }

    .facts {
      display: grid;
      gap: 11px;
      margin-top: 28px;
    }

    .fact {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      border-top: 1px solid rgba(255, 250, 245, 0.15);
      padding-top: 12px;
      color: rgba(255, 250, 245, 0.78);
      font-size: 14px;
    }

    .fact strong {
      color: var(--milk);
      text-align: right;
    }

    .form {
      padding: 26px;
      border: 1px solid rgba(40, 37, 34, 0.1);
      border-radius: var(--radius);
      background: var(--milk);
      box-shadow: 0 18px 60px rgba(40, 37, 34, 0.08);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .form-section {
      display: grid;
      gap: 16px;
    }

    .form-section + .form-section {
      margin-top: 22px;
      padding-top: 22px;
      border-top: 1px solid rgba(40, 37, 34, 0.1);
    }

    details.form-section + .form-footer {
      margin-top: 16px;
    }

    .form-required-section {
      padding: 18px;
      border: 1px solid rgba(40, 37, 34, 0.1);
      border-radius: var(--radius);
      background: rgba(255, 250, 245, 0.72);
    }

    .form-optional-section {
      display: block;
      margin-top: 18px;
      padding: 0;
      border: 1px solid rgba(40, 37, 34, 0.1);
      border-radius: var(--radius);
      background: rgba(255, 250, 245, 0.48);
      overflow: hidden;
    }

    .form-optional-section[open] {
      padding-bottom: 18px;
    }

    .form-optional-section[open] .form-grid {
      padding: 0 18px;
    }

    .form-optional-summary {
      position: relative;
      list-style: none;
      display: grid;
      gap: 4px;
      padding: 16px 18px;
      color: var(--ink);
      cursor: pointer;
    }

    .form-optional-summary::-webkit-details-marker {
      display: none;
    }

    .form-optional-summary::after {
      content: "+";
      position: absolute;
      right: 18px;
      margin-top: 2px;
      color: var(--clay-dark);
      font-size: 22px;
      line-height: 1;
    }

    .form-optional-section[open] .form-optional-summary::after {
      content: "−";
    }

    .form-optional-summary span {
      padding-right: 34px;
      font-family: var(--serif);
      font-size: 24px;
      line-height: 1.05;
    }

    .form-optional-summary small {
      max-width: 560px;
      padding-right: 34px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .form-primary-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .form-primary-footer .btn {
      flex: 0 0 auto;
    }

    .field {
      min-width: 0;
      display: grid;
      gap: 7px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    .form-step-copy {
      gap: 6px;
      padding: 0 0 4px;
    }

    .form-step-copy strong {
      color: var(--ink);
      font-family: var(--serif);
      font-size: 24px;
      font-weight: 400;
      line-height: 1.05;
    }

    .form-step-copy p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .form-step-copy p strong {
      color: var(--ink);
      font-size: inherit;
    }

    .form-step-note {
      margin: 0;
      color: var(--soft-ink);
      font-size: 13px;
      line-height: 1.45;
      font-weight: 700;
    }

    label {
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    input,
    select,
    textarea {
      width: 100%;
      min-width: 0;
      min-height: 58px;
      border: 1px solid rgba(40, 37, 34, 0.13);
      border-radius: var(--radius);
      background: #fffdfb;
      color: var(--ink);
      padding: 0 18px;
      outline: none;
      line-height: 1.2;
      transition: border-color 180ms ease, box-shadow 180ms ease;
    }

    select {
      appearance: none;
      background-image:
        linear-gradient(45deg, transparent 50%, currentColor 50%),
        linear-gradient(135deg, currentColor 50%, transparent 50%);
      background-position:
        calc(100% - 28px) 50%,
        calc(100% - 20px) 50%;
      background-size: 8px 8px, 8px 8px;
      background-repeat: no-repeat;
      padding-right: 54px;
      text-align: center;
      text-align-last: center;
    }

    textarea {
      min-height: 118px;
      padding-top: 12px;
      resize: vertical;
    }

    #size {
      min-height: 122px;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--clay-dark);
      box-shadow: 0 0 0 4px rgba(183, 131, 118, 0.2);
    }

    .field.has-error label {
      color: #8b3f35;
    }

    .field.has-error input,
    .field.has-error select,
    .field.has-error textarea,
    .field.has-error .sweetness-control,
    .field.has-error .upload {
      border-color: rgba(139, 63, 53, 0.65);
      box-shadow: 0 0 0 4px rgba(139, 63, 53, 0.12);
    }

    .upload {
      position: relative;
      min-height: 86px;
      border: 1px dashed rgba(40, 37, 34, 0.26);
      border-radius: var(--radius);
      display: grid;
      place-items: center;
      padding: 16px;
      color: var(--muted);
      background: #fbf7f3;
      text-align: center;
      font-size: 14px;
      cursor: pointer;
      overflow: hidden;
    }

    .upload input {
      position: absolute;
      inset: 0;
      opacity: 0;
      cursor: pointer;
    }

    .sweetness-control {
      display: grid;
      gap: 14px;
      min-height: 122px;
      border: 1px solid rgba(40, 37, 34, 0.13);
      border-radius: var(--radius);
      background: #fffdfb;
      padding: 16px 18px;
      align-content: center;
    }

    .sweetness-range {
      min-height: 24px;
      padding: 0;
      accent-color: var(--clay-dark);
      cursor: pointer;
    }

    .sweetness-labels {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .sweetness-labels button {
      min-width: 0;
      min-height: 46px;
      border: 1px solid rgba(40, 37, 34, 0.13);
      border-radius: 999px;
      background: #fbf7f3;
      color: var(--muted);
      padding: 0 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 800;
      line-height: 1.15;
      text-align: center;
      white-space: normal;
      cursor: pointer;
    }

    .sweetness-labels button.active {
      border-color: rgba(139, 90, 80, 0.34);
      background: rgba(183, 131, 118, 0.14);
      color: var(--clay-dark);
    }

    .form-footer {
      margin-top: 18px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 16px;
    }

    .form-footer.is-hidden {
      display: none;
    }

    .form-footer-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .form-status {
      color: var(--muted);
      font-size: 13px;
    }

    .form-status.success {
      color: #526144;
      font-weight: 800;
    }

    .form-status.error {
      color: #8b3f35;
      font-weight: 800;
    }

    .form[aria-busy="true"] button[type="submit"] {
      opacity: 0.74;
      cursor: progress;
    }

    .form button[type="submit"]:disabled {
      opacity: 0.48;
      cursor: not-allowed;
      box-shadow: none;
      transform: none;
    }

    .footer {
      padding: 48px 0;
      border-top: 1px solid rgba(40, 37, 34, 0.09);
      background: var(--milk);
      color: var(--muted);
    }

    .footer-inner {
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px 34px;
      align-items: end;
      font-size: 14px;
    }

    .footer strong {
      display: block;
      margin-bottom: 8px;
      color: var(--ink);
      font-family: var(--serif);
      font-size: 24px;
      font-weight: 400;
    }

    .footer p {
      margin-bottom: 0;
      max-width: 560px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 10px;
    }

    .footer-links a {
      min-height: 36px;
      display: inline-flex;
      align-items: center;
      border: 1px solid rgba(40, 37, 34, 0.12);
      border-radius: 999px;
      padding: 0 13px;
      color: var(--soft-ink);
      font-size: 13px;
      font-weight: 700;
    }

    .mobile-contact-bar {
      display: none;
    }

    .catalog-main,
    .admin-main {
      padding-top: 96px;
    }

    .catalog-main h1,
    .admin-main h1 {
      margin-bottom: 0;
      color: var(--ink);
      font-family: var(--serif);
      font-size: clamp(36px, 5vw, 64px);
      line-height: 1;
      font-weight: 400;
      text-shadow: none;
    }

    .catalog-actions {
      margin-top: 28px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .admin-main {
      background: var(--paper);
      min-height: 100vh;
      padding-bottom: 80px;
    }

    .admin-stack {
      display: grid;
      gap: 22px;
    }

    .admin-panel {
      min-width: 0;
      border: 1px solid rgba(40, 37, 34, 0.1);
      border-radius: var(--radius);
      background: var(--milk);
      padding: 22px;
      box-shadow: 0 12px 36px rgba(40, 37, 34, 0.06);
    }

    .admin-panel h2 {
      margin-bottom: 18px;
      font-size: clamp(28px, 3vw, 42px);
    }

    .admin-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .admin-table-wrap {
      max-width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .admin-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13px;
    }

    .admin-table th,
    .admin-table td {
      border-bottom: 1px solid rgba(40, 37, 34, 0.09);
      padding: 10px 8px;
      text-align: left;
      vertical-align: top;
    }

    .admin-table th {
      color: var(--muted);
      font-size: 12px;
      text-transform: uppercase;
    }

    .admin-message {
      color: #526144;
      font-weight: 800;
    }

    .admin-message.error,
    .form-status.error {
      color: #8b3f35;
    }

    .admin-message.success,
    .form-status.success {
      color: #526144;
    }

    .admin-order-summary {
      margin-bottom: 18px;
    }

    .admin-filters {
      margin-bottom: 18px;
      padding: 18px;
    }

    .admin-filter-actions {
      align-self: end;
    }

    .admin-status {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      white-space: nowrap;
    }

    .admin-status-new {
      background: rgba(183, 131, 118, 0.14);
      color: var(--clay-dark);
    }

    .admin-status-in_progress {
      background: rgba(174, 180, 163, 0.2);
      color: #526144;
    }

    .admin-status-processed {
      background: rgba(82, 97, 68, 0.16);
      color: #44533a;
    }

    .admin-status-form {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .admin-quick-actions {
      display: flex;
      gap: 8px;
      margin-top: 8px;
      flex-wrap: wrap;
    }

    .btn.ghost {
      background: transparent;
    }

    .admin-status-form select {
      min-height: 38px;
    }

    .admin-panel input[type="checkbox"] {
      width: auto;
      min-height: auto;
      margin-right: 8px;
    }

    .admin-order-cards {
      display: none;
    }

    .admin-order-card,
    .admin-content-item {
      min-width: 0;
      border: 1px solid rgba(40, 37, 34, 0.1);
      border-radius: var(--radius);
      background: #fffdfb;
      padding: 14px;
    }

    .admin-order-card strong,
    .admin-item-head strong {
      display: block;
      color: var(--ink);
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 400;
    }

    .admin-order-card span,
    .admin-item-head span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }

    .admin-card-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
    }

    .admin-card-actions form {
      min-width: 0;
    }

    .admin-preview {
      min-height: 220px;
      border: 1px dashed rgba(40, 37, 34, 0.2);
      border-radius: var(--radius);
      background: #fbf7f3;
      display: grid;
      place-items: center;
      overflow: hidden;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      text-align: center;
    }

    .admin-section-hint {
      padding: 14px 16px;
      border: 1px solid rgba(139, 90, 80, 0.14);
      border-radius: var(--radius);
      background: #fbf4ee;
      color: var(--clay-dark);
      font-size: 13px;
      font-weight: 700;
      line-height: 1.45;
    }

    .admin-preview img {
      display: none;
    }

    .admin-preview.loaded img {
      display: block;
    }

    .admin-preview.loaded span {
      display: none;
    }

    .admin-preview.error {
      border-color: rgba(139, 63, 53, 0.42);
      color: #8b3f35;
    }

    .admin-content-list {
      display: grid;
      gap: 14px;
    }

    .admin-content-item {
      display: grid;
      grid-template-columns: 120px minmax(0, 1fr) auto;
      gap: 14px;
      align-items: start;
    }

    .admin-content-preview {
      width: 120px;
      aspect-ratio: 1;
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--warm);
    }

    .admin-edit-form {
      min-width: 0;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .admin-edit-form .admin-item-head,
    .admin-edit-form .full,
    .admin-edit-form .admin-card-actions {
      grid-column: 1 / -1;
    }

    .admin-edit-form label {
      min-width: 0;
      display: grid;
      gap: 6px;
    }

    .btn.danger {
      border-color: rgba(139, 63, 53, 0.28);
      color: #8b3f35;
    }

    a.trust-item {
      color: inherit;
    }

    :focus-visible {
      outline: 3px solid rgba(139, 90, 80, 0.46);
      outline-offset: 3px;
    }

    .reveal {
      opacity: 1;
      transform: translateY(18px);
      transition: opacity 700ms ease, transform 700ms ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1080px) {
      .nav-links {
        display: none;
      }

      .hero-inner,
      .section-head,
      .feature-band,
      .order {
        grid-template-columns: 1fr;
      }

      .hero {
        min-height: 660px;
      }

      .hero-note {
        max-width: 470px;
      }

      .grid,
      .sales-grid,
      .process-grid,
      .trust {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .order-panel {
        position: relative;
        top: auto;
      }
    }

    @media (max-width: 760px) {
      .nav {
        min-height: 64px;
        width: min(100% - 24px, 1180px);
        gap: 10px;
      }

      .brand {
        font-size: 17px;
      }

      .brand-mark {
        width: 30px;
        height: 30px;
      }

      .lang,
      .nav-actions .small-btn:not(.primary) {
        display: none;
      }

      .nav-actions {
        gap: 8px;
      }

      .small-btn {
        min-height: 38px;
        padding: 0 12px;
        font-size: 12px;
      }

      .hero {
        min-height: 520px;
        padding: 84px 0 28px;
      }

      .hero-media img {
        object-position: 54% 42%;
        transform: scale(1.12);
      }

      .hero-inner,
      .wrap,
      .footer-inner {
        width: min(100% - 24px, 1180px);
      }

      h1 {
        font-size: clamp(31px, 10vw, 42px);
        line-height: 1;
      }

      .hero-copy {
        max-width: 94%;
        margin-bottom: 14px;
        font-size: 14px;
      }

      .hero-actions .btn:not(.primary) {
        display: none;
      }

      .hero-trust {
        gap: 8px;
      }

      .hero-trust span {
        min-height: 28px;
        padding: 0 10px;
        font-size: 11px;
      }

      .section {
        padding: 48px 0;
      }

      .section-head {
        gap: 16px;
        margin-bottom: 24px;
      }

      .grid,
      .sales-grid,
      .process-grid,
      .trust {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }

      #fillings .grid .card:nth-child(n + 5),
      #design .grid .card:nth-child(n + 5),
      #works .work:nth-child(n + 5),
      .trust {
        display: none;
      }

      .process-note {
        align-items: stretch;
        flex-direction: column;
      }

      .card-body {
        min-height: 182px;
        padding: 14px;
      }

      .card h3 {
        font-size: 20px;
      }

      .feature-copy {
        min-height: 260px;
        padding: 24px;
      }

      .feature-copy .btn.clay {
        width: 100%;
      }

      .works {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
      }

      .work.large,
      .work.wide {
        grid-row: auto;
        grid-column: auto;
      }

      .form {
        padding: 18px;
      }

      .form-required-section {
        padding: 14px;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .form-primary-footer {
        align-items: stretch;
        flex-direction: column;
      }

      .form-optional-section[open] .form-grid {
        padding: 0 14px;
      }

      .form-optional-summary {
        padding: 14px;
      }

      .form-footer-actions {
        display: grid;
        width: 100%;
      }

      .catalog-actions,
      .admin-card-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .catalog-actions .btn,
      .admin-card-actions .btn,
      .form-primary-footer .btn,
      .form-footer .btn {
        width: 100%;
      }

      .admin-table-wrap {
        display: none;
      }

      .admin-order-cards {
        display: grid;
        gap: 12px;
      }

      .admin-content-item,
      .admin-edit-form {
        grid-template-columns: 1fr;
      }

      .admin-content-preview {
        width: 100%;
        max-height: 240px;
      }

      .admin-content-item > form,
      .admin-card-actions form {
        width: 100%;
      }

      .sweetness-labels,
      .admin-grid {
        grid-template-columns: 1fr 1fr;
      }

      .form-footer,
      .footer-inner {
        align-items: flex-start;
        flex-direction: column;
      }

      .footer-inner {
        grid-template-columns: 1fr;
      }

      .footer-links {
        justify-content: flex-start;
      }

      .mobile-contact-bar {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 30;
        display: block;
        padding: 10px;
        border: 1px solid rgba(40, 37, 34, 0.12);
        border-radius: 18px;
        background: rgba(255, 250, 245, 0.92);
        backdrop-filter: blur(16px);
        box-shadow: 0 18px 40px rgba(40, 37, 34, 0.18);
      }

      .mobile-contact-bar .btn {
        min-height: 42px;
        padding: 0 12px;
        width: 100%;
      }

      main {
        padding-bottom: 0;
      }

      #order {
        scroll-margin-bottom: calc(120px + env(safe-area-inset-bottom, 0px));
      }

      .footer {
        padding-bottom: 40px;
      }

      .admin-status-form {
        flex-direction: column;
        align-items: stretch;
      }
    }

    @media (max-width: 430px) {
      .brand {
        font-size: 15px;
        gap: 8px;
      }

      .brand-mark {
        width: 28px;
        height: 28px;
        font-size: 15px;
      }

      .nav-actions {
        gap: 6px;
      }

      .small-btn {
        min-height: 36px;
        padding: 0 10px;
      }

      .grid,
      .sales-grid,
      .process-grid,
      .trust,
      .sweetness-labels,
      .admin-grid {
        grid-template-columns: 1fr;
      }

      .hero-actions {
        display: grid;
      }

      .btn {
        width: 100%;
      }

      .mobile-contact-bar {
        bottom: calc(10px + env(safe-area-inset-bottom, 0px));
      }

      .fact {
        display: grid;
        gap: 4px;
      }

      .fact strong {
        text-align: left;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }
