:root {
  --charcoal: #0a0a0a;
  --warm-black: #171412;
  --ink: #211c18;
  --ivory: #f2ede4;
  --ivory-soft: #e6ded2;
  --grey: #b7ada1;
  --muted-gold: #b08a52;
  --walnut: #5b4631;
  --line: rgba(245, 239, 230, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", "Source Sans 3", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-black);
  color: var(--ivory);
  font-family: var(--sans);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 17, 17, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 150px;
}

.brand-logo {
  width: 150px;
  height: 60px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.32));
}

.footer-logo {
  width: 260px;
  height: 150px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(184, 150, 94, 0.75);
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 7px rgba(184, 150, 94, 0.08);
}

.brand-mark::before {
  content: "";
  width: 11px;
  height: 25px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #ead6ad, var(--muted-gold));
  transform: rotate(18deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  border-left: 1px solid rgba(245, 239, 230, 0.48);
  border-bottom: 1px solid rgba(245, 239, 230, 0.48);
  border-radius: 0 0 0 18px;
  bottom: 11px;
  right: 11px;
}

.brand-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.05;
  font-weight: 700;
}

.brand-text span {
  display: block;
  color: var(--grey);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ivory-soft);
  font-size: 0.88rem;
}

.nav-links a {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ivory);
  border-color: var(--muted-gold);
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  background: currentColor;
  margin: 5px auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--muted-gold);
  color: #16110d;
}

.btn-secondary {
  border-color: rgba(245, 239, 230, 0.26);
  color: var(--ivory);
  background: rgba(245, 239, 230, 0.04);
}

.btn-ghost {
  color: var(--ivory);
  border-color: rgba(184, 150, 94, 0.45);
  background: transparent;
}

/* Legacy Thread premium textile refresh */
:root {
  --charcoal: #070707;
  --warm-black: #11100e;
  --ink: #181614;
  --ivory: #f4efe7;
  --ivory-soft: #ddd1c0;
  --grey: #a89882;
  --muted-gold: #b08a52;
  --bronze: #8c6638;
  --walnut: #5b4631;
  --line: rgba(176, 138, 82, 0.18);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 12%, rgba(184, 150, 94, 0.14), transparent 34%),
    linear-gradient(135deg, var(--charcoal), var(--warm-black) 62%, #241b15);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 150, 94, 0.52), transparent);
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 58px;
  align-items: center;
  padding: 78px 0 62px;
}

.eyebrow {
  color: var(--muted-gold);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.05;
  margin: 0;
  font-weight: 700;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.9rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

h4 {
  margin: 8px 0 0;
  color: var(--muted-gold);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

p {
  margin: 0;
  color: var(--ivory-soft);
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 680px;
  color: #f0e6da;
}

.hero-copy {
  display: grid;
  gap: 26px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 620px;
  color: var(--grey);
  font-size: 0.95rem;
  border-left: 1px solid rgba(184, 150, 94, 0.52);
  padding-left: 18px;
}

.product-stage {
  min-height: 620px;
  position: relative;
  display: grid;
  place-items: center;
}

.hero-reference {
  position: relative;
  width: 100%;
  min-height: 620px;
  border: 1px solid rgba(245, 239, 230, 0.16);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #121110;
}

.hero-reference img,
.feature-image img,
.product-visual img,
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-reference::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.18), transparent 42%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.46), transparent 38%);
  pointer-events: none;
}

.reference-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  max-width: 360px;
  padding: 14px 16px;
  border: 1px solid rgba(184, 150, 94, 0.45);
  background: rgba(17, 17, 17, 0.74);
  backdrop-filter: blur(14px);
  color: var(--ivory-soft);
  font-size: 0.9rem;
}

.stage-glow {
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 150, 94, 0.18), transparent 68%);
  filter: blur(6px);
}

.memorial-banner {
  position: absolute;
  width: min(58%, 360px);
  aspect-ratio: 0.64;
  top: 28px;
  left: 11%;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(245, 239, 230, 0.18), transparent 34%),
    linear-gradient(145deg, #25201d, #0f0f0f);
  border: 1px solid rgba(245, 239, 230, 0.18);
  box-shadow: var(--shadow);
}

.memorial-banner::before,
.memorial-banner::after {
  content: "";
  position: absolute;
  left: -7px;
  right: -7px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6b4428, #b8965e, #6b4428);
}

.memorial-banner::before {
  top: -8px;
}

.memorial-banner::after {
  bottom: -8px;
}

