:root {
  --color-ink: #14100d;
  --color-coffee: #211811;
  --color-coffee-soft: #302218;
  --color-cream: #f0e9df;
  --color-paper: #faf7f2;
  --color-gold: #89551f;
  --color-gold-light: #d4a15c;
  --color-text: #f8f2e9;
  --color-muted: #c5b8a8;
  --color-line: rgba(214, 173, 111, 0.24);
  --color-dark-line: rgba(37, 27, 20, 0.14);
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content-width: 1180px;
  --header-height: 86px;
  --radius: 4px;
  --shadow: 0 24px 70px rgba(16, 10, 6, 0.24);
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

::selection {
  color: var(--color-ink);
  background: var(--color-gold-light);
}

.page-shell {
  width: min(var(--content-width), calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  color: var(--color-ink);
  background: var(--color-cream);
  transform: translateY(-150%);
  transition: transform var(--transition);
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--color-gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(84px, 9vw, 140px);
}

.section-heading {
  margin-bottom: clamp(42px, 6vw, 76px);
}

.section-heading h2,
.editorial h2,
.about h2,
.contact h2,
.inspiration h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.centered-heading {
  max-width: 750px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  color: var(--color-gold);
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(30px, 7vw, 100px);
}

.split-heading > p {
  max-width: 520px;
  margin: 0 0 5px;
  color: #665d54;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

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

.button-primary {
  color: #fff9f0;
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.button-primary:hover {
  color: var(--color-ink);
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

.button-ghost {
  color: var(--color-text);
  background: rgba(20, 16, 13, 0.18);
  border-color: rgba(255, 247, 235, 0.56);
  backdrop-filter: blur(6px);
}

.button-ghost:hover {
  color: var(--color-ink);
  background: var(--color-cream);
  border-color: var(--color-cream);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  color: var(--color-gold);
  background: transparent;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.text-link span {
  font-size: 1rem;
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--color-text);
  background: linear-gradient(to bottom, rgba(10, 7, 5, 0.92), rgba(10, 7, 5, 0.64));
  border-bottom: 1px solid rgba(229, 195, 145, 0.15);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  width: min(1320px, calc(100% - 48px));
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-inline: auto;
}

.wordmark {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding-left: 38px;
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: -0.045em;
  line-height: 1;
}

.wordmark small {
  position: absolute;
  bottom: 0;
  left: 39px;
  color: var(--color-gold-light);
  font-family: var(--font-body);
  font-size: 0.43rem;
  font-weight: 650;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.wordmark-eye {
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 230, 190, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, #0f0804 0 8%, transparent 9%),
    radial-gradient(ellipse at center, #f3cf77 0 15%, #c47c18 16% 42%, #4f2604 43% 63%, #e2a744 64% 68%, #1a0d05 69%);
  box-shadow:
    inset 0 0 8px rgba(255, 224, 157, 0.55),
    0 0 12px rgba(183, 123, 50, 0.25);
  transform: translateY(-50%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--color-gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-contact {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(214, 173, 111, 0.5);
}

.site-nav .nav-contact::after {
  display: none;
}

.site-nav .nav-contact:hover {
  background: rgba(183, 123, 50, 0.2);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 28px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: min(900px, 88svh);
  align-items: center;
  overflow: hidden;
  color: var(--color-text);
  background: var(--color-ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 10%;
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.015);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 6, 4, 0.96) 0%, rgba(9, 6, 4, 0.79) 38%, rgba(9, 6, 4, 0.18) 72%, rgba(9, 6, 4, 0.32) 100%),
    linear-gradient(0deg, rgba(9, 6, 4, 0.58) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
}

.hero-content h1 {
  max-width: 840px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 7.5vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-wrap: balance;
}

.hero-content h1 span {
  display: block;
}

.hero-lead {
  max-width: 570px;
  margin: 28px 0 32px;
  color: #eee4d7;
  font-size: clamp(1.04rem, 1.7vw, 1.35rem);
  line-height: 1.45;
}

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

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 50%;
  bottom: 28px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  transform: translateX(50%);
}

.scroll-cue span {
  width: 12px;
  height: 12px;
  border-right: 1px solid var(--color-gold-light);
  border-bottom: 1px solid var(--color-gold-light);
  transform: rotate(45deg);
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 5;
  color: var(--color-text);
  background: var(--color-coffee);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

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

.trust-item {
  display: flex;
  min-height: 108px;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--color-line);
}

.trust-item:first-child {
  border-left: 1px solid var(--color-line);
}

.trust-number {
  color: var(--color-gold-light);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.trust-item p {
  margin: 0;
  line-height: 1.3;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 5px;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.trust-item p span {
  color: var(--color-muted);
  font-size: 0.72rem;
}

/* Worlds */
.worlds {
  background:
    radial-gradient(circle at 50% 10%, rgba(183, 123, 50, 0.1), transparent 30rem),
    var(--color-paper);
}

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

.world-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  color: var(--color-text);
  background: var(--color-coffee);
  box-shadow: 0 18px 50px rgba(27, 18, 11, 0.12);
}

.world-card img,
.world-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.world-card img {
  object-fit: cover;
  object-position: center top;
  transition: transform 600ms ease;
}

.world-card:nth-child(2) img {
  object-position: center;
}

.world-overlay {
  background:
    linear-gradient(0deg, rgba(15, 10, 7, 0.96) 0%, rgba(15, 10, 7, 0.14) 67%),
    linear-gradient(90deg, rgba(15, 10, 7, 0.18), transparent);
  transition: background var(--transition);
}

.world-card:hover img {
  transform: scale(1.035);
}

.world-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  padding: 28px;
}

.world-copy small,
.world-copy strong,
.world-copy > span {
  display: block;
}

.world-copy small {
  margin-bottom: 12px;
  color: var(--color-gold-light);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
}

.world-copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  font-weight: 400;
  line-height: 1;
}

.world-copy > span {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 0.78rem;
}

/* Collection */
.collection {
  color: var(--color-text);
  background:
    linear-gradient(135deg, rgba(183, 123, 50, 0.08), transparent 35%),
    var(--color-ink);
}

.collection .split-heading > p {
  color: var(--color-muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(224, 185, 128, 0.22);
  border: 1px solid rgba(224, 185, 128, 0.22);
}

.product-card {
  min-width: 0;
  background: var(--color-coffee);
}

.product-image {
  position: relative;
  aspect-ratio: 0.76;
  overflow: hidden;
  background: #1a120d;
}

.product-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(16, 10, 7, 0.5), transparent 38%);
  pointer-events: none;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: filter var(--transition), transform 500ms ease;
}

.product-card:nth-child(2) .product-image img {
  object-position: center;
}

.product-card:hover .product-image img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.product-status {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 243, 222, 0.36);
  color: #fff4e4;
  background: rgba(19, 13, 9, 0.7);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-body {
  padding: 28px 24px 24px;
}

.product-type {
  margin: 0 0 6px;
  color: var(--color-gold-light);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  font-weight: 400;
  line-height: 1.05;
}

.product-body > p:not(.product-type) {
  min-height: 84px;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.product-body ul {
  min-height: 98px;
  padding: 16px 0;
  margin: 18px 0 12px;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  list-style: none;
}

.product-body li {
  position: relative;
  padding-left: 14px;
  color: #e4d7c8;
  font-size: 0.73rem;
  line-height: 1.75;
}

.product-body li::before {
  position: absolute;
  top: 0.73em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
  background: var(--color-gold);
}

.collection .text-link {
  color: var(--color-gold-light);
}

/* Editorial */
.editorial {
  display: grid;
  min-height: 750px;
  grid-template-columns: 1.08fr 0.92fr;
  background: var(--color-cream);
}

.editorial-image {
  min-height: 620px;
  overflow: hidden;
  background: var(--color-coffee);
}

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

.editorial-copy {
  display: flex;
  max-width: 650px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 120px);
}

.editorial-copy .eyebrow,
.custom .eyebrow {
  color: var(--color-gold);
}

.inspiration .eyebrow {
  color: var(--color-gold-light);
}

.editorial-lead {
  margin: 34px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.3;
}

.editorial-copy > p:last-of-type {
  margin: 0;
  color: #5f554d;
}

.material-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 35px;
}

.material-notes span {
  padding: 8px 11px;
  border: 1px solid rgba(87, 60, 34, 0.24);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Custom process */
.custom {
  background:
    radial-gradient(circle at 80% 0, rgba(183, 123, 50, 0.11), transparent 35rem),
    var(--color-paper);
}

.process-list {
  display: grid;
  padding: 0;
  margin: 0 0 50px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--color-dark-line);
  border-bottom: 1px solid var(--color-dark-line);
  list-style: none;
}

.process-list li {
  min-height: 250px;
  padding: 32px 30px;
  border-right: 1px solid var(--color-dark-line);
}

.process-list li:first-child {
  border-left: 1px solid var(--color-dark-line);
}

.process-list span {
  display: block;
  margin-bottom: 45px;
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.process-list h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
}

.process-list p {
  margin: 0;
  color: #665d54;
  font-size: 0.86rem;
}

.centered-button {
  display: flex;
  width: max-content;
  margin-inline: auto;
}

/* Inspiration */
.inspiration {
  padding: clamp(74px, 8vw, 110px) 0 0;
  overflow: hidden;
  color: var(--color-text);
  background: var(--color-coffee);
}

.inspiration-heading {
  display: grid;
  align-items: end;
  padding-bottom: 50px;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
}

.inspiration-heading .eyebrow {
  grid-column: 1 / -1;
}

.inspiration-heading p:last-child {
  max-width: 500px;
  margin: 0;
  color: var(--color-muted);
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 2px;
  background: var(--color-line);
}

.gallery-strip figure {
  position: relative;
  height: clamp(380px, 48vw, 680px);
  margin: 0;
  overflow: hidden;
  background: var(--color-ink);
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.86);
  transition: filter var(--transition), transform 600ms ease;
}

.gallery-strip figure:nth-child(2) img {
  object-position: center;
}

.gallery-strip figure:hover img {
  filter: saturate(1.03);
  transform: scale(1.02);
}

.gallery-strip figcaption {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  color: white;
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.9);
}

/* About */
.about {
  padding-block: clamp(90px, 10vw, 160px);
  color: var(--color-text);
  background:
    linear-gradient(115deg, rgba(183, 123, 50, 0.13), transparent 38%),
    var(--color-ink);
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(50px, 9vw, 130px);
}

.about-mark {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  border: 1px solid var(--color-line);
  background:
    radial-gradient(circle, rgba(183, 123, 50, 0.17), transparent 55%),
    var(--color-coffee);
}

.large-eye {
  top: 42%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
}

.about-mark p {
  position: absolute;
  bottom: 48px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.3rem;
}

.about-copy p:not(.eyebrow) {
  max-width: 670px;
  margin: 30px 0;
  color: var(--color-muted);
}

.light-link {
  color: var(--color-gold-light);
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  padding-block: clamp(100px, 12vw, 180px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 110%, rgba(183, 123, 50, 0.25), transparent 40%),
    var(--color-cream);
}

.contact::before {
  position: absolute;
  top: -90px;
  left: 50%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(183, 123, 50, 0.16);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact .eyebrow {
  color: var(--color-gold);
}

.contact p:not(.eyebrow) {
  max-width: 650px;
  margin: 30px auto 34px;
  color: #62574e;
  font-size: 1.05rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.contact-phone {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid rgba(104, 73, 40, 0.36);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

/* Footer */
.site-footer {
  padding: 64px 0 20px;
  color: var(--color-text);
  background: #0d0a08;
}

.footer-grid {
  display: grid;
  padding-bottom: 48px;
  grid-template-columns: 1.5fr 0.75fr 1fr 0.75fr;
  gap: 44px;
}

.footer-wordmark {
  margin-bottom: 15px;
}

.footer-wordmark small {
  display: none;
}

.footer-grid > div > p {
  margin: 0;
  color: #988b7c;
  font-size: 0.82rem;
}

.footer-grid h2 {
  margin: 8px 0 18px;
  color: var(--color-gold-light);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid > div > a:not(.wordmark) {
  display: block;
  width: fit-content;
  min-height: 44px;
  align-content: center;
  color: #bdb1a3;
  font-size: 0.8rem;
}

.footer-grid > div > a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(208, 176, 128, 0.14);
  color: #9f9387;
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

/* Product dialog */
.product-dialog {
  width: min(1040px, calc(100% - 36px));
  max-width: none;
  max-height: min(760px, calc(100svh - 40px));
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  color: var(--color-text);
  background: var(--color-coffee);
  box-shadow: var(--shadow);
}

.product-dialog[open] {
  animation: dialog-in 230ms ease both;
}

dialog::backdrop {
  background: rgba(7, 5, 3, 0.82);
  backdrop-filter: blur(5px);
}

.dialog-layout {
  display: grid;
  min-height: 580px;
  grid-template-columns: 1.15fr 0.85fr;
}

.dialog-image-wrap {
  min-height: 580px;
  overflow: hidden;
  background: var(--color-ink);
}

.dialog-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.dialog-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(44px, 6vw, 78px);
}

.dialog-copy h2 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 0.98;
}

.dialog-copy > p:not(.eyebrow) {
  margin: 0 0 32px;
  color: var(--color-muted);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--color-line);
  color: var(--color-text);
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.dialog-back {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 0.65rem;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Legal pages */
.legal-page {
  min-height: 100svh;
  padding: 140px 0 80px;
  color: var(--color-text);
  background:
    radial-gradient(circle at 10% 10%, rgba(183, 123, 50, 0.15), transparent 32rem),
    var(--color-ink);
}

.legal-card {
  max-width: 840px;
  padding: clamp(34px, 7vw, 78px);
  margin-inline: auto;
  border: 1px solid var(--color-line);
  background: var(--color-coffee);
}

.legal-card h1 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1;
}

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

.legal-notice {
  padding: 20px;
  margin: 30px 0;
  border-left: 3px solid var(--color-gold);
  color: var(--color-cream);
  background: rgba(183, 123, 50, 0.1);
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-body > p:not(.product-type),
  .product-body ul {
    min-height: 0;
  }

  .editorial-copy {
    padding: 70px 54px;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--color-line);
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    width: min(420px, 90vw);
    height: 100svh;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 4px;
    padding: 100px 36px 40px;
    background:
      linear-gradient(145deg, rgba(183, 123, 50, 0.1), transparent 42%),
      #160f0b;
    box-shadow: -18px 0 45px rgba(0, 0, 0, 0.34);
    transform: translateX(105%);
    transition: transform 280ms ease;
  }

  .site-nav[data-open="true"] {
    transform: translateX(0);
  }

  .site-nav a {
    min-height: 58px;
    padding: 0 4px;
    border-bottom: 1px solid var(--color-line);
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-contact {
    justify-content: center;
    margin-top: 22px;
    border: 1px solid rgba(214, 173, 111, 0.5);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .hero {
    min-height: 820px;
  }

  .hero-image {
    object-position: 62% 8%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 6, 4, 0.9) 0%, rgba(9, 6, 4, 0.54) 68%, rgba(9, 6, 4, 0.24)),
      linear-gradient(0deg, rgba(9, 6, 4, 0.8) 0%, transparent 55%);
  }

  .world-card {
    min-height: 390px;
  }

  .split-heading,
  .inspiration-heading {
    grid-template-columns: 1fr;
  }

  .split-heading > p,
  .inspiration-heading p:last-child {
    max-width: 660px;
  }

  .editorial {
    min-height: 0;
    grid-template-columns: 1fr;
  }

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

  .editorial-copy {
    max-width: 760px;
  }

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

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--color-dark-line);
  }

  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
  }

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

  .dialog-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .page-shell,
  .header-inner {
    width: min(100% - 32px, var(--content-width));
  }

  .section {
    padding-block: 78px;
  }

  .wordmark {
    font-size: 1.6rem;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-image {
    object-position: 61% 4%;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(9, 6, 4, 0.96) 0%, rgba(9, 6, 4, 0.72) 55%, rgba(9, 6, 4, 0.28) 100%),
      linear-gradient(90deg, rgba(9, 6, 4, 0.45), transparent);
  }

  .hero-content {
    padding-bottom: 100px;
  }

  .hero-content h1 {
    max-width: 520px;
    font-size: clamp(3.1rem, 15vw, 5rem);
    line-height: 0.92;
  }

  .hero-lead {
    margin-block: 24px;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .scroll-cue {
    display: none;
  }

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

  .trust-item,
  .trust-item:first-child {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
    border-left: 0;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

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

  .world-card {
    min-height: 430px;
  }

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

  .product-image {
    aspect-ratio: 0.86;
  }

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

  .editorial-copy {
    padding: 65px 24px;
  }

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

  .process-list li,
  .process-list li:first-child {
    min-height: 0;
    padding: 28px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--color-dark-line);
    border-left: 0;
  }

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

  .process-list span {
    margin-bottom: 20px;
  }

  .gallery-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .gallery-strip figure {
    min-width: 86vw;
    height: 500px;
    scroll-snap-align: start;
  }

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

  .about-mark {
    min-height: 310px;
  }

  .contact-actions {
    flex-direction: column;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-dialog {
    width: 100%;
    max-height: 92svh;
    margin: auto 0 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    overflow: auto;
    border-radius: 16px 16px 0 0;
  }

  .dialog-layout {
    display: block;
    max-height: 92svh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .dialog-image-wrap {
    min-height: min(330px, 38svh);
    max-height: 42svh;
  }

  .dialog-copy {
    min-height: 0;
    padding: 44px 24px 38px;
  }

  .dialog-close {
    top: 14px;
    right: 14px;
    background: rgba(20, 16, 13, 0.78);
  }
}

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

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