:root {
  --ivory: #f6f1e8;
  --card: #fffdf8;
  --alt: #f0e9dc;
  --ink: #2b211b;
  --muted: #6b6156;
  --green: #0f2c2a;
  --cream: #f3ecd6;
  --gold: #c7a24a;
  --border: #e0d6c4;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Karla", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green);
  border-bottom: 1px solid rgba(243, 236, 214, 0.14);
}

.nav {
  width: min(1200px, calc(100% - 64px));
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
}

.brand span {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.32em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #c9c2b2;
  font-size: 13px;
  margin-left: auto;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links a {
  position: relative;
  padding: 7px 0;
  transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--cream);
}

.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: var(--gold);
}

.menu-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(243, 236, 214, 0.34);
  border-radius: 999px;
  background: rgba(243, 236, 214, 0.08);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--cream);
  cursor: pointer;
  flex: none;
  transition: border-color 0.16s ease, background 0.16s ease;
}

.menu-icon span {
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform 0.16s ease, opacity 0.16s ease;
}

.menu-icon:hover,
.menu-icon:focus-visible {
  border-color: var(--gold);
  background: rgba(199, 162, 74, 0.12);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .header {
  background: transparent;
  border-bottom-color: transparent;
}

body.menu-open .nav {
  position: relative;
  justify-content: center;
}

body.menu-open .nav-left {
  display: contents;
}

body.menu-open .brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

body.menu-open .brand span {
  color: var(--green);
}

body.menu-open .menu-icon {
  position: absolute;
  right: 0;
  color: var(--green);
  background: rgba(15, 44, 42, 0.06);
}

body.menu-open .menu-icon span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

body.menu-open .menu-icon span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-icon span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

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

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(18px, 1fr) minmax(0, 1060px) minmax(18px, 1fr);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(168, 111, 86, 0.08), transparent 30%, rgba(199, 162, 74, 0.1)),
    #efe7d8;
  color: var(--green);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.menu-overlay[aria-hidden="true"] {
  display: none;
}

.menu-overlay::after {
  content: "HOLVERNE";
  position: absolute;
  right: -0.12em;
  bottom: -0.2em;
  color: rgba(15, 44, 42, 0.045);
  font-family: var(--font-serif);
  font-size: clamp(90px, 22vw, 280px);
  letter-spacing: 0.18em;
  pointer-events: none;
}

body.menu-open .menu-overlay {
  display: grid;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-panel {
  position: relative;
  z-index: 1;
  grid-column: 2;
  padding: 120px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 72px;
  align-items: end;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.menu-link {
  position: relative;
  color: var(--green);
  font-family: var(--font-sans);
  font-size: clamp(58px, 10vw, 128px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.015em;
  transition: color 0.16s ease, transform 0.16s ease;
}

.menu-link:hover,
.menu-link:focus-visible {
  color: #a86f56;
  transform: translateX(10px);
}

.menu-link[aria-current="page"]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  width: 16px;
  border-top: 1px solid var(--gold);
}

.menu-note {
  border-left: 1px solid var(--gold);
  padding-left: 28px;
  color: #5b5148;
  font-size: 14px;
  line-height: 1.8;
}

.menu-note img {
  width: 74px;
  height: 74px;
  margin-bottom: 22px;
}

.hero {
  background: var(--green);
  color: var(--cream);
  padding: 110px 0 94px;
}

.inner {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
}

.eyebrow {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin: 18px 0 0;
  font-size: clamp(50px, 8vw, 96px);
  line-height: 0.98;
}

.lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: #c9c2b2;
  font-size: 18px;
  line-height: 1.8;
}

.about-hero-logo {
  width: min(340px, 72%);
  max-height: 460px;
  justify-self: center;
  align-self: center;
  object-fit: contain;
}

.section {
  padding: 82px 0;
}

.section h2 {
  margin: 14px 0 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.06;
}

.copy {
  max-width: 760px;
  color: #4a4038;
  font-size: 16px;
  line-height: 1.9;
}

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

.paper {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 18px 18px 22px;
}

.paper img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid #eadfcd;
  object-fit: cover;
}

.paper h3 {
  margin: 16px 0 0;
  font-size: 27px;
}

.paper p,
.card p,
.details p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.75;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.card {
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

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

.framed-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 28px 30px;
}

.framed-card h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.12;
}

