:root {
  --ink: #121212;
  --paper: #f4f0e8;
  --white: #fffefb;
  --muted: #76726a;
  --line: rgba(18, 18, 18, 0.16);
  --accent: #c94d2c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(16, 16, 16, 0.94);
  display: flex;
  height: 104px;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 84px);
  position: relative;
  z-index: 20;
}

.brand img {
  height: auto;
  width: min(360px, 52vw);
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 38px;
}

.desktop-nav a {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  position: relative;
  text-transform: uppercase;
}

.desktop-nav a::after {
  background: var(--accent);
  bottom: -9px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.mobile-nav {
  display: none;
}

.hero {
  background: #111;
  color: #fff;
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.hero-background {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 72%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.18) 0%, rgba(12, 12, 12, 0.38) 48%, #111 74%),
    linear-gradient(0deg, rgba(12, 12, 12, 0.76), transparent 55%);
  inset: 0;
  position: absolute;
}

.hero-content {
  bottom: 76px;
  left: clamp(24px, 7vw, 110px);
  max-width: 800px;
  position: absolute;
  z-index: 2;
}

.hero h1,
.section-heading h2,
.newsletter h2,
.article-title h1,
.site-footer h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.4rem, 6.4vw, 7.1rem);
  line-height: 0.94;
  margin: 12px 0 42px;
  max-width: 900px;
}

.eyebrow {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.64);
}

.hero-link,
.text-link {
  align-items: center;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0 0 10px;
}

.hero-secondary {
  border: 10px solid #111;
  bottom: 50px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  transform: rotate(2deg);
  width: min(29vw, 390px);
  z-index: 3;
}

.hero-secondary img {
  aspect-ratio: 1 / 0.87;
  object-fit: cover;
}

.product-feature,
.blog-section,
.social-section {
  margin: 0 auto;
  max-width: 1480px;
  padding: 120px clamp(24px, 6vw, 96px);
}

.section-heading {
  margin-bottom: 48px;
  max-width: 840px;
}

.section-heading h2,
.newsletter h2 {
  font-size: clamp(2.7rem, 5vw, 5.7rem);
  line-height: 0.98;
  margin: 0;
}

.product-image {
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.product-image img {
  aspect-ratio: auto;
  display: block;
  height: auto;
  object-fit: contain;
  transition: transform 500ms ease;
  width: 100%;
}

.product-image span {
  align-items: center;
  background: var(--ink);
  bottom: 0;
  color: #fff;
  display: flex;
  font-size: 0.72rem;
  gap: 24px;
  letter-spacing: 0.14em;
  padding: 18px 24px;
  align-self: flex-end;
  position: static;
  text-transform: uppercase;
}

.product-image:hover img {
  transform: scale(1.015);
}

.blog-section {
  background: var(--white);
  max-width: none;
}

.blog-section > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 1288px;
}

.split-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  max-width: 1288px;
}

.split-heading > p {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  margin: 0 0 10px;
}

.article-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}

.article-card {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.85fr);
  padding-top: 18px;
}

.article-image {
  overflow: hidden;
}

.article-image img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.article-card:hover .article-image img {
  transform: scale(1.025);
}

.article-card-body {
  align-items: flex-start;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  padding: 34px;
}

.article-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 8px 0 24px;
}

.article-card-body > p:not(.eyebrow) {
  color: #4e4b46;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 34px;
}

.article-card .text-link {
  margin-top: auto;
}

.social-section {
  overflow: hidden;
}

.social-rail {
  display: grid;
  gap: 18px;
  grid-auto-columns: min(340px, 78vw);
  grid-auto-flow: column;
  overflow-x: auto;
  padding: 0 0 24px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--ink) var(--line);
}

.social-card {
  background: #ddd;
  scroll-snap-align: start;
}

.social-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: filter 220ms ease, transform 350ms ease;
  width: 100%;
}

.social-card:hover img {
  filter: saturate(0.85) contrast(1.03);
  transform: scale(0.985);
}

.newsletter {
  align-items: end;
  background: var(--ink);
  color: #fff;
  display: grid;
  gap: clamp(50px, 8vw, 140px);
  grid-template-columns: 1fr 1fr;
  padding: 110px max(24px, calc((100vw - 1288px) / 2));
}

