:root {
  color-scheme: dark;
  --warm-black: #14110f;
  --charcoal: #24211d;
  --ink: #2b2620;
  --muted: #bdb2a4;
  --paper: #f4efe6;
  --ivory: #fbf8f1;
  --sand: #d7c8b4;
  --stone: #8c887d;
  --cedar: #b7794d;
  --cedar-dark: #745039;
  --moss: #4f5b4c;
  --water: #82999c;
  --line: rgba(251, 248, 241, 0.14);
  --line-soft: rgba(251, 248, 241, 0.08);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(183, 121, 77, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #17130f 0%, #221d18 38%, #14110f 100%);
  background-size: 46px 46px, auto;
  color: var(--ivory);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
}

body::selection {
  background: rgba(183, 121, 77, 0.36);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  inset: 14px auto auto 14px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--warm-black);
  padding: 0.7rem 0.95rem;
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 17, 15, 0.92);
  color: var(--ivory);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  flex: 0 0 auto;
  gap: 0.45rem;
  color: inherit;
  text-decoration: none;
}

.wordmark__name {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0;
}

.wordmark__detail {
  color: rgba(251, 248, 241, 0.72);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.7rem, 2.6vw, 1.55rem);
}

.nav__link {
  position: relative;
  color: rgba(251, 248, 241, 0.82);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--sand);
  transition: transform 180ms ease;
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__link[aria-current="page"] {
  color: var(--ivory);
}

.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--warm-black);
  color: var(--ivory);
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(20, 17, 15, 0.86), rgba(20, 17, 15, 0.42) 58%, rgba(20, 17, 15, 0.12)),
    linear-gradient(0deg, rgba(20, 17, 15, 0.68), rgba(20, 17, 15, 0.06) 52%),
    url("images/cedar-outdoor-sauna-backyard-wellness-1200.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(0deg, rgba(20, 17, 15, 0.94), transparent);
}

.hero__content {
  padding-block: 4rem 4.2rem;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--cedar);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero .eyebrow,
.page-hero .eyebrow,
.showroom .eyebrow,
.delivery .eyebrow,
.trust-band .eyebrow {
  color: var(--sand);
}

h1,
h2,
h3,
h4 {
  font-family:
    "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  font-size: 3.25rem;
}

.hero__lede,
.page-hero p {
  max-width: 42rem;
  margin-top: 1.35rem;
  color: rgba(251, 248, 241, 0.84);
  font-size: 1.12rem;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(251, 248, 241, 0.72);
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--warm-black);
  padding: 0.86rem 1.2rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--sand);
  border-color: var(--sand);
}

.button--ghost {
  background: rgba(251, 248, 241, 0.06);
  color: var(--ivory);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: var(--warm-black);
}

.page-hero {
  position: relative;
  min-height: 54svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(20, 17, 15, 0.9), rgba(20, 17, 15, 0.64)),
    url("images/cedar-outdoor-sauna-backyard-wellness-1200.jpg") center / cover;
}

.page-hero__inner {
  padding-block: 5.25rem 4rem;
}

.page-hero h1 {
  max-width: 14ch;
}

.section {
  padding-block: 5.75rem;
}

.section-heading {
  max-width: 46rem;
}

.section-heading h2,
.pricing h2,
.split-heading h2,
.showroom__heading h2,
.category-section__heading h2,
.pricing-callout h2,
.editorial-panel h2 {
  color: var(--ivory);
  font-size: 2.55rem;
}

.intro,
.showroom-intro {
  background:
    linear-gradient(180deg, rgba(20, 17, 15, 0.82), rgba(36, 33, 29, 0.98)),
    var(--charcoal);
  border-top: 1px solid var(--line-soft);
}

.intro__grid,
.pricing__grid,
.delivery__grid,
.trust-band__grid {
  display: grid;
  gap: 2.25rem;
}

.intro__copy,
.trust-band__copy {
  display: grid;
  gap: 1rem;
  color: rgba(251, 248, 241, 0.72);
  font-size: 1.05rem;
}