.detail-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  border-top: 1px solid var(--border);
  padding: 14px 0;
  color: #4a4038;
  font-size: 15px;
  line-height: 1.75;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  aspect-ratio: 3 / 1;
  min-height: 0;
  background: var(--green);
  color: var(--cream);
  overflow: hidden;
}

.product-hero-copy {
  padding: clamp(24px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-hero-copy h1 {
  margin: 18px 0 0;
  color: var(--cream);
  font-size: clamp(38px, 4.7vw, 66px);
  line-height: 0.96;
  letter-spacing: 0.08em;
}

.product-hero-copy p {
  max-width: 500px;
  margin: 18px 0 0;
  color: #c9c2b2;
  font-size: 15px;
  line-height: 1.65;
}

.product-hero-media {
  height: 100%;
  min-height: 0;
}

.product-hero-media img,
.product-feature-media img,
.product-card-image img,
.product-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.preview-status-line {
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-category {
  padding: 66px 0;
  border-top: 1px solid var(--border);
}

.product-category:first-of-type,
.product-hero + .product-category {
  border-top: 0;
  padding-top: 24px;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  aspect-ratio: 3 / 1;
  min-height: 0;
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.product-feature.is-reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.product-feature.is-reverse .product-feature-copy {
  order: 2;
}

.product-feature-copy {
  padding: clamp(34px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-category-title {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(46px, 6vw, 74px);
  line-height: 0.98;
}

.product-category-subtitle {
  margin-top: 10px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.product-category-copy {
  max-width: 500px;
  margin-top: 24px;
  color: #4a4038;
  font-size: 15px;
  line-height: 1.85;
}

.product-feature-media {
  height: 100%;
  min-height: 0;
  background: var(--alt);
  overflow: hidden;
}

.product-rail-shell {
  margin-top: 34px;
}

.product-rail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.product-rail-title {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
}

.rail-controls {
  display: flex;
  gap: 10px;
}

.rail-button {
  width: 42px;
  height: 42px;
  border: 1px solid #cfc3af;
  border-radius: 999px;
  background: transparent;
  color: var(--green);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(230px, 27vw, 320px);
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 4px 2px 22px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.product-card-mini {
  min-width: 0;
  background: var(--card);
  border: 1px solid #e3d8c7;
  scroll-snap-align: start;
}

.product-card-image {
  aspect-ratio: 1 / 1;
  background: #efe6d8;
  overflow: hidden;
}

.product-card-body {
  padding: 20px 20px 22px;
}

.product-card-eyebrow {
  color: var(--gold);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.product-card-name {
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.05;
}

.product-card-copy {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}

.product-card-foot {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #a86f56;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-waiting-pill {
  border: 1px solid #d9cdb9;
  padding: 6px 9px;
  color: #827768;
  letter-spacing: 0.12em;
}

/* Real status pill for product cards (replaces the old "Waiting" pill) */
.product-status-pill {
  border: 1px solid rgba(15, 44, 42, 0.2);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--green);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.product-status-pill.is-concept {
  border-color: rgba(168, 111, 86, 0.32);
  color: #a86f56;
}

.product-status-pill.is-dev {
  border-color: rgba(199, 162, 74, 0.44);
  color: #9a7a2f;
}

.product-detail-hero {
  padding: 54px 0 44px;
  background: var(--ivory);
  color: var(--ink);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.product-thumb-rail {
  display: grid;
  gap: 12px;
  max-height: 650px;
  overflow-y: auto;
  padding: 1px;
  scrollbar-width: none;
}

.product-thumb-rail::-webkit-scrollbar {
  display: none;
}

.product-thumb {
  width: 72px;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.product-thumb.is-active {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(199, 162, 74, 0.32);
}

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

.product-image-area {
  position: relative;
  min-width: 0;
}

.product-detail-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--border);
  background: var(--card);
  cursor: zoom-in;
  overflow: hidden;
  padding: 0;
}

.product-image-nav {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 44, 42, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.84);
  color: var(--green);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
}

.product-image-nav-prev {
  left: 14px;
}

.product-image-nav-next {
  right: 14px;
}

.product-detail-copy {
  border-top: 1px solid var(--green);
  padding-top: 18px;
}

.product-detail-copy h1 {
  margin: 14px 0 0;
  max-width: 620px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
}

.product-detail-copy p {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-specs {
  display: grid;
  gap: 0;
  margin: 26px 0 0;
  color: var(--muted);
}

.product-specs div {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid var(--border);
  padding: 13px 0;
}

.product-specs div:last-child {
  border-bottom: 1px solid var(--border);
}

.product-specs dt {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-specs dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

/* Status line + badges */
.product-status-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 0;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(15, 44, 42, 0.18);
  border-radius: 999px;
  background: rgba(15, 44, 42, 0.06);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-badge.is-concept {
  border-color: rgba(168, 111, 86, 0.3);
  background: rgba(168, 111, 86, 0.09);
  color: #a86f56;
}

.status-badge.is-dev {
  border-color: rgba(199, 162, 74, 0.4);
  background: rgba(199, 162, 74, 0.12);
  color: #9a7a2f;
}

.status-note {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-hook {
  max-width: 540px;
  margin: 22px 0 0;
  color: #3a322b;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 25px);
  line-height: 1.45;
}

/* Dual enquiry CTAs */
.product-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 15px 26px;
  font: 700 12px/1 var(--font-sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.product-cta-primary {
  background: var(--green);
  color: var(--cream);
  border: 1px solid var(--green);
}

.product-cta-primary:hover,
.product-cta-primary:focus-visible {
  background: #173f3c;
}

.product-cta-secondary {
  border: 1px solid #cfc3af;
  color: var(--green);
}

.product-cta-secondary:hover,
.product-cta-secondary:focus-visible {
  border-color: var(--gold);
  color: var(--ink);
}

/* Preview notes section */
.product-detail-info {
  padding: 8px 0 92px;
  background: var(--ivory);
}

.detail-intro {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  max-width: 760px;
}

.detail-intro h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.detail-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: start;
}

.detail-col {
  display: grid;
  gap: 34px;
}

.detail-block h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 24px;
}

.detail-block p {
  margin: 0;
  max-width: 520px;
  color: #4a4038;
  font-size: 15.5px;
  line-height: 1.85;
}

.occasion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.occasion-chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  padding: 9px 16px;
  color: #4a4038;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.detail-buyer {
  border: 1px solid var(--border);
  background: #eef5f1;
  padding: 30px 32px;
}

.detail-buyer h3 {
  color: var(--green);
}

.detail-buyer-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}

.detail-block > div p + p {
  margin-top: 16px;
}

.detail-block .product-specs {
  margin-top: 6px;
}

/* Highlights (scannable selling points in the hero) */
.product-highlights {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 520px;
}

.product-highlights li {
  position: relative;
  padding-left: 22px;
  color: #4a4038;
  font-size: 14.5px;
  line-height: 1.55;
}

.product-highlights li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* Third, quieter CTA */
.product-ask {
  display: inline-flex;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.product-ask:hover,
.product-ask:focus-visible {
  color: var(--green);
  border-color: var(--gold);
}

/* Preview & availability FAQ */
.product-faq-section {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 78px 0;
}

.product-faq-section h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 46px);
}

.product-faq-section .faq-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-faq-section details {
  border: 1px solid var(--border);
  background: var(--ivory);
  padding: 24px 26px;
}

.product-faq-section summary {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

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

.product-faq-section summary::after {
  content: "+";
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1;
}

.product-faq-section details[open] summary::after {
  content: "–";
}

.product-faq-section details p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

/* Cross-sell: more from this range */
.product-related {
  background: var(--ivory);
  border-top: 1px solid var(--border);
  padding: 72px 0 88px;
}

.product-related .product-rail-top {
  margin-bottom: 26px;
}

.related-all {
  color: var(--clay, #a86f56);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.related-all:hover,
.related-all:focus-visible {
  color: var(--green);
}

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

.product-related .product-card-mini {
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.product-related .product-card-mini:hover,
.product-related .product-card-mini:focus-visible {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.detail-lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 76px;
  align-items: center;
  background: rgba(15, 44, 42, 0.96);
  color: var(--cream);
}

.detail-lightbox[aria-hidden="true"] {
  display: none;
}

body.detail-lightbox-open {
  overflow: hidden;
}

.detail-lightbox-close,
.detail-lightbox-arrow {
  border: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-family: var(--font-sans);
}

.detail-lightbox-close {
  position: absolute;
  top: 26px;
  right: 32px;
  font-size: 15px;
}

.detail-lightbox-arrow {
  font-size: 38px;
}

.detail-lightbox-stage {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 70px 22px 46px;
}

.detail-lightbox-paper {
  background: #fffdf8;
  border: 1px solid rgba(199, 162, 74, 0.42);
  padding: min(4vw, 34px);
}

.detail-lightbox-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--alt);
}

.detail-lightbox-caption {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-size: 28px;
}

.email-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 34px;
}

/* Buyer product matrix */
.buyer-matrix-wrap {
  margin-top: 36px;
  overflow-x: auto;
  border: 1px solid var(--border);
}

.buyer-matrix {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--card);
}

.buyer-matrix th,
.buyer-matrix td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  font-size: 14px;
  line-height: 1.6;
  color: #4a4038;
}

.buyer-matrix thead th {
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--alt);
}

.buyer-matrix tbody tr:last-child td {
  border-bottom: 0;
}

.buyer-matrix td:first-child {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--ink);
  white-space: nowrap;
}

.buyer-matrix .matrix-status {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(15, 44, 42, 0.2);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--green);
  white-space: nowrap;
}

.buyer-request-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 32px;
}

.buyer-request-list li {
  position: relative;
  padding-left: 22px;
  color: #4a4038;
  font-size: 15px;
  line-height: 1.6;
}

.buyer-request-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.email-template {
  margin-top: 26px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 26px 28px;
  color: #4a4038;
  font-size: 14.5px;
  line-height: 1.85;
}

.email-template strong {
  color: var(--ink);
}

.email-template a {
  color: var(--green);
  border-bottom: 1px solid var(--gold);
}

/* Enquiry form */
.enquiry-form {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.field label {
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--card);
  padding: 13px 14px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.enquiry-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.enquiry-submit {
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--cream);
  padding: 16px 30px;
  font: 700 12px/1 var(--font-sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease;
}

.enquiry-submit:hover,
.enquiry-submit:focus-visible {
  background: #173f3c;
}

.enquiry-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.details {
  background: var(--green);
  color: var(--cream);
}

.details p {
  color: #c9c2b2;
}

.details .detail-list li {
  border-top-color: rgba(243, 236, 214, 0.32);
  color: #c9c2b2;
}

.footer {
  background: var(--green);
  border-top: 1px solid #1b3a36;
  color: #8fa099;
  padding: 28px 0;
  font-size: 12px;
}

.content-footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.content-footer-company {
  max-width: 560px;
  line-height: 1.9;
}

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

.content-footer-links a {
  color: #c9c2b2;
}

.content-footer-links a:hover,
.content-footer-links a:focus-visible,
.content-footer-links a[aria-current="page"] {
  color: var(--cream);
}

/* Customer policy pages */
.legal-hero {
  background: var(--green);
  color: var(--cream);
  padding: 92px 0 66px;
}

.legal-hero h1 {
  max-width: 900px;
}

.legal-hero .lead {
  max-width: 760px;
}

.legal-updated {
  margin-top: 24px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 760px);
  justify-content: center;
  gap: 72px;
  padding-top: 82px;
  padding-bottom: 96px;
}

.legal-nav {
  align-self: start;
  position: sticky;
  top: 112px;
  padding-top: 4px;
  border-top: 1px solid var(--gold);
}

.legal-nav-label {
  margin: 18px 0 14px;
  color: var(--muted);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.legal-nav a {
  display: block;
  padding: 6px 0;
  color: var(--green);
  font-size: 13px;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: #a86f56;
}

.legal-copy {
  color: #443a32;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.78;
}

.legal-copy h2 {
  scroll-margin-top: 116px;
  margin: 52px 0 18px;
  color: var(--green);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy h3 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: 23px;
}

.legal-copy p,
.legal-copy ul,
.legal-copy ol {
  margin: 0 0 18px;
}

.legal-copy ul,
.legal-copy ol {
  padding-left: 1.2em;
}

.legal-copy li + li {
  margin-top: 8px;
}

.legal-copy a {
  color: var(--green);
  border-bottom: 1px solid var(--gold);
}

.legal-callout {
  margin: 0 0 34px;
  padding: 22px 24px;
  border-left: 1px solid var(--gold);
  background: var(--card);
  color: var(--green);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.75;
}

.legal-company-card {
  margin-top: 48px;
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--card);
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.9;
}

.cancellation-form {
  margin-top: 24px;
  padding: 26px;
  border: 1px solid var(--border);
  background: var(--card);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.8;
}

/* Editorial imagery — bands and column figures */
.story-band {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--alt);
}

.story-band img,
.story-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-figure {
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--alt);
  margin-top: 30px;
}

