/* Local fonts */
@font-face {
  font-family: Cormorant;
  src: url("../fonts/cormorant-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Cormorant;
  src: url("../fonts/cormorant-italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("../fonts/manrope-regular.ttf") format("truetype");
  font-weight: 400 700;
  font-display: swap;
}

/* Theme tokens */
:root {
  --paper: #f8f6f2;
  --white: #fffefa;
  --ink: #282521;
  --muted: #69645f;
  --blush: #eee5e2;
  --line: #d6d0c9;
  --serif: Cormorant, Georgia, serif;
  --sans: Manrope, Arial, sans-serif;
  --gutter: clamp(20px, 4.5vw, 88px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  color-scheme: light;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

/* Base elements and keyboard accessibility */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}
body {
  margin: 0;
}
body.locked {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  display: block;
  width: 22px;
  height: 22px;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}
.icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
p {
  line-height: 1.9;
  margin: 0 0 1.4rem;
  font-size: 16px;
}
h1,
h2,
h3 {
  font-weight: 400;
  margin: 0;
}
h1,
h2 {
  font-family: var(--serif);
  letter-spacing: -0.035em;
  line-height: 1.02;
}
h2 {
  font-size: clamp(42px, 4.1vw, 70px);
}
em {
  font-weight: 400;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #875950;
  outline-offset: 5px;
}
::selection {
  background: #dfc8c2;
  color: #282521;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.eyebrow {
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-size: 12px;
}

/* Header and primary navigation */
.announcement {
  text-align: center;
  background: var(--blush);
  padding: 8px 20px;
  letter-spacing: 0.07em;
  font-size: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  background: rgba(248, 246, 242, 0.98);
  z-index: 20;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.site-header.scrolled {
  border-color: var(--line);
}
.header-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75px;
  padding: 0 var(--gutter);
}
.header-note {
  position: absolute;
  left: var(--gutter);
  letter-spacing: 0.14em;
  font-size: 12px;
}
.wordmark {
  display: block;
  width: 205px;
}
.wordmark img {
  width: 100%;
  height: 42px;
  object-fit: cover;
  filter: invert(1);
  mix-blend-mode: multiply;
}
.header-instagram {
  position: absolute;
  right: var(--gutter);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 37px;
  min-height: 37px;
  padding: 0 20px 15px;
}
.main-nav a {
  letter-spacing: 0.045em;
  position: relative;
  font-size: 12px;
}
.main-nav a:after,
.text-link:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.main-nav a:hover:after,
.text-link:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}
.menu-toggle {
  display: none;
}

/* Hero photography and introduction */
.hero {
  position: relative;
  height: clamp(570px, 48vw, 820px);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.hero-images {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: -2;
}
.hero-images:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.03),
    rgba(0, 0, 0, 0.07) 20%,
    rgba(17, 11, 10, 0.34) 70%,
    rgba(17, 11, 10, 0.5)
  );
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-width: 0;
}
.hero-image-white {
  object-position: 50% 42%;
}
.hero-image-black {
  object-position: center 42%;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 100%;
  padding: 35px 20px 55px;
}
.hero-content .eyebrow {
  margin-bottom: 20px;
  text-shadow: 0 1px 10px #0006;
  font-size: 12px;
}
.hero h1 {
  font-size: clamp(62px, 7.1vw, 118px);
  line-height: 0.92;
  text-shadow: 0 2px 26px #0002;
}
.hero h1 em {
  line-height: 1.12;
}
.hero-content > p:not(.eyebrow) {
  font-size: 14px;
  margin: 22px 0 28px;
  letter-spacing: 0.015em;
}

/* Shared action buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  min-height: 51px;
  padding: 17px 26px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
  line-height: 1.5;
  font-size: 12px;
}
.button span {
  display: inline-flex;
  line-height: 1;
}
.button-light {
  background: var(--white);
  color: var(--ink);
}
.button-light:hover {
  background: var(--blush);
}
.button-dark {
  background: var(--ink);
  color: var(--white);
}
.button-dark:hover {
  background: #4d3934;
}

/* Hero caption and brand strip */
.hero-caption {
  position: absolute;
  bottom: 25px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.07em;
  font-size: 12px;
}
.hero-caption a {
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
}
.hero-caption a span {
  margin-left: 20px;
  font-size: 18px;
}
.brand-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4.7vw, 85px);
  padding: 25px 20px;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}
.strip-star {
  color: #9a8c82;
}
.strip-star .icon {
  width: 14px;
  height: 14px;
  stroke-width: 1.1;
}