.portrait-oval {
  width: 64%;
  aspect-ratio: 0.76;
  border-radius: 50% 50% 45% 45%;
  margin: 16px auto 20px;
  background:
    radial-gradient(circle at 50% 35%, rgba(245, 239, 230, 0.32), transparent 14%),
    linear-gradient(160deg, #8b7767, #2b2521 62%);
  border: 1px solid rgba(245, 239, 230, 0.2);
}

.banner-lines {
  display: grid;
  gap: 9px;
  place-items: center;
}

.banner-lines span {
  display: block;
  height: 2px;
  background: rgba(245, 239, 230, 0.42);
  border-radius: 999px;
}

.banner-lines span:nth-child(1) {
  width: 72%;
  height: 3px;
  background: rgba(184, 150, 94, 0.7);
}

.banner-lines span:nth-child(2) {
  width: 52%;
}

.banner-lines span:nth-child(3) {
  width: 42%;
}

.section {
  padding: 94px 0;
  background: var(--warm-black);
}

.section.alt {
  background: #141211;
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.section-heading p {
  max-width: 620px;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(245, 239, 230, 0.055), rgba(245, 239, 230, 0.02));
  padding: 26px;
  border-radius: 8px;
  min-height: 100%;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.card .mini-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(184, 150, 94, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted-gold);
  margin-bottom: 18px;
}

.card h3 {
  margin-bottom: 12px;
}

.card p,
.muted {
  color: var(--grey);
}

.collection-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(184, 150, 94, 0.1), rgba(245, 239, 230, 0.025)),
    #161311;
}

.collection-card ul,
.feature-list,
.clean-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.collection-card li,
.feature-list li,
.clean-list li {
  color: var(--ivory-soft);
  padding-left: 20px;
  position: relative;
}

.testimonial-card {
  display: grid;
  gap: 18px;
}

.testimonial-card p:first-child {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ivory);
  line-height: 1.35;
}

.testimonial-name {
  color: var(--muted-gold);
  font-weight: 800;
}

.collection-card li::before,
.feature-list li::before,
.clean-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted-gold);
  position: absolute;
  left: 0;
  top: 0.65em;
}

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

.process-step {
  counter-increment: step;
  padding: 22px;
  border-top: 1px solid rgba(184, 150, 94, 0.55);
  background: rgba(245, 239, 230, 0.035);
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  color: var(--muted-gold);
  font-weight: 800;
  margin-bottom: 18px;
}

.trust-band {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(107, 68, 40, 0.28), transparent 55%),
    #161311;
}

.trust-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
  align-items: center;
}

.quote-mark {
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 12rem);
  color: rgba(184, 150, 94, 0.36);
  line-height: 0.7;
}

.cta-section {
  text-align: center;
  display: grid;
  gap: 24px;
  justify-items: center;
}

.cta-section h2 {
  max-width: 850px;
}

.page-hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0 68px;
  display: grid;
  gap: 18px;
}

.page-hero-inner p {
  max-width: 790px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-btn {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 239, 230, 0.04);
  color: var(--ivory);
  padding: 0 16px;
  cursor: pointer;
}

.filter-btn.active {
  background: var(--muted-gold);
  color: #16110d;
  border-color: var(--muted-gold);
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-visual,
.gallery-item {
  min-height: 320px;
  aspect-ratio: 0.98;
  border: 1px solid rgba(184, 150, 94, 0.26);
  background:
    linear-gradient(145deg, rgba(184, 150, 94, 0.12), transparent 40%),
    #121110;
  display: grid;
  place-items: center;
  color: var(--grey);
  text-align: center;
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.product-visual.image,
.gallery-photo {
  padding: 0;
}

.product-visual.image::after,
.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 0;
  background: linear-gradient(0deg, rgba(17, 17, 17, 0.35), transparent 55%);
}

.product-visual.banner-a0 img {
  object-position: 72% 14%;
}

.product-visual.banner-a1 img {
  object-position: 18% 18%;
}

.product-visual.collection-set img {
  object-position: 52% 50%;
}

.feature-image {
  min-height: 430px;
  border: 1px solid rgba(184, 150, 94, 0.26);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #121110;
}

.feature-image.banner-focus img {
  object-position: 14% 18%;
}

.gallery-photo {
  position: relative;
  grid-column: 1 / -1;
  aspect-ratio: 1.5;
  border: 1px solid rgba(184, 150, 94, 0.32);
  overflow: hidden;
  background: #121110;
}

.product-visual::after,
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(245, 239, 230, 0.08);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted-gold);
  font-weight: 800;
}

.price {
  color: var(--ivory);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 38px;
  align-items: start;
}

