@layer reset, base, components, responsive;
@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  body,
  h1,
  h2,
  h3,
  h4,
  p {
    margin: 0;
  }
  button,
  input,
  select,
  textarea {
    font: inherit;
  }
  fieldset {
    border: 0;
    padding: 0;
    margin: 0;
    min-width: 0;
  }
  button,
  a,
  input,
  select,
  textarea,
  summary {
    -webkit-tap-highlight-color: transparent;
  }
  button,
  summary {
    cursor: pointer;
  }
  button {
    color: inherit;
  }
  img {
    display: block;
    max-width: 100%;
  }
  svg {
    flex-shrink: 0;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  [hidden] {
    display: none !important;
  }
}
@layer base {
  :root {
    --paper: #f8f7f3;
    --ink: #282f25;
    --olive: #35432e;
    --muted: #646b5f;
    --sage: #e7e9df;
    --line: #dcded3;
    --white: #fffefa;
    --plum: #685774;
    --lavender: #efebf2;
    --serif: Georgia, "Times New Roman", serif;
    --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
  }
  body {
    background: var(--paper);
    color: var(--ink);
    font: 15px/1.65 var(--sans);
    -webkit-font-smoothing: antialiased;
  }
  ::selection {
    background: #dce4d0;
    color: #26351c;
  }
  :focus-visible {
    outline: 2px solid var(--olive);
    outline-offset: 5px;
  }
  h1,
  h2,
  h3,
  h4 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -0.04em;
  }
  h1 {
    font-size: clamp(46px, 5.05vw, 76px);
  }
  h2 {
    font-size: clamp(38px, 3.7vw, 55px);
  }
  h3 {
    font-size: 27px;
  }
  h4 {
    font-size: 23px;
  }
  p {
    color: var(--muted);
  }
  em {
    font-weight: inherit;
  }
  a,
  button {
    touch-action: manipulation;
  }
  .container {
    width: min(1320px, calc(100% - 96px));
    margin-inline: auto;
  }
  .icon {
    width: 21px;
    height: 21px;
    vertical-align: middle;
  }
  .eyebrow,
  .micro {
    display: block;
    font-size: 10px;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.19em;
    text-transform: uppercase;
  }
  .eyebrow {
    color: var(--muted);
    margin-bottom: 22px;
  }
  .micro {
    font-size: 8px;
    letter-spacing: 0.13em;
  }
  .small-note {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
  }
  .text-link {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding-block: 8px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #a3ad98;
  }
  .text-link .icon {
    width: 18px;
    height: 18px;
    transition: transform 0.2s;
  }
  .text-link:hover .icon {
    transform: translateX(4px);
  }
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding: 15px 22px;
    background: var(--olive);
    color: #fffefa;
    border: 1px solid var(--olive);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    transition:
      background 0.2s,
      box-shadow 0.2s;
  }
  .button:hover {
    background: #202e1a;
    box-shadow: 0 3px 10px #27352015;
  }
  .button .icon {
    width: 18px;
    height: 18px;
  }
  .button-secondary {
    background: transparent;
    border-color: #929989;
    color: var(--ink);
  }
  .button-secondary:hover {
    background: var(--sage);
  }
  .button-small {
    font-size: 12px;
    padding: 11px 17px;
    gap: 22px;
  }
  .section {
    padding-block: 110px;
  }
  .section-heading {
    margin-bottom: 45px;
    max-width: 780px;
  }
  .section-heading p {
    max-width: 610px;
    margin-top: 22px;
  }
  .skip-link {
    position: fixed;
    top: -70px;
    left: 15px;
    z-index: 100;
    padding: 12px 18px;
    background: var(--olive);
    color: white;
  }
  .skip-link:focus {
    top: 12px;
  }
}
@layer components {
  .site-header {
    background: #f8f7f3f5;
    border-bottom: 1px solid #dcded365;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
  }
  .header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 60px;
  }
  .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
  }
  .brand > span:last-child {
    font: 27px/1.2 var(--serif);
    letter-spacing: -0.045em;
  }
  .brand-mark {
    width: 22px;
    height: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }
  .brand-mark i {
    border: 2px solid currentColor;
  }
  .brand-mark i:nth-child(2) {
    height: 5px;
    background: currentColor;
  }
  .brand-mark i:nth-child(4) {
    height: 14px;
    margin-top: -4px;
  }
  .site-nav {
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: center;
    font-size: 12px;
  }
  .site-nav > a:hover,
  .nav-actions > a:first-child:hover {
    text-decoration: underline;
    text-underline-offset: 6px;
  }
  .site-nav [aria-current="page"] {
    color: #536442;
  }
  .nav-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 27px;
  }
  .nav-actions > a:first-child .icon {
    width: 14px;
    margin-left: 3px;
  }
  .product-menu {
    position: relative;
  }
  .product-menu summary {
    display: flex;
    align-items: center;
    gap: 7px;
    list-style: none;
    min-height: 44px;
  }
  summary::-webkit-details-marker {
    display: none;
  }
  .product-menu summary .icon {
    width: 13px;
  }
  .product-dropdown {
    position: absolute;
    top: 54px;
    left: -25px;
    width: 280px;
    background: var(--white);
    padding: 26px;
    border: 1px solid var(--line);
    box-shadow: 0 15px 30px #29312212;
    border-radius: 5px;
  }
  .product-dropdown .eyebrow {
    font-size: 8px;
    margin-bottom: 10px;
  }
  .product-dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .product-dropdown a:last-child {
    border: 0;
    padding-bottom: 0;
  }
  .product-dropdown a:hover {
    color: #6b784c;
  }
  .product-dropdown .icon {
    width: 16px;
  }
  .mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--line);
    padding: 9px;
    border-radius: 4px;
  }
  .hero {
    display: grid;
    grid-template-columns: 0.92fr 1.12fr;
    gap: 62px;
    padding-top: 80px;
    padding-bottom: 48px;
    align-items: center;
    min-height: 665px;
  }
  .hero-copy {
    padding-bottom: 38px;
  }
  .hero .eyebrow {
    margin-bottom: 24px;
  }
  .hero h1 {
    font-size: clamp(45px, 4.45vw, 68px);
    line-height: 1.06;
    letter-spacing: -0.055em;
  }
  .hero-copy > p {
    margin-top: 28px;
    max-width: 410px;
    font-size: 16px;
    line-height: 1.75;
  }
  .hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .hero-actions .button-secondary {
    gap: 10px;
  }
  .hero-signoff {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 40px;
    font: italic 18px/1.45 var(--serif);
    color: #68725d;
    transform: rotate(-4deg);
  }
  .hand-line {
    width: 22px;
    border-top: 1px solid #8d9683;
    margin-top: 10px;
  }
  .hero-art {
    min-width: 0;
  }
  .collection-scene {
    position: relative;
    padding-bottom: 30px;
  }
  .hero-art .collection-scene {
    padding-bottom: 70px;
  }
  .browser-frame {
    background: var(--white);
    border: 1px solid #d8d9d1;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 22px 44px -24px #242c334d;
  }
  .window-bar {
    height: 36px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 14px;
    border-bottom: 1px solid var(--line);
    font-size: 8px;
    letter-spacing: 0.1em;
    color: var(--muted);
  }
  .window-dots {
    display: flex;
    gap: 4px;
  }
  .window-dots i {
    width: 5px;
    height: 5px;
    background: #babdb2;
    border-radius: 50%;
  }
  .saved {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0;
  }
  .saved .icon {
    width: 12px;
  }
  .collection-layout {
    display: grid;
    grid-template-columns: 0.8fr 1fr 1.15fr;
    grid-template-rows: 205px 180px;
    gap: 5px;
    padding: 13px;
  }
  .collection-intro {
    grid-column: 1;
    grid-row: 1;
    padding: 12px 5px 10px 2px;
  }
  .collection-intro .micro {
    font-size: 6px;
    margin-bottom: 16px;
  }
  .collection-intro h3 {
    font-size: 28px;
    line-height: 1.02;
  }
  .collection-intro p {
    font-size: 9px;
    line-height: 1.5;
    margin-top: 14px;
  }
  .collection-intro small {
    display: block;
    font-size: 7px;
    margin-top: 10px;
    color: var(--muted);
  }
  .tiny-rule {
    display: block;
    width: 15px;
    border-top: 1px solid #abb1a1;
    margin-top: 14px;
  }
  .demo-product {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #e8e4db;
  }
  .demo-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .demo-product > div {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fffefaf2;
    padding: 7px 8px;
    font-size: 8px;
    line-height: 1.35;
  }
  .demo-product > div small {
    font-size: 6px;
    display: block;
    color: var(--muted);
    margin-top: 2px;
  }
  .demo-tote {
    grid-column: 2;
    grid-row: 1;
  }
  .demo-tote img {
    object-position: center 50%;
  }
  .demo-model {
    grid-column: 3;
    grid-row: 1 / 3;
  }
  .demo-model img {
    object-position: center 35%;
  }
  .demo-dress {
    grid-column: 2;
    grid-row: 2;
  }
  .demo-dress img {
    object-position: center 30%;
  }
  .image-caption {
    position: absolute;
    bottom: 28px;
    left: 15px;
    font: 27px/1.03 var(--serif);
    color: #fff;
    text-shadow: 0 1px 10px #0008;
  }
  .demo-message {
    grid-column: 1;
    grid-row: 2;
    background: #59644a;
    color: var(--white);
    padding: 17px 13px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .demo-message .micro {
    font-size: 5px;
    letter-spacing: 0.15em;
  }
  .demo-message p {
    font: 30px/1.02 var(--serif);
    color: inherit;
  }
  .demo-message .icon {
    width: 18px;
    align-self: flex-end;
  }
  .collection-layout[data-layout="product"] .demo-tote {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .collection-layout[data-layout="product"] .collection-intro {
    grid-column: 2;
    grid-row: 1;
    padding: 20px 10px;
  }
  .collection-layout[data-layout="product"] .demo-message {
    display: none;
  }
  .collection-layout[data-layout="fresh"] .demo-model {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .collection-layout[data-layout="fresh"] .demo-dress {
    grid-column: 3;
    grid-row: 1;
  }
  .collection-layout[data-layout="fresh"] .collection-intro {
    grid-column: 2;
    grid-row: 2;
    padding: 10px;
  }
  .collection-layout[data-layout="fresh"] .collection-intro .micro,
  .collection-layout[data-layout="fresh"] .collection-intro .tiny-rule,
  .collection-layout[data-layout="fresh"] .collection-intro small {
    display: none;
  }
  .collection-layout[data-layout="fresh"] .demo-message {
    grid-column: 3;
    grid-row: 2;
  }
  .preview-caption {
    font-size: 7px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 13px 12px;
  }
  .preview-caption > span:last-child {
    margin-left: auto;
  }
  .status-dot {
    width: 4px;
    height: 4px;
    background: #667b52;
    border-radius: 50%;
  }
  .sorting-note {
    position: absolute;
    bottom: 12px;
    left: -26px;
    width: 305px;
    background: #fffefa;
    border: 1px solid #d8d9d1;
    border-radius: 5px;
    padding: 18px;
    box-shadow: 0 12px 20px #242c3314;
  }
  .sorting-note > div:first-child {
    display: flex;
    gap: 9px;
    align-items: center;
    font-size: 11px;
  }
  .sorting-note strong {
    font-weight: 500;
  }
  .sorting-note .icon {
    width: 18px;
  }
  .demo-badge {
    font-size: 7px;
    color: var(--muted);
    padding: 3px 6px;
    border: 1px solid var(--line);
    border-radius: 2px;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
  .sorting-note .demo-badge {
    margin-left: auto;
  }
  .demo-layout-options {
    display: flex;
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 3px;
  }
  .demo-layout-options button {
    border: 0;
    flex: 1;
    font-size: 9px;
    min-height: 31px;
    padding: 5px 4px;
    border-radius: 2px;
    background: transparent;
    white-space: nowrap;
  }
  .demo-layout-options button[aria-pressed="true"] {
    background: var(--sage);
    color: #263b1d;
  }
  .sorting-note > p {
    font-size: 9px;
    margin-top: 10px;
  }
  .feature-ribbon {
    border-block: 1px solid var(--line);
  }
  .feature-ribbon > div {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding-block: 24px;
  }
  .feature-ribbon a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 3px 12px;
    border-left: 1px solid var(--line);
    font-size: 12px;
  }
  .feature-ribbon a:first-child {
    border: 0;
  }
  .feature-ribbon a:hover {
    color: #6b795b;
  }
  .ribbon-arrow {
    display: none;
  }
  .collection-feature {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 92px;
    align-items: center;
  }
  .feature-copy > p {
    margin-top: 24px;
    max-width: 430px;
    font-size: 15px;
    line-height: 1.8;
  }
  .feature-copy > .text-link,
  .feature-copy > .button {
    margin-top: 26px;
  }
  .feature-copy > .small-note {
    margin-top: 20px;
  }
  .feature-list {
    margin-top: 32px;
  }
  .feature-list > div {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 27px;
  }
  .feature-list > div > .icon {
    width: 43px;
    height: 43px;
    padding: 10px;
    border: 1px solid #c9cec0;
    border-radius: 5px;
  }
  .feature-list h3 {
    font-size: 22px;
    letter-spacing: -0.025em;
  }
  .feature-list p {
    font-size: 13px;
    margin-top: 8px;
    max-width: 325px;
  }
  .editorial-collage {
    position: relative;
    padding: 24px 0 30px 35px;
  }
  .collage-back {
    position: absolute;
    left: -30px;
    top: 0;
    width: 60%;
    height: 100%;
    overflow: hidden;
  }
  .collage-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.4);
  }
  .mini-collection {
    position: relative;
    background: #fffefa;
    box-shadow: 0 15px 38px #292c2820;
    border: 1px solid #d8d9d1;
    padding: 18px;
    border-radius: 4px;
  }
  .mini-collection-heading {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 14px;
  }
  .mini-collection-heading h3 {
    font-size: 21px;
  }
  .status-label {
    display: inline-flex;
    font-size: 7px;
    line-height: 1.4;
    background: #e8eedf;
    color: #415332;
    border-radius: 3px;
    padding: 4px 6px;
  }
  .mini-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 12px;
  }
  .mini-grid img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 2px;
  }
  .mini-grid > div > span {
    display: block;
    margin-top: 5px;
    font-size: 8px;
  }
  .mini-main {
    grid-row: span 2;
  }
  .mini-main img {
    height: 100%;
    aspect-ratio: auto;
    object-position: 50% 35%;
  }
  .lookbook-feature {
    background: #e6e9df;
    overflow: hidden;
  }
  .split-section {
    display: grid;
    grid-template-columns: 0.84fr 1.16fr;
    gap: 80px;
    align-items: center;
    padding-block: 80px;
  }
  .lookbook-feature .feature-copy {
    padding-bottom: 8px;
  }
  .quiet-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
  }
  .quiet-tags span {
    border: 1px solid #b6bfaa;
    padding: 4px 10px;
    font-size: 10px;
    border-radius: 3px;
    color: #5f6b53;
  }
  .lookbook-scene {
    padding: 25px 0 15px;
  }
  .folio-label {
    display: block;
    font-size: 8px;
    letter-spacing: 0.22em;
    color: #617051;
    margin-bottom: 20px;
    text-align: right;
  }
  .lookbook-spread {
    display: grid;
    grid-template-columns: 1fr 1fr;
    aspect-ratio: 1.34;
    box-shadow: 0 26px 24px -16px #303c394d;
    transform: rotate(-3deg);
    background: #fffdf7;
    padding: 8px;
  }
  .lookbook-cover {
    position: relative;
    min-width: 0;
  }
  .lookbook-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .lookbook-cover > div {
    position: absolute;
    bottom: 20px;
    left: 18px;
    right: 10px;
    color: white;
    text-shadow: 0 1px 8px #40352680;
  }
  .lookbook-cover .micro {
    font-size: 6px;
    margin-bottom: 18px;
  }
  .lookbook-cover h3 {
    font-size: 38px;
  }
  .lookbook-cover p {
    color: white;
    font-size: 9px;
    margin-top: 12px;
  }
  .lookbook-page {
    background: linear-gradient(90deg, #00000012, transparent 10%);
    padding: 28px 23px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
  }
  .lookbook-page .micro {
    font-size: 5px;
  }
  .lookbook-page h4 {
    font-size: 23px;
    margin-block: 18px 14px;
    line-height: 1.14;
  }
  .lookbook-page img {
    width: 80%;
    height: 47%;
    object-fit: cover;
    margin-left: auto;
  }
  .lookbook-page p {
    font-size: 8px;
    padding-block: 10px;
  }
  .book-page-number {
    font-size: 5px;
    letter-spacing: 0.15em;
    text-align: right;
  }
  .visual-footnote {
    display: block;
    font-size: 9px;
    color: var(--muted);
    margin-top: 22px;
    line-height: 1.5;
  }
  .lookbook-scene > .visual-footnote {
    text-align: right;
    margin-top: 30px;
  }
  .studio-feature {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 94px;
    align-items: center;
  }
  .studio-scene {
    background: #f0edf2;
    border: 1px solid #ded7e4;
    padding: 22px;
    border-radius: 6px;
    color: #584864;
  }
  .studio-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    gap: 8px;
  }
  .studio-top > span {
    display: flex;
    gap: 7px;
    align-items: center;
    font: 19px var(--serif);
  }
  .studio-top small {
    font-size: 9px;
  }
  .studio-top b,
  .inline-ai {
    font: 8px var(--sans);
    letter-spacing: 0.03em;
    padding: 3px 4px;
    border: 1px solid #c2b4cc;
    border-radius: 3px;
    align-self: flex-start;
  }
  .inline-ai {
    color: var(--plum);
    position: relative;
    top: -3px;
    margin-left: 2px;
  }
  .studio-images {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 10px;
    align-items: center;
  }
  .studio-images img {
    width: 100%;
    height: 235px;
    object-fit: cover;
    background: #e7e2db;
    border-radius: 3px;
  }
  .studio-reference img {
    height: 180px;
    object-fit: contain;
  }
  .studio-images span {
    display: block;
    font-size: 6px;
    letter-spacing: 0.1em;
    margin-top: 10px;
  }
  .studio-result img {
    object-position: 41% center;
  }
  .studio-direction {
    margin-top: 20px;
    background: #fffdfa;
    padding: 18px;
    border: 1px solid #ded7e4;
    border-radius: 4px;
  }
  .studio-direction > p {
    font: 23px/1.3 var(--serif);
    color: #62516d;
    margin-top: 10px;
  }
  .studio-direction > div {
    display: flex;
    gap: 6px;
    margin-top: 14px;
  }
  .studio-direction > div > span {
    font-size: 8px;
    padding: 3px 8px;
    background: #f2eef5;
    border: 1px solid #e7deed;
    border-radius: 3px;
  }
  .studio-scene .visual-footnote {
    font-size: 8px;
    margin-top: 13px;
    color: #746780;
  }
  .tour-section {
    background: #eeeee7;
    padding-block: 84px;
    border-block: 1px solid var(--line);
  }
  .tour-section .section-heading {
    margin-inline: auto;
    text-align: center;
  }
  .tour-section .section-heading p {
    margin-inline: auto;
  }
  .tour-tabs {
    display: flex;
    border-bottom: 1px solid #cfd3c5;
    gap: 14px;
    margin-bottom: 44px;
    justify-content: center;
  }
  .tour-tabs button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
    padding: 15px 20px;
    font-size: 12px;
    white-space: nowrap;
    margin-bottom: -1px;
  }
  .tour-tabs button[aria-selected="true"] {
    border-bottom-color: var(--olive);
    color: #2d4321;
    background: #e5e8db;
  }
  .tour-tabs button:hover {
    background: #e5e8db;
  }
  .tour-tabs .icon {
    width: 17px;
  }
  .noscript-tour-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-bottom: 25px;
  }
  .tour-panel {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 85px;
    align-items: center;
    max-width: 1110px;
    margin-inline: auto;
  }
  .tour-description h3 {
    font-size: 43px;
  }
  .tour-description > p {
    margin-top: 22px;
  }
  .tour-description .text-link {
    margin-top: 10px;
  }
  .tour-visual {
    min-width: 0;
  }
  .tour-visual .collection-scene {
    padding-bottom: 0;
  }
  .tour-visual .lookbook-scene {
    padding-inline: 10px;
  }
  .check-list {
    list-style: none;
    padding: 0;
    margin-block: 25px;
  }
  .check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    padding-block: 6px;
  }
  .check-list .icon {
    color: #687956;
    width: 16px;
    height: 20px;
  }
  .recommend-scene {
    background: #fffefa;
    border: 1px solid var(--line);
    padding: 22px;
    border-radius: 5px;
  }
  .store-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 7px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line);
  }
  .store-nav strong {
    font: 12px var(--serif);
    letter-spacing: 0.1em;
  }
  .store-nav .icon {
    width: 15px;
    margin-left: auto;
  }
  .store-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    margin-top: 20px;
  }
  .store-product > img {
    height: 210px;
    width: 100%;
    object-fit: cover;
    object-position: center 30%;
  }
  .store-product .micro {
    font-size: 6px;
  }
  .store-product h3 {
    font-size: 27px;
    margin-top: 12px;
  }
  .store-product p {
    font-size: 8px;
    margin-top: 12px;
  }
  .store-size {
    display: block;
    font-size: 7px;
    padding-block: 14px;
    word-spacing: 7px;
  }
  .fake-button {
    display: block;
    background: var(--olive);
    color: #fffefa;
    font-size: 7px;
    padding: 6px 9px;
    text-align: center;
  }
  .picks-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-block: 24px 12px;
  }
  .picks-heading h4 {
    font-size: 22px;
  }
  .picks-heading > span {
    font-size: 5px;
    letter-spacing: 0.12em;
  }
  .picks-heading .icon {
    width: 10px;
    height: 10px;
  }
  .picks-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .picks-products img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    object-position: center 35%;
  }
  .picks-products span {
    display: block;
    font-size: 7px;
    margin-top: 5px;
  }
  .recommend-scene .visual-footnote {
    font-size: 8px;
    margin-top: 15px;
  }
  .report-scene {
    border: 1px solid var(--line);
    background: #fffefa;
    padding: 28px;
    border-radius: 5px;
  }
  .report-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
  }
  .report-title h3 {
    font-size: 34px;
    margin-top: 12px;
  }
  .report-period {
    display: flex;
    align-items: center;
    gap: 7px;
    border-block: 1px solid var(--line);
    padding-block: 12px;
    margin-top: 22px;
    font-size: 9px;
  }
  .report-period .icon {
    width: 13px;
    height: 13px;
  }
  .report-period > span {
    margin-left: auto;
  }
  .report-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    padding-block: 24px;
  }
  .report-stats > div {
    border-left: 1px solid var(--line);
    padding-left: 16px;
  }
  .report-stats > div:first-child {
    border: 0;
    padding-left: 0;
  }
  .report-stats small {
    display: block;
    font-size: 8px;
    color: var(--muted);
  }
  .report-stats strong {
    font: 34px/1.5 var(--serif);
  }
  .report-stats span {
    display: block;
    font-size: 6px;
    color: var(--muted);
  }
  .chart-label {
    display: flex;
    justify-content: space-between;
    font-size: 7px;
    color: var(--muted);
  }
  .report-chart {
    width: 100%;
    height: 130px;
    margin-block: 12px;
    overflow: visible;
  }
  .chart-lines {
    stroke: #dfe4d6;
    stroke-width: 0.8;
    fill: none;
  }
  .chart-area {
    fill: #d7e0c780;
  }
  .chart-line {
    fill: none;
    stroke: #6d8056;
    stroke-width: 2;
  }
  .report-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-block: 8px;
    border-top: 1px solid var(--line);
    font-size: 9px;
  }
  .report-row > span {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .report-row img {
    width: 25px;
    height: 30px;
    object-fit: cover;
  }
  .report-row strong {
    font-size: 8px;
    font-weight: 500;
  }
  .report-scene .visual-footnote {
    font-size: 7px;
    margin-top: 12px;
  }
  .steps,
  .benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
  }
  .steps article > span,
  .benefit-number {
    display: block;
    font: italic 28px/1 var(--serif);
    color: #859173;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 24px;
  }
  .steps h3,
  .benefits h3 {
    font-size: 27px;
    line-height: 1.13;
  }
  .steps p,
  .benefits p {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 16px;
  }
  .steps + .text-link {
    margin-top: 35px;
  }
  .faq-section {
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 85px;
  }
  .faq-section > div:first-child > .text-link {
    margin-top: 28px;
  }
  .faq-list details {
    border-bottom: 1px solid var(--line);
  }
  .faq-list details:first-child {
    border-top: 1px solid var(--line);
  }
  .faq-list summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding-block: 22px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
  }
  .faq-list summary > span {
    font-size: 23px;
    line-height: 1;
    font-weight: 300;
    color: #6c775f;
    transition: transform 0.2s;
  }
  .faq-list details[open] summary > span {
    transform: rotate(45deg);
  }
  .faq-list details > p {
    padding: 0 38px 24px 0;
    font-size: 13px;
    line-height: 1.9;
  }
  .closing-cta {
    background: #35432e;
    color: #faf8ef;
    padding: 88px 0 82px;
    text-align: center;
  }
  .closing-cta .eyebrow {
    color: #ccd6bd;
  }
  .closing-cta h2 {
    font-size: clamp(40px, 4.2vw, 62px);
  }
  .closing-cta p {
    color: #cbd3c1;
    margin-top: 24px;
    font-size: 14px;
  }
  .closing-cta .button {
    background: #f6f4ec;
    color: #34432d;
    border-color: #f6f4ec;
    margin-top: 30px;
  }
  .closing-cta .button:hover {
    background: #dfe6d4;
  }
  .cta-note {
    display: block;
    font-size: 10px;
    color: #cbd3c1;
    margin-top: 22px;
  }
  .site-footer {
    padding-top: 65px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
  }
  .footer-brand p {
    font: 23px/1.35 var(--serif);
    color: #66715c;
    margin-block: 25px 30px;
  }
  .footer-brand .micro {
    font-size: 7px;
    letter-spacing: 0.12em;
  }
  .footer-top h2 {
    font: 11px/1.5 var(--sans);
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 20px;
  }
  .footer-top > div:not(:first-child) > a {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 11px;
  }
  .footer-top > div:not(:first-child) > a:hover {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .footer-top .icon {
    width: 13px;
    height: 13px;
  }
  .footer-top > div:not(:first-child) > p {
    font-size: 12px;
    line-height: 1.8;
    margin-top: 25px;
  }
  .footer-note {
    display: block;
    font-size: 10px;
    color: var(--muted);
    margin-top: 24px;
  }
  .footer-note em {
    font: italic 18px var(--serif);
    color: var(--plum);
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid var(--line);
    padding-block: 22px;
    font-size: 10px;
    color: var(--muted);
  }
  .footer-bottom > div {
    display: flex;
    gap: 20px;
  }
  .footer-bottom a:hover {
    text-decoration: underline;
  }
  .footer-disclosure {
    font-size: 9px;
    padding-bottom: 25px;
    color: #747b6d;
  }
  .feature-hero {
    padding-block: 35px 65px;
  }
  .breadcrumb {
    font-size: 11px;
    display: inline-block;
    margin-bottom: 50px;
  }
  .breadcrumb span {
    color: var(--muted);
    margin-left: 12px;
  }
  .feature-hero-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 75px;
    align-items: center;
  }
  .feature-hero-grid h1 {
    font-size: clamp(44px, 4.5vw, 64px);
    max-width: 560px;
  }
  .feature-hero-grid > div:first-child > p {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 28px;
    max-width: 480px;
  }
  .feature-hero-grid .eyebrow .icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
  }
  .feature-hero-visual {
    min-width: 0;
  }
  .feature-hero-visual .lookbook-scene {
    padding: 20px;
    background: var(--sage);
  }
  .feature-hero + .section {
    border-top: 1px solid var(--line);
  }
  .soft-section {
    background: var(--sage);
    padding-block: 80px;
  }
  .related-section {
    padding-bottom: 75px;
  }
  .related-section > div {
    display: flex;
    gap: 20px;
  }
  .related-link {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--line);
    padding: 22px;
    flex: 1;
    background: #fefdfa;
    border-radius: 4px;
  }
  .related-link > span {
    flex: 1;
  }
  .related-link:hover {
    background: var(--sage);
  }
  .text-hero {
    padding-block: 95px 70px;
    max-width: 1000px;
    text-align: center;
  }
  .text-hero p {
    margin: 28px auto 0;
    max-width: 540px;
    font-size: 16px;
  }
  .text-hero > .button {
    margin-top: 32px;
  }
  .text-hero > .hero-actions {
    justify-content: center;
  }
  .setup-journey {
    padding-bottom: 80px;
  }
  .setup-journey > article {
    display: grid;
    grid-template-columns: 0.12fr 1fr 0.8fr;
    align-items: center;
    gap: 50px;
    border-top: 1px solid var(--line);
    padding-block: 65px;
  }
  .journey-index {
    font: italic 40px var(--serif);
    color: #889578;
    align-self: start;
  }
  .setup-journey h2 {
    font-size: 44px;
  }
  .setup-journey p {
    margin-top: 24px;
    max-width: 470px;
  }
  .setup-journey .text-link {
    margin-top: 20px;
  }
  .journey-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--sage);
    padding: 35px;
    border: 1px solid var(--line);
  }
  .journey-card > .icon {
    width: 32px;
    height: 32px;
    margin-bottom: 15px;
  }
  .journey-card h3 {
    font-size: 23px;
  }
  .connection-line {
    height: 50px;
    border-left: 1px dashed #a1af92;
    margin-block: 20px;
  }
  .journey-photo {
    position: relative;
    height: 310px;
    overflow: hidden;
  }
  .journey-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 27%;
  }
  .journey-photo span {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    background: #fffefaf0;
    padding: 14px;
    font: 18px var(--serif);
  }
  .setup-checklist {
    padding: 35px;
    background: var(--sage);
    border: 1px solid var(--line);
  }
  .setup-checklist > p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
  }
  .setup-checklist .icon {
    width: 15px;
  }
  .pricing-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    padding-bottom: 100px;
    max-width: 1100px;
  }
  .access-card {
    background: #e8eadf;
    border: 1px solid #d6daca;
    padding: 42px;
    border-radius: 6px;
  }
  .access-card h2 {
    font-size: 41px;
  }
  .access-card > p {
    margin-top: 24px;
  }
  .access-card .check-list {
    margin-block: 28px;
    border-block: 1px solid #cdd2c0;
    padding-block: 20px;
  }
  .pricing-notes {
    padding-top: 10px;
  }
  .pricing-notes article {
    border-bottom: 1px solid var(--line);
    margin-bottom: 28px;
    padding-bottom: 28px;
  }
  .pricing-notes article > .icon {
    margin-bottom: 18px;
    width: 25px;
    height: 25px;
  }
  .pricing-notes p {
    margin-top: 15px;
    font-size: 14px;
  }
  .pricing-notes .text-link {
    margin-top: 13px;
  }
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 110px;
    padding-block: 90px 115px;
  }
  .contact-intro h1 {
    font-size: 61px;
  }
  .contact-intro > p {
    max-width: 400px;
    font-size: 16px;
    margin-top: 26px;
  }
  .contact-email {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 17px;
    margin-top: 40px;
  }
  .contact-email .icon {
    width: 18px;
  }
  .contact-details {
    margin-top: 65px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
    max-width: 380px;
  }
  .contact-details p {
    font-size: 13px;
  }
  .contact-details .text-link {
    margin-top: 18px;
  }
  .contact-form-wrap {
    background: #fffefa;
    border: 1px solid var(--line);
    padding: 36px;
    border-radius: 6px;
  }
  .contact-form-wrap h2 {
    font-size: 34px;
    margin-bottom: 28px;
  }
  label {
    display: block;
    font-size: 12px;
    margin-top: 20px;
    margin-bottom: 7px;
    font-weight: 500;
  }
  label > span {
    font-weight: 400;
    color: var(--muted);
    margin-left: 6px;
    font-size: 10px;
  }
  input,
  select,
  textarea {
    width: 100%;
    border: 1px solid #d3d8c9;
    border-radius: 4px;
    background: #fffefa;
    color: var(--ink);
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.6;
  }
  input::placeholder,
  textarea::placeholder {
    color: #838879;
  }
  textarea {
    resize: vertical;
    min-height: 135px;
  }
  #contact-form .button {
    margin-top: 22px;
    width: 100%;
    justify-content: space-between;
  }
  .form-note,
  .form-status {
    margin-top: 16px;
    font-size: 11px;
    line-height: 1.7;
  }
  .form-status:empty {
    display: none;
  }
  .form-status {
    color: #425b32;
    padding: 12px;
    background: #ecf0e5;
    border-radius: 3px;
  }
  .form-status a,
  .contact-fallback a,
  .entry-help a {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .contact-fallback {
    font-size: 11px;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }
  .support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-bottom: 85px;
  }
  .support-grid > article {
    border: 1px solid var(--line);
    background: #fffefa;
    border-radius: 5px;
    padding: 28px;
    display: flex;
    flex-direction: column;
  }
  .support-grid h2 {
    font-size: 28px;
    margin-top: 24px;
  }
  .support-grid p {
    font-size: 13px;
    margin-block: 16px 22px;
  }
  .support-grid .text-link {
    margin-top: auto;
    font-size: 11px;
    gap: 9px;
  }
  .support-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: var(--sage);
    padding: 45px;
    margin-bottom: 85px;
  }
  .support-callout h2 {
    font-size: 36px;
  }
  .support-callout p {
    margin-top: 18px;
    max-width: 620px;
    font-size: 13px;
  }
  .support-callout .button {
    white-space: nowrap;
  }
  .app-entry {
    max-width: 640px;
    text-align: center;
    padding-block: 80px 100px;
  }
  .entry-mark {
    display: inline-flex;
    padding: 16px;
    margin-bottom: 25px;
    border: 1px solid var(--line);
    background: var(--sage);
    border-radius: 12px;
  }
  .entry-mark .icon {
    width: 28px;
    height: 28px;
  }
  .app-entry h1 {
    font-size: 60px;
  }
  .app-entry > p {
    margin-top: 25px;
  }
  .app-entry form {
    text-align: left;
    background: #fffefa;
    padding: 28px;
    border: 1px solid var(--line);
    margin-block: 35px 18px;
    border-radius: 5px;
  }
  .app-entry label {
    margin-top: 0;
  }
  .store-input {
    display: flex;
    gap: 8px;
  }
  .store-input input {
    min-width: 0;
  }
  .store-input .button {
    padding: 12px 16px;
    gap: 8px;
  }
  .app-entry form .small-note {
    margin-top: 12px;
    font-size: 10px;
  }
  .entry-help {
    margin-top: 32px;
    border-top: 1px solid var(--line);
    padding-top: 25px;
    font-size: 12px;
  }
  .entry-help a {
    display: inline-block;
    margin-top: 8px;
  }
  .error-page {
    min-height: 65vh;
  }
}
@layer responsive {
  @media (min-width: 1700px) {
    .hero {
      min-height: 710px;
    }
    .hero h1 {
      font-size: 73px;
    }
    .collection-layout {
      grid-template-rows: 230px 200px;
    }
  }
  @media (max-width: 1200px) {
    .container {
      width: calc(100% - 64px);
    }
    .header-inner {
      gap: 35px;
    }
    .site-nav {
      gap: 22px;
    }
    .nav-actions {
      gap: 18px;
    }
    .hero {
      gap: 42px;
      padding-top: 65px;
      min-height: 600px;
    }
    .hero h1 {
      font-size: 53px;
    }
    .hero-copy > p {
      font-size: 14px;
    }
    .hero-actions .button {
      padding: 12px 14px;
      font-size: 11px;
      gap: 12px;
    }
    .collection-layout {
      grid-template-rows: 180px 155px;
      padding: 10px;
    }
    .collection-intro h3 {
      font-size: 24px;
    }
    .collection-intro .micro {
      margin-bottom: 12px;
      font-size: 5px;
    }
    .collection-intro p {
      font-size: 8px;
    }
    .collection-intro small {
      font-size: 6px;
    }
    .demo-message p {
      font-size: 25px;
    }
    .demo-message {
      padding: 13px 10px;
    }
    .image-caption {
      font-size: 23px;
      left: 12px;
    }
    .sorting-note {
      left: -15px;
      width: 285px;
    }
    .collection-feature,
    .studio-feature,
    .split-section,
    .feature-hero-grid {
      gap: 55px;
    }
    .collection-feature {
      grid-template-columns: 1fr 1fr;
    }
    .editorial-collage {
      padding-left: 15px;
    }
    .mini-collection {
      padding: 12px;
    }
    .mini-grid {
      gap: 7px;
    }
    .mini-collection-heading h3 {
      font-size: 19px;
    }
    .mini-collection-heading .status-label {
      font-size: 6px;
    }
    .lookbook-page {
      padding: 18px 14px;
    }
    .lookbook-cover h3 {
      font-size: 32px;
    }
    .tour-panel {
      gap: 45px;
    }
    .tour-tabs button {
      padding: 15px;
    }
    .contact-layout {
      gap: 65px;
    }
    .contact-intro h1 {
      font-size: 52px;
    }
    .support-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 940px) {
    .header-inner {
      min-height: 74px;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 0;
      padding-block: 15px;
    }
    .brand > span:last-child {
      font-size: 25px;
    }
    .has-js .mobile-toggle {
      display: inline-flex;
    }
    .site-nav {
      flex-basis: 100%;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding-top: 18px;
    }
    .has-js .site-nav:not([data-open="true"]) {
      display: none;
    }
    .site-nav > a,
    .product-menu summary {
      padding: 13px 0;
      border-bottom: 1px solid var(--line);
    }
    .product-dropdown {
      position: static;
      width: auto;
      box-shadow: none;
      border: 0;
      border-left: 1px solid var(--line);
      padding: 16px;
      margin-block: 10px;
    }
    .product-menu summary {
      justify-content: space-between;
    }
    .nav-actions {
      margin: 18px 0 4px;
      justify-content: space-between;
    }
    .hero {
      gap: 32px;
    }
    .hero h1 {
      font-size: 45px;
    }
    .hero-copy {
      padding-bottom: 12px;
    }
    .hero-actions {
      gap: 10px;
    }
    .hero-signoff {
      margin-top: 24px;
      font-size: 16px;
    }
    .collection-layout {
      grid-template-rows: 170px 150px;
      grid-template-columns: 0.78fr 1fr 1fr;
      gap: 4px;
      padding: 8px;
    }
    .collection-intro h3 {
      font-size: 21px;
    }
    .collection-intro p {
      font-size: 7px;
    }
    .demo-message p {
      font-size: 23px;
    }
    .demo-message .micro {
      display: none;
    }
    .image-caption {
      font-size: 20px;
      left: 9px;
    }
    .hero-art .collection-scene {
      padding-bottom: 100px;
    }
    .sorting-note {
      bottom: 0;
      width: 275px;
    }
    .window-bar {
      font-size: 6px;
      gap: 8px;
      padding: 0 8px;
    }
    .saved {
      font-size: 6px;
    }
    .preview-caption {
      font-size: 6px;
      padding: 0 8px 8px;
    }
    .preview-caption > span:last-child {
      display: none;
    }
    .feature-ribbon a {
      gap: 8px;
      padding: 3px 8px;
      font-size: 10px;
    }
    .feature-ribbon .icon {
      width: 18px;
    }
    .collection-feature,
    .studio-feature,
    .split-section {
      gap: 35px;
    }
    .collection-feature {
      align-items: start;
    }
    .section {
      padding-block: 75px;
    }
    .feature-copy h2 {
      font-size: 38px;
    }
    .feature-copy > p {
      font-size: 13px;
    }
    .feature-list h3 {
      font-size: 21px;
    }
    .feature-list > div {
      gap: 12px;
    }
    .feature-list p {
      font-size: 12px;
    }
    .mini-collection-heading {
      flex-direction: column;
      align-items: flex-start;
    }
    .mini-grid {
      grid-template-columns: 1fr 1fr;
    }
    .mini-main {
      grid-column: 1 / 3;
      grid-row: auto;
      height: 190px;
    }
    .mini-grid > div:not(:first-child) img {
      height: 95px;
      object-fit: cover;
    }
    .studio-top {
      flex-wrap: wrap;
    }
    .studio-top > span {
      font-size: 17px;
    }
    .studio-images img {
      height: 195px;
    }
    .studio-reference img {
      height: 140px;
    }
    .studio-direction > p {
      font-size: 21px;
    }
    .studio-scene {
      padding: 17px;
    }
    .lookbook-spread {
      aspect-ratio: 1.18;
    }
    .lookbook-cover h3 {
      font-size: 28px;
    }
    .lookbook-page h4 {
      font-size: 19px;
    }
    .tour-tabs {
      gap: 0;
    }
    .tour-tabs button {
      font-size: 10px;
      padding: 14px 12px;
      gap: 6px;
    }
    .tour-panel {
      grid-template-columns: 0.85fr 1.15fr;
      gap: 32px;
    }
    .tour-description h3 {
      font-size: 36px;
    }
    .tour-description > p {
      font-size: 13px;
    }
    .tour-description .check-list li {
      font-size: 11px;
    }
    .steps,
    .benefits {
      gap: 28px;
    }
    .steps h3,
    .benefits h3 {
      font-size: 24px;
    }
    .faq-section {
      gap: 40px;
    }
    .faq-list summary {
      font-size: 13px;
    }
    .footer-top {
      grid-template-columns: 1.25fr 1fr 1fr;
      gap: 28px;
    }
    .footer-top > div:last-child {
      grid-column: 1 / 4;
      display: flex;
      gap: 35px;
      align-items: center;
    }
    .footer-top > div:last-child > * {
      margin: 0;
    }
    .feature-hero-grid {
      gap: 35px;
    }
    .feature-hero-grid h1 {
      font-size: 44px;
    }
    .feature-hero-grid > div:first-child > p {
      font-size: 14px;
    }
    .recommend-scene,
    .report-scene {
      padding: 17px;
    }
    .store-product {
      gap: 15px;
    }
    .store-product h3 {
      font-size: 23px;
    }
    .store-nav > span {
      display: none;
    }
    .store-product > img {
      height: 190px;
    }
    .picks-products img {
      height: 90px;
    }
    .picks-heading h4 {
      font-size: 19px;
    }
    .picks-heading > span {
      font-size: 4px;
    }
    .report-title h3 {
      font-size: 28px;
    }
    .report-stats strong {
      font-size: 28px;
    }
    .report-stats > div {
      padding-left: 10px;
    }
    .setup-journey > article {
      gap: 28px;
      grid-template-columns: 35px 1fr 0.9fr;
    }
    .setup-journey h2 {
      font-size: 36px;
    }
    .pricing-layout {
      gap: 40px;
    }
    .access-card {
      padding: 30px;
    }
    .access-card h2 {
      font-size: 35px;
    }
    .contact-layout {
      gap: 35px;
    }
    .contact-intro h1 {
      font-size: 44px;
    }
    .contact-form-wrap {
      padding: 25px;
    }
  }
  @media (max-width: 700px) {
    .container {
      width: calc(100% - 40px);
    }
    .hero {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      padding-top: 48px;
      padding-bottom: 38px;
      gap: 32px;
    }
    .hero-copy {
      padding: 0;
    }
    .hero h1 {
      font-size: clamp(42px, 9.5vw, 62px);
    }
    .hero-copy > p {
      max-width: 440px;
      font-size: 14px;
      margin-top: 22px;
    }
    .hero .eyebrow {
      font-size: 8px;
      margin-bottom: 22px;
    }
    .hero-actions {
      margin-top: 25px;
    }
    .hero-actions .button {
      padding: 13px 17px;
      font-size: 12px;
    }
    .hero-signoff {
      display: none;
    }
    .hero-art {
      margin-left: 8px;
    }
    .hero-art .collection-scene {
      padding-bottom: 76px;
    }
    .collection-layout {
      grid-template-rows: 180px 150px;
      padding: 10px;
      grid-template-columns: 0.8fr 1fr 1.1fr;
    }
    .collection-intro h3 {
      font-size: 25px;
    }
    .collection-intro .micro {
      font-size: 5px;
    }
    .collection-intro p {
      font-size: 8px;
    }
    .collection-intro small {
      font-size: 6px;
    }
    .demo-message p {
      font-size: 27px;
    }
    .demo-product > div {
      font-size: 7px;
    }
    .demo-product > div small {
      font-size: 5px;
    }
    .image-caption {
      font-size: 25px;
    }
    .sorting-note {
      bottom: 0;
      left: -8px;
      width: 280px;
      padding: 15px;
    }
    .sorting-note > div:first-child {
      font-size: 10px;
    }
    .demo-layout-options button {
      font-size: 9px;
      min-height: 34px;
    }
    .window-bar {
      height: 33px;
      font-size: 6px;
    }
    .feature-ribbon > div {
      grid-template-columns: 1fr 1fr;
      padding-block: 8px;
    }
    .feature-ribbon a {
      justify-content: flex-start;
      border: 0;
      padding: 13px 7px;
      gap: 9px;
      font-size: 11px;
    }
    .feature-ribbon a:last-child {
      grid-column: 1 / 3;
      border-top: 1px solid var(--line);
    }
    .feature-ribbon a:nth-child(even) {
      border-left: 1px solid var(--line);
      padding-left: 20px;
    }
    .feature-ribbon a .ribbon-arrow {
      display: block;
      width: 12px;
      margin-left: auto;
    }
    .section {
      padding-block: 65px;
    }
    .collection-feature,
    .studio-feature,
    .split-section,
    .feature-hero-grid,
    .faq-section,
    .tour-panel,
    .pricing-layout,
    .contact-layout {
      display: flex;
      flex-direction: column;
      gap: 38px;
    }
    .collection-feature {
      flex-direction: column-reverse;
    }
    .editorial-collage {
      width: 100%;
      padding: 20px 0 20px 25px;
    }
    .collage-back {
      left: -20px;
      width: 65%;
    }
    .mini-grid {
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 8px;
    }
    .mini-main {
      grid-column: auto;
      grid-row: span 2;
      height: auto;
    }
    .mini-grid > div:not(:first-child) img {
      height: 125px;
    }
    .mini-collection-heading {
      flex-direction: row;
      align-items: center;
      padding-block: 3px;
    }
    .mini-collection-heading h3 {
      font-size: 21px;
    }
    .mini-collection {
      padding: 14px;
    }
    .feature-copy h2 {
      font-size: 42px;
    }
    .feature-copy > p {
      font-size: 14px;
      max-width: none;
    }
    .feature-list p {
      max-width: 450px;
      font-size: 13px;
    }
    .feature-list h3 {
      font-size: 23px;
    }
    .split-section {
      padding-block: 60px 40px;
    }
    .lookbook-scene {
      width: 100%;
      padding-inline: 8px;
    }
    .lookbook-spread {
      aspect-ratio: 1.35;
    }
    .lookbook-cover h3 {
      font-size: 33px;
    }
    .lookbook-page h4 {
      font-size: 24px;
    }
    .lookbook-page {
      padding: 18px;
    }
    .lookbook-page .micro {
      font-size: 5px;
    }
    .studio-feature {
      flex-direction: column-reverse;
    }
    .studio-feature > div {
      width: 100%;
    }
    .studio-images img {
      height: 250px;
    }
    .studio-reference img {
      height: 185px;
    }
    .studio-top {
      flex-wrap: nowrap;
    }
    .studio-direction > p {
      font-size: 24px;
    }
    .studio-direction .micro {
      font-size: 7px;
    }
    .tour-section {
      padding-block: 65px;
    }
    .section-heading {
      margin-bottom: 35px;
    }
    .section-heading h2 {
      font-size: 40px;
    }
    .section-heading p {
      font-size: 14px;
    }
    .tour-section .section-heading {
      text-align: left;
    }
    .tour-tabs {
      overflow-x: auto;
      justify-content: flex-start;
      margin-inline: -20px;
      padding-inline: 20px;
      scrollbar-width: thin;
      margin-bottom: 30px;
    }
    .tour-tabs button {
      font-size: 11px;
      padding: 15px 17px;
    }
    .tour-tabs .icon {
      width: 17px;
    }
    .tour-description h3 {
      font-size: 37px;
    }
    .tour-description > p {
      font-size: 14px;
    }
    .tour-description .check-list li {
      font-size: 12px;
    }
    .tour-panel > div {
      width: 100%;
    }
    .tour-visual {
      max-width: 550px;
      margin-inline: auto;
    }
    .steps,
    .benefits {
      grid-template-columns: 1fr;
      gap: 38px;
    }
    .steps article > span,
    .benefit-number {
      font-size: 25px;
      padding-bottom: 13px;
      margin-bottom: 20px;
    }
    .steps h3,
    .benefits h3 {
      font-size: 27px;
    }
    .steps p,
    .benefits p {
      font-size: 14px;
      margin-top: 12px;
    }
    .faq-section > div {
      width: 100%;
    }
    .faq-section h2 {
      font-size: 40px;
    }
    .faq-list summary {
      font-size: 14px;
    }
    .closing-cta {
      padding-block: 62px;
    }
    .closing-cta h2 {
      font-size: 43px;
    }
    .closing-cta p {
      max-width: 310px;
      margin-inline: auto;
    }
    .footer-top {
      grid-template-columns: 1fr 1fr;
      gap: 36px 25px;
      padding-bottom: 35px;
    }
    .footer-brand {
      grid-column: 1 / 3;
    }
    .footer-brand p {
      margin-block: 17px;
      font-size: 23px;
    }
    .footer-top > div:last-child {
      display: block;
      grid-column: 1 / 3;
      border-top: 1px solid var(--line);
      padding-top: 28px;
    }
    .footer-top > div:last-child > * {
      margin-bottom: 13px;
    }
    .footer-top > div:last-child > p {
      margin-block: 16px;
    }
    .footer-bottom {
      gap: 18px;
      font-size: 9px;
    }
    .footer-bottom > span:last-child {
      display: none;
    }
    .footer-disclosure {
      font-size: 8px;
    }
    .site-footer {
      padding-top: 50px;
    }
    .feature-hero {
      padding-top: 25px;
      padding-bottom: 40px;
    }
    .breadcrumb {
      margin-bottom: 36px;
    }
    .feature-hero-grid h1 {
      font-size: 47px;
    }
    .feature-hero-grid > div {
      width: 100%;
    }
    .feature-hero-grid > div:first-child > p {
      font-size: 15px;
    }
    .feature-hero .hero-actions {
      gap: 22px;
    }
    .feature-hero-visual .lookbook-scene {
      padding: 24px 18px;
    }
    .soft-section {
      padding-block: 60px;
    }
    .related-section {
      padding-bottom: 60px;
    }
    .related-section > div {
      flex-direction: column;
      gap: 10px;
    }
    .related-link {
      padding: 20px;
    }
    .text-hero {
      padding-block: 55px 45px;
      text-align: left;
    }
    .text-hero h1 {
      font-size: 48px;
    }
    .text-hero p {
      font-size: 15px;
    }
    .text-hero > .hero-actions {
      justify-content: flex-start;
    }
    .setup-journey > article {
      grid-template-columns: 30px 1fr;
      gap: 20px;
      padding-block: 40px;
    }
    .setup-journey > article > div:last-child {
      grid-column: 2;
    }
    .journey-index {
      font-size: 27px;
    }
    .setup-journey h2 {
      font-size: 36px;
    }
    .setup-journey p {
      font-size: 14px;
    }
    .journey-card,
    .setup-checklist {
      padding: 25px;
    }
    .setup-journey {
      padding-bottom: 30px;
    }
    .pricing-layout {
      padding-bottom: 65px;
    }
    .access-card {
      padding: 28px;
      width: 100%;
    }
    .access-card h2 {
      font-size: 35px;
    }
    .pricing-notes {
      padding-top: 0;
    }
    .pricing-notes article:last-child {
      margin-bottom: 0;
    }
    .contact-layout {
      padding-block: 55px 65px;
    }
    .contact-intro h1 {
      font-size: 47px;
    }
    .contact-details {
      margin-top: 30px;
      padding-top: 24px;
    }
    .contact-email {
      font-size: 16px;
      margin-top: 28px;
    }
    .contact-intro > p {
      font-size: 15px;
    }
    .contact-form-wrap {
      padding: 24px;
      width: 100%;
    }
    .support-grid {
      grid-template-columns: 1fr;
      padding-bottom: 55px;
    }
    .support-grid > article {
      padding: 25px;
    }
    .support-callout {
      flex-direction: column;
      align-items: flex-start;
      padding: 27px;
      gap: 24px;
      margin-bottom: 55px;
    }
    .app-entry {
      padding-block: 55px 65px;
    }
    .app-entry h1 {
      font-size: 46px;
    }
    .app-entry form {
      padding: 22px;
    }
    .store-input {
      flex-direction: column;
    }
    .store-input .button {
      justify-content: space-between;
    }
  }
  @media (max-width: 380px) {
    .container {
      width: calc(100% - 32px);
    }
    .hero h1 {
      font-size: 39px;
    }
    .hero-actions .button {
      font-size: 10px;
      padding: 12px;
      gap: 8px;
    }
    .hero .eyebrow {
      font-size: 7px;
    }
    .collection-layout {
      grid-template-rows: 162px 142px;
      padding: 7px;
    }
    .collection-intro h3 {
      font-size: 21px;
    }
    .collection-intro .micro {
      font-size: 4px;
    }
    .collection-intro p {
      font-size: 6px;
    }
    .collection-intro small,
    .tiny-rule {
      display: none;
    }
    .image-caption {
      font-size: 20px;
    }
    .demo-message p {
      font-size: 23px;
    }
    .sorting-note {
      width: 260px;
    }
    .mini-grid > div:not(:first-child) img {
      height: 105px;
    }
    .mini-collection-heading h3 {
      font-size: 17px;
    }
    .lookbook-cover h3 {
      font-size: 28px;
    }
    .lookbook-page {
      padding: 12px;
    }
    .lookbook-page h4 {
      font-size: 20px;
      margin-top: 13px;
    }
    .studio-images img {
      height: 215px;
    }
    .studio-reference img {
      height: 150px;
    }
    .studio-top small {
      font-size: 7px;
    }
    .studio-top > span {
      font-size: 15px;
    }
    .tour-tabs {
      margin-inline: -16px;
      padding-inline: 16px;
    }
    .picks-heading h4 {
      font-size: 17px;
    }
    .picks-heading > span {
      font-size: 4px;
    }
    .store-product {
      gap: 12px;
    }
    .store-product h3 {
      font-size: 21px;
    }
    .store-product > img {
      height: 180px;
    }
    .report-stats {
      gap: 5px;
    }
    .report-stats small {
      font-size: 7px;
    }
    .report-stats span {
      font-size: 5px;
    }
    .report-title h3 {
      font-size: 26px;
    }
    .report-title .demo-badge {
      font-size: 5px;
    }
    .contact-intro h1,
    .text-hero h1,
    .feature-hero-grid h1 {
      font-size: 41px;
    }
    .access-card {
      padding: 22px;
    }
    .access-card h2 {
      font-size: 31px;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
      transition: none !important;
      animation: none !important;
    }
  }
}