.newsletter form {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.newsletter label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newsletter input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  outline: none;
  padding: 12px 0;
  width: 100%;
}

.newsletter input:focus {
  border-color: #fff;
}

.newsletter button {
  background: var(--accent);
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  grid-column: 1 / -1;
  justify-self: start;
  letter-spacing: 0.14em;
  padding: 17px 28px;
  text-transform: uppercase;
}

.site-footer {
  background: var(--paper);
  text-align: center;
}

.footer-inner {
  padding: 92px 24px 74px;
}

.social-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 34px;
}

.social-links a {
  align-items: center;
  border: 1px solid var(--line);
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  height: 42px;
  justify-content: center;
  transition: background 160ms ease, color 160ms ease;
  width: 42px;
}

.social-links a:hover {
  background: var(--ink);
  color: #fff;
}

.site-footer h2 {
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  margin: 0 0 26px;
}

.site-footer address {
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 2;
  text-transform: uppercase;
}

.site-footer address a {
  border-bottom: 1px solid var(--line);
}

.copyright {
  border-top: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  margin: 0;
  padding: 22px;
}

.article-page {
  background: var(--white);
  padding-bottom: 120px;
}

.shop-page {
  background: var(--white);
}

.shop-intro {
  background: #111;
  color: #fff;
  min-height: 420px;
  padding: 130px max(24px, calc((100vw - 1288px) / 2)) 72px;
}

.shop-intro h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 10vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.86;
  margin: 0;
}

.shop-catalog {
  margin: 0 auto;
  max-width: 1440px;
  padding: 70px clamp(24px, 5vw, 76px) 120px;
}

.shop-toolbar {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-bottom: 46px;
  padding-bottom: 22px;
}

.shop-toolbar label {
  width: min(440px, 70vw);
}

.shop-toolbar label span {
  color: var(--muted);
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.shop-toolbar input {
  background: transparent;
  border: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  outline: none;
  padding: 4px 0;
  width: 100%;
}

.shop-toolbar p {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.shop-grid {
  display: grid;
  gap: 60px 22px;
  grid-template-columns: repeat(3, 1fr);
}

.shop-card-image {
  background: var(--paper);
  display: block;
  overflow: hidden;
}

.shop-card-image img {
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
  width: 100%;
}

.shop-card:hover .shop-card-image img {
  transform: scale(1.025);
}

.shop-card-copy {
  padding: 22px 4px 0;
}

.shop-card-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.1vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0 0 12px;
}

.shop-card-copy .eyebrow {
  margin-bottom: 9px;
}

.shop-price {
  color: #494640;
  font-size: 0.9rem;
  margin: 0 0 24px;
}

.shop-card .text-link {
  font-size: 0.65rem;
}

.shop-empty {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  padding: 80px 0;
  text-align: center;
}

.product-page {
  background: var(--white);
  padding: 30px max(24px, calc((100vw - 1288px) / 2)) 120px;
}

.breadcrumbs {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.68rem;
  gap: 10px;
  letter-spacing: 0.08em;
  padding: 14px 0 34px;
  text-transform: uppercase;
}

.breadcrumbs a {
  border-bottom: 1px solid transparent;
}

.breadcrumbs a:hover {
  border-color: currentColor;
}

.product-configurator {
  align-items: start;
  display: grid;
  gap: clamp(48px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
}

.product-gallery {
  min-width: 0;
}

.product-main-image {
  background: var(--paper);
  overflow: hidden;
}

.product-main-image img {
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  width: 100%;
}

.product-thumbnails {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 10px;
}

.product-thumbnails button {
  background: var(--paper);
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
}

.product-thumbnails button.is-active {
  border-color: var(--ink);
}

.product-thumbnails img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.product-purchase {
  padding-top: clamp(20px, 5vw, 72px);
  position: sticky;
  top: 20px;
}

.product-purchase h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 6vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
  margin: 0 0 26px;
}

.product-current-price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  margin: 0 0 8px;
}

.stock-status {
  color: #456448;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 38px;
  text-transform: uppercase;
}

.option-field,
.quantity-field {
  display: block;
  margin-bottom: 24px;
}