.feature-panel {
  border-left: 1px solid rgba(184, 150, 94, 0.48);
  padding-left: 28px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-num {
  color: var(--muted-gold);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 38px;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.fieldset {
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 8px;
  display: grid;
  gap: 18px;
  background: rgba(245, 239, 230, 0.035);
}

.fieldset legend {
  font-family: var(--serif);
  font-size: 1.35rem;
  padding: 0 8px;
}

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

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

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

label {
  color: var(--ivory-soft);
  font-weight: 700;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(245, 239, 230, 0.18);
  border-radius: 6px;
  background: #0f0e0d;
  color: var(--ivory);
  padding: 10px 12px;
}

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

.check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--grey);
}

.check input {
  min-height: auto;
  margin-top: 4px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 239, 230, 0.035);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 62px;
  border: 0;
  background: transparent;
  color: var(--ivory);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-icon {
  color: var(--muted-gold);
  font-size: 1.4rem;
}

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

.gallery-item {
  aspect-ratio: 1.12;
  min-height: 0;
}

.pricing-table {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 18px 20px;
  background: #151312;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #0f0f0f;
  padding: 58px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer-grid h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 8px;
  color: var(--grey);
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--grey);
  font-size: 0.9rem;
}

@media (max-width: 1020px) {
  .nav-links {
    position: fixed;
    inset: 82px 0 auto;
    background: rgba(17, 17, 17, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions .btn-secondary {
    display: none;
  }

  .hero-inner,
  .detail-layout,
  .trust-inner,
  .form-shell {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .product-stage {
    min-height: 560px;
  }

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

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

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

@media (max-width: 760px) {
  .nav-shell {
    min-height: 74px;
  }

  .brand {
    min-width: 154px;
  }

  .brand-logo {
    width: 154px;
    height: 56px;
  }

  .nav-links {
    inset: 74px 0 auto;
  }

  .hero-inner,
  .page-hero-inner,
  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .product-stage {
    min-height: 430px;
  }

  .memorial-banner {
    left: 2%;
    width: 60%;
  }

  .section-heading {
    display: grid;
  }

  .grid.three,
  .grid.four,
  .process,
  .gallery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pricing-row {
    grid-template-columns: 1fr;
  }

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

/* Legacy Thread editorial rebrand */
body {
  background:
    linear-gradient(180deg, #0a0a0a 0%, #12100f 48%, #0a0a0a 100%);
}

.site-header {
  background: rgba(10, 10, 10, 0.78);
  border-bottom-color: rgba(176, 138, 82, 0.22);
}

.nav-links {
  letter-spacing: 0.02em;
}

.nav-links a {
  color: rgba(242, 237, 228, 0.82);
}

.btn {
  letter-spacing: 0.01em;
}

.btn-primary {
  background: #b08a52;
}

.btn-secondary,
.btn-ghost {
  background: rgba(242, 237, 228, 0.02);
  border-color: rgba(176, 138, 82, 0.36);
}

.hero {
  background:
    linear-gradient(135deg, #0a0a0a 0%, #121212 58%, #171412 100%);
}

.hero-inner {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 74px;
  min-height: calc(100vh - 82px);
}

.hero-reference {
  min-height: 680px;
  border-color: rgba(176, 138, 82, 0.32);
}

.hero-reference img {
  filter: saturate(0.84) contrast(1.05);
  object-fit: contain;
  background: #0a0a0a;
}

.hero-reference::after {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.08), transparent 50%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.42), transparent 42%);
}

.hero .reference-label {
  display: none;
}

.eyebrow {
  color: #b08a52;
  letter-spacing: 0.22em;
}

h1,
h2,
h3 {
  font-family: var(--serif);
}

h1 {
  font-size: clamp(3rem, 5.6vw, 5.6rem);
  letter-spacing: 0;
}

h2 {
  letter-spacing: 0;
}

.section {
  padding: 112px 0;
  background: #0a0a0a;
}

.section.alt {
  background: #121212;
}

.editorial-statement {
  max-width: 980px;
}

.editorial-statement h2 {
  max-width: 760px;
  margin-bottom: 24px;
}

.editorial-statement p {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--ivory-soft);
}

.split-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}

.image-panel {
  min-height: 520px;
  border: 1px solid rgba(176, 138, 82, 0.26);
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow);
}

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

.cinematic-card {
  min-height: 520px;
  padding: 0;
  overflow: hidden;
  position: relative;
  background: #12100f;
}

.cinematic-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.cinematic-card .card-body {
  padding: 28px;
}

.cinematic-card h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
}

.cinematic-card:hover {
  border-color: rgba(176, 138, 82, 0.58);
  transform: translateY(-4px);
}

