:root {
  --ink: #171412;
  --muted: #726a61;
  --line: #ded8cf;
  --paper: #f7f2ea;
  --white: #fffdf8;
  --gold: #b08a43;
  --ruby: #7f2636;
  --forest: #183f35;
  --navy: #1d2730;
  --shadow: 0 18px 45px rgba(23, 20, 18, 0.14);
  --soft-shadow: 0 10px 28px rgba(23, 20, 18, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 38px;
  border-bottom: 1px solid rgba(222, 216, 207, 0.8);
  background: rgba(248, 245, 239, 0.88);
  backdrop-filter: blur(16px);
}

.brand,
.top-nav,
.header-cta,
.hero-actions,
.catalog-tools,
.segment-control,
.cart-header,
.cart-total {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
}

.top-nav {
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.top-nav a,
.header-cta {
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.top-nav a:hover {
  color: var(--ink);
}

.header-cta {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  justify-content: center;
}

.icon-button,
.close-button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 64px;
  height: 40px;
  justify-content: center;
}

.cart-icon {
  width: 15px;
  height: 15px;
  border: 1.5px solid currentColor;
  border-top: 0;
  position: relative;
}

.cart-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: -7px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  align-items: end;
  gap: 28px;
  overflow: hidden;
  padding: 0 38px 10vh;
  background: var(--ink);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 36%, rgba(176, 138, 67, 0.26), transparent 28%),
    linear-gradient(90deg, rgba(23, 20, 18, 0.88), rgba(23, 20, 18, 0.28) 62%),
    linear-gradient(0deg, rgba(23, 20, 18, 0.76), rgba(23, 20, 18, 0.08) 54%);
}

.hero-content {
  position: relative;
  max-width: 980px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.1;
}

.hero-content p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.intent-switcher {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  margin: 0 0 20px;
  border: 1px solid rgba(255, 253, 248, 0.26);
  background: rgba(255, 253, 248, 0.1);
  backdrop-filter: blur(12px);
}

.intent-switcher button {
  min-height: 38px;
  border: 0;
  padding: 0 14px;
  background: transparent;
  color: rgba(255, 253, 248, 0.72);
  cursor: pointer;
}

.intent-switcher button.active {
  background: var(--white);
  color: var(--ink);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 9px 13px;
  margin-top: 28px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  background: rgba(255, 253, 248, 0.08);
  color: rgba(255, 253, 248, 0.76);
  width: fit-content;
}

.hero-proof strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.hero-dashboard {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  background: rgba(255, 253, 248, 0.1);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.dashboard-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 2px 14px;
  padding: 16px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  background: rgba(23, 20, 18, 0.32);
  opacity: 0.72;
  transition:
    opacity 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.dashboard-row.active {
  opacity: 1;
  border-color: rgba(176, 138, 67, 0.82);
  background: rgba(23, 20, 18, 0.52);
}

.dashboard-row span {
  grid-row: span 2;
  color: var(--gold);
  font-weight: 900;
}

.dashboard-row strong,
.dashboard-row em {
  display: block;
}

.dashboard-row em {
  color: rgba(255, 253, 248, 0.7);
  font-style: normal;
  font-size: 13px;
}

.primary-link,
.secondary-link,
.concierge-form button,
.checkout-button,
.product-card button {
  min-height: 46px;
  border: 1px solid transparent;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.primary-link,
.secondary-link,
.concierge-form button,
.checkout-button,
.product-card button,
.pathway-card a {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.primary-link:hover,
.secondary-link:hover,
.concierge-form button:hover,
.checkout-button:hover,
.product-card button:hover,
.pathway-card a:hover {
  transform: translateY(-1px);
  box-shadow: var(--soft-shadow);
}

.primary-link,
.concierge-form button,
.checkout-button,
.product-card button {
  background: var(--gold);
  color: var(--white);
}

.secondary-link {
  border-color: rgba(255, 253, 248, 0.45);
  color: var(--white);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-strip div {
  padding: 26px 38px;
  border-right: 1px solid var(--line);
}

.service-strip div:last-child {
  border-right: 0;
}

.service-strip strong,
.service-strip span {
  display: block;
}

.service-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.catalog-section,
.collections-section,
.shorts-section,
.business-section,
.pathways-section,
.experience-section,
.process-section,
.concierge-section {
  padding: 88px 38px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin: 0 auto 34px;
  max-width: 1180px;
}

.pathways-section {
  background: linear-gradient(180deg, var(--white), var(--paper));
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.pathway-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.pathway-card.featured {
  background: var(--navy);
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.18);
}

.pathway-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pathway-card p {
  color: var(--muted);
  line-height: 1.65;
}

.pathway-card.featured p {
  color: rgba(255, 253, 248, 0.72);
}

.pathway-card a {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid currentColor;
  color: inherit;
}

.section-note {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.catalog-tools {
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.search-field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
}

.search-field input,
.concierge-form input,
.concierge-form select,
.concierge-form textarea {
  height: 44px;
  min-width: 220px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0 12px;
  outline-color: var(--gold);
}

.concierge-form textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
}

.segment-control {
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
}

.segment-control button {
  height: 42px;
  border: 0;
  border-right: 1px solid var(--line);
  padding: 0 13px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.segment-control button:last-child {
  border-right: 0;
}

.segment-control button.active {
  background: var(--forest);
  color: var(--white);
}

.product-grid,
.collection-grid,
.shorts-grid,
.process-list {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  gap: 22px;
}

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

.product-card,
.collection-card,
.short-card,
.process-list li,
.concierge-form {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.shorts-section {
  background: #eee7dc;
}

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

.short-card {
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.short-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(23, 20, 18, 0.18);
}

.short-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 560px;
  overflow: hidden;
  background: var(--ink);
}

.short-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.short-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(23, 20, 18, 0.52), rgba(23, 20, 18, 0) 36%),
    linear-gradient(180deg, rgba(23, 20, 18, 0.36), rgba(23, 20, 18, 0) 24%);
  pointer-events: none;
}

.play-short {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 253, 248, 0.62);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.18);
  transform: translate(-50%, -50%);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.play-short span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 20px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--white);
}