.ratio-31 { aspect-ratio: 3 / 1; }
.ratio-21 { aspect-ratio: 2 / 1; }
.ratio-169 { aspect-ratio: 16 / 9; }
.ratio-32 { aspect-ratio: 3 / 2; }
.ratio-45 { aspect-ratio: 4 / 5; }
.ratio-43 { aspect-ratio: 4 / 3; }

.band-section {
  padding: 40px 0 0;
}

/* About — editorial storytelling */
.statement {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.statement p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 500;
  line-height: 1.4;
}

.statement p + p {
  margin-top: 20px;
}

.pullquote {
  max-width: 780px;
  margin: 40px 0 0;
  border-left: 2px solid var(--gold);
  padding-left: 30px;
  color: #354234;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 31px);
  font-style: italic;
  line-height: 1.5;
}

.lexicon {
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 56px;
}

.lexicon-item {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.lexicon-term {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 25px;
  line-height: 1.1;
}

.lexicon-term span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lexicon-def {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.75;
}

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

.journey-step {
  border-top: 1px solid var(--gold);
  padding-top: 22px;
}

.journey-num {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.22em;
}

.journey-title {
  margin: 10px 0 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 25px;
}

.journey-text {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.about-cta {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}

.section.tint {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Motion layer — quiet reveals, image ease, floating CTA */
html {
  scroll-behavior: smooth;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--rv, 0ms);
}

.reveal.is-inview {
  opacity: 1;
  transform: none;
}

.reveal .eyebrow {
  letter-spacing: 0.5em;
  transition: letter-spacing 1.2s ease 0.1s;
}

.reveal.is-inview .eyebrow {
  letter-spacing: 0.32em;
}

.product-card-image img,
.product-feature-media img,
.story-band img,
.story-figure img,
.product-detail-media img {
  transition: transform 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.product-card-mini:hover .product-card-image img,
.product-feature:hover .product-feature-media img,
.story-band:hover img,
.story-figure:hover img {
  transform: scale(1.04);
}

.float-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--card);
  color: var(--green);
  font: 600 11px/1 var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(43, 33, 27, 0.16);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, color 0.2s ease;
}

.float-cta.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.float-cta:hover,
.float-cta:focus-visible {
  background: var(--green);
  color: var(--cream);
}

/* Gold line draw — signature motion */
.reveal .eyebrow + h2::after,
h2.reveal::after {
  content: "";
  display: block;
  width: 52px;
  height: 1px;
  background: var(--gold);
  margin-top: 20px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.45s;
}

.reveal.is-inview .eyebrow + h2::after,
h2.reveal.is-inview::after {
  transform: scaleX(1);
}

/* Category feature panels already carry a gold subtitle line */
.product-feature-copy .eyebrow + h2::after {
  display: none;
}

.pullquote {
  position: relative;
}

.pullquote.reveal,
.reveal .pullquote {
  border-left-color: transparent;
}

.pullquote.reveal::before,
.reveal .pullquote::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.3s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s;
}