.option-field > span,
.quantity-field > span {
  color: var(--muted);
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.option-field select,
.quantity-field input {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  min-height: 54px;
  padding: 0 15px;
  width: 100%;
}

.quantity-field {
  width: 110px;
}

.add-to-cart {
  background: var(--accent);
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  min-height: 58px;
  padding: 0 32px;
  text-transform: uppercase;
  width: 100%;
}

.add-to-cart:hover {
  background: #ad3e21;
}

.add-to-cart:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.checkout-note {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 14px 0 0;
}

.product-description {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 70px;
  grid-template-columns: 0.45fr 1fr;
  margin-top: 100px;
  padding-top: 64px;
}

.product-description > div {
  color: #3f3c37;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 760px;
}

.product-description > div p {
  margin: 0 0 1.4em;
}

.cart-page {
  background: var(--white);
}

.cart-hero {
  background: #111;
  color: #fff;
  padding: 86px max(24px, calc((100vw - 1288px) / 2)) 62px;
}

.cart-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
  margin: 0;
}

.cart-layout {
  display: grid;
  gap: clamp(48px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  margin: 0 auto;
  max-width: 1440px;
  padding: 78px clamp(24px, 5vw, 76px) 120px;
}

.cart-section-heading {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
}

.cart-section-heading h2,
.cart-summary h2,
.cart-empty h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 3.8vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 0;
}

.cart-section-heading span {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-item {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 150px minmax(0, 1fr) 90px 110px;
  padding: 24px 0;
}

.cart-item > img {
  aspect-ratio: 1 / 1;
  background: var(--paper);
  object-fit: cover;
  width: 100%;
}

.cart-item-main h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0 0 8px;
}

.cart-item-main p {
  color: var(--muted);
  font-size: 0.78rem;
  margin: 0 0 18px;
}

.cart-item-main button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding: 0 0 4px;
  text-transform: uppercase;
}

.cart-quantity span {
  color: var(--muted);
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.cart-quantity select {
  background: transparent;
  border: 1px solid var(--line);
  height: 42px;
  padding: 0 10px;
  width: 72px;
}

.cart-line-price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  margin: 0;
  text-align: right;
}

.continue-shopping {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 24px;
  text-transform: uppercase;
}

.cart-summary {
  background: var(--ink);
  color: #fff;
  padding: 42px;
}

.cart-summary .eyebrow {
  margin-bottom: 10px;
}

.cart-summary h2 {
  margin-bottom: 34px;
}

.cart-summary dl {
  margin: 0 0 28px;
}

.cart-summary dl > div {
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  font-size: 0.82rem;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  padding: 17px 0;
}

.cart-summary dt {
  color: rgba(255, 255, 255, 0.62);
}

.cart-summary dd {
  margin: 0;
  text-align: right;
}

.cart-summary .cart-grand-total {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  padding-bottom: 4px;
  padding-top: 24px;
}

.cart-grand-total dt {
  color: #fff;
}

.checkout-button {
  background: var(--accent);
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  padding: 19px 22px;
  text-align: center;
  text-transform: uppercase;
}

.cart-secure-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  line-height: 1.45;
  margin: 12px 0 30px;
  text-align: center;
}

.coupon-form {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 24px;
}

.coupon-form > label {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.coupon-form > div {
  display: flex;
}

.coupon-form input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-right: 0;
  color: #fff;
  min-width: 0;
  padding: 0 12px;
  width: 100%;
}

.coupon-form button {
  background: #fff;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 14px;
  text-transform: uppercase;
}

.cart-error {
  color: #ffb49f;
  font-size: 0.78rem;
  line-height: 1.5;
  margin-top: 16px;
}

.cart-status,
.cart-empty {
  margin: 0 auto;
  max-width: 900px;
  padding: 120px 24px 160px;
  text-align: center;
}

.cart-empty p:not(.eyebrow) {
  color: var(--muted);
}

.cart-empty a,
.cart-empty button {
  background: var(--ink);
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 24px;
  padding: 17px 26px;
  text-transform: uppercase;
}

.cart-nav-link {
  align-items: center;
  display: inline-flex;
  gap: 9px;
}