.card,
.process-step,
.faq-item,
.fieldset {
  border-color: rgba(176, 138, 82, 0.18);
  background: linear-gradient(180deg, rgba(242, 237, 228, 0.042), rgba(242, 237, 228, 0.016));
  transition: transform 450ms ease, border-color 450ms ease, background 450ms ease;
}

.card:hover {
  border-color: rgba(176, 138, 82, 0.5);
}

.luxury-block {
  border-top: 1px solid rgba(176, 138, 82, 0.34);
  padding-top: 24px;
}

.luxury-block h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

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

.process-step {
  min-height: 190px;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(23, 20, 18, 0.88)),
    url("/gallery/2.png") center / cover;
}

.product-editorial {
  display: grid;
  gap: 42px;
}

.product-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid rgba(176, 138, 82, 0.2);
  background: linear-gradient(180deg, rgba(242, 237, 228, 0.035), rgba(242, 237, 228, 0.012));
}

.product-story:nth-child(even) {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.product-story:nth-child(even) .image-panel {
  order: 2;
}

.product-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.product-copy h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.product-kicker {
  color: var(--muted-gold);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: clamp(1.02rem, 1.35vw, 1.28rem);
  line-height: 1.25;
}

.gallery-photo {
  aspect-ratio: 1.78;
}

.gallery-photo.portrait {
  grid-column: auto;
  aspect-ratio: 0.7;
}

.gallery-photo.portrait img {
  object-position: center top;
}

.footer-bottom {
  color: rgba(183, 173, 161, 0.82);
}

@media (max-width: 1020px) {
  .hero-inner,
  .split-story,
  .product-story,
  .product-story:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .product-story:nth-child(even) .image-panel {
    order: 0;
  }

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

@media (max-width: 760px) {
  h1 {
    font-size: clamp(2.55rem, 11vw, 3.65rem);
  }

  .hero-inner {
    gap: 42px;
  }

  .hero-reference {
    min-height: 440px;
  }

  .section {
    padding: 72px 0;
  }

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

  .product-story {
    padding: 18px;
  }

  .image-panel {
    min-height: 360px;
  }
}

/* Header refinement */
.site-header {
  background: rgba(10, 10, 10, 0.86);
  border-bottom: 1px solid rgba(176, 138, 82, 0.18);
}

.nav-shell {
  width: min(1280px, calc(100% - 56px));
  min-height: 94px;
  display: grid;
  grid-template-columns: 210px 1fr 148px;
  gap: 20px;
}

.brand {
  min-width: 205px;
  min-height: 86px;
  justify-content: flex-start;
}

.brand-logo {
  width: 204px;
  height: 78px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  justify-content: center;
  gap: clamp(14px, 1.55vw, 24px);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav-links a {
  padding: 34px 0 30px;
  border-bottom-color: transparent;
}

.nav-actions {
  justify-content: flex-end;
}

.nav-actions .btn-secondary {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(176, 138, 82, 0.58);
  background: rgba(10, 10, 10, 0.2);
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-actions .btn-secondary:hover {
  background: rgba(176, 138, 82, 0.12);
  border-color: rgba(176, 138, 82, 0.86);
}

@media (max-width: 1180px) {
  .nav-shell {
    display: flex;
    min-height: 88px;
  }

  .brand {
    min-width: 220px;
  }

  .brand-logo {
    width: 214px;
    height: 74px;
  }

  .nav-links {
    position: fixed;
    inset: 88px 0 auto;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid rgba(176, 138, 82, 0.22);
    padding: 28px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    font-size: 0.82rem;
  }

  .nav-links a {
    padding: 8px 0;
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    width: min(100% - 28px, 1280px);
    min-height: 82px;
  }

  .brand {
    min-width: 180px;
    min-height: 76px;
  }

  .brand-logo {
    width: 176px;
    height: 66px;
  }

  .nav-links {
    inset: 82px 0 auto;
  }
}

/* Editorial textile atelier layer */
body {
  background: var(--charcoal);
  color: var(--ivory);
}

.site-header {
  background: rgba(7, 7, 7, 0.78);
  border-bottom: 1px solid rgba(140, 102, 56, 0.38);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px);
}

.nav-shell {
  width: min(1360px, calc(100% - 72px));
  min-height: 92px;
  grid-template-columns: 342px 1fr 150px;
  gap: 34px;
}

.brand {
  min-width: 340px;
  min-height: 92px;
  gap: 16px;
}

.brand-logo {
  width: 230px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.header-logo {
  display: block;
  width: 264px;
  height: 82px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(1.12) contrast(1.05) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.34));
}

.brand-monogram {
  display: none;
}

.brand-wordmark {
  display: grid;
  gap: 5px;
  line-height: 1;
}

.brand-wordmark strong {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.54rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-wordmark small {
  color: var(--muted-gold);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  gap: clamp(18px, 1.75vw, 34px);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: rgba(244, 239, 231, 0.84);
}

.nav-links a {
  position: relative;
  border-bottom: 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 1px;
  background: var(--muted-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 240ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ivory);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-actions .btn-secondary {
  min-height: 38px;
  padding: 0 17px;
  border-color: rgba(176, 138, 82, 0.66);
  color: var(--ivory);
  background: rgba(244, 239, 231, 0.02);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.hero.atelier-hero {
  background:
    radial-gradient(circle at 10% 10%, rgba(176, 138, 82, 0.12), transparent 28%),
    linear-gradient(135deg, #070707 0%, #11100e 54%, #181614 100%);
}

.atelier-hero .hero-inner {
  width: min(1360px, calc(100% - 72px));
  min-height: calc(100vh - 92px);
  grid-template-columns: minmax(340px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(48px, 6vw, 92px);
  padding: 86px 0 76px;
}

.atelier-hero .hero-copy {
  max-width: 560px;
}

.atelier-hero .eyebrow {
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: var(--ivory-soft);
}

.atelier-hero h1 {
  max-width: 620px;
  margin-top: 18px;
  font-size: clamp(4.1rem, 6.8vw, 7.4rem);
  line-height: 0.91;
  letter-spacing: 0;
}

.atelier-hero .lead {
  max-width: 470px;
  color: rgba(221, 209, 192, 0.88);
  font-size: clamp(1.03rem, 1.35vw, 1.25rem);
}

.textile-hero-image {
  min-height: 670px;
  border: 0;
  background:
    linear-gradient(180deg, rgba(176, 138, 82, 0.12), transparent 28%),
    #090909;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.52);
}

.textile-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ivory-section {
  background: var(--ivory);
  color: var(--ink);
}

.ivory-section .eyebrow,
.ivory-section .product-kicker {
  color: var(--bronze);
}

.ivory-section h2,
.ivory-section h3 {
  color: var(--warm-black);
}

.ivory-section p,
.ivory-section .lead {
  color: rgba(24, 22, 20, 0.72);
}

.editorial-statement {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.editorial-statement h2 {
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  line-height: 0.96;
}

.editorial-statement p {
  max-width: 680px;
  margin: 24px auto 0;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.editorial-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.editorial-heading h2 {
  font-size: clamp(3.1rem, 5.8vw, 5.6rem);
  line-height: 0.96;
}

.editorial-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 44px);
}

.editorial-panel {
  display: grid;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(176, 138, 82, 0.42);
}

.editorial-panel img,
.panel-image-crop {
  width: 100%;
  aspect-ratio: 0.76;
  background: #080808;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.editorial-panel img {
  object-fit: cover;
  object-position: center top;
}

.panel-image-crop {
  overflow: hidden;
}

.panel-image-crop img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  box-shadow: none;
}

.editorial-panel.scripture-panel img {
  aspect-ratio: 0.76;
  object-fit: cover;
  object-position: 28% center;
  padding: 0;
}

.editorial-panel.a1-panel .panel-image-crop img {
  object-fit: cover;
  object-position: center;
  transform: none;
  transform-origin: center;
}

.image-panel.landscape-image img {
  object-fit: contain;
  object-position: center;
  background: #080808;
}

.editorial-panel span {
  color: var(--muted-gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  line-height: 1.2;
  font-weight: 800;
}

.editorial-panel h3 {
  margin: 7px 0 8px;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
}

.collection-led {
  display: grid;
  gap: clamp(52px, 7vw, 92px);
}

.collection-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(300px, 1.14fr);
  gap: clamp(36px, 5vw, 74px);
  align-items: center;
}

.collection-row.reverse {
  grid-template-columns: minmax(300px, 1.14fr) minmax(280px, 0.86fr);
}

.collection-row.reverse img {
  order: 2;
}

.collection-row img {
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 30px 80px rgba(24, 22, 20, 0.18);
}

.collection-row h3 {
  margin: 12px 0 18px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.95;
}

.collection-row p {
  max-width: 590px;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

.scripture-feature {
  background:
    radial-gradient(circle at 78% 20%, rgba(176, 138, 82, 0.12), transparent 28%),
    linear-gradient(135deg, #080808, #11100e 64%, #181614);
}

.scripture-feature h2 {
  max-width: 620px;
  font-size: clamp(3rem, 5.7vw, 5.7rem);
  line-height: 0.97;
}

.scripture-feature blockquote {
  margin: 36px 0 0;
  padding-left: 26px;
  border-left: 1px solid rgba(176, 138, 82, 0.68);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3.7rem);
  line-height: 1.04;
}

.scripture-feature blockquote span {
  display: block;
  margin-top: 12px;
  color: var(--muted-gold);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.soft-panel {
  min-height: 620px;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.38);
}

.quiet-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
}

.quiet-values div {
  padding-top: 22px;
  border-top: 1px solid rgba(140, 102, 56, 0.36);
}

.quiet-values h3 {
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
}

.calm-process {
  gap: 20px;
}

.calm-process .process-step {
  min-height: 150px;
  border: 0;
  border-top: 1px solid rgba(176, 138, 82, 0.42);
  background: transparent;
  box-shadow: none;
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--ivory);
}

.final-cta {
  min-height: 620px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0.55)),
    url("/gallery/4f83fceb-cdd6-4cca-a253-2866e2d7b3d7.png") center / cover;
}

.final-cta .cta-section {
  max-width: 760px;
  margin: 0;
  text-align: left;
}

.final-cta h2 {
  font-size: clamp(3.7rem, 7vw, 7.2rem);
  line-height: 0.92;
}

.final-cta .lead {
  color: rgba(244, 239, 231, 0.88);
}

#faq .faq-item {
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(140, 102, 56, 0.22);
}

#faq .faq-question {
  color: var(--warm-black);
}

#faq .faq-answer p {
  color: rgba(24, 22, 20, 0.72);
}