.short-card.playing .play-short {
  opacity: 0;
}

.short-platform {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  padding: 7px 10px;
  background: rgba(23, 20, 18, 0.58);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.short-copy {
  padding: 18px;
}

.short-copy span {
  color: var(--ruby);
  font-size: 13px;
  font-weight: 800;
}

.short-copy h3 {
  margin-top: 8px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.short-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.product-card {
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(23, 20, 18, 0.18);
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.product-card:hover img {
  transform: scale(1.04);
}

.badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.product-body {
  padding: 20px;
}

.product-meta,
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-meta {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.product-body p {
  min-height: 48px;
  color: var(--muted);
  line-height: 1.5;
}

.detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 58px;
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
}

.detail-list li {
  border: 1px solid var(--line);
  padding: 6px 8px;
  color: var(--muted);
  font-size: 12px;
}

.price-row strong {
  font-size: 19px;
}

.product-card button {
  min-width: 126px;
}

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

.collection-card {
  min-height: 250px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.proof-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.proof-section div {
  min-height: 140px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px 38px;
  border-right: 1px solid rgba(255, 253, 248, 0.16);
}

.proof-section div:last-child {
  border-right: 0;
}

.proof-section span {
  color: rgba(255, 253, 248, 0.68);
  font-size: 13px;
}

.proof-section strong {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 44px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.experience-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.experience-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr) 48px minmax(0, 1fr);
  align-items: center;
}

.map-node {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.map-node.media {
  transform: translateY(-28px);
}

.map-node.trade {
  transform: translateY(28px);
  background: var(--forest);
  color: var(--white);
}

.map-node span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-node strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.08;
}

.map-node p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.map-node.trade p {
  color: rgba(255, 253, 248, 0.74);
}

.map-line {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(176, 138, 67, 0.15));
}

.collection-card p {
  color: var(--muted);
  line-height: 1.6;
}

.collection-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.collection-pills span {
  background: rgba(24, 63, 53, 0.08);
  color: var(--forest);
  padding: 7px 9px;
  font-size: 12px;
}

.business-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.business-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.business-grid article {
  min-height: 156px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.business-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(176, 138, 67, 0.72);
}

.business-grid strong,
.business-grid span {
  display: block;
}

.business-grid strong {
  font-size: 17px;
}

.business-grid span {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.process-section {
  background: var(--white);
}

.process-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  min-height: 240px;
  padding: 24px;
}

.process-list span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.process-list strong {
  display: block;
  margin-top: 48px;
  font-size: 18px;
}

.process-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.concierge-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.concierge-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.concierge-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.concierge-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
}

.concierge-form input,
.concierge-form select,
.concierge-form textarea {
  min-width: 0;
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--forest);
  font-weight: 700;
}