/* Shared section layout and collection */
.section-space {
  padding: 105px var(--gutter);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 43px;
}
.section-heading h2 {
  font-size: clamp(40px, 3.9vw, 65px);
}
.section-heading .eyebrow {
  margin-bottom: 15px;
}
.section-heading > p {
  color: var(--muted);
  margin: 0 0 3px;
  font-size: 16px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 23px;
}
.product-card {
  min-width: 0;
}
.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #e6e1da;
}
.product-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1s var(--ease),
    opacity 0.6s var(--ease);
}
.product-image > .product-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.product-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 9px;
  background: rgba(248, 246, 242, 0.93);
  letter-spacing: 0.04em;
  font-size: 12px;
}
.product-open {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  place-items: center;
  background: var(--paper);
  width: 33px;
  height: 33px;
  border-radius: 50%;
  transition: background 0.3s;
}
.product-open .icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}
.product-caption {
  position: relative;
  padding: 18px 0 0;
}
.product-caption h3 {
  font-family: var(--serif);
  font-size: 25px;
  margin-bottom: 4px;
}
.product-caption > span {
  display: block;
  color: var(--muted);
  line-height: 1.8;
  font-size: 12px;
}
.product-caption .product-order {
  margin-top: 11px;
  letter-spacing: 0.05em;
  color: var(--ink);
  font-size: 12px;
}
.collection-note {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  margin: 43px 0 0;
  color: var(--muted);
  font-size: 12px;
}

/* Underlined text links */
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  line-height: 1.8;
  letter-spacing: 0.015em;
  padding: 6px 0;
  position: relative;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 12px;
}
.text-link:after {
  bottom: -1px;
}
.text-link span {
  display: inline-flex;
}

/* Brand story */
.essence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--blush);
}
.essence-photo {
  position: relative;
  min-height: 650px;
}
.essence-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  object-position: 50% 25%;
}
.image-caption {
  position: absolute;
  bottom: 25px;
  left: 30px;
  color: white;
  text-shadow: 0 1px 10px #0008;
  font-size: 12px;
}
.essence-copy {
  padding: clamp(55px, 7vw, 120px);
  align-self: center;
}
.essence-copy h2 {
  margin-bottom: 34px;
}
.essence-copy p:not(.eyebrow) {
  max-width: 400px;
  color: #5d5550;
  font-size: 16px;
}
.essence-copy .text-link {
  margin-top: 10px;
}

/* Craftsmanship */
.craft {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  align-items: center;
  max-width: 1600px;
  margin: auto;
  padding-top: 135px;
  padding-bottom: 135px;
}
.craft-copy {
  padding-left: 10%;
}
.craft-copy h2 {
  margin-bottom: 30px;
}
.craft-copy p:not(.eyebrow) {
  max-width: 330px;
  color: var(--muted);
  font-size: 16px;
}
.craft-composition {
  position: relative;
  padding: 0 0 55px 10%;
}
.craft-main {
  width: 82%;
  height: 480px;
  object-fit: cover;
}
.craft-inset {
  position: absolute;
  width: 38%;
  height: 250px;
  object-fit: cover;
  right: 0;
  bottom: 40px;
  border: 8px solid var(--paper);
}
.craft-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  display: block;
  margin-top: 16px;
}

/* Ordering process */
.order {
  background: #ede9e2;
  text-align: center;
}
.order-intro h2 {
  font-size: clamp(50px, 4.8vw, 80px);
  margin-bottom: 25px;
}
.order-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
}
.order-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
  margin: 55px auto 40px;
  text-align: left;
}
.order-steps article {
  padding: 0 40px;
  border-right: 1px solid #cec6bc;
}
.order-steps article:first-child {
  padding-left: 0;
}
.order-steps article:last-child {
  border: 0;
  padding-right: 0;
}
.step-number {
  font-family: var(--serif);
  font-size: 34px;
  color: #8e8073;
}
.order-steps h3 {
  font-family: var(--serif);
  font-size: 29px;
  margin: 15px 0 12px;
}
.order-steps p {
  color: #675e56;
  max-width: 300px;
  margin-bottom: 0;
  font-size: 16px;
}
.order-action {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}
.order-action > span {
  color: var(--muted);
  font-size: 12px;
}