.cart-nav-link > span {
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 0.58rem;
  height: 20px;
  justify-content: center;
  letter-spacing: 0;
  width: 20px;
}

.checkout-shell {
  background:
    linear-gradient(90deg, transparent 0 49.95%, rgba(18, 18, 18, 0.025) 50%, transparent 50.05%),
    var(--white);
  min-height: 70vh;
}

.checkout-masthead {
  align-items: end;
  background:
    radial-gradient(circle at 82% 20%, rgba(201, 77, 44, 0.24), transparent 31%),
    #111;
  color: #fff;
  display: grid;
  gap: 70px;
  grid-template-columns: 1fr auto;
  min-height: 360px;
  padding: 92px max(24px, calc((100vw - 1288px) / 2)) 64px;
}

.checkout-masthead.compact {
  min-height: 310px;
}

.checkout-masthead h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 8vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.84;
  margin: 0;
}

.checkout-steps {
  display: flex;
  gap: clamp(22px, 4vw, 58px);
  list-style: none;
  margin: 0;
  padding: 0 0 7px;
}

.checkout-steps li {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  position: relative;
  text-transform: uppercase;
}

.checkout-steps li::after {
  background: rgba(255, 255, 255, 0.16);
  content: "";
  height: 1px;
  left: calc(100% + 11px);
  position: absolute;
  top: 7px;
  width: clamp(12px, 2vw, 36px);
}

.checkout-steps li:last-child::after {
  display: none;
}

.checkout-steps li.is-active {
  color: #fff;
}

.checkout-steps span {
  color: var(--accent);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.premium-cart-layout,
.checkout-layout {
  display: grid;
  gap: clamp(48px, 7vw, 100px);
  grid-template-columns: minmax(0, 1.25fr) minmax(350px, 0.62fr);
  margin: 0 auto;
  max-width: 1440px;
  padding: 76px clamp(24px, 5vw, 76px) 120px;
}

.cart-items {
  min-width: 0;
}

.cart-section-heading > a {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  padding-bottom: 4px;
  text-transform: uppercase;
}

.cart-line {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 165px minmax(0, 1fr) auto;
  padding: 28px 0;
  transition: opacity 180ms ease;
}

.cart-line.is-busy {
  opacity: 0.48;
}

.cart-line-image {
  background: var(--paper);
  display: block;
  overflow: hidden;
}

.cart-line-image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 400ms ease;
  width: 100%;
}

.cart-line-image:hover img {
  transform: scale(1.025);
}

.cart-line-copy .eyebrow {
  margin-bottom: 9px;
}

.cart-line-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.7vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 0 0 9px;
}

.cart-variant {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 0 0 23px;
}

.cart-line-actions {
  align-items: center;
  display: flex;
  gap: 22px;
}

.quantity-stepper {
  align-items: center;
  border: 1px solid var(--line);
  display: inline-grid;
  grid-template-columns: 38px 34px 38px;
  min-height: 40px;
}

.quantity-stepper button {
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.1rem;
  height: 100%;
}

.quantity-stepper button:disabled,
.remove-item:disabled {
  cursor: wait;
  opacity: 0.36;
}

.quantity-stepper span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  text-align: center;
}

.remove-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  padding: 0 0 3px;
  text-transform: uppercase;
}

.cart-line > .cart-line-price {
  align-self: start;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  margin: 9px 0 0;
  min-width: 84px;
  text-align: right;
}

.promo-code {
  border-bottom: 1px solid var(--line);
  padding: 25px 0;
}

.promo-code > button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.1em;
  min-height: 0;
  padding: 0;
  text-transform: uppercase;
  width: 100%;
}

.promo-code > div {
  display: flex;
  margin-top: 18px;
  max-width: 430px;
}

.promo-code input {
  background: transparent;
  border: 1px solid var(--line);
  min-width: 0;
  padding: 0 13px;
  width: 100%;
}

.promo-code > div button {
  background: var(--ink);
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  min-height: 44px;
  padding: 0 17px;
  text-transform: uppercase;
}

.order-summary {
  align-self: start;
  background: var(--ink);
  color: #fff;
  padding: 42px;
  position: sticky;
  top: 24px;
}

.order-summary > .eyebrow {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.order-summary > h2,
.empty-cart h2,
.form-section-title h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.order-summary > h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  margin: 0 0 34px;
}