@media (max-width: 1180px) {
  .nav-shell {
    width: min(100% - 42px, 1360px);
    min-height: 88px;
  }

  .brand {
    min-width: 286px;
  }

  .brand-monogram {
    display: none;
  }

  .brand-wordmark strong {
    font-size: 1.34rem;
  }

  .brand-wordmark small {
    font-size: 0.52rem;
  }

  .nav-links a::after {
    bottom: 2px;
  }

  .atelier-hero .hero-inner {
    grid-template-columns: 1fr;
    width: min(100% - 42px, 900px);
  }

  .textile-hero-image {
    min-height: 560px;
  }

  .editorial-panels,
  .quiet-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-row,
  .collection-row.reverse {
    grid-template-columns: 1fr;
  }

  .collection-row.reverse img {
    order: 0;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    width: min(100% - 28px, 1360px);
  }

  .brand {
    min-width: 224px;
  }

  .brand-logo {
    width: 178px;
    height: 64px;
  }

  .brand-monogram {
    display: none;
  }

  .brand-wordmark strong {
    font-size: 1.05rem;
    letter-spacing: 0.05em;
  }

  .brand-wordmark small {
    font-size: 0.45rem;
    letter-spacing: 0.16em;
  }

  .nav-actions .btn-secondary {
    display: none;
  }

  .atelier-hero .hero-inner {
    width: min(100% - 28px, 900px);
    padding: 58px 0 58px;
  }

  .atelier-hero h1 {
    font-size: clamp(3.25rem, 16vw, 4.7rem);
  }

  .textile-hero-image {
    min-height: 430px;
  }

  .editorial-panels,
  .quiet-values {
    grid-template-columns: 1fr;
  }

  .editorial-statement,
  .editorial-statement p {
    text-align: left;
    margin-left: 0;
  }

  .collection-row img,
  .editorial-panel img {
    aspect-ratio: 0.82;
  }

  .soft-panel {
    min-height: 420px;
  }

  .final-cta {
    min-height: 560px;
  }
}