.pullquote.reveal.is-inview::before,
.reveal.is-inview .pullquote::before {
  transform: scaleY(1);
}

/* Hand-drawn motif: strokes draw themselves on reveal */
.motif-draw {
  display: block;
  margin: 0 auto 30px;
  width: 150px;
  height: auto;
  color: var(--gold);
}

.motif-draw path {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
  transition: stroke-dashoffset 1.5s ease var(--d, 0s);
}

.motif-draw.is-inview path {
  stroke-dashoffset: 0;
}

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

  .reveal,
  .reveal .eyebrow {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reveal .eyebrow + h2::after,
  h2.reveal::after,
  .pullquote.reveal::before,
  .reveal .pullquote::before {
    transform: none;
    transition: none;
  }

  .motif-draw path {
    stroke-dashoffset: 0;
    transition: none;
  }
}

/* Cross-document page transitions (progressive enhancement) */
@view-transition {
  navigation: auto;
}

.header {
  view-transition-name: site-header;
}

.footer {
  view-transition-name: site-footer;
}

::view-transition-old(root) {
  animation: vt-fade-out 0.28s ease both;
}

::view-transition-new(root) {
  animation: vt-fade-in 0.42s ease both;
}

@keyframes vt-fade-out {
  to { opacity: 0; }
}