.split-heading {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.split-heading .text-button {
  align-self: end;
}

.collection-preview,
.reasons,
.editorial {
  background:
    radial-gradient(circle at 18% 0%, rgba(183, 121, 77, 0.16), transparent 26rem),
    linear-gradient(180deg, var(--warm-black), #1c1814 52%, var(--warm-black));
}

.category-preview-grid,
.reasons-grid,
.editorial__grid {
  display: grid;
  gap: 1rem;
}

.category-preview,
.reason-card,
.editorial-panel {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(251, 248, 241, 0.075), rgba(251, 248, 241, 0.035)),
    #1a1714;
  padding: 1.25rem;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
}

.category-preview span,
.reason-card span,
.delivery-card span {
  color: var(--cedar);
  font-size: 0.74rem;
  font-weight: 800;
}

.category-preview h3,
.reason-card h3,
.delivery-card h3 {
  margin-top: 1.25rem;
  color: var(--ivory);
  font-size: 1.36rem;
}

.category-preview p,
.reason-card p,
.editorial-panel p,
.delivery-card p {
  margin-top: 0.8rem;
  color: rgba(251, 248, 241, 0.68);
}

.trust-band,
.delivery {
  background:
    linear-gradient(180deg, rgba(36, 33, 29, 0.98), rgba(20, 17, 15, 0.98)),
    var(--charcoal);
  border-block: 1px solid var(--line-soft);
}

.pricing-callout {
  background:
    linear-gradient(180deg, var(--paper), #ebe2d5);
  color: var(--ink);
}

.pricing-callout .eyebrow,
.pricing .eyebrow,
.editorial-panel--light .eyebrow {
  color: var(--cedar-dark);
}

.pricing-callout__inner {
  max-width: 760px;
}

.pricing-callout h2,
.pricing h2,
.editorial-panel--light h2 {
  color: var(--warm-black);
}

.pricing-callout p {
  max-width: 42rem;
  margin-top: 1.2rem;
  color: #675f55;
}

.pricing-callout .button {
  margin-top: 1.8rem;
  border-color: var(--warm-black);
  background: var(--warm-black);
  color: var(--ivory);
}

.pricing-callout .button:hover,
.pricing-callout .button:focus-visible {
  border-color: var(--cedar-dark);
  background: var(--cedar-dark);
}

.category-nav {
  display: grid;
  gap: 0.75rem;
  margin-top: 3rem;
}

.category-nav a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 248, 241, 0.045);
  color: rgba(251, 248, 241, 0.86);
  padding: 1rem;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.category-nav a:hover,
.category-nav a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(215, 200, 180, 0.52);
  background: rgba(251, 248, 241, 0.075);
}

.showroom {
  padding-block: 5.75rem 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(183, 121, 77, 0.18), transparent 26rem),
    linear-gradient(180deg, var(--warm-black), #1c1814 48%, var(--warm-black));
}

.showroom__heading {
  max-width: 760px;
  margin-bottom: 4.25rem;
}

.showroom__heading p {
  max-width: 41rem;
  margin-top: 1.2rem;
  color: rgba(251, 248, 241, 0.68);
}

.category-section {
  padding-block: 0 5.5rem;
}

.category-section + .category-section {
  padding-top: 1rem;
}

.category-section--last {
  padding-bottom: 6.5rem;
}

.category-section__heading {
  margin-bottom: 1.65rem;
}

.category-section__heading h2 {
  max-width: 760px;
}

.product-grid {
  display: grid;
  gap: 1rem;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(251, 248, 241, 0.075), rgba(251, 248, 241, 0.035)),
    #1a1714;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 200, 180, 0.34);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.28);
}

.product-card__media {
  position: relative;
  min-height: 265px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(183, 121, 77, 0.12), rgba(130, 153, 156, 0.1)),
    #211c18;
}