.summary-lines {
  margin: 0;
}

.summary-lines > div {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: grid;
  font-size: 0.78rem;
  gap: 18px;
  grid-template-columns: 0.7fr 1.3fr;
  padding: 16px 0;
}

.summary-lines dt {
  color: rgba(255, 255, 255, 0.5);
}

.summary-lines dd {
  line-height: 1.4;
  margin: 0;
  text-align: right;
}

.summary-lines .summary-total {
  align-items: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  padding: 24px 0 6px;
}

.summary-total dt {
  color: #fff;
}

.summary-total dd small {
  color: rgba(255, 255, 255, 0.45);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.premium-button {
  align-items: center;
  background: var(--accent);
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 700;
  gap: 22px;
  justify-content: center;
  letter-spacing: 0.12em;
  min-height: 56px;
  padding: 0 24px;
  text-transform: uppercase;
  transition: background 160ms ease, transform 160ms ease;
}

.premium-button:hover {
  background: #ad3e21;
  transform: translateY(-1px);
}

.premium-button-wide {
  margin-top: 28px;
  width: 100%;
}

.trust-note {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
}

.trust-note > span {
  color: var(--accent);
  font-size: 1.5rem;
}

.trust-note p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.67rem;
  line-height: 1.5;
  margin: 0;
}

.trust-note strong {
  color: #fff;
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.premium-error,
.handoff-disclaimer {
  background: rgba(201, 77, 44, 0.09);
  border-left: 2px solid var(--accent);
  color: #7d3825;
  font-size: 0.75rem;
  line-height: 1.55;
  padding: 12px 15px;
}

.empty-cart {
  margin: 0 auto;
  max-width: 760px;
  padding: 120px 24px 150px;
  text-align: center;
}

.empty-cart h2 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin: 0 0 22px;
}

.empty-cart > p:not(.eyebrow) {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 0 auto 32px;
  max-width: 540px;
}

.cart-loading {
  animation: cart-pulse 1.2s ease-in-out infinite alternate;
  background: linear-gradient(90deg, var(--paper), #fff, var(--paper));
  height: 360px;
  margin: 80px auto 120px;
  max-width: 1288px;
}

@keyframes cart-pulse {
  to {
    opacity: 0.45;
  }
}

.checkout-layout {
  align-items: start;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.62fr);
}

.checkout-form {
  min-width: 0;
}

.form-section {
  border-top: 1px solid var(--line);
  padding: 40px 0 54px;
}

.form-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.form-section-title {
  align-items: start;
  display: grid;
  gap: 20px;
  grid-template-columns: 38px 1fr;
  margin-bottom: 34px;
}

.form-section-title > span {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  padding-top: 7px;
}

.form-section-title .eyebrow {
  margin-bottom: 7px;
}

.form-section-title h2 {
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  margin: 0;
}

.field-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
  padding-left: 58px;
}

.field-grid.two {
  grid-template-columns: 1fr 1fr;
}

.premium-field > span {
  color: #56514b;
  display: block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.premium-field input,
.premium-field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  min-height: 48px;
  outline: none;
  padding: 0 3px;
  width: 100%;
}

.premium-field input:focus,
.premium-field select:focus {
  border-color: var(--ink);
}

.premium-field input::placeholder {
  color: #aaa59d;
}

.premium-check {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.73rem;
  gap: 10px;
  margin: 24px 0 0 58px;
}

.premium-check input {
  accent-color: var(--accent);
}

.payment-choice {
  background: #f1ede5;
  margin-left: 58px;
  padding: 26px;
}

.payment-choice-heading {
  align-items: center;
  display: flex;
  gap: 14px;
}

.payment-choice-heading strong,
.payment-choice-heading small {
  display: block;
}

.payment-choice-heading strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 400;
}

.payment-choice-heading small {
  color: var(--muted);
  font-size: 0.64rem;
  margin-top: 3px;
}

.radio-dot {
  border: 1px solid var(--ink);
  border-radius: 50%;
  height: 17px;
  position: relative;
  width: 17px;
}

.radio-dot::after {
  background: var(--accent);
  border-radius: 50%;
  content: "";
  inset: 4px;
  position: absolute;
}

