@font-face {
  font-display: swap;
  font-family: "Karla";
  font-style: normal;
  font-weight: 400 700;
  src: url("/fonts/karla-latin-v33.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-display: swap;
  font-family: "Young Serif";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/young-serif-latin-v2.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-display: swap;
  font-family: "Tiro Devanagari Hindi";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/tiro-devanagari-hindi-v7.woff2") format("woff2");
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}

@layer reset, base, layout, components, utilities;

@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 64px;
    text-size-adjust: 100%;
  }

  body,
  h1,
  h2,
  h3,
  p,
  figure,
  blockquote,
  dl,
  dd {
    margin: 0;
  }

  img,
  svg {
    display: block;
    height: auto;
    max-width: 100%;
  }

  button,
  input {
    font: inherit;
  }

  [hidden] {
    display: none !important;
  }
}

@layer base {
  :root {
    --paper: #fbf8f3;
    --paper-deep: color-mix(in srgb, var(--paper) 70%, var(--thread));
    --ink: #35283b;
    --ink-soft: var(--ink);
    --lavender: #a18bc9;
    --lavender-pale: color-mix(in srgb, var(--lavender) 28%, var(--paper));
    --blush: #e8b4ac;
    --blush-pale: color-mix(in srgb, var(--blush) 34%, var(--paper));
    --sky: #86c5de;
    --sky-pale: color-mix(in srgb, var(--sky) 28%, var(--paper));
    --thread: #e9e2d6;
    --kumkum: #b02a26;
    --kumkum-dark: color-mix(in srgb, var(--kumkum) 82%, var(--ink));
    --marigold: #d99a2b;
    --gold-leaf: #c9a227;
    --white: var(--paper);
    --shadow: 0 18px 44px rgb(53 40 59 / 0.11);
    --font-display: "Young Serif", Georgia, serif;
    --font-body: "Karla", Arial, sans-serif;
    --font-hindi: "Tiro Devanagari Hindi", Georgia, serif;
    --gutter: 20px;
    --radius-sm: 8px;
    --radius-md: 18px;
    --radius-lg: 28px;
  }

  body {
    min-width: 320px;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }

  h1,
  h2,
  h3 {
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.06;
    text-wrap: balance;
  }

  h1 {
    font-size: clamp(2.75rem, 11vw, 5rem);
    letter-spacing: -0.035em;
  }

  h2 {
    font-size: clamp(2rem, 7vw, 2.75rem);
    letter-spacing: -0.025em;
  }

  h3 {
    font-size: clamp(1.4rem, 4vw, 1.65rem);
  }

  p,
  li {
    text-wrap: pretty;
  }

  a {
    color: var(--kumkum);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
  }

  a:hover {
    color: var(--kumkum-dark);
  }

  :focus-visible {
    outline: 3px solid var(--ink);
    outline-offset: 4px;
  }

  ::selection {
    color: var(--paper);
    background: var(--kumkum);
  }
}