/* Editorial refresh */
.site-header {
  border-bottom: 1px solid rgba(23, 20, 18, 0.12);
  background: rgba(251, 250, 246, 0.78);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
}

.brand-mark {
  border-color: var(--ink);
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 72px);
  grid-template-columns: minmax(0, 1fr) 360px;
  padding: 0 46px 56px;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(12, 12, 11, 0.88), rgba(12, 12, 11, 0.3) 54%, rgba(12, 12, 11, 0.62)),
    linear-gradient(0deg, rgba(12, 12, 11, 0.72), rgba(12, 12, 11, 0.05) 54%);
}

.hero-content {
  max-width: 960px;
}

.hero-content .eyebrow,
.section-heading .eyebrow,
.business-copy .eyebrow,
.concierge-copy .eyebrow,
.experience-copy .eyebrow,
.editorial-copy .eyebrow {
  color: #c49a4b;
}

h1 {
  max-width: 960px;
  font-size: clamp(62px, 8.8vw, 132px);
  line-height: 0.88;
}

h2 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.96;
}

.hero-content p:not(.eyebrow) {
  max-width: 600px;
  font-size: 17px;
}

.intent-switcher,
.hero-dashboard,
.pathway-card,
.short-card,
.product-card,
.collection-card,
.business-grid article,
.process-list li,
.concierge-form,
.map-node {
  box-shadow: none;
}

.intent-switcher {
  border-color: rgba(255, 253, 248, 0.34);
  background: rgba(12, 12, 11, 0.28);
}

.intent-switcher button.active {
  background: #c49a4b;
  color: #11100f;
}