.lock-mark {
  color: var(--accent);
  font-size: 1.4rem;
  margin-left: auto;
}

.payment-choice > p {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.6;
  margin: 20px 0 0;
  padding-top: 18px;
}

.payment-section .handoff-disclaimer,
.checkout-submit,
.terms-note {
  margin-left: 58px;
  width: calc(100% - 58px);
}

.checkout-submit {
  margin-top: 24px;
}

.terms-note {
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.5;
  text-align: center;
}

.summary-miniatures {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.summary-miniature {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  display: grid;
  gap: 14px;
  grid-template-columns: 58px 1fr auto;
  padding: 14px 0;
}

.summary-miniature > div {
  position: relative;
}

.summary-miniature img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.summary-miniature > div > span {
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  font-size: 0.6rem;
  height: 19px;
  justify-content: center;
  position: absolute;
  right: -6px;
  top: -6px;
  width: 19px;
}

.summary-miniature p {
  margin: 0;
  min-width: 0;
}

.summary-miniature strong,
.summary-miniature small {
  display: block;
}

.summary-miniature strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 400;
}

.summary-miniature small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.6rem;
  margin-top: 4px;
}

.summary-miniature b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
  font-weight: 400;
}

.order-summary-checkout .summary-lines {
  margin-top: 20px;
}