@layer layout {
  .shell {
    width: min(100% - (var(--gutter) * 2), 1180px);
    margin-inline: auto;
  }

  .section {
    padding-block: 72px;
  }

  .section-heading {
    display: grid;
    gap: 18px;
    margin-bottom: 36px;
  }

  .section-heading > p {
    max-width: 36rem;
    color: var(--ink-soft);
    font-size: 1.0625rem;
  }

  .section-heading--compact {
    margin-bottom: 28px;
  }

  .split-layout {
    display: grid;
    gap: 36px;
    align-items: center;
  }

  .site-header__inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .site-header__inner--centered {
    justify-content: center;
  }

  .hero {
    overflow: clip;
  }

  .hero__layout {
    display: grid;
    gap: 44px;
    align-items: center;
    padding-block: 42px 62px;
  }

  .hero__copy {
    position: relative;
    z-index: 1;
  }

  .hero__lede {
    max-width: 41rem;
    margin-top: 22px;
    color: var(--ink-soft);
    font-size: clamp(1.0625rem, 3vw, 1.25rem);
    line-height: 1.55;
  }

  .hero__actions {
    display: grid;
    gap: 12px;
    margin-top: 30px;
  }

  .hero__visual {
    position: relative;
    isolation: isolate;
    width: min(100%, 620px);
    justify-self: center;
    padding: 14px;
  }

  .hero__visual::before {
    position: absolute;
    z-index: -2;
    inset: -20px 20px 24px -22px;
    border-radius: 48% 52% 46% 54% / 50% 40% 60% 50%;
    background: var(--sky-pale);
    content: "";
    rotate: -2deg;
  }

  .hero__mat {
    position: absolute;
    z-index: -1;
    inset: 30px -24px -14px 30px;
    border-radius: 42% 58% 45% 55% / 58% 43% 57% 42%;
    background: var(--lavender-pale);
    rotate: 4deg;
  }

  .hero__visual img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
    border-radius: 40% 60% 47% 53% / 52% 44% 56% 48%;
    background: var(--white);
    object-fit: cover;
    box-shadow: var(--shadow);
  }

  .hero__visual picture,
  .real-piece-card__media picture {
    display: block;
  }

  .hero__visual--real img {
    aspect-ratio: 4 / 5;
    object-position: center;
  }

  .hero__visual figcaption,
  .nani-band__portrait figcaption {
    margin-top: 14px;
    color: var(--ink-soft);
    font-size: 0.875rem;
    line-height: 1.4;
    text-align: center;
  }

  .product-grid {
    display: grid;
    gap: 48px 24px;
  }

  .reason-grid {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--thread);
    border-radius: var(--radius-lg);
    background: var(--thread);
  }

  .faq-layout {
    display: grid;
    gap: 38px;
  }

  .piece {
    display: grid;
    gap: 38px;
    min-height: 580px;
    padding-bottom: 72px;
  }

  .piece-story__layout {
    display: grid;
    gap: 22px;
  }

  .site-footer__inner {
    display: grid;
    gap: 34px;
  }
}