@media (max-width: 1540px) {
  .nav-shell {
    display: flex;
    width: min(100% - 42px, 1360px);
    min-height: 88px;
  }

  .brand {
    min-width: 286px;
  }

  .brand-monogram {
    display: none;
  }

  .brand-wordmark strong {
    font-size: 1.34rem;
  }

  .brand-wordmark small {
    font-size: 0.52rem;
  }

  .nav-links {
    position: fixed;
    inset: 88px 0 auto;
    background: rgba(7, 7, 7, 0.98);
    border-bottom: 1px solid rgba(176, 138, 82, 0.24);
    padding: 30px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    font-size: 0.82rem;
  }

  .nav-links a {
    padding: 8px 0;
  }

  .nav-links a::after {
    bottom: 2px;
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    width: min(100% - 28px, 1360px);
    min-height: 82px;
  }

  .brand {
    min-width: 224px;
  }

  .brand-monogram {
    display: none;
  }

  .brand-wordmark strong {
    font-size: 1.05rem;
  }

  .brand-wordmark small {
    font-size: 0.45rem;
  }

  .nav-links {
    inset: 82px 0 auto;
  }
}

@media (max-width: 1540px) {
  .header-logo {
    width: 250px;
    height: 78px;
  }
}

@media (max-width: 760px) {
  .header-logo {
    width: 198px;
    height: 68px;
  }
}