.primary-link,
.secondary-link,
.header-cta,
.concierge-form button,
.checkout-button,
.product-card button {
  border-radius: 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.primary-link,
.concierge-form button,
.checkout-button,
.product-card button {
  background: #c49a4b;
  color: #11100f;
}

.secondary-link {
  background: rgba(255, 253, 248, 0.04);
}

.hero-dashboard {
  align-self: end;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.dashboard-row {
  grid-template-columns: 1fr;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid rgba(255, 253, 248, 0.28);
  background: transparent;
}

.dashboard-row.active {
  background: transparent;
  border-color: #c49a4b;
}

.dashboard-row span {
  color: #c49a4b;
  font-size: 12px;
  text-transform: uppercase;
}

.service-strip {
  border-top: 1px solid var(--line);
  background: #fbfaf6;
}

.service-strip div {
  min-height: 120px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
}

.service-strip strong {
  color: #9b4a3a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.service-strip span {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

.pathways-section,
.catalog-section,
.business-section,
.process-section {
  background: #fbfaf6;
}

.section-heading {
  max-width: 1280px;
  margin-bottom: 46px;
}

.pathway-grid,
.product-grid,
.collection-grid,
.shorts-grid,
.process-list {
  max-width: 1280px;
}

.pathway-grid {
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pathway-card {
  min-height: 360px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  padding: 34px;
}

.pathway-card:last-child {
  border-right: 0;
}

.pathway-card.featured {
  background: #11100f;
}

.pathway-card h3 {
  font-size: 36px;
}

.shorts-section {
  background: #1d2730;
  color: var(--white);
}

.shorts-section .section-note {
  color: rgba(255, 253, 248, 0.68);
}

.shorts-grid {
  gap: 16px;
}

.short-card {
  border: 1px solid rgba(255, 253, 248, 0.16);
  background: rgba(255, 253, 248, 0.04);
  color: var(--white);
}

.short-copy p {
  color: rgba(255, 253, 248, 0.64);
}

.editorial-break {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  min-height: 620px;
  background: #11100f;
  color: var(--white);
}

.editorial-image {
  background:
    linear-gradient(90deg, rgba(17, 16, 15, 0.1), rgba(17, 16, 15, 0.56)),
    url("https://images.unsplash.com/photo-1611591437281-460bfbe1220a?auto=format&fit=crop&w=1400&q=82")
      center / cover;
}

.editorial-copy {
  display: grid;
  align-content: center;
  padding: 64px 46px;
}

.editorial-copy h2 {
  max-width: 560px;
}

.editorial-copy p:not(.eyebrow) {
  max-width: 460px;
  color: rgba(255, 253, 248, 0.68);
  line-height: 1.75;
}

.experience-section {
  max-width: none;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  padding-left: 46px;
  padding-right: 46px;
  background: #f2ede5;
}

.experience-map {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.map-line {
  display: none;
}

.map-node {
  min-height: 320px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  padding: 28px;
}

.map-node:last-child {
  border-right: 0;
}

.map-node.media,
.map-node.trade {
  transform: none;
}

.map-node.trade {
  background: #516459;
}

.product-grid {
  gap: 1px;
  background: var(--line);
}

.product-card {
  border: 0;
  background: #fbfaf6;
}

.product-body {
  padding: 22px;
}

.business-section {
  max-width: none;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  padding-left: 46px;
  padding-right: 46px;
  border-top: 1px solid var(--line);
}

.business-grid {
  gap: 1px;
  background: var(--line);
}

.business-grid article {
  border: 0;
  background: #fbfaf6;
  min-height: 190px;
  padding: 28px;
}

.process-list {
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list li {
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
}

.process-list li:last-child {
  border-right: 0;
}

.concierge-section {
  max-width: none;
  padding-left: 46px;
  padding-right: 46px;
  background: #11100f;
  color: var(--white);
}

.concierge-copy p:not(.eyebrow),
.concierge-form label {
  color: rgba(255, 253, 248, 0.7);
}

.concierge-form {
  border-color: rgba(255, 253, 248, 0.18);
  background: rgba(255, 253, 248, 0.06);
}

.concierge-form input,
.concierge-form select,
.concierge-form textarea {
  border-color: rgba(255, 253, 248, 0.2);
  background: rgba(255, 253, 248, 0.08);
  color: var(--white);
}

.admin-page {
  background: #fbfaf6;
}

.admin-main {
  padding: 72px 46px;
}

.admin-hero {
  max-width: 980px;
  margin-bottom: 56px;
}

.admin-hero h1 {
  color: var(--ink);
}

.admin-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.admin-table-section {
  border-top: 1px solid var(--line);
}

.admin-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
}

.admin-table-header h2 {
  font-size: 34px;
}

.admin-table-header button {
  min-height: 42px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  padding: 0 16px;
  cursor: pointer;
}

.admin-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.admin-table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
  background: #fbfaf6;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}

.admin-table th {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--ink);
  line-height: 1.5;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  justify-content: flex-end;
  background: rgba(23, 20, 18, 0.36);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.cart-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  width: min(420px, 100vw);
  min-height: 100%;
  padding: 24px;
  background: var(--white);
  transform: translateX(30px);
  transition: transform 200ms ease;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 20px;
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-header,
.cart-total {
  justify-content: space-between;
}

.close-button {
  width: 36px;
  height: 36px;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.cart-item h3 {
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
}

.cart-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.checkout-button {
  width: 100%;
}

@media (max-width: 880px) {
  .site-header {
    padding: 0 18px;
  }

  .header-cta {
    display: none;
  }

  .top-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 96px 22px 48px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 68px);
  }

  .hero-content {
    padding: 0;
  }

  .service-strip,
  .product-grid,
  .collection-grid,
  .shorts-grid,
  .pathway-grid,
  .proof-section,
  .experience-section,
  .experience-map,
  .editorial-break,
  .process-list,
  .business-section,
  .concierge-section {
    grid-template-columns: 1fr;
  }

  .service-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px 22px;
  }

  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-section,
  .collections-section,
  .shorts-section,
  .pathways-section,
  .experience-section,
  .editorial-copy,
  .process-section,
  .business-section,
  .concierge-section {
    padding: 64px 22px;
  }

  .editorial-break {
    min-height: auto;
  }

  .editorial-image {
    min-height: 420px;
  }

  .pathway-card,
  .map-node,
  .process-list li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .catalog-tools {
    justify-content: stretch;
  }

  .search-field,
  .search-field input,
  .segment-control {
    width: 100%;
  }

  .segment-control {
    overflow-x: auto;
  }

  .segment-control button {
    flex: 1 0 auto;
  }

  .hero-dashboard {
    display: none;
  }

  .proof-section div {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 248, 0.16);
    padding: 22px;
  }

  .map-node.media,
  .map-node.trade {
    transform: none;
  }

  .map-line {
    width: 1px;
    height: 42px;
    justify-self: center;
    background: linear-gradient(180deg, var(--gold), rgba(176, 138, 67, 0.15));
  }

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