@layer components {
  .skip-link {
    position: fixed;
    z-index: 100;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: var(--paper);
    background: var(--ink);
    border-radius: var(--radius-sm);
    transform: translateY(-180%);
  }

  .skip-link:focus {
    color: var(--paper);
    transform: translateY(0);
  }

  .deadline-bar {
    position: sticky;
    z-index: 50;
    top: 0;
    min-height: 48px;
    color: var(--paper);
    background: var(--kumkum);
  }

  .deadline-bar--pending {
    visibility: hidden;
  }

  .deadline-bar__inner {
    display: flex;
    width: min(100% - 32px, 1180px);
    min-height: 48px;
    margin-inline: auto;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding-block: 8px;
    font-size: 0.875rem;
    line-height: 1.3;
    text-align: center;
  }

  .deadline-bar__counter {
    flex: 0 0 auto;
    padding-left: 9px;
    border-left: 1px solid rgb(251 248 243 / 0.5);
    font-weight: 700;
  }

  .site-header {
    border-bottom: 1px solid var(--thread);
    background: rgb(251 248 243 / 0.96);
  }

  .wordmark {
    display: inline-flex;
    min-height: 44px;
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: center;
    color: var(--ink);
    text-decoration: none;
  }

  .wordmark:hover {
    color: var(--ink);
  }

  .wordmark__devanagari {
    font-family: var(--font-hindi);
    font-size: 1.2rem;
    line-height: 1;
  }

  .wordmark__latin {
    margin-top: 3px;
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
  }

  .site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    font-size: 0.82rem;
    font-weight: 600;
  }

  .site-nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--ink);
    text-decoration: none;
  }

  .site-nav a:hover {
    color: var(--kumkum);
  }

  .eyebrow {
    margin-bottom: 12px;
    color: var(--kumkum);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
  }

  .eyebrow.devanagari {
    font-family: var(--font-hindi);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.08em;
  }

  .button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  }

  .button--primary {
    color: var(--paper);
    background: var(--kumkum);
    box-shadow: 0 8px 20px rgb(176 42 38 / 0.16);
  }

  .button--primary:hover {
    color: var(--paper);
    background: var(--kumkum-dark);
    box-shadow: 0 11px 24px rgb(176 42 38 / 0.22);
    transform: translateY(-2px);
  }

  .button--quiet {
    color: var(--ink);
    border-color: var(--ink);
    background: transparent;
  }

  .button--quiet:hover {
    color: var(--paper);
    background: var(--ink);
    transform: translateY(-2px);
  }

  .button--wide {
    width: 100%;
  }

  .button:disabled,
  .button[aria-disabled="true"] {
    color: var(--ink);
    border-color: var(--thread);
    background: var(--thread);
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.72;
    transform: none;
  }

  .state-note {
    margin-top: 22px;
    padding: 14px 16px;
    border-left: 3px solid var(--kumkum);
    color: var(--ink);
    background: var(--blush-pale);
    font-weight: 600;
  }

  .thread-divider {
    width: 100%;
    height: 14px;
    background-image: url("/images/twisted-thread.svg");
    background-position: center;
    background-repeat: repeat-x;
    background-size: 48px 14px;
  }

  .site-alert {
    margin-block: 28px;
    padding: 16px 18px;
    border: 1px solid var(--kumkum);
    border-radius: var(--radius-sm);
    color: var(--ink);
    background: var(--blush-pale);
  }

  .worktable-section {
    background: linear-gradient(180deg, var(--paper), var(--lavender-pale));
  }

  .real-piece-grid {
    display: grid;
    gap: 28px 22px;
  }

  .real-piece-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgb(53 40 59 / 0.14);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 14px 34px rgb(53 40 59 / 0.08);
  }

  .real-piece-card__media {
    position: relative;
    overflow: hidden;
    background: var(--thread);
  }

  .real-piece-card__media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform 220ms ease;
  }

  .real-piece-card:hover .real-piece-card__media img {
    transform: scale(1.018);
  }

  .real-piece-card__media figcaption {
    position: absolute;
    bottom: 14px;
    left: 14px;
    padding: 7px 11px;
    border: 1px solid rgb(53 40 59 / 0.2);
    border-radius: 999px;
    color: var(--ink);
    background: rgb(251 248 243 / 0.94);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: calc(100% - 28px);
  }

  .real-piece-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
  }

  .real-piece-card__category {
    margin-bottom: 8px;
    color: var(--kumkum);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .real-piece-card__body h3 {
    font-size: clamp(1.55rem, 4vw, 1.9rem);
  }

  .real-piece-card__body > p:not(.real-piece-card__category) {
    margin: 12px 0 22px;
    color: var(--ink-soft);
  }

  .real-piece-card__body .button {
    width: 100%;
    margin-top: auto;
  }

  .made-to-order-callout {
    display: grid;
    gap: 24px;
    margin-top: 38px;
    padding: clamp(26px, 5vw, 42px);
    border: 1px solid rgb(53 40 59 / 0.16);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: 0 14px 34px rgb(53 40 59 / 0.07);
  }

  .made-to-order-callout h3 {
    max-width: 20ch;
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }

  .made-to-order-callout p:not(.eyebrow) {
    max-width: 44rem;
    margin-top: 14px;
    color: var(--ink-soft);
  }

  .made-to-order-callout__actions {
    display: grid;
    gap: 12px;
  }

  .worktable-feature {
    display: grid;
    gap: 0;
    overflow: hidden;
    margin-top: 38px;
    border: 1px solid rgb(53 40 59 / 0.14);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 16px 38px rgb(53 40 59 / 0.08);
  }

  .worktable-feature__visual {
    min-width: 0;
    padding: 18px;
    background: var(--paper);
  }

  .worktable-feature__visual img {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-md);
    object-fit: cover;
  }

  .worktable-feature__visual figcaption {
    margin-top: 12px;
    color: var(--ink-soft);
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .worktable-feature__copy {
    align-self: center;
    min-width: 0;
    padding: 30px;
  }

  .worktable-feature__copy h3 {
    max-width: 12ch;
    font-size: clamp(2rem, 6vw, 3.2rem);
  }

  .worktable-feature__copy > p:not(.eyebrow) {
    max-width: 38rem;
    margin-top: 16px;
    color: var(--ink-soft);
  }

  .worktable-feature__copy .button {
    margin-top: 22px;
  }

  .worktable-note {
    max-width: 54rem;
    margin: 30px auto 0;
    color: var(--ink-soft);
    text-align: center;
  }

  .subscribe-form--first-look {
    max-width: 64rem;
    margin: 38px auto 0;
    border-color: rgb(53 40 59 / 0.2);
    box-shadow: 0 14px 34px rgb(53 40 59 / 0.07);
  }

  .concept-section {
    background: linear-gradient(180deg, var(--paper), var(--sky-pale));
  }

  .concept-disclosure {
    padding-left: 18px;
    border-left: 2px solid var(--kumkum);
  }

  .concept-grid {
    display: grid;
    gap: 34px 22px;
  }

  .concept-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgb(53 40 59 / 0.12);
    border-radius: var(--radius-md);
    background: var(--paper);
    box-shadow: 0 14px 34px rgb(53 40 59 / 0.08);
  }

  .concept-card__media {
    position: relative;
    overflow: hidden;
    background: var(--thread);
  }

  .concept-card__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 220ms ease;
  }

  .concept-card:hover .concept-card__media img {
    transform: scale(1.018);
  }

  .concept-card__media figcaption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 7px 10px;
    border: 1px solid rgb(53 40 59 / 0.22);
    border-radius: 999px;
    color: var(--ink);
    background: rgb(251 248 243 / 0.94);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .concept-card__body {
    padding: 22px;
  }

  .concept-card__category {
    margin-bottom: 8px;
    color: var(--kumkum);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .concept-card__body > p:last-child {
    margin-top: 10px;
    color: var(--ink-soft);
  }

  .concept-footer {
    max-width: 52rem;
    margin: 34px auto 0;
    text-align: center;
  }

  .concept-footer .button {
    margin-top: 20px;
  }

  .product-card {
    min-width: 0;
  }

  .product-card__image-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius-md);
    color: var(--ink);
    background: var(--sky-pale);
  }

  .product-card:nth-child(3n + 2) .product-card__image-link {
    background: var(--lavender-pale);
  }

  .product-card:nth-child(3n) .product-card__image-link {
    background: var(--blush-pale);
  }

  .product-card__image-link img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .product-card--sold-out .product-card__image-link img {
    filter: grayscale(1);
    opacity: 0.66;
  }

  .product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--paper);
    background: var(--ink);
    font-size: 0.78rem;
    font-weight: 700;
  }

  .product-card__placeholder-note {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 8px 10px;
    color: var(--ink);
    background: rgb(251 248 243 / 0.94);
    border-radius: 6px;
    font-size: 0.76rem;
    line-height: 1.3;
    text-align: center;
  }

  .product-card__body {
    padding-top: 18px;
  }

  .product-card__heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
  }

  .product-card__heading h3 {
    font-size: 1.6rem;
  }

  .product-card__heading a {
    color: var(--ink);
    text-decoration: none;
  }

  .product-card__price {
    flex: 0 0 auto;
    font-weight: 700;
  }

  .product-card__short {
    margin-top: 8px;
    color: var(--ink-soft);
  }

  .product-card__form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
  }

  .product-card__footer {
    margin-top: 15px;
  }

  .product-card__footer .button {
    width: 100%;
  }

  .set-selector {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .set-selector legend {
    margin-bottom: 8px;
    padding: 0;
    color: var(--ink-soft);
    font-size: 0.85rem;
    font-weight: 600;
  }

  .set-selector__options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .set-selector input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
  }

  .set-selector label {
    display: inline-flex;
    min-width: 64px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 8px 13px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
  }

  .set-selector input:checked + label {
    border-color: var(--ink);
    background: var(--lavender-pale);
    box-shadow: inset 0 0 0 1px var(--ink);
  }

  .set-selector input:focus-visible + label {
    outline: 3px solid var(--ink);
    outline-offset: 3px;
  }

  .set-selector input:disabled + label {
    color: var(--ink);
    border-color: var(--thread);
    background: var(--thread);
    cursor: not-allowed;
    opacity: 0.72;
  }

  .checkout-status,
  .form-status {
    min-height: 1.5em;
    color: var(--ink-soft);
    font-size: 0.9rem;
  }

  .checkout-status[data-error="true"],
  .form-status[data-error="true"] {
    color: var(--kumkum-dark);
    font-weight: 600;
  }

  .skeleton {
    background: linear-gradient(120deg, var(--thread), var(--paper-deep));
  }

  .skeleton--image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
  }

  .skeleton--line {
    width: 72%;
    height: 24px;
    margin-top: 18px;
    border-radius: 6px;
  }

  .skeleton--short {
    width: 45%;
    height: 14px;
    margin-top: 10px;
    border-radius: 5px;
  }

  .skeleton--piece {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
  }

  .illustration-panel {
    padding: clamp(12px, 2vw, 24px);
    border-radius: var(--radius-lg);
    background: var(--sky-pale);
  }

  .illustration-panel img {
    width: 100%;
    height: auto;
  }

  .prose-block h2 {
    margin-bottom: 24px;
  }

  .included-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .included-list li {
    position: relative;
    padding: 12px 12px 12px 42px;
    border-bottom: 1px solid var(--thread);
  }

  .included-list li::before {
    position: absolute;
    top: 17px;
    left: 12px;
    width: 14px;
    height: 9px;
    border-bottom: 2px solid var(--kumkum);
    border-left: 2px solid var(--kumkum);
    content: "";
    rotate: -45deg;
  }

  .why-section {
    padding-top: 18px;
  }

  .reason-grid article {
    position: relative;
    min-height: 210px;
    padding: 28px;
    background: var(--white);
  }

  .reason-grid article:nth-child(2) {
    background: var(--lavender-pale);
  }

  .reason-grid article:nth-child(3) {
    background: var(--blush-pale);
  }

  .reason-grid h3 {
    margin-top: 36px;
  }

  .reason-grid p {
    margin-top: 10px;
    color: var(--ink-soft);
  }

  .reason-number {
    position: absolute;
    top: 22px;
    right: 22px;
    color: var(--kumkum);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
  }

  .nani-band {
    padding-block: 72px;
    background: var(--blush-pale);
  }

  .nani-band__layout {
    display: grid;
    grid-template-areas:
      "heading"
      "portrait"
      "body";
    gap: 38px;
    align-items: start;
  }

  .nani-band__heading {
    grid-area: heading;
    min-width: 0;
  }

  .nani-band__heading h2 {
    max-width: 14ch;
  }

  .nani-band__lead {
    max-width: 44rem;
    margin-top: 20px;
    color: var(--ink);
    font-size: clamp(1.125rem, 2.2vw, 1.3rem);
    line-height: 1.55;
  }

  .nani-band__portrait {
    grid-area: portrait;
    width: min(100%, 440px);
    justify-self: center;
  }

  .nani-band__portrait img {
    width: 100%;
    aspect-ratio: 4 / 5;
    border: 1px solid rgb(53 40 59 / 0.15);
    border-radius: 52% 48% 43% 57% / 42% 52% 48% 58%;
    background: var(--paper);
    object-fit: cover;
  }

  .nani-band__body {
    display: grid;
    grid-area: body;
    gap: 34px;
    min-width: 0;
  }

  .nani-band__story,
  .nani-band__maker-story {
    max-width: 46rem;
  }

  .nani-band__story h3,
  .nani-band__maker-story h3 {
    font-size: clamp(1.35rem, 3vw, 1.65rem);
  }

  .nani-band__story p,
  .nani-band__maker-story p {
    margin-top: 12px;
    color: var(--ink-soft);
    font-size: 1.02rem;
  }

  .nani-milestones {
    display: grid;
    gap: 12px;
    margin: 0;
  }

  .nani-milestones > div {
    padding: 20px;
    border-top: 2px solid var(--lavender);
    background: rgb(251 248 243 / 0.82);
  }

  .nani-milestones dt {
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1.25;
  }

  .nani-milestones dd {
    margin: 8px 0 0;
    color: var(--ink-soft);
    line-height: 1.5;
  }

  .nani-band__maker-story {
    padding: 22px 24px;
    border-left: 2px solid var(--gold-leaf);
    background: var(--paper);
  }

  .nani-band__cta {
    max-width: 46rem;
    padding-top: 28px;
    border-top: 1px solid rgb(53 40 59 / 0.18);
  }

  .nani-band__cta > p {
    max-width: 40rem;
    color: var(--ink-soft);
  }

  .nani-band__actions {
    display: grid;
    gap: 12px;
    margin-top: 20px;
  }

  .nani-band__actions .button {
    width: 100%;
  }

  .nani-band blockquote {
    max-width: 40rem;
    margin-top: 28px;
    padding: 22px 0 4px 24px;
    border-left: 1px solid var(--gold-leaf);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    line-height: 1.35;
  }

  .faq-layout > div:first-child > p:last-child {
    max-width: 25rem;
    margin-top: 18px;
    color: var(--ink-soft);
  }

  .faq-list {
    border-top: 1px solid var(--thread);
  }

  .faq-list details {
    border-bottom: 1px solid var(--thread);
  }

  .faq-list summary {
    position: relative;
    padding: 20px 44px 20px 0;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    list-style: none;
  }

  .faq-list summary::-webkit-details-marker {
    display: none;
  }

  .faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 4px;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--kumkum);
    border-bottom: 2px solid var(--kumkum);
    content: "";
    transform: translateY(-65%) rotate(45deg);
    transition: transform 160ms ease;
  }

  .faq-list details[open] summary::after {
    transform: translateY(-30%) rotate(225deg);
  }

  .faq-list details p {
    max-width: 42rem;
    padding: 0 42px 22px 0;
    color: var(--ink-soft);
  }

  .subscribe-form {
    margin-top: 26px;
    padding: 22px;
    border: 1px solid var(--thread);
    border-radius: var(--radius-md);
    background: var(--white);
  }

  .subscribe-form h2,
  .subscribe-form h3 {
    font-size: 1.75rem;
  }

  .subscribe-form > p:not(.form-status) {
    margin: 8px 0 18px;
    color: var(--ink-soft);
  }

  .form-row {
    display: grid;
    gap: 12px;
  }

  .field {
    display: grid;
    gap: 6px;
  }

  .field label {
    font-size: 0.86rem;
    font-weight: 700;
  }

  .field input {
    width: 100%;
    min-height: 48px;
    padding: 10px 13px;
    border: 1px solid var(--ink);
    border-radius: var(--radius-sm);
    color: var(--ink);
    background: var(--paper);
  }

  .honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
  }

  .site-footer {
    padding-block: 46px;
    border-top: 1px solid var(--thread);
    background: var(--ink);
  }

  .site-footer,
  .site-footer a {
    color: var(--paper);
  }

  .wordmark--footer {
    color: var(--paper);
  }

  .wordmark--footer:hover {
    color: var(--paper);
  }

  .site-footer p {
    max-width: 28rem;
    margin-top: 16px;
    color: var(--thread);
  }

  .site-footer__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .site-footer__links a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .site-footer a:focus-visible {
    outline-color: var(--paper);
  }

  .noscript-note {
    position: fixed;
    z-index: 90;
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 14px;
    color: var(--paper);
    background: var(--ink);
    border-radius: var(--radius-sm);
    text-align: center;
  }

  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-block: 24px 34px;
    color: var(--ink-soft);
    font-size: 0.9rem;
  }

  .breadcrumb a {
    color: var(--ink);
  }

  .piece__main-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--sky-pale);
  }

  .piece__main-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .piece__main-image figcaption {
    padding: 10px 14px;
    color: var(--ink-soft);
    background: var(--paper-deep);
    font-size: 0.82rem;
    text-align: center;
  }

  .piece__thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 12px;
  }

  .piece__thumbnail {
    width: 72px;
    height: 60px;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--thread);
    border-radius: var(--radius-sm);
    background: var(--paper);
    cursor: pointer;
  }

  .piece__thumbnail[aria-current="true"] {
    border-color: var(--ink);
    box-shadow: 0 0 0 1px var(--ink);
  }

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

  .piece__details h1 {
    font-size: clamp(2.5rem, 9vw, 4rem);
  }

  .piece__price {
    margin-top: 14px;
    color: var(--kumkum);
    font-size: 1.25rem;
    font-weight: 700;
  }

  .piece__short {
    margin-top: 16px;
    color: var(--ink-soft);
    font-size: 1.1rem;
  }

  .piece__action-slot {
    min-height: 116px;
  }

  .purchase-form {
    display: grid;
    gap: 20px;
    margin-top: 28px;
    padding-block: 24px;
    border-top: 1px solid var(--thread);
    border-bottom: 1px solid var(--thread);
  }

  .sold-out-note {
    margin-top: 24px;
  }

  .sold-out-note p {
    margin-bottom: 14px;
    color: var(--kumkum);
    font-weight: 700;
  }

  .piece__facts {
    margin-top: 30px;
  }

  .piece__facts > div {
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 14px;
    padding-block: 13px;
    border-bottom: 1px solid var(--thread);
  }

  .piece__facts dt {
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-weight: 700;
  }

  .piece__facts dd {
    min-width: 0;
  }

  .piece-story {
    background: var(--lavender-pale);
  }

  .piece-story__layout > p {
    max-width: 42rem;
    font-size: 1.1rem;
  }

  .outcome-page {
    min-height: 100vh;
    background:
      radial-gradient(circle at 18% 86%, var(--sky-pale) 0, var(--sky-pale) 12%, transparent 12.3%),
      radial-gradient(circle at 88% 20%, var(--blush-pale) 0, var(--blush-pale) 13%, transparent 13.3%),
      var(--paper);
  }

  .outcome {
    display: flex;
    width: min(100% - 40px, 650px);
    min-height: calc(100vh - 96px);
    margin-inline: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-block: 60px;
    text-align: center;
  }

  .outcome__thread {
    width: 118px;
    height: 14px;
    margin-bottom: 28px;
    background: url("/images/twisted-thread.svg") center / 48px 14px repeat-x;
  }

  .outcome h1 {
    font-size: clamp(2.55rem, 10vw, 4rem);
  }

  .outcome > p:not(.eyebrow) {
    max-width: 35rem;
    margin-top: 18px;
    color: var(--ink-soft);
    font-size: 1.05rem;
  }

  .outcome .button {
    margin-top: 30px;
  }

  .outcome .text-link {
    margin-top: 18px;
  }
}

