:root {
  --ink: #0d0d0c;
  --ink-soft: #171614;
  --ivory: #f4efe7;
  --paper: #f8f5ef;
  --line: #d8cec1;
  --muted: #6c6963;
  --bronze: #b77b4d;
  --bronze-light: #d7a06f;
  --white: #fff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
  --shell: min(1320px, calc(100vw - 96px));
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.55; }
body::before { content: ""; position: fixed; z-index: 9999; inset: 0; pointer-events: none; opacity: .024; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E"); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.section-shell { width: var(--shell); margin-inline: auto; }

.skip-link { position: fixed; z-index: 999; left: 20px; top: 12px; transform: translateY(-180%); background: var(--white); padding: 10px 16px; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: absolute; z-index: 20; inset: 0 0 auto; height: 102px; display: flex; align-items: center; gap: 54px; padding-inline: max(36px, calc((100vw - 1460px) / 2)); color: var(--ivory); border-bottom: 1px solid rgba(244,239,231,.08); }
.wordmark { font-size: 22px; font-weight: 650; letter-spacing: .16em; white-space: nowrap; }
.primary-nav { display: flex; align-items: center; justify-content: flex-end; gap: 48px; margin-left: auto; font-size: 16px; }
.primary-nav a { color: rgba(244,239,231,.88); }
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--white); }
.primary-nav a:not(.nav-cta):nth-child(-n+2)::after { content: ""; display: inline-block; width: 14px; height: 14px; margin-left: 8px; vertical-align: -2px; background: url("assets/icons/chevronDown.svg") center/contain no-repeat; filter: invert(1); opacity: .72; }
.nav-cta { padding: 12px 30px; border: 1px solid var(--bronze); border-radius: 7px; color: var(--bronze-light) !important; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; }
.menu-toggle img { width: 24px; filter: invert(1); }