.product-card__media::before,
.product-card__media::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.product-card__media::before {
  left: 9%;
  right: 9%;
  bottom: 18%;
  height: 38%;
  border: 1px solid rgba(251, 248, 241, 0.22);
  border-radius: 999px 999px 18px 18px;
  background:
    linear-gradient(90deg, rgba(116, 80, 57, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(251, 248, 241, 0.1), rgba(183, 121, 77, 0.18));
  background-size: 18px 100%, auto;
}

.product-card__media::after {
  inset: 0;
  background:
    radial-gradient(circle at 22% 16%, rgba(251, 248, 241, 0.16), transparent 13rem),
    linear-gradient(180deg, transparent 0%, rgba(20, 17, 15, 0.42) 100%);
}

.product-card__media--luna::before {
  border-radius: 999px 999px 26px 26px;
  height: 52%;
  bottom: 13%;
}

.product-card__media--elation::before {
  left: 8%;
  right: 8%;
  bottom: 18%;
  height: 34%;
  border-radius: 999px;
}

.product-card__media--minipod::before {
  left: 19%;
  right: 19%;
  bottom: 13%;
  height: 58%;
  border-radius: 72% 72% 32px 32px;
}

.product-card__media--cabin::before {
  left: 14%;
  right: 14%;
  bottom: 14%;
  height: 48%;
  border-radius: 6px;
  clip-path: polygon(0 28%, 50% 0, 100% 28%, 100% 100%, 0 100%);
}

.product-card__media--water {
  background:
    linear-gradient(160deg, rgba(130, 153, 156, 0.22), rgba(183, 121, 77, 0.08)),
    #182020;
}

.product-card__media--water::before {
  left: 12%;
  right: 12%;
  bottom: 24%;
  height: 30%;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.12), rgba(130, 153, 156, 0.28)),
    repeating-linear-gradient(0deg, rgba(251, 248, 241, 0.08), rgba(251, 248, 241, 0.08) 1px, transparent 1px, transparent 14px);
}

.product-card__media--baltic::before {
  left: 8%;
  right: 8%;
  height: 36%;
}

.product-card__media--flow::before {
  left: 10%;
  right: 10%;
  height: 42%;
  border-radius: 18px;
}

.product-card__media--shower {
  background:
    linear-gradient(140deg, rgba(183, 121, 77, 0.14), rgba(140, 136, 125, 0.12)),
    #211c18;
}

.product-card__media--shower::before {
  left: 42%;
  right: auto;
  bottom: 15%;
  width: 22%;
  height: 64%;
  border-radius: 18px 18px 6px 6px;
}

.product-card__media--shower::after {
  background:
    linear-gradient(90deg, transparent 48%, rgba(251, 248, 241, 0.2) 48%, rgba(251, 248, 241, 0.2) 50%, transparent 50%),
    radial-gradient(circle at 52% 22%, rgba(251, 248, 241, 0.16), transparent 5rem),
    linear-gradient(180deg, transparent, rgba(20, 17, 15, 0.42));
}

.product-card__media--savannah::before {
  left: 37%;
  width: 30%;
}

.product-card__media--tub {
  min-height: 310px;
  background:
    linear-gradient(140deg, rgba(183, 121, 77, 0.18), rgba(40, 32, 25, 0.8)),
    #221b16;
}

.product-card__media--tub::before {
  left: 9%;
  right: 9%;
  bottom: 20%;
  height: 30%;
  border-radius: 999px;
}

.product-card__media--tub::after {
  background:
    radial-gradient(circle at 70% 30%, rgba(215, 200, 180, 0.22), transparent 9rem),
    radial-gradient(circle at 34% 24%, rgba(183, 121, 77, 0.22), transparent 12rem),
    linear-gradient(180deg, transparent, rgba(20, 17, 15, 0.48));
}

.product-card__body {
  display: grid;
  gap: 0.95rem;
  padding: 1.25rem;
}