@layer utilities {
  .reveal {
    opacity: 1;
    transform: none;
  }

  .reveal.reveal--pending {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
  }

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

@media (min-width: 640px) {
  :root {
    --gutter: 32px;
  }

  .hero__actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero__actions .button {
    min-width: 174px;
  }

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

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

  .real-piece-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .made-to-order-callout__actions {
    display: flex;
    flex-wrap: wrap;
  }

  .nani-milestones {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nani-band__actions {
    display: flex;
    flex-wrap: wrap;
  }

  .nani-band__actions .button {
    width: auto;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .form-row .button {
    min-width: 150px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .site-footer__links {
    align-items: flex-end;
  }
}

@media (min-width: 800px) {
  :root {
    --gutter: 48px;
  }

  .section {
    padding-block: 96px;
  }

  .site-nav {
    gap: 28px;
    font-size: 0.95rem;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
    gap: 50px;
    min-height: 650px;
    padding-block: 68px 86px;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    align-items: end;
    gap: 60px;
  }

  .section-heading--compact {
    grid-template-columns: 1fr;
  }

  .made-to-order-callout {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .real-piece-card--wide {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  }

  .real-piece-card--wide .real-piece-card__body {
    padding: clamp(30px, 5vw, 54px);
  }

  .worktable-feature {
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  }

  .split-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 72px;
  }

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

  .nani-band {
    padding-block: 96px;
  }

  .nani-band__layout {
    grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
    grid-template-areas:
      "portrait heading"
      "portrait body";
    gap: 72px;
  }

  .faq-layout {
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
    gap: 72px;
  }

  .piece {
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
    gap: 68px;
    align-items: start;
  }

  .piece__details {
    position: sticky;
    top: 24px;
  }

  body:has(.deadline-bar:not([hidden])) .piece__details {
    top: 72px;
  }

  .piece-story__layout {
    grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
    gap: 70px;
    align-items: end;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 58px 28px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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