.hero { min-height: 910px; position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(480px,.43fr) minmax(620px,.57fr); align-items: center; background: radial-gradient(circle at 68% 34%, #211b16 0, #11100e 31%, var(--ink) 62%); color: var(--ivory); padding: 132px max(48px, calc((100vw - 1370px) / 2)) 90px; }
.hero::after { content: ""; position: absolute; z-index: 2; inset: auto 0 0; height: 190px; pointer-events: none; background: linear-gradient(transparent, rgba(8,8,7,.48)); }
.hero-copy { position: relative; z-index: 2; max-width: 620px; }
.hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(68px,5.6vw,88px); font-weight: 400; line-height: .98; letter-spacing: -.045em; }
.hero-copy > p { max-width: 560px; margin: 30px 0 0; color: rgba(244,239,231,.8); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 36px; }
.button { min-height: 58px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 14px 34px; border: 1px solid transparent; border-radius: 6px; font-weight: 500; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-solid { background: var(--bronze); color: var(--white); }
.button-outline { background: transparent; border-color: var(--bronze); color: var(--ivory); }
.button-dark-outline { min-width: 300px; background: transparent; border-color: var(--bronze); color: var(--ink); }
.hero-media { position: absolute; z-index: 1; inset: 80px 0 0 auto; width: 58%; margin: 0; overflow: hidden; background: #0d0d0c; }
.hero-media img { width: 100%; height: 100%; object-fit: contain; object-position: right bottom; filter: saturate(.88) contrast(1.04); }

.applications { padding: 74px 0 0; }
.section-heading { padding-bottom: 30px; border-bottom: 1px solid var(--bronze); }
.section-heading h2, .private-label h2, .signature h2, .quote h2 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; }
.section-heading h2 { font-size: clamp(48px,4vw,68px); line-height: 1.05; }
.section-heading p { margin: 10px 0 0; color: var(--muted); font-size: 18px; }
.application-rail { display: grid; grid-template-columns: repeat(6,1fr); min-height: 76px; border-bottom: 1px solid var(--line); }
.application-rail a { position: relative; display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--muted); font-size: 14px; }
.application-rail a::after { content: ""; position: absolute; inset: auto 16px -1px; height: 3px; background: transparent; }
.application-rail a.is-active, .application-rail a:hover { color: var(--bronze); }
.application-rail a.is-active::after { background: var(--bronze); }
.application-rail img { width: 24px; height: 24px; opacity: .8; }

.machines { background: var(--paper); }
.product-section { position: relative; display: grid; grid-template-columns: minmax(0,1.62fr) minmax(340px,.9fr); gap: 52px; min-height: 590px; padding-block: 28px 96px; border-bottom: 1px solid var(--line); }
.product-section-reverse .product-carousel, .product-section-reverse .product-copy { order: initial; }
.product-carousel { min-width: 0; }
.carousel-viewport { overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; background: #ece6dd; cursor: grab; outline: none; touch-action: pan-y; user-select: none; }
.carousel-viewport:focus-visible { box-shadow: 0 0 0 3px rgba(183,123,77,.34); }
.carousel-viewport.is-dragging { cursor: grabbing; }
.carousel-track { display: flex; transition: transform .5s cubic-bezier(.22,.7,.2,1); will-change: transform; }
.carousel-viewport.is-dragging .carousel-track { transition: none; }
.slide { flex: 0 0 100%; aspect-ratio: 1.76/1; margin: 0; background: #eee9e2; }
.slide img { width: 100%; height: 100%; object-fit: contain; pointer-events: none; }
.slide:first-child img { object-fit: cover; }
.thumbnail-strip { display: flex; align-items: center; gap: 6px; overflow-x: auto; padding: 12px 56px; border: 1px solid var(--line); border-top: 0; border-radius: 0 0 var(--radius) var(--radius); scrollbar-width: none; }
.thumbnail-strip::-webkit-scrollbar { display: none; }
.thumbnail-button { flex: 0 0 105px; height: 72px; padding: 0; overflow: hidden; border: 1px solid transparent; border-radius: 4px; background: #e8e2da; cursor: pointer; opacity: .74; }
.thumbnail-button.is-active { opacity: 1; border-color: var(--bronze); }
.thumbnail-button img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.carousel-controls { position: absolute; right: 0; bottom: 72px; width: calc(36% - 10px); display: flex; align-items: center; justify-content: space-between; }
.carousel-count { font-family: var(--serif); font-size: 22px; letter-spacing: .04em; }
.carousel-count b { font-weight: 400; }
.carousel-controls > div { display: flex; gap: 14px; }
.carousel-controls button { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid #aaa095; border-radius: 50%; background: transparent center/18px no-repeat; cursor: pointer; }
.carousel-controls button[data-prev] { background-image: url("assets/icons/chevronLeft.svg"); }
.carousel-controls button[data-next] { background-image: url("assets/icons/chevronRight.svg"); }
.carousel-controls button svg { display: none; }
.product-copy { padding-top: 46px; }
.product-index { display: none; }
.product-copy h3 { margin: 0; font-family: var(--serif); font-size: 62px; font-weight: 400; line-height: 1; letter-spacing: -.03em; }
.product-copy h3::after { content: ""; display: block; width: 44px; height: 1px; margin: 22px 0; background: var(--bronze); }
.product-use { margin: 0 0 24px; font-size: 17px; }
.spec-list { display: flex; flex-wrap: wrap; margin: 0 0 26px; padding: 0; list-style: none; color: var(--muted); }
.spec-list li { padding: 0 13px; border-right: 1px solid var(--line); }
.spec-list li:first-child { padding-left: 0; }
.spec-list li:last-child { border-right: 0; }
.product-copy > p:not(.product-use):not(.product-index) { max-width: 470px; margin: 0 0 24px; color: var(--muted); }
.text-link { min-height: 54px; display: inline-flex; align-items: center; gap: 18px; padding: 12px 20px; border: 1px solid var(--bronze); border-radius: 7px; color: #8f592f; }

.private-label { padding-block: 100px 68px; text-align: center; }
.section-heading-centered { border: 0; padding: 0; }
.private-label h2 { font-size: clamp(44px,4vw,60px); }
.private-label h2::after, .signature h2::after, .quote h2::after { content: ""; display: block; width: 88px; height: 1px; margin: 26px auto 0; background: var(--bronze); }
.order-options { width: min(700px,100%); display: grid; grid-template-columns: repeat(2,1fr); margin: 36px auto 40px; text-align: left; }
.order-options article { min-height: 230px; padding: 0 56px; }
.order-options article + article { border-left: 1px solid var(--line); }
.order-options article > span { display: block; color: var(--bronze); font-family: var(--serif); font-size: 38px; }
.order-options h3 { margin: 10px 0 2px; font-family: var(--serif); font-size: 32px; font-weight: 400; }
.order-options strong { color: var(--bronze); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.order-options p { max-width: 255px; margin: 14px 0 0; color: #383633; font-size: 14px; line-height: 1.55; }

.signature { width: 100%; display: grid; grid-template-columns: minmax(360px,.95fr) minmax(420px,1.05fr); gap: 72px; align-items: center; padding: 48px max(60px, calc((100vw - 1320px)/2)); background: #f0ece6; }
.signature-copy { max-width: 520px; }
.signature h2 { font-size: clamp(48px,4vw,64px); line-height: 1.03; }
.signature h2::after { margin-left: 0; }
.signature-copy > p { max-width: 430px; margin: 28px 0 30px; }
.fragrance-list { display: grid; grid-template-columns: repeat(3,1fr); margin: 0; padding: 0; list-style: none; }
.fragrance-list li { min-height: 105px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; font-size: 13px; }
.fragrance-list li:nth-child(3n) { border-right: 0; }
.fragrance-list li:nth-child(n+4) { border-bottom: 0; }
.fragrance-list img { width: 42px; height: 42px; }
.signature-media { margin: 0; aspect-ratio: .9/1; overflow: hidden; border: 2px solid var(--white); outline: 1px solid var(--bronze); }
.signature-media img { width: 100%; height: 100%; object-fit: cover; }

.quote { background: #121313; color: var(--ivory); }
.quote-shell { display: grid; grid-template-columns: minmax(300px,.78fr) minmax(620px,1.45fr); gap: 58px; padding: 56px max(54px, calc((100vw - 1320px)/2)) 36px; }
.quote-intro { display: flex; flex-direction: column; min-width: 0; }
.quote h2 { max-width: 360px; font-size: clamp(48px,4vw,64px); line-height: 1.05; }
.quote h2::after { margin-left: 0; }
.contact-options { display: grid; gap: 0; margin: 4px 0 26px; border-top: 1px solid #765c47; }
.contact-options a, .contact-options address { display: grid; gap: 5px; padding: 14px 0; border-bottom: 1px solid #3d352e; color: var(--ivory); font-style: normal; }
.contact-options span { color: var(--bronze-light); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.contact-options strong { font-size: 13px; font-weight: 400; line-height: 1.55; overflow-wrap: anywhere; }
.contact-options a:hover strong { color: var(--bronze-light); }
.quote-visual { margin: auto 0 0; max-width: 360px; overflow: hidden; }
.quote-visual img { width: 100%; height: 100%; object-fit: cover; }
.quote-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px 24px; align-content: start; }
.quote-form label { display: flex; flex-direction: column; gap: 7px; color: #e9e0d4; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid #765c47; border-radius: 0; background: transparent; color: var(--ivory); padding: 13px 14px; outline: none; text-transform: none; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--bronze-light); }
.quote-form option { color: var(--ink); }
.field-wide { grid-column: 1/-1; }
.quote-form .button { border-radius: 0; font-size: 18px; }
.quote-result { grid-column: 2; padding: 24px; border: 1px solid #765c47; }
.quote-result h3 { margin: 0; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.quote-result pre { white-space: pre-wrap; color: #d8cabd; }
.quote-result-actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.quote-result-actions .button { min-height: 48px; padding: 11px 14px; font-size: 13px; text-align: center; }

.site-footer { min-height: 154px; display: grid; grid-template-columns: 240px 1fr; align-items: center; gap: 18px 30px; padding: 26px max(54px, calc((100vw - 1320px)/2)); border-top: 1px solid #77716a; background: #111212; color: var(--ivory); }
.site-footer .wordmark { color: var(--bronze-light); white-space: normal; line-height: 1.25; }
.site-footer nav { display: flex; justify-content: center; gap: 0; font-size: 12px; text-transform: uppercase; }
.site-footer nav a { padding: 0 30px; border-right: 1px solid #6c6862; }
.site-footer nav a:last-child { border-right: 0; }
.footer-contact { grid-column: 2; display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 22px; color: #b8afa5; font-size: 12px; }
.footer-contact a:hover { color: var(--bronze-light); }
.site-footer p { grid-column: 2; margin: 0; text-align: center; color: #8c8882; font-size: 12px; }

@media (max-width: 1100px) {
  :root { --shell: calc(100vw - 48px); }
  .primary-nav { gap: 24px; }
  .hero { grid-template-columns: .45fr .55fr; padding-inline: 48px; }
  .hero h1 { font-size: 66px; }
  .product-section { grid-template-columns: minmax(0,1.3fr) minmax(300px,.7fr); gap: 36px; }
  .product-copy h3 { font-size: 54px; }
  .thumbnail-button { flex-basis: 88px; }
  .signature { gap: 44px; }
}

@media (max-width: 900px) {
  :root { --shell: calc(100% - 32px); --radius: 11px; }
  body { font-size: 15px; }
  .site-header { height: 74px; padding-inline: 18px; }
  .wordmark { font-size: 15px; }
  .menu-toggle { display: grid; place-items: center; margin-left: auto; }
  .primary-nav { position: absolute; inset: 74px 14px auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; border: 1px solid #3b332c; background: rgba(13,13,12,.98); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 12px 10px; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .hero { min-height: 900px; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; padding: 110px 18px 0; }
  .hero-copy { max-width: none; }
  .hero h1 { font-size: clamp(42px,11vw,56px); line-height: 1.02; letter-spacing: -.035em; }
  .hero-copy > p { margin-top: 24px; font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 12px; margin-top: 26px; }
  .button { width: 100%; min-height: 52px; }
  .hero-media { position: relative; inset: auto; width: calc(100% + 36px); min-height: 0; aspect-ratio: 886 / 830; margin: 34px -18px 0; }
  .applications { padding-top: 64px; }
  .section-heading h2 { font-size: 42px; }
  .section-heading p { font-size: 15px; }
  .application-rail { display: flex; min-height: 78px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .application-rail::-webkit-scrollbar { width: 0; height: 0; display: none; }
  .application-rail a { flex: 0 0 160px; scroll-snap-align: start; }
  .product-section, .product-section-reverse { display: flex; flex-direction: column; gap: 28px; min-height: 0; padding-block: 24px 64px; }
  .slide { aspect-ratio: 1/1.02; }
  .thumbnail-strip { padding: 10px 12px; }
  .thumbnail-button { flex-basis: 74px; height: 56px; }
  .product-copy { padding-top: 0; }
  .product-copy h3 { font-size: 60px; }
  .carousel-controls { position: static; width: 100%; margin-top: 16px; }
  .private-label { padding-block: 76px 60px; }
  .private-label h2 { font-size: 42px; }
  .order-options { grid-template-columns: 1fr; }
  .order-options article { min-height: 0; padding: 24px 12px 34px; text-align: center; }
  .order-options article + article { border-left: 0; border-top: 1px solid var(--line); }
  .order-options p { margin-inline: auto; }
  .signature { display: flex; flex-direction: column; gap: 42px; padding: 72px 16px; }
  .signature-copy { max-width: none; }
  .signature h2 { font-size: 48px; }
  .signature-media { width: 100%; }
  .quote-shell { display: flex; flex-direction: column; gap: 44px; padding: 72px 16px 44px; }
  .quote h2 { font-size: 48px; }
  .quote-visual { max-width: 100%; }
  .quote-form { grid-template-columns: 1fr; }
  .field-wide { grid-column: 1; }
  .quote-result { grid-column: 1; }
  .quote-result-actions { grid-template-columns: 1fr; }
  .site-footer { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; padding: 44px 20px; }
  .footer-contact { display: grid; justify-content: start; }
  .site-footer nav { flex-wrap: wrap; justify-content: flex-start; gap: 14px 24px; }
  .site-footer nav a { padding: 0; border: 0; }
  .site-footer p { margin: 0; text-align: left; }
}

@media (min-width: 761px) and (max-width: 900px) {
  .hero { min-height: 720px; display: grid; grid-template-columns: 38% 62%; align-items: center; padding: 96px 28px 48px; }
  .hero-copy { max-width: 300px; }
  .hero h1 { font-size: 42px; line-height: 1.02; }
  .hero-copy > p { margin-top: 20px; font-size: 14px; line-height: 1.55; }
  .hero-actions { gap: 10px; margin-top: 22px; }
  .button { min-height: 48px; font-size: 13px; }
  .hero-media { position: absolute; inset: 74px 0 0 auto; width: 62%; height: auto; aspect-ratio: auto; margin: 0; }
  .hero-media img { object-fit: contain; object-position: right bottom; }
}

/* Compact six-model collection: one row, one independent carousel per model. */
.machines-compact {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding: 30px max(24px, calc((100vw - 1320px) / 2)) 72px;
  scrollbar-width: none;
  border: 0;
  outline: none;
}
.machines-compact::-webkit-scrollbar { width: 0; height: 0; display: none; }
.machines-compact > .product-section {
  width: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, #f7f3ed 0%, #f1ece4 100%);
  scroll-margin-top: 100px;
  box-shadow: 0 16px 36px rgba(40,31,23,.06);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.machines-compact > .product-section:hover { transform: translateY(-5px); border-color: #cbb9a8; box-shadow: 0 22px 48px rgba(40,31,23,.13); }
.machines-compact .product-carousel { position: relative; }
.machines-compact .carousel-viewport { border-radius: 0; background: #e7e0d6; }
.machines-compact .slide { aspect-ratio: 1 / 1.08; background: #ece7df; }
.machines-compact .slide img { object-fit: contain; }
.machines-compact .slide-scene img { object-fit: cover; }
.machines-compact .slide-scene { position: relative; }
.machines-compact .slide-scene::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 62%, rgba(12,10,8,.22)); }
.machines-compact .thumbnail-strip { display: none; }
.machines-compact .carousel-controls {
  position: absolute;
  inset: auto 8px 8px;
  z-index: 3;
  width: auto;
  margin: 0;
  pointer-events: none;
}
.machines-compact .carousel-count {
  min-width: 52px;
  padding: 5px 8px;
  border: 1px solid rgba(178, 166, 153, .65);
  border-radius: 999px;
  background: rgba(18,15,12,.72);
  color: #f7eee3;
  border-color: rgba(235,215,194,.25);
  backdrop-filter: blur(8px);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .08em;
}
.machines-compact .carousel-controls > div { gap: 5px; pointer-events: auto; }
.machines-compact .carousel-controls button {
  width: 30px;
  height: 30px;
  border-color: rgba(235,215,194,.34);
  background-color: rgba(18,15,12,.76);
  background-size: 13px;
  filter: invert(1);
  backdrop-filter: blur(8px);
}
.machines-compact .product-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 14px 14px;
}
.machines-compact .product-index { display: none; }
.machines-compact .product-copy h3 { font-size: 32px; letter-spacing: -.025em; }
.machines-compact .product-copy h3::after { width: 26px; margin: 10px 0 12px; }
.machines-compact .product-use {
  min-height: 34px;
  margin: 0 0 12px;
  font-size: 11px;
  line-height: 1.45;
}
.machines-compact .spec-list {
  display: block;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}
.machines-compact .spec-list li { display: inline; padding: 0; border: 0; }
.machines-compact .spec-list li:not(:last-child)::after { content: " · "; }
.machines-compact .product-copy > p:not(.product-use):not(.product-index) { display: none; }
.machines-compact .product-actions {
  display: grid;
  gap: 7px;
  margin-top: auto;
}
.machines-compact .detail-link {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfc3b6;
  border-radius: 5px;
  color: #544a40;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.machines-compact .detail-link:hover { border-color: var(--bronze); color: var(--bronze); background: rgba(179,126,83,.05); }
.machines-compact .text-link {
  width: 100%;
  min-height: 40px;
  justify-content: space-between;
  gap: 8px;
  margin-top: 0;
  padding: 9px 10px;
  border-radius: 5px;
  font-size: 11px;
  transition: background .2s ease, color .2s ease;
}
.machines-compact .text-link:hover { background: var(--bronze); color: var(--white); }

/* Complete product information: compact when closed, comprehensive when opened. */
.product-details {
  padding-top: 78px;
  padding-bottom: 88px;
  background: #171614;
  color: #f4ede4;
}
.details-heading { max-width: 760px; margin-bottom: 42px; }
.details-heading .eyebrow {
  margin: 0 0 15px;
  color: #c49268;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.details-heading h2 { margin: 0 0 16px; color: #f7f1e9; font-size: clamp(42px, 5.4vw, 72px); line-height: .98; }
.details-heading > p:last-child { max-width: 660px; margin: 0; color: #bdb5aa; font-size: 16px; line-height: 1.7; }
.details-list { border-top: 1px solid rgba(224,210,192,.22); }
.product-detail { scroll-margin-top: 92px; border-bottom: 1px solid rgba(224,210,192,.22); }
.product-detail summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  min-height: 104px;
  padding: 22px 62px 22px 0;
  cursor: pointer;
  list-style: none;
}
.product-detail summary::-webkit-details-marker { display: none; }
.product-detail summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(224,210,192,.4);
  border-radius: 50%;
  color: #d5b08d;
  font: 300 24px/31px var(--sans);
  text-align: center;
  transform: translateY(-50%);
}
.product-detail[open] summary::after { content: "−"; }
.product-detail summary span:first-child { display: flex; align-items: baseline; gap: 24px; min-width: 0; }
.product-detail summary b { color: #f7f1e9; font: 400 34px/1 var(--serif); letter-spacing: -.02em; }
.product-detail summary small { color: #aaa197; font-size: 13px; }
.summary-spec { color: #d4c8bb; font-size: 13px; letter-spacing: .03em; white-space: nowrap; }
.detail-content {
  display: grid;
  grid-template-columns: minmax(240px, .78fr) minmax(420px, 1.4fr);
  gap: 34px 54px;
  padding: 18px 0 46px;
  animation: details-reveal .26s ease both;
}
@keyframes details-reveal { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }
.detail-intro h3 { margin: 0 0 15px; color: #f7f1e9; font-size: 28px; line-height: 1.1; }
.detail-intro p { margin: 0 0 20px; color: #bdb5aa; font-size: 14px; line-height: 1.72; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.feature-pills li { padding: 7px 10px; border: 1px solid rgba(202,157,116,.42); border-radius: 999px; color: #d7b28f; font-size: 10px; letter-spacing: .04em; }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(224,210,192,.18);
  border-left: 1px solid rgba(224,210,192,.18);
}
.spec-grid div { min-height: 75px; padding: 14px 16px; border-right: 1px solid rgba(224,210,192,.18); border-bottom: 1px solid rgba(224,210,192,.18); }
.spec-grid dt { margin-bottom: 7px; color: #8f867d; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.spec-grid dd { margin: 0; color: #f1e8de; font-size: 13px; line-height: 1.4; }
.detail-features { grid-column: 2; }
.detail-features h4 { margin: 0 0 14px; color: #d9b28c; font: 400 21px/1.2 var(--serif); }
.detail-features ul { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 28px; margin: 0; padding: 0; list-style: none; }
.detail-features li { position: relative; padding-left: 15px; color: #bdb5aa; font-size: 12px; line-height: 1.55; }
.detail-features li::before { content: ""; position: absolute; left: 0; top: .65em; width: 5px; height: 5px; border-radius: 50%; background: #b77c4e; }
.detail-quote { grid-column: 2; justify-self: start; color: #efe6dc; border-color: #a87953; }
.spec-note { max-width: 880px; margin: 28px 0 0; color: #817970; font-size: 11px; line-height: 1.6; }

@media (max-width: 1250px) {
  .machines-compact {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 26vw);
    justify-content: start;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .machines-compact > .product-section { scroll-snap-align: start; }
}

@media (max-width: 900px) {
  .machines-compact {
    grid-auto-columns: minmax(230px, 76vw);
    gap: 12px;
    padding: 24px 16px 56px;
  }
  .product-details { padding: 58px 18px 66px; }
  .details-heading { margin-bottom: 30px; }
  .details-heading h2 { font-size: 42px; }
  .product-detail summary { grid-template-columns: 1fr; gap: 8px; min-height: 112px; padding: 20px 48px 20px 0; }
  .product-detail summary span:first-child { display: block; }
  .product-detail summary b, .product-detail summary small { display: block; }
  .product-detail summary b { margin-bottom: 8px; font-size: 30px; }
  .summary-spec { font-size: 11px; }
  .detail-content { grid-template-columns: 1fr; gap: 28px; padding: 12px 0 38px; }
  .detail-features, .detail-quote { grid-column: 1; }
  .detail-features ul { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