/* Final logo: use the supplied full Legacy Thread artwork only */
.site-header .nav-shell {
  min-height: 104px;
}

.site-header .brand {
  min-width: 230px;
  min-height: 96px;
}

.site-header .header-logo {
  width: 218px;
  height: 92px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 760px) {
  .site-header .nav-shell {
    min-height: 96px;
  }

  .site-header .brand {
    min-width: 184px;
    min-height: 88px;
  }

  .site-header .header-logo {
    width: 176px;
    height: 84px;
  }

  .site-header .nav-links {
    inset: 96px 0 auto;
  }
}

/* Available blanks ordering page */
.available-blanks-page {
  --champagne-gold: #d7b978;
  --legacy-red: #9e1b1b;
  --deep-red: #6f1010;
}

.available-blanks-page main {
  background:
    radial-gradient(circle at 12% 2%, rgba(158, 27, 27, 0.13), transparent 28%),
    #050505;
}

.blank-hero,
.blank-section {
  width: min(1240px, calc(100% - 30px));
  margin: 0 auto;
}

.blank-hero {
  min-height: calc(86svh - 104px);
  display: flex;
  align-items: center;
  padding: clamp(66px, 10vw, 128px) 0;
}

.blank-hero-copy {
  max-width: 860px;
}

.blank-hero h1,
.blank-heading h2,
.blank-two-column h2,
.blank-notice h2,
.blank-final-cta h2 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
}

.blank-hero h1 {
  margin-top: 20px;
  font-size: clamp(3.1rem, 10vw, 7.1rem);
  line-height: 0.9;
}

.blank-hero p {
  max-width: 720px;
  margin-top: 28px;
  color: rgba(244, 239, 231, 0.82);
  font: 400 clamp(1.08rem, 1.6vw, 1.28rem)/1.75 var(--sans);
}

.blank-section {
  padding: clamp(62px, 9vw, 118px) 0;
}

.blank-light {
  width: 100%;
  max-width: none;
  padding-inline: max(15px, calc((100vw - 1240px) / 2));
  background: var(--ivory);
  color: #111;
}

.blank-heading {
  max-width: 820px;
  margin-bottom: clamp(30px, 5vw, 58px);
}

.blank-heading span {
  display: block;
  margin-bottom: 16px;
  color: var(--legacy-red);
  font: 800 0.76rem/1.2 var(--sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.blank-heading h2 {
  font-size: clamp(2.65rem, 7vw, 5.2rem);
  line-height: 0.98;
}

.blank-heading p {
  margin-top: 20px;
  color: rgba(244, 239, 231, 0.76);
  font: 400 1.05rem/1.75 var(--sans);
}

.blank-light .blank-heading h2,
.blank-light .blank-heading p,
.blank-light h3,
.blank-light p {
  color: #111;
}

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

.blank-steps article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(111, 16, 16, 0.16);
}

.blank-steps article:last-child {
  border-bottom: 1px solid rgba(111, 16, 16, 0.16);
}

.blank-steps strong {
  color: var(--deep-red);
  font-family: var(--serif);
  font-size: 3.6rem;
  line-height: 0.85;
}

.blank-steps p {
  color: rgba(17, 17, 17, 0.76);
  font: 600 clamp(1.03rem, 1.5vw, 1.18rem)/1.55 var(--sans);
}

.blank-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.blank-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid rgba(201, 164, 92, 0.24);
  background: rgba(17, 17, 17, 0.78);
}

.blank-card-image img,
.blank-placeholder {
  width: 100%;
  aspect-ratio: 0.72;
}

.blank-card-image img {
  object-fit: contain;
  object-position: center;
  background: #0b0b0b;
}

.blank-placeholder {
  display: grid;
  place-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(201, 164, 92, 0.18);
  background:
    linear-gradient(135deg, rgba(176, 138, 82, 0.22), rgba(111, 16, 16, 0.16)),
    #17120f;
  text-align: center;
}

.blank-placeholder span,
.blank-placeholder small {
  color: rgba(244, 239, 231, 0.68);
  font: 700 0.72rem/1.4 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blank-placeholder strong {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1;
}

.blank-placeholder small {
  max-width: 100%;
  overflow-wrap: anywhere;
  text-transform: none;
}

.blank-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(24px, 3vw, 32px);
}