@media (max-width: 1000px) {
  .checkout-masthead {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .premium-cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    margin: 0 auto;
    max-width: 620px;
    position: static;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .cart-nav-link > span {
    height: 18px;
    width: 18px;
  }

  .checkout-masthead {
    gap: 42px;
    min-height: 340px;
    padding-bottom: 45px;
    padding-top: 68px;
  }

  .checkout-masthead.compact {
    min-height: 330px;
  }

  .checkout-masthead h1 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .checkout-steps {
    gap: 25px;
  }

  .checkout-steps li {
    font-size: 0.55rem;
  }

  .checkout-steps li::after {
    display: none;
  }

  .premium-cart-layout,
  .checkout-layout {
    padding-bottom: 80px;
    padding-top: 48px;
  }

  .cart-section-heading {
    align-items: start;
    flex-direction: column;
    gap: 15px;
  }

  .cart-line {
    align-items: start;
    gap: 16px;
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .cart-line > .cart-line-price {
    grid-column: 2;
    margin-top: 0;
    text-align: left;
  }

  .cart-line-copy h3 {
    font-size: 1.55rem;
  }

  .cart-line-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .promo-code {
    grid-template-columns: 1fr;
  }

  .order-summary {
    padding: 32px 24px;
  }

  .field-grid,
  .field-grid.two {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .premium-check,
  .payment-choice,
  .payment-section .handoff-disclaimer,
  .checkout-submit,
  .terms-note {
    margin-left: 0;
    width: 100%;
  }

  .form-section-title {
    grid-template-columns: 30px 1fr;
  }
}

.article-hero {
  height: min(72vh, 760px);
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.article-hero > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.article-hero::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent 66%);
  content: "";
  inset: 0;
  position: absolute;
}

.article-title {
  bottom: clamp(38px, 8vw, 100px);
  color: #fff;
  left: max(24px, calc((100vw - 1120px) / 2));
  max-width: 980px;
  position: absolute;
  right: 24px;
  z-index: 2;
}

.article-title h1 {
  font-size: clamp(3.5rem, 7.8vw, 8rem);
  line-height: 0.92;
  margin: 0;
}

.article-copy {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.78;
  margin: 0 auto;
  max-width: 780px;
  padding: 90px 24px;
}

.article-copy p {
  margin: 0 0 1.35em;
}

.wordpress-article-copy figure {
  margin: 2.5rem 0;
}

.wordpress-article-copy img {
  height: auto;
  width: 100%;
}

.wordpress-article-copy a {
  border-bottom: 1px solid currentColor;
}

.article-copy p:first-child::first-letter {
  float: left;
  font-size: 5rem;
  line-height: 0.8;
  padding: 12px 10px 0 0;
}

.article-copy .signature-line {
  font-style: italic;
  margin-bottom: 0.25em;
}

.post-navigation,
.author-card {
  margin: 0 auto;
  max-width: 1120px;
}

.post-navigation {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.post-navigation a {
  display: flex;
  flex-direction: column;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  gap: 8px;
  padding: 32px 0;
}

.post-navigation span {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.author-card {
  align-items: center;
  display: flex;
  gap: 28px;
  padding-top: 50px;
}

.author-card img {
  border-radius: 50%;
  height: 100px;
  object-fit: cover;
  width: 100px;
}

.author-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 7px;
}

.author-card p {
  color: var(--muted);
  margin: 0;
}

@media (max-width: 1100px) {
  .hero {
    min-height: 650px;
  }

  .hero-background {
    width: 100%;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(12, 12, 12, 0.86), rgba(12, 12, 12, 0.08) 75%);
  }

  .hero-secondary {
    display: none;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .newsletter {
    grid-template-columns: 1fr;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-configurator {
    grid-template-columns: 1fr;
  }

  .product-purchase {
    padding-top: 0;
    position: static;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    margin: 0 auto;
    max-width: 620px;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 82px;
    padding: 0 20px;
  }

  .brand img {
    width: min(270px, 66vw);
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    color: #fff;
    display: block;
    position: relative;
  }

  .mobile-nav summary {
    cursor: pointer;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav nav {
    background: #111;
    border-top: 1px solid #353535;
    display: flex;
    flex-direction: column;
    min-width: 180px;
    padding: 12px 0;
    position: absolute;
    right: -20px;
    top: 49px;
  }

  .mobile-nav nav a {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    padding: 13px 20px;
    text-transform: uppercase;
  }

  .hero {
    min-height: 620px;
  }

  .hero-background {
    object-position: 42% center;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .product-feature,
  .blog-section,
  .social-section {
    padding-bottom: 78px;
    padding-top: 78px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .product-image img {
    aspect-ratio: auto;
  }

  .split-heading > p {
    display: none;
  }

  .article-card {
    display: block;
  }

  .article-image img {
    min-height: 310px;
  }

  .article-card-body {
    padding: 28px 22px;
  }

  .newsletter {
    padding-bottom: 78px;
    padding-top: 78px;
  }

  .newsletter form {
    grid-template-columns: 1fr;
  }

  .newsletter button {
    grid-column: auto;
  }

  .article-hero {
    height: 70vh;
    min-height: 480px;
  }

  .article-title h1 {
    font-size: clamp(3.4rem, 16vw, 5.4rem);
  }

  .post-navigation,
  .author-card {
    margin-left: 24px;
    margin-right: 24px;
  }

  .author-card {
    align-items: flex-start;
  }

  .author-card img {
    height: 72px;
    width: 72px;
  }

  .shop-intro {
    min-height: 330px;
    padding-top: 100px;
  }

  .shop-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .shop-toolbar label {
    width: 100%;
  }

  .shop-grid {
    gap: 42px 12px;
  }

  .shop-card-copy {
    padding-top: 15px;
  }

  .shop-card-copy h2 {
    font-size: 1.35rem;
  }

  .shop-card .text-link {
    display: none;
  }

  .shop-price {
    font-size: 0.78rem;
    margin-bottom: 0;
  }

  .product-page {
    padding-top: 18px;
  }

  .product-configurator {
    gap: 36px;
  }

  .product-main-image img {
    aspect-ratio: 1 / 0.9;
  }

  .product-purchase h1 {
    font-size: clamp(3.4rem, 16vw, 5.5rem);
  }

  .product-description {
    display: block;
    margin-top: 76px;
    padding-top: 42px;
  }

  .product-description > .eyebrow {
    margin-bottom: 28px;
  }

  .cart-hero {
    padding-bottom: 46px;
    padding-top: 62px;
  }

  .cart-layout {
    padding-bottom: 80px;
    padding-top: 46px;
  }

  .cart-item {
    align-items: start;
    gap: 14px;
    grid-template-columns: 92px minmax(0, 1fr) 78px;
  }

  .cart-item > img {
    grid-row: span 2;
  }

  .cart-quantity {
    grid-column: 2;
  }

  .cart-line-price {
    grid-column: 3;
    grid-row: 1;
  }

  .cart-summary {
    padding: 30px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