@keyframes vt-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
  }
}

/* Next-step guidance band */
.next-step {
  background: var(--card);
  border-top: 1px solid var(--border);
}

.next-step-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 92px 32px;
  text-align: center;
}

.next-step h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.06;
}

.next-step p {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.8;
}

.next-step.reveal .eyebrow + h2::after {
  margin-left: auto;
  margin-right: auto;
  transform-origin: center;
}

.next-step-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 780px) {
  .lexicon,
  .journey {
    grid-template-columns: 1fr;
  }

  .journey-step {
    padding-top: 18px;
  }

  .nav,
  .inner {
    width: calc(100% - 36px);
  }

  .nav {
    align-items: center;
    padding: 14px 0;
  }

  .nav-links {
    display: none;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand span {
    font-size: 17px;
    letter-spacing: 0.24em;
  }

  .menu-icon {
    width: 40px;
    height: 40px;
  }

  .menu-panel {
    display: block;
    padding: 118px 0 56px;
  }

  .menu-link {
    font-size: clamp(58px, 17vw, 82px);
    line-height: 1.08;
  }

  .menu-note {
    margin-top: 34px;
    padding-left: 20px;
  }

  .content-footer-grid,
  .legal-layout {
    display: block;
  }

  .content-footer-links {
    justify-content: flex-start;
    margin-top: 24px;
  }

  .legal-nav {
    position: static;
    margin-bottom: 48px;
  }

  .legal-nav a {
    display: inline-block;
    margin-right: 16px;
  }

  .legal-copy {
    font-size: 17px;
  }

  .grid,
  .two-col,
  .card-grid,
  .product-feature,
  .product-feature.is-reverse,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-feature {
    position: relative;
    aspect-ratio: 3 / 1;
    background: var(--green);
  }

  .product-hero-copy,
  .product-feature-copy {
    padding: 34px 24px;
  }

  .product-hero {
    position: relative;
    grid-template-columns: 1fr;
    aspect-ratio: 3 / 1;
  }

  .product-hero-copy {
    position: relative;
    z-index: 1;
    grid-area: 1 / 1;
    padding: 16px 18px;
    background: linear-gradient(90deg, rgba(15, 44, 42, 0.86), rgba(15, 44, 42, 0.42) 58%, transparent);
  }

  .product-feature .product-feature-copy {
    position: relative;
    z-index: 1;
    grid-area: 1 / 1;
    padding: 16px 18px;
    background: linear-gradient(90deg, rgba(15, 44, 42, 0.86), rgba(15, 44, 42, 0.42) 58%, transparent);
    color: var(--cream);
  }

  .product-hero-copy h1 {
    margin-top: 6px;
    max-width: 300px;
    font-size: clamp(18px, 6vw, 26px);
    line-height: 0.98;
    letter-spacing: 0.03em;
  }

  .product-hero-media {
    grid-area: 1 / 1;
    height: 100%;
    min-height: 0;
  }

  .product-hero-copy p {
    display: none;
  }

  .product-feature-media {
    grid-area: 1 / 1;
    height: 100%;
    min-height: 0;
  }

  .product-feature.is-reverse .product-feature-copy {
    order: 0;
  }

  .product-category-title {
    color: var(--cream);
    font-size: clamp(24px, 8vw, 36px);
  }

  .product-category-subtitle,
  .product-category-copy {
    display: none;
  }

  .product-category {
    padding: 56px 0;
  }

  .product-category:first-of-type,
  .product-hero + .product-category {
    padding-top: 24px;
  }

  .product-rail-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-rail {
    grid-auto-columns: minmax(240px, 78vw);
  }

  .product-detail-hero {
    padding: 54px 0 52px;
  }

  .product-image-area {
    order: 1;
  }

  .product-thumb-rail {
    order: 2;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 68px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .product-detail-copy {
    order: 3;
    margin-top: 10px;
  }

  .product-detail-media {
    width: 100%;
    justify-self: stretch;
  }

  .product-image-nav {
    width: 38px;
    height: 38px;
  }

  .product-specs div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-cta-group {
    flex-direction: column;
  }

  .product-cta {
    width: 100%;
  }

  .product-faq-section .faq-list,
  .related-grid,
  .enquiry-form,
  .buyer-request-list {
    grid-template-columns: 1fr;
  }

  .product-faq-section summary {
    font-size: 20px;
  }

  .detail-lightbox {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .detail-lightbox-close {
    top: 18px;
    right: 18px;
  }

  .detail-lightbox-stage {
    padding: 64px 8px 34px;
  }
}