.blank-card-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.blank-card-topline > span {
  color: var(--champagne-gold);
  font: 800 0.78rem/1.2 var(--sans);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.blank-card mark {
  padding: 7px 10px;
  border: 1px solid rgba(244, 239, 231, 0.16);
  border-radius: 999px;
  background: rgba(244, 239, 231, 0.08);
  color: var(--ivory);
  font: 800 0.72rem/1 var(--sans);
}

.blank-card mark.is-in {
  border-color: rgba(215, 185, 120, 0.42);
  color: var(--champagne-gold);
}

.blank-card mark.is-limited {
  border-color: rgba(176, 138, 82, 0.48);
  color: #e7c98a;
}

.blank-card mark.is-out {
  border-color: rgba(158, 27, 27, 0.6);
  color: #f0b5aa;
}

.blank-card h3 {
  margin: 18px 0 12px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 600;
  line-height: 1.02;
}

.blank-card p {
  color: rgba(244, 239, 231, 0.76);
  font: 400 1rem/1.65 var(--sans);
}

.blank-size-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 164, 92, 0.2);
}

.blank-size-block h4 {
  margin: 0 0 12px;
  color: var(--champagne-gold);
}

.blank-size-block ul,
.blank-list-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blank-size-block li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(244, 239, 231, 0.09);
}

.blank-size-block li span {
  color: var(--ivory);
  font-weight: 700;
}

.blank-size-block li strong {
  color: var(--champagne-gold);
  font-size: 1.12rem;
}

.blank-size-block li small {
  grid-column: 1 / -1;
  color: rgba(244, 239, 231, 0.68);
  font-size: 0.92rem;
}

.blank-starting-price {
  margin-top: 22px;
  color: var(--ivory) !important;
  font-size: 1.08rem !important;
}

.blank-starting-price strong {
  color: var(--champagne-gold);
  font-size: 1.35rem;
}

.blank-card-button {
  width: 100%;
  margin-top: auto;
}

.blank-price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.blank-price-grid article,
.blank-list-panel {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(140, 102, 56, 0.2);
  background: #fffaf3;
}

.blank-price-grid h3 {
  margin: 0 0 18px;
  color: #111;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.02;
}

.blank-price-grid p,
.blank-note {
  color: rgba(17, 17, 17, 0.72);
  font: 400 1.02rem/1.65 var(--sans);
}

.blank-price-grid p + p {
  margin-top: 10px;
}

.blank-price-grid strong {
  color: var(--deep-red);
}

.blank-note {
  margin-top: 22px;
}

.blank-two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.blank-two-column h2 {
  margin-top: 14px;
  font-size: clamp(2.65rem, 7vw, 5.2rem);
  line-height: 0.98;
}

.blank-two-column p {
  margin-top: 20px;
  color: rgba(244, 239, 231, 0.76);
  font: 400 1.08rem/1.75 var(--sans);
}

.blank-list-panel li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(140, 102, 56, 0.18);
  color: #111;
  font: 700 1.04rem/1.45 var(--sans);
}

.blank-list-panel li:first-child {
  padding-top: 0;
}

.blank-list-panel p {
  margin-top: 22px;
  color: var(--deep-red);
  font-weight: 700;
}

.blank-notice,
.blank-final-cta {
  max-width: 940px;
  text-align: center;
}

.blank-notice {
  border-top: 1px solid rgba(201, 164, 92, 0.22);
  border-bottom: 1px solid rgba(201, 164, 92, 0.22);
}

.blank-notice h2,
.blank-final-cta h2 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.96;
}

.blank-notice p,
.blank-final-cta p {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(244, 239, 231, 0.76);
  font: 400 1.08rem/1.75 var(--sans);
}

.blank-contact-details {
  display: grid;
  gap: 8px;
  margin: 28px 0 30px;
  color: var(--ivory);
  font-size: 1.08rem;
}

.blank-contact-details strong {
  color: var(--champagne-gold);
  font-size: 1.2rem;
}

@media (min-width: 720px) {
  .blank-grid,
  .blank-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .blank-steps article:nth-last-child(2) {
    border-bottom: 1px solid rgba(111, 16, 16, 0.16);
  }
}

@media (min-width: 1120px) {
  .blank-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .blank-two-column {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
    gap: clamp(46px, 7vw, 96px);
  }
}

@media (max-width: 620px) {
  .blank-hero {
    min-height: auto;
    padding-top: 48px;
  }

  .blank-hero h1 {
    font-size: clamp(3rem, 14vw, 4.1rem);
  }

  .blank-hero .simple-actions {
    display: grid;
  }

  .blank-hero .btn,
  .blank-final-cta .btn {
    width: 100%;
  }

  .blank-card-body {
    padding: 22px 18px;
  }
}

.blank-load-message {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid rgba(201, 164, 92, 0.24);
  color: rgba(244, 239, 231, 0.78);
  background: rgba(17, 17, 17, 0.78);
}