.product-card__category {
  color: var(--sand);
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-card h3,
.product-card h4 {
  color: var(--ivory);
  font-size: 1.62rem;
}

.product-card h3 a,
.product-card h4 a {
  color: inherit;
  text-decoration: none;
}

.product-card p:not(.product-card__category) {
  color: rgba(251, 248, 241, 0.68);
}

.product-card__highlights {
  display: grid;
  gap: 0.45rem;
  margin: 0.2rem 0 0;
  padding: 0;
  color: rgba(251, 248, 241, 0.76);
  list-style: none;
}

.product-card__highlights li {
  position: relative;
  padding-left: 1rem;
}

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

.text-button {
  width: fit-content;
  margin-top: 0.35rem;
  color: var(--ivory);
  font-weight: 700;
  text-decoration-color: rgba(183, 121, 77, 0.62);
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.text-button:hover,
.text-button:focus-visible {
  color: var(--sand);
  text-decoration-color: currentColor;
}

.delivery__cards {
  display: grid;
  gap: 1rem;
}

.delivery-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(251, 248, 241, 0.045);
  padding: 1.25rem;
}

.editorial-panel--light {
  background:
    linear-gradient(180deg, var(--paper), #ebe2d5);
  color: var(--ink);
}

.editorial-panel--light p {
  color: #675f55;
}

.pricing {
  background:
    linear-gradient(180deg, var(--paper), #ebe2d5);
  color: var(--ink);
}

.pricing__intro p {
  max-width: 34rem;
  margin-top: 1.25rem;
  color: #675f55;
}

.contact__email {
  display: inline-block;
  margin-top: 1rem;
  color: var(--warm-black);
  font-size: 1.35rem;
  font-weight: 650;
  text-decoration-color: rgba(183, 121, 77, 0.56);
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.contact__email:hover,
.contact__email:focus-visible {
  color: var(--cedar-dark);
  text-decoration-color: currentColor;
}

.contact-notes {
  display: grid;
  gap: 0.7rem;
  margin-top: 2rem;
  color: #675f55;
}

.contact-notes p {
  margin-top: 0;
  border-left: 1px solid rgba(116, 80, 57, 0.36);
  padding-left: 0.85rem;
  font-size: 0.95rem;
}

.inquiry-form {
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(20, 17, 15, 0.12);
  border-radius: var(--radius);
  background: rgba(251, 248, 241, 0.78);
  padding: 1rem;
  box-shadow: 0 18px 56px rgba(20, 17, 15, 0.1);
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 750;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(20, 17, 15, 0.18);
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--ink);
  padding: 0.86rem 0.95rem;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(183, 121, 77, 0.48);
  outline-offset: 2px;
  border-color: rgba(183, 121, 77, 0.6);
}

.form-button {
  width: 100%;
  border-color: var(--warm-black);
  background: var(--warm-black);
  color: var(--ivory);
}

.form-button:hover,
.form-button:focus-visible {
  background: var(--cedar-dark);
  border-color: var(--cedar-dark);
  color: var(--ivory);
}

.form-status {
  min-height: 1.5rem;
  color: #675f55;
  font-size: 0.9rem;
}

.disclosure {
  background: var(--warm-black);
  border-top: 1px solid var(--line-soft);
}

.disclosure__inner {
  padding-block: 2.3rem;
}

.disclosure p {
  max-width: 780px;
  color: rgba(251, 248, 241, 0.58);
  font-size: 0.92rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  color: rgba(251, 248, 241, 0.62);
  font-size: 0.82rem;
}

.breadcrumbs a {
  color: rgba(251, 248, 241, 0.78);
  text-decoration-color: rgba(183, 121, 77, 0.52);
}

.journal-hero {
  min-height: 48svh;
}

.journal-index {
  background:
    radial-gradient(circle at 16% 0%, rgba(183, 121, 77, 0.15), transparent 27rem),
    linear-gradient(180deg, var(--warm-black), #1c1814 52%, var(--warm-black));
}

.journal-index__heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.journal-index__heading h2 {
  color: var(--ivory);
  font-size: 2.45rem;
}

.journal-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.journal-categories a {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(251, 248, 241, 0.045);
  color: rgba(251, 248, 241, 0.76);
  padding: 0.62rem 0.82rem;
  font-size: 0.86rem;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.journal-categories a:hover,
.journal-categories a:focus-visible,
.journal-categories a[aria-current="page"] {
  border-color: rgba(215, 200, 180, 0.44);
  background: rgba(251, 248, 241, 0.08);
  color: var(--ivory);
}

.journal-grid {
  display: grid;
  gap: 1rem;
}

.journal-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(251, 248, 241, 0.075), rgba(251, 248, 241, 0.035)),
    #1a1714;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
}

.journal-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #211c18;
}

.journal-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.78);
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.journal-card:hover .journal-card__image img {
  filter: saturate(0.9) brightness(0.86);
  transform: scale(1.025);
}

.journal-card__body {
  display: grid;
  gap: 0.9rem;
  padding: 1.25rem;
}

.journal-card__category {
  width: fit-content;
  color: var(--sand);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.journal-card h2,
.journal-card h3 {
  color: var(--ivory);
  font-size: 1.45rem;
}

.journal-card h2 a,
.journal-card h3 a {
  color: inherit;
  text-decoration: none;
}

.journal-card p {
  color: rgba(251, 248, 241, 0.66);
}

.journal-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.3rem;
}

.journal-card__footer span,
.article-meta {
  color: rgba(251, 248, 241, 0.54);
  font-size: 0.88rem;
}

.journal-empty {
  color: rgba(251, 248, 241, 0.68);
}

.article-hero {
  background:
    linear-gradient(180deg, rgba(20, 17, 15, 0.96), rgba(36, 33, 29, 0.98)),
    var(--warm-black);
  border-bottom: 1px solid var(--line-soft);
}

.article-hero__inner {
  padding-block: 4.5rem 2rem;
}

.article-hero h1 {
  max-width: 12.5ch;
}

.article-deck {
  max-width: 48rem;
  margin-top: 1.2rem;
  color: rgba(251, 248, 241, 0.78);
  font-size: 1.1rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.5rem;
}

.article-hero__image {
  margin: 0;
  max-height: 620px;
  overflow: hidden;
}

.article-hero__image img {
  width: 100%;
  height: clamp(340px, 48vw, 620px);
  object-fit: cover;
  filter: saturate(0.78) brightness(0.72);
}

.article-layout {
  display: grid;
  padding-block: 4.75rem;
}

.article-content {
  max-width: 760px;
  margin-inline: auto;
}

.article-intro {
  color: var(--ivory);
  font-size: 1.35rem;
  line-height: 1.55;
}

.article-section {
  display: grid;
  gap: 1rem;
  margin-top: 3.5rem;
}

.article-section h2 {
  color: var(--ivory);
  font-size: 2.2rem;
}

.article-section p {
  color: rgba(251, 248, 241, 0.72);
  font-size: 1.04rem;
}

.pullquote {
  margin: 1rem 0;
  border-left: 2px solid var(--cedar);
  color: var(--sand);
  padding: 0.4rem 0 0.4rem 1.25rem;
  font-family:
    "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.65rem;
  line-height: 1.18;
}

.article-image {
  margin: 1.3rem 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #211c18;
}

.article-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.78);
}