/* Care, sizing and frequently asked questions */
.details-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  padding-top: 115px;
  padding-bottom: 110px;
}
.details-heading h2 {
  font-size: clamp(42px, 3.8vw, 64px);
  margin-bottom: 25px;
}
.details-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
}
.faq-list {
  align-self: center;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  font-size: 15px;
}
summary {
  list-style: none;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.6;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span {
  display: inline-flex;
  flex: 0 0 auto;
  line-height: 1;
  transition: transform 0.3s;
}
details[open] summary > span {
  transform: rotate(180deg);
}
.faq-content {
  padding-bottom: 24px;
}
.faq-content p,
.faq-content li {
  line-height: 1.9;
  color: var(--muted);
  font-size: 16px;
}
.faq-content ul {
  padding-left: 18px;
  margin-top: 0;
}
.faq-content li {
  margin-bottom: 10px;
}
.size-table-wrap {
  width: 100%;
  margin: 20px 0;
  overflow: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 12px;
}
caption {
  text-align: left;
  color: var(--muted);
  padding-bottom: 12px;
  font-size: 12px;
}
th,
td {
  border-bottom: 1px solid var(--line);
  padding: 13px 5px;
  white-space: nowrap;
}
thead {
  background: var(--blush);
}
th {
  font-weight: 400;
}

/* Editorial image links */
.journal {
  padding-top: 25px;
  padding-bottom: 95px;
}
.journal .section-heading h2 {
  font-size: clamp(40px, 3.6vw, 61px);
}
.journal-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 20px;
}
.journal-photo {
  height: 365px;
  position: relative;
  overflow: hidden;
}
.journal-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.journal-photo:after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, #0006);
}
.journal-photo span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 15px;
  z-index: 1;
  color: white;
  letter-spacing: 0.025em;
  font-size: 12px;
}

/* Footer */
.footer {
  padding: 65px var(--gutter) 20px;
  background: #292724;
  color: #f6f3eb;
  overflow: hidden;
}
.footer a:focus-visible {
  outline-color: var(--white);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-top .eyebrow {
  color: #c5beb4;
  margin-bottom: 20px;
  font-size: 12px;
}
.footer-invitation {
  font-family: var(--serif);
  font-size: 43px;
  line-height: 1.08;
  margin-bottom: 0;
}
.footer-top .text-link {
  color: inherit;
}
.footer-wordmark {
  display: block;
  margin: 35px auto 15px;
  width: 100%;
  max-width: 1550px;
}
.footer-wordmark img {
  width: 100%;
  height: auto;
  aspect-ratio: 5/1;
  object-fit: cover;
  mix-blend-mode: screen;
}
.footer-bottom {
  border-top: 1px solid #ffffff30;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 20px;
  color: #c7c0b7;
  font-size: 12px;
  line-height: 1.8;
}

/* Progressive reveal motion */
.reveal {
  opacity: 1;
  transform: none;
}
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}
.motion-ready .reveal.visible {
  opacity: 1;
  transform: none;
}
.product-card:nth-child(2) {
  transition-delay: 0.08s;
}
.product-card:nth-child(3) {
  transition-delay: 0.16s;
}
.product-card:nth-child(4) {
  transition-delay: 0.24s;
}

/* Hover interactions for pointer devices */
@media (hover: hover) {
  .product-card:hover .product-image > img {
    transform: scale(1.035);
  }
  .product-card:hover .product-hover {
    opacity: 1;
  }
  .product-card:hover .product-open .icon {
    transform: translate(1px, -1px);
  }
  .journal-photo:hover img {
    transform: scale(1.035);
  }
  .product-card:hover .product-hover:not(.loaded) {
    opacity: 0;
  }
}

/* Large desktop displays */
@media (min-width: 1700px) {
  .product-grid {
    gap: 32px;
  }
  .product-caption h3 {
    font-size: 30px;
  }
  .essence-photo {
    min-height: 790px;
  }
  .journal-photo {
    height: 440px;
  }
}

/* Compact desktop and landscape tablets */
@media (max-width: 1050px) {
  .section-space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .hero {
    height: 630px;
  }
  .hero h1 {
    font-size: 82px;
  }
  .section-heading {
    align-items: flex-start;
  }
  .section-heading > p {
    max-width: 270px;
  }
  .product-grid {
    gap: 16px;
  }
  .product-caption h3 {
    font-size: 23px;
  }
  .essence-photo {
    min-height: 620px;
  }
  .essence-copy {
    padding: 50px 35px;
  }
  .craft {
    gap: 6%;
  }
  .craft-copy {
    padding-left: 0;
  }
  .craft-main {
    height: 410px;
  }
  .craft-inset {
    height: 205px;
  }
  .order-steps article {
    padding: 0 25px;
  }
  .order-steps h3 {
    font-size: 26px;
  }
  .details-section {
    gap: 6%;
  }
  .journal {
    padding-top: 15px;
  }
  .journal-photo {
    height: 300px;
  }
  .header-note {
    font-size: 10px;
  }
  .order-steps p {
    font-size: 15px;
  }
}