.article-products,
.related-articles,
.author-section {
  background:
    linear-gradient(180deg, rgba(36, 33, 29, 0.98), rgba(20, 17, 15, 0.98)),
    var(--charcoal);
  border-top: 1px solid var(--line-soft);
}

.related-products-grid {
  display: grid;
  gap: 1rem;
}

.related-product,
.author-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(251, 248, 241, 0.045);
  padding: 1.25rem;
  text-decoration: none;
}

.related-product {
  display: grid;
  gap: 0.45rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.related-product:hover,
.related-product:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(215, 200, 180, 0.38);
  background: rgba(251, 248, 241, 0.07);
}

.related-product span {
  color: var(--cedar);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.related-product strong {
  color: var(--ivory);
  font-size: 1.15rem;
}

.product-detail {
  background:
    radial-gradient(circle at 82% 0%, rgba(130, 153, 156, 0.12), transparent 26rem),
    linear-gradient(180deg, var(--warm-black), #1c1814 52%, var(--warm-black));
}

.product-detail__grid,
.search-panel__grid {
  display: grid;
  gap: 2rem;
}

.product-detail__copy {
  align-content: start;
}

.product-detail__copy h2,
.product-faq h2,
.search-panel h2,
.not-found h1 {
  color: var(--ivory);
  font-size: 2.45rem;
}

.product-detail__copy p,
.product-note,
.faq-list p,
.search-panel p,
.search-result p,
.not-found p {
  color: rgba(251, 248, 241, 0.7);
}

.product-note {
  border-left: 1px solid rgba(183, 121, 77, 0.42);
  padding-left: 0.9rem;
  font-size: 0.95rem;
}

.product-faq,
.search-panel,
.not-found {
  background:
    linear-gradient(180deg, rgba(36, 33, 29, 0.98), rgba(20, 17, 15, 0.98)),
    var(--charcoal);
  border-top: 1px solid var(--line-soft);
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-list details {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(251, 248, 241, 0.045);
  padding: 1rem 1.1rem;
}

.faq-list summary {
  color: var(--ivory);
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin-top: 0.8rem;
}

.search-form {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.search-form label {
  color: var(--sand);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.search-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 248, 241, 0.08);
  color: var(--ivory);
  padding: 0.95rem 1rem;
}

.search-results {
  display: grid;
  gap: 1rem;
}

.search-result {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(251, 248, 241, 0.045);
  padding: 1.1rem;
}

.search-result h2 {
  color: var(--ivory);
  font-size: 1.35rem;
}

.search-result a {
  color: inherit;
  text-decoration: none;
}

.search-result__type {
  color: var(--cedar);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.author-card {
  max-width: 760px;
}

.author-card h2 {
  color: var(--ivory);
  font-size: 2.1rem;
}

.author-card p {
  max-width: 38rem;
  margin-top: 1rem;
  color: rgba(251, 248, 241, 0.68);
}

.site-footer {
  background: var(--warm-black);
  color: var(--ivory);
}

.footer__inner {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  border-top: 1px solid var(--line-soft);
}

.wordmark--footer .wordmark__detail {
  color: rgba(251, 248, 241, 0.62);
}

.site-footer p {
  color: rgba(251, 248, 241, 0.62);
  font-size: 0.92rem;
}

:focus-visible {
  outline: 2px solid var(--cedar);
  outline-offset: 4px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 680px) {
  .container {
    width: min(100% - 64px, var(--container));
  }

  h1 {
    font-size: 4.6rem;
  }

  .hero__lede,
  .page-hero p {
    font-size: 1.22rem;
  }

  .section {
    padding-block: 7rem;
  }

  .section-heading h2,
  .pricing h2,
  .split-heading h2,
  .showroom__heading h2,
  .category-section__heading h2,
  .pricing-callout h2,
  .editorial-panel h2,
  .journal-index__heading h2 {
    font-size: 3.45rem;
  }

  .split-heading {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

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

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

  .category-preview-grid,
  .product-grid,
  .editorial__grid,
  .journal-grid,
  .related-products-grid,
  .product-detail__grid,
  .search-panel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .product-card--wide,
  .reason-card--wide {
    grid-column: span 2;
  }

  .product-card--wide {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
  }

  .product-card--wide .product-card__media {
    min-height: 100%;
  }

  .inquiry-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1.25rem;
  }

  .form-field--full,
  .form-button,
  .form-status {
    grid-column: 1 / -1;
  }

  .footer__inner {
    min-height: 96px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 960px) {
  .hero {
    min-height: 82svh;
  }

  .hero__content {
    padding-block: 5.6rem 5rem;
  }

  h1 {
    font-size: 5.7rem;
  }

  .intro__grid,
  .pricing__grid,
  .delivery__grid,
  .trust-band__grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .intro__copy,
  .pricing__intro,
  .trust-band__copy {
    padding-top: 2.2rem;
  }

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

  .journal-card:nth-child(1),
  .journal-card:nth-child(5) {
    grid-row: span 2;
  }

  .journal-card:nth-child(1) .journal-card__image,
  .journal-card:nth-child(5) .journal-card__image {
    aspect-ratio: 4 / 4.75;
  }

  .journal-grid--related .journal-card {
    grid-row: auto;
  }

  .journal-grid--related .journal-card .journal-card__image {
    aspect-ratio: 4 / 3;
  }

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

@media (max-width: 720px) {
  .nav {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding-block: 0.9rem;
  }

  .nav__links {
    width: 100%;
    justify-content: space-between;
    gap: 0.65rem;
    overflow-x: auto;
    padding-bottom: 0.1rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .wordmark {
    gap: 0.35rem;
  }

  .wordmark__detail {
    font-size: 0.72rem;
  }

  .nav__link {
    flex: 0 0 auto;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 76svh;
  }

  .hero__image,
  .page-hero {
    background-position: 58% center;
  }

  h1 {
    max-width: 12ch;
    font-size: 2.75rem;
  }

  .page-hero h1 {
    max-width: 13ch;
  }

  .hero__content,
  .page-hero__inner {
    padding-block: 3.2rem 3.1rem;
  }

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

  .button {
    width: 100%;
  }

  .hero__lede,
  .page-hero p,
  .intro__copy {
    font-size: 1rem;
  }

  .section-heading h2,
  .pricing h2,
  .split-heading h2,
  .showroom__heading h2,
  .category-section__heading h2,
  .pricing-callout h2,
  .editorial-panel h2,
  .journal-index__heading h2 {
    font-size: 2.25rem;
  }

  .article-hero h1 {
    max-width: 12ch;
    font-size: 2.55rem;
  }

  .article-deck,
  .article-intro {
    font-size: 1rem;
  }

  .article-hero__inner,
  .article-layout {
    padding-block: 3.25rem;
  }

  .article-section {
    margin-top: 2.6rem;
  }

  .article-section h2 {
    font-size: 1.8rem;
  }

  .pullquote {
    font-size: 1.3rem;
  }

  .section,
  .showroom {
    padding-block: 4.75rem;
  }

  .category-section,
  .category-section--last {
    padding-bottom: 4.75rem;
  }

  .product-card__media {
    min-height: 220px;
  }

  .contact__email {
    font-size: 1.12rem;
  }
}