/* Tablets */
@media (max-width: 800px) {
  .hero h1 {
    font-size: 72px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px 20px;
  }
  .brand-strip {
    gap: 17px;
    font-size: 10px;
  }
  .brand-strip .strip-star {
    font-size: 13px;
  }
  .section-heading {
    gap: 25px;
    flex-wrap: wrap;
  }
  .section-heading > p {
    max-width: 100%;
  }
  .essence-copy {
    padding: 45px 27px;
  }
  .essence-copy h2 {
    font-size: 48px;
  }
  .essence-copy p:not(.eyebrow) {
    font-size: 15px;
  }
  .essence-photo {
    min-height: 590px;
  }
  .craft {
    gap: 8%;
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .craft-main {
    height: 350px;
    width: 95%;
  }
  .craft-inset {
    height: 175px;
    right: -8px;
    width: 48%;
  }
  .craft-composition {
    padding-left: 0;
  }
  .craft-caption {
    font-size: 16px;
  }
  .order-steps {
    gap: 20px;
  }
  .order-steps article {
    padding: 0 17px 0 0;
  }
  .order-steps h3 {
    font-size: 25px;
  }
  .details-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .details-heading > p:not(.eyebrow) {
    display: none;
  }
  .journal-photo {
    height: 260px;
  }
  .journal-photo span {
    left: 15px;
    bottom: 15px;
    font-size: 12px;
  }
  .journal-grid {
    gap: 12px;
  }
  .section-heading h2 {
    font-size: 43px;
  }
  .craft-copy p:not(.eyebrow) {
    font-size: 15px;
  }
}

/* Mobile phones */
@media (max-width: 600px) {
  html {
    scroll-padding-top: 80px;
  }
  .announcement {
    padding: 8px 16px;
    font-size: 11px;
  }
  .header-main {
    min-height: 70px;
  }
  .header-note {
    display: none;
  }
  .wordmark {
    width: 172px;
  }
  .wordmark img {
    height: 36px;
  }
  .header-instagram {
    right: 13px;
    width: 40px;
  }
  .header-instagram svg {
    width: 20px;
  }
  .js-ready .menu-toggle {
    display: flex;
    position: absolute;
    left: 14px;
    top: 15px;
    width: 40px;
    height: 40px;
    padding: 12px 10px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
  }
  .menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .main-nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 5px 16px 18px;
    min-height: 0;
  }
  .js-ready .main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 0 28px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    background: var(--paper);
    border-top: 1px solid var(--line);
    transition:
      max-height 0.28s var(--ease),
      padding 0.28s var(--ease),
      opacity 0.28s var(--ease),
      transform 0.28s var(--ease),
      visibility 0s linear 0.28s;
  }
  .js-ready .main-nav.open {
    padding: 15px 28px 28px;
    max-height: 360px;
    visibility: visible;
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }
  .js-ready .main-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    font-size: 17px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }
  .hero {
    height: 680px;
    height: min(740px, calc(100svh - 98px));
    min-height: 530px;
  }
  .hero-images {
    grid-template-columns: 1fr;
  }
  .hero-image-black {
    display: none;
  }
  .hero-image-white {
    object-position: 50% 35%;
  }
  .hero-images:after {
    background: linear-gradient(
      180deg,
      #00000008 5%,
      #1c120e12 30%,
      #1c120e80 100%
    );
  }
  .hero-content {
    justify-content: flex-end;
    padding: 40px 20px 80px;
  }
  .hero h1 {
    font-size: clamp(56px, 12.8vw, 77px);
    line-height: 0.95;
  }
  .hero-content .eyebrow {
    margin-bottom: 19px;
    font-size: 11px;
  }
  .hero-content > p:not(.eyebrow) {
    margin: 20px 0 26px;
    font-size: 14px;
  }
  .button {
    min-height: 52px;
    padding: 17px 23px;
    gap: 30px;
  }
  .hero-caption {
    bottom: 17px;
    font-size: 11px;
  }
  .hero-caption > span {
    max-width: 190px;
  }
  .hero-caption a span {
    margin-left: 8px;
  }
  .brand-strip {
    padding: 21px 15px;
    gap: 0;
    justify-content: space-around;
    font-size: 11px;
    letter-spacing: 0;
  }
  .brand-strip > span:last-child,
  .brand-strip .strip-star:nth-last-child(2) {
    display: none;
  }
  .brand-strip .strip-star {
    font-size: 12px;
    display: none;
  }
  .section-space {
    padding: 64px 20px;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
  }
  .section-heading h2 {
    max-width: 340px;
  }
  .eyebrow {
    margin-bottom: 17px;
    font-size: 11px;
  }
  .section-heading .eyebrow {
    margin-bottom: 15px;
  }
  .section-heading > p {
    font-size: 15px;
  }
  .product-grid {
    gap: 30px 12px;
  }
  .product-image {
    aspect-ratio: 3/4.4;
  }
  .product-tag {
    top: 9px;
    left: 8px;
    padding: 5px 7px;
    font-size: 12px;
  }
  .product-open {
    right: 8px;
    bottom: 8px;
    width: 30px;
    height: 30px;
  }
  .product-caption {
    padding-top: 14px;
  }
  .product-caption h3 {
    font-size: 23px;
    line-height: 1.05;
    min-height: 24px;
  }
  .product-caption > span {
    margin-top: 6px;
    font-size: 12px;
  }
  .product-caption .product-order {
    margin-top: 9px;
    font-size: 12px;
  }
  .collection-note {
    flex-direction: column;
    gap: 5px;
    align-items: center;
    margin-top: 30px;
    font-size: 12px;
  }
  .text-link {
    gap: 18px;
  }
  .essence {
    grid-template-columns: 1fr;
  }
  .essence-photo {
    min-height: 0;
    aspect-ratio: 4/4.6;
  }
  .essence-photo img {
    object-position: center 25%;
  }
  .essence-copy {
    padding: 53px 28px 58px;
  }
  .essence-copy h2 {
    font-size: 61px;
    margin-bottom: 26px;
  }
  .essence-copy p:not(.eyebrow) {
    max-width: 340px;
    font-size: 15px;
  }
  .image-caption {
    left: 20px;
  }
  .craft {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 65px 28px;
  }
  .craft-copy {
    align-self: stretch;
  }
  .craft-copy h2 {
    font-size: 52px;
  }
  .craft-copy p:not(.eyebrow) {
    max-width: 340px;
    font-size: 15px;
  }
  .craft-composition {
    width: 100%;
    padding-left: 5px;
    padding-right: 30px;
    padding-bottom: 30px;
  }
  .craft-main {
    width: 87%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
  }
  .craft-inset {
    width: 39%;
    height: auto;
    aspect-ratio: 3/4.3;
    bottom: 45px;
    right: 0;
  }
  .craft-caption {
    font-size: 18px;
    margin-top: 20px;
  }
  .order-intro h2 {
    font-size: 59px;
  }
  .order-intro > p:not(.eyebrow) {
    font-size: 15px;
  }
  .order-steps {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 36px 0 30px;
  }
  .order-steps article,
  .order-steps article:first-child,
  .order-steps article:last-child {
    position: relative;
    padding: 24px 0 24px 49px;
    border: 0;
    border-top: 1px solid #cec6bc;
  }
  .step-number {
    position: absolute;
    top: 26px;
    left: 0;
    font-size: 29px;
  }
  .order-steps h3 {
    margin: 0 0 10px;
    font-size: 29px;
  }
  .order-steps p {
    max-width: none;
    font-size: 15px;
  }
  .order-action .button {
    width: 100%;
    max-width: 340px;
  }
  .order-action > span {
    font-size: 12px;
  }
  .details-section {
    gap: 20px;
  }
  .details-heading h2 {
    font-size: 47px;
  }
  .faq-list summary {
    padding: 22px 0;
    font-size: 14px;
  }
  .faq-content p,
  .faq-content li {
    font-size: 15px;
  }
  .size-table-wrap table {
    font-size: 12px;
  }
  .size-table-wrap th,
  .size-table-wrap td {
    padding: 12px 3px;
  }
  .journal {
    padding-top: 10px;
  }
  .journal .section-heading h2 {
    font-size: 45px;
  }
  .journal .section-heading {
    gap: 17px;
  }
  .journal-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .journal-photo {
    height: auto;
    aspect-ratio: 3/4;
  }
  .journal-photo:first-child {
    grid-column: 1/-1;
    aspect-ratio: 1.45;
  }
  .journal-photo span {
    line-height: 1.6;
    left: 12px;
    font-size: 11px;
  }
  .footer {
    padding: 48px 20px 23px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .footer-invitation {
    font-size: 41px;
  }
  .footer-top .eyebrow {
    font-size: 11px;
  }
  .footer-wordmark {
    margin-top: 40px;
    margin-bottom: 28px;
  }
  .footer-bottom {
    gap: 14px;
    flex-wrap: wrap;
    font-size: 11px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
}

/* Keep reduced motion last so it overrides every responsive transition. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
