:root {
  --fw-black: #070807;
  --fw-ink: #14100d;
  --fw-ivory: #f2eadf;
  --fw-ivory-soft: #e8ddcf;
  --fw-red: #991818;
  --fw-red-deep: #76110f;
  --fw-gold: #c89945;
  --fw-muted: #65584f;
  --fw-line: rgba(70, 42, 24, 0.16);
  --fw-line-dark: rgba(238, 204, 139, 0.18);
  --fw-container: 1220px;
  --fw-container-wide: 1440px;
  --fw-section-space: 42px;
}

html {
  background: var(--fw-ivory);
}

body {
  background: var(--fw-ivory);
  color: var(--fw-ink);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

.fw-container {
  width: min(100% - 48px, var(--fw-container));
}

.fw-container-wide {
  width: min(100% - 48px, var(--fw-container-wide));
}

.fw-section {
  padding-block: var(--fw-section-space);
}

.fw-kicker {
  color: var(--fw-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.fw-kicker::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

.fw-btn {
  min-height: 38px;
  padding: 9px 18px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
}

.fw-btn svg {
  width: 14px;
  height: 14px;
}

.fw-btn--primary {
  border-color: var(--fw-red);
  background: linear-gradient(180deg, #b42121, var(--fw-red));
}

.fw-btn--secondary {
  border-color: rgba(201, 153, 69, 0.48);
  color: inherit;
}

.fw-btn--text {
  color: var(--fw-red);
  font-size: 12px;
  letter-spacing: 0;
}

.fw-card-link,
.fw-text-link {
  gap: 7px;
  color: var(--fw-red);
  font-size: 12px;
  font-weight: 800;
}

.fw-card-link svg,
.fw-text-link svg {
  width: 12px;
  height: 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(184, 132, 59, 0.42);
  background: #050606;
  box-shadow: none;
}

.site-header .fw-container-wide {
  width: min(100% - 48px, var(--fw-container));
  max-width: var(--fw-container);
  margin-inline: auto;
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(255px, 0.9fr) minmax(360px, 1.25fr) minmax(132px, 0.9fr);
  min-height: 52px;
  align-items: center;
  padding-right: 0;
  padding-left: 0;
}

.site-header__ornament {
  display: none;
}

.site-header__logo {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  justify-self: start;
  min-width: 0;
  color: var(--fw-gold);
}

.site-header__mark {
  position: relative;
  display: block;
  width: 74px;
  height: 52px;
  margin-left: 0;
  overflow: hidden;
  background:
    linear-gradient(45deg, transparent 42%, rgba(201, 153, 69, 0.9) 43% 48%, transparent 49%),
    linear-gradient(-45deg, transparent 42%, rgba(153, 24, 24, 0.95) 43% 48%, transparent 49%),
    radial-gradient(circle at 20% 24%, var(--fw-red) 0 4px, transparent 5px),
    #140a07;
  background-size: 22px 22px, 22px 22px, 28px 28px, auto;
  border-right: 1px solid rgba(201, 153, 69, 0.25);
}

.site-header__brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header__brand::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border: 1px solid var(--fw-red);
  transform: rotate(45deg) translateY(-1px);
}

.site-header__logo img {
  display: none;
}

.site-header__nav {
  gap: clamp(24px, 2.5vw, 40px);
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-header__nav a {
  padding-block: 19px 17px;
  border-bottom: 2px solid transparent;
  color: rgba(251, 247, 240, 0.84);
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible,
.site-header__nav a[aria-current="page"] {
  border-color: var(--fw-red);
  color: var(--fw-gold);
}

.site-header__actions {
  justify-content: flex-end;
  gap: 7px;
}

.fw-icon-btn,
.site-header__toggle {
  width: 30px;
  height: 30px;
  color: var(--fw-ivory);
}

.fw-icon-btn svg,
.site-header__toggle svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.55;
}

.site-header__logo:focus-visible,
.site-header__nav a:focus-visible,
.fw-icon-btn:focus-visible {
  outline: 1px solid rgba(201, 153, 69, 0.8);
  outline-offset: 4px;
}

.site-header__mobile-nav {
  background: #070807;
}

/* Footer */
.site-footer {
  position: relative;
  background: #080b0a;
  color: var(--fw-ivory);
}

.site-footer__ornament {
  order: 2;
  height: 24px;
  border: 0;
  background:
    linear-gradient(45deg, transparent 40%, rgba(201, 153, 69, 0.9) 41% 45%, transparent 46%),
    linear-gradient(-45deg, transparent 40%, rgba(153, 24, 24, 0.95) 41% 45%, transparent 46%),
    #180a06;
  background-size: 24px 24px;
}

.site-footer__inner {
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 2.1fr) minmax(260px, 0.9fr);
  gap: 44px;
  padding-block: 44px 38px;
}

.site-footer__brand h2,
.site-footer__newsletter h2 {
  color: var(--fw-gold);
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__brand p,
.site-footer__brand a,
.site-footer__newsletter p,
.site-footer__group a,
.site-footer__bottom {
  color: rgba(251, 247, 240, 0.72);
  font-size: 12px;
}

.site-footer__columns {
  gap: 34px;
}

.site-footer__group summary {
  margin-bottom: 10px;
  color: var(--fw-gold);
  font-size: 12px;
}

.site-footer__group div {
  gap: 5px;
}

.site-footer__newsletter input {
  height: 38px;
  border-color: rgba(201, 153, 69, 0.42);
  font-size: 12px;
}

.site-footer__newsletter button {
  height: 38px;
  border-color: rgba(201, 153, 69, 0.42);
}

.site-footer__bottom {
  padding-block: 18px 24px;
}

/* Shared section heads */
.fw-section-head {
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-color: var(--fw-line);
}

.fw-section-head h2 {
  font-family: Montserrat, Arial, sans-serif;
  color: var(--fw-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.fw-section-head p {
  display: none;
}

.fw-section-head .fw-text-link span {
  font-size: 11px;
}

/* Home */
.home-hero {
  position: relative;
  min-height: clamp(250px, 15vw, 286px);
  overflow: hidden;
  background: #070807;
}

.home-hero__inner {
  position: relative;
  width: min(100% - 48px, var(--fw-container));
  height: clamp(250px, 15vw, 286px);
  max-width: var(--fw-container);
  margin-inline: auto;
  display: block;
}

.home-hero__media {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.home-hero__media::after {
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.98) 0%, rgba(5, 6, 6, 0.9) 24%, rgba(5, 6, 6, 0.38) 48%, rgba(5, 6, 6, 0.12) 100%),
    radial-gradient(circle at 72% 45%, rgba(153, 24, 24, 0.04), rgba(5, 6, 6, 0.34) 78%),
    linear-gradient(180deg, rgba(5, 6, 6, 0.06), rgba(5, 6, 6, 0.26));
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--fw-hero-position, 50% 50%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin-inline: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.home-hero h1 {
  max-width: 410px;
  color: #fff7ee;
  font-size: clamp(42px, 3.25vw, 54px);
  line-height: 1.08;
  font-weight: 600;
}

.home-hero p {
  max-width: 360px;
  margin-top: 16px;
  color: rgba(251, 247, 240, 0.82);
  font-size: 13px;
  line-height: 1.58;
}

.home-hero .fw-actions {
  gap: 14px;
  margin-top: 20px;
}

.home-hero .fw-btn {
  min-width: 136px;
  min-height: 36px;
  padding: 8px 18px;
  border-radius: 2px;
  font-size: 11px;
}

.home-hero .fw-btn--primary {
  border-color: #a9221f;
  background: linear-gradient(180deg, #ad221f, #8f1614);
}

.home-hero .fw-btn--primary:hover,
.home-hero .fw-btn--primary:focus-visible {
  background: linear-gradient(180deg, #bd2a26, #991a18);
}

.home-hero .fw-btn--secondary {
  border-color: rgba(201, 153, 69, 0.58);
  background: rgba(5, 6, 6, 0.34);
  color: rgba(251, 247, 240, 0.94);
}

.home-hero .fw-btn--secondary:hover,
.home-hero .fw-btn--secondary:focus-visible {
  border-color: rgba(214, 169, 88, 0.86);
  background: rgba(20, 12, 8, 0.46);
  color: #fff7ee;
}

.featured-piece {
  padding-block: 26px 22px;
  background: var(--fw-ivory);
}

.featured-piece__inner {
  grid-template-columns: minmax(0, 48%) minmax(360px, 1fr);
  gap: clamp(36px, 4vw, 58px);
  align-items: center;
}

.featured-piece__media img {
  aspect-ratio: 2.38;
  border-radius: 3px;
  object-position: 50% 56%;
}

.featured-piece__content h2 {
  margin-top: 12px;
  font-size: clamp(32px, 2.7vw, 40px);
}

.featured-piece__content p:not(.fw-kicker) {
  max-width: 430px;
  margin-top: 14px;
  color: var(--fw-muted);
  font-size: 14px;
}

.featured-piece__content .fw-actions {
  margin-top: 26px;
}

.story-shelf,
.shop-feeling,
.stories-preview {
  background: var(--fw-ivory);
}

.story-shelf {
  padding-block: 18px 22px;
}

.story-shelf__track,
.story-shelf__grid {
  gap: 12px;
}

.shelf-card {
  min-height: 92px;
  border: 1px solid rgba(201, 153, 69, 0.2);
  border-radius: 3px;
}

.shelf-card img {
  min-height: 92px;
}

.shelf-card span {
  inset: auto 12px 10px;
}

.shelf-card strong {
  font-size: 17px;
}

.shelf-card em {
  font-size: 11px;
}

.shop-feeling {
  padding-block: 18px 20px;
}

.shop-feeling__grid {
  gap: 0;
  border-bottom: 1px solid var(--fw-line);
}

.feeling-card {
  min-height: 74px;
  padding: 12px 24px;
  border: 0;
  border-right: 1px solid var(--fw-line);
  border-radius: 0;
  background: transparent;
  grid-template-columns: 42px 1fr;
  gap: 4px 12px;
}

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

.feeling-card__icon {
  grid-row: span 2;
  width: 32px;
  height: 32px;
  color: var(--fw-red);
}

.feeling-card strong {
  font-size: 15px;
}

.feeling-card em {
  max-width: 160px;
  font-size: 11px;
  line-height: 1.35;
}

.stories-preview {
  padding-block: 18px 32px;
}

.stories-preview__grid {
  gap: 18px;
}

.gift-guide-banner {
  padding-block: 0;
  background: var(--fw-ivory);
}

.gift-guide-banner__inner {
  width: min(100% - 48px, var(--fw-container));
  grid-template-columns: minmax(0, 1fr) 300px;
  min-height: 116px;
  border-radius: 4px 4px 0 0;
  background:
    linear-gradient(90deg, rgba(118, 17, 15, 0.98), rgba(153, 24, 24, 0.96)),
    #8a1714;
}

.gift-guide-banner__content {
  padding: 23px 36px;
}

.gift-guide-banner h2 {
  color: #fff7ee;
  font-size: 30px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gift-guide-banner p {
  margin-top: 4px;
  font-size: 13px;
}

.gift-guide-banner .fw-btn {
  margin-top: 12px;
  color: #fff7ee;
}

.gift-guide-banner__media img {
  height: 116px;
}

.gift-guide-hero__inner {
  width: min(100% - 48px, var(--fw-container));
  max-width: var(--fw-container);
  margin-inline: auto;
}

/* Archive heroes */
.page-hero--image {
  position: relative;
  min-height: 332px;
  padding: 0;
  overflow: hidden;
  background: #070807;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.page-hero--image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.88) 0%, rgba(7, 8, 7, 0.62) 25%, rgba(7, 8, 7, 0.12) 58%, rgba(7, 8, 7, 0.2) 100%),
    linear-gradient(180deg, rgba(7, 8, 7, 0.18), rgba(7, 8, 7, 0.36));
}

.page-hero--image .page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100% - 48px, var(--fw-container));
  max-width: var(--fw-container);
  margin-inline: auto;
  min-height: 332px;
  align-items: center;
}

.page-hero--image .page-hero__content {
  width: min(470px, 52vw);
}

.page-hero--image h1 {
  color: #fff7ee;
  font-size: clamp(46px, 4.4vw, 66px);
  line-height: 0.98;
}

.page-hero--image .page-hero__content p:not(.fw-kicker) {
  max-width: 390px;
  margin-top: 15px;
  color: rgba(251, 247, 240, 0.88);
  font-size: 14px;
  line-height: 1.55;
}

.page-hero--image .fw-kicker {
  display: none;
}

/* Object archive */
.collection-grid {
  padding-block: 26px 0;
  background: #07100f;
  color: var(--fw-ivory);
}

.filter-chips {
  gap: 12px;
  margin-bottom: 21px;
}

.filter-chip {
  min-width: 82px;
  min-height: 34px;
  padding: 7px 14px;
  border-color: rgba(201, 153, 69, 0.42);
  border-radius: 3px;
  color: inherit;
  font-size: 12px;
}

.filter-chip.is-active {
  border-color: var(--fw-red);
  background: var(--fw-red);
}

.collection-grid__meta {
  margin-bottom: 14px;
  color: rgba(251, 247, 240, 0.78);
  font-size: 12px;
}

.collection-grid__tools {
  gap: 12px;
}

.collection-grid__tools label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.collection-grid__tools select,
.collection-grid__tools button {
  height: 32px;
  border-color: rgba(201, 153, 69, 0.42);
  border-radius: 3px;
  color: var(--fw-ivory);
  font-size: 12px;
}

.collection-grid__items {
  gap: 14px;
}

.card-piece {
  border-color: rgba(201, 153, 69, 0.22);
  border-radius: 3px;
  background: #111816;
}

.card-piece__media img,
.fw-card-media img {
  aspect-ratio: 1.42;
}

.card-piece__body {
  gap: 7px;
  padding: 14px;
}

.card-piece h3 {
  font-size: 22px;
}

.card-piece p {
  min-height: 43px;
  font-size: 12px;
  line-height: 1.45;
}

.card-piece__price {
  color: #fff7ee;
  font-size: 12px;
}

.collection-gift-strip {
  width: 100%;
  max-width: none;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  gap: 40px;
  margin-top: 28px;
  padding: 19px max(24px, calc((100vw - var(--fw-container)) / 2));
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, #76110f, #8f1816);
}

.collection-gift-strip span {
  display: none;
}

.collection-gift-strip p {
  color: #fff4e6;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
}

/* Story archive */
.stories-grid {
  padding-block: 22px 34px;
  background: var(--fw-ivory);
}

.stories-grid .filter-chips {
  justify-content: center;
  margin-bottom: 30px;
}

.stories-grid .filter-chip {
  color: var(--fw-ink);
  border-color: rgba(70, 42, 24, 0.16);
  background: #f8f1e7;
}

.stories-grid .filter-chip.is-active {
  color: #fff;
  background: var(--fw-red);
}

.stories-grid__items {
  gap: 24px;
}

.card-story {
  border-color: rgba(70, 42, 24, 0.14);
  border-radius: 3px;
  background: #f8f1e7;
  box-shadow: 0 1px 0 rgba(70, 42, 24, 0.04);
}

.card-story__media img {
  aspect-ratio: 1.9;
}

.card-story__body {
  gap: 7px;
  padding: 15px 18px 16px;
}

.card-story h3 {
  font-size: 21px;
}

.card-story p {
  color: #5f5148;
  font-size: 12px;
  line-height: 1.42;
}

.story-meta {
  gap: 9px;
  font-size: 11px;
}

/* Story detail */
.story-detail {
  background: var(--fw-ivory);
}

.story-detail__hero img {
  height: 440px;
  object-position: center 52%;
}

.story-detail__article {
  width: min(100% - 72px, 1010px);
  padding-block: 28px 0;
}

.story-detail__heading {
  max-width: 760px;
  margin-inline: auto;
}

.story-detail__heading h1 {
  margin-top: 8px;
  font-size: clamp(44px, 4.6vw, 66px);
}

.story-detail__heading > p {
  max-width: 680px;
  margin-top: 16px;
  color: var(--fw-muted);
  font-size: 14px;
}

.story-detail__heading .story-meta {
  justify-content: center;
  margin-top: 12px;
  color: #6d6259;
}

.story-detail__intro,
.story-detail__craft {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  margin-top: 28px;
}

.story-detail__craft {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  margin-top: 28px;
}

.story-detail__body {
  gap: 12px;
  margin: 0;
}

.story-detail__body h2 {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.55;
  text-transform: uppercase;
}

.story-detail__body p {
  color: #4f463f;
  font-size: 13px;
  line-height: 1.72;
}

.story-detail__fallback-content {
  display: none;
}

.story-detail__inline-image img {
  aspect-ratio: 1.82;
  border-radius: 2px;
}

.story-detail blockquote {
  margin: 34px calc(50% - 50vw);
  padding: 28px 24px;
  border: 0;
  background:
    linear-gradient(45deg, rgba(201, 153, 69, 0.05) 25%, transparent 25% 50%, rgba(201, 153, 69, 0.05) 50% 75%, transparent 75%),
    #f3eadc;
  background-size: 18px 18px;
  color: #4b3326;
  font-size: 25px;
}

.story-detail blockquote::before {
  content: '"';
  display: block;
  color: var(--fw-red);
  font-size: 44px;
  line-height: 0.6;
}

.pieces-in-story {
  padding-block: 30px 24px;
}

.pieces-in-story__head {
  margin-bottom: 13px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--fw-line);
}

.pieces-in-story h2 {
  font-family: Montserrat, Arial, sans-serif;
  color: var(--fw-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pieces-in-story__grid {
  gap: 12px;
}

.pieces-in-story .card-piece {
  display: grid;
  grid-template-columns: 45% 1fr;
  background: transparent;
  color: var(--fw-ink);
  border: 0;
}

.pieces-in-story .card-piece__media img {
  aspect-ratio: 1.55;
}

.pieces-in-story .card-piece__body {
  padding: 0 0 0 10px;
}

.pieces-in-story .card-piece h3 {
  font-size: 15px;
}

.pieces-in-story .card-piece p,
.pieces-in-story .fw-card-link {
  display: none;
}

.pieces-in-story .card-piece__price {
  color: var(--fw-ink);
}

.story-detail__cta {
  justify-content: center;
  padding: 18px 24px;
  background: linear-gradient(90deg, #76110f, #991818);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Product detail */
.product-detail {
  background: #07100f;
  color: var(--fw-ivory);
}

.product-detail__breadcrumb {
  padding-block: 18px;
  color: rgba(251, 247, 240, 0.68);
  font-size: 11px;
}

.product-detail__top {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.68fr);
  gap: 40px;
  padding-bottom: 28px;
}

.product-gallery__main {
  position: relative;
}

.product-gallery__main img {
  aspect-ratio: 1.48;
  border-color: rgba(201, 153, 69, 0.3);
}

.product-gallery__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(201, 153, 69, 0.75);
  border-radius: 50%;
  background: rgba(7, 8, 7, 0.72);
  color: var(--fw-gold);
  font-size: 26px;
  line-height: 1;
  transform: translateY(-50%);
}

.product-gallery__arrow--prev {
  left: -18px;
}

.product-gallery__arrow--next {
  right: -18px;
}

.product-gallery__thumbs {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.product-gallery__thumbs img {
  aspect-ratio: 1.38;
}

.product-info {
  padding-top: 12px;
}

.product-info h1 {
  margin-top: 12px;
  font-size: clamp(42px, 4.4vw, 58px);
}

.product-info__summary {
  max-width: 360px;
  margin-top: 12px;
  font-size: 14px;
}

.product-info__price {
  margin-block: 20px;
  font-size: 27px;
}

.product-highlights {
  grid-template-columns: 1fr;
  gap: 7px;
  margin-bottom: 22px;
}

.product-highlights li {
  font-size: 12px;
}

.product-highlights li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border: 1px solid var(--fw-gold);
  border-radius: 50%;
}

.product-actions {
  gap: 10px;
  margin-bottom: 20px;
}

.product-actions .fw-btn,
.product-actions__cart .single_add_to_cart_button {
  min-height: 44px;
}

.trust-row {
  border: 0;
  gap: 0;
}

.trust-row span {
  min-height: 52px;
  padding: 7px 4px;
  background: transparent;
  color: rgba(251, 247, 240, 0.78);
  font-size: 10px;
}

.trust-row svg {
  width: 18px;
  height: 18px;
}

.product-story {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding-bottom: 26px;
  border-top: 1px solid rgba(201, 153, 69, 0.2);
}

.product-story details {
  padding: 22px 26px;
  border-right: 1px solid rgba(201, 153, 69, 0.2);
  border-bottom: 1px solid rgba(201, 153, 69, 0.2);
}

.product-story details:nth-child(2n) {
  border-right: 0;
}

  .product-story summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: var(--fw-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  list-style: none;
  text-transform: uppercase;
}

  .product-story summary::-webkit-details-marker {
    display: none;
  }

  .product-story summary::after {
    content: "+";
    color: var(--fw-gold);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
  }

  .product-story details[open] summary::after {
    content: "-";
  }

.product-story details > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.72fr);
  gap: 22px;
  margin-top: 14px;
}

.product-story details:nth-child(2) > div {
  grid-template-columns: 1fr;
}

.product-story p,
.product-story li {
  color: rgba(251, 247, 240, 0.74);
  font-size: 12px;
  line-height: 1.62;
}

.product-story img {
  width: 100%;
  aspect-ratio: 1.62;
  object-fit: cover;
}

.product-material-icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.product-material-icons li {
  display: grid;
  gap: 5px;
  justify-items: center;
  color: rgba(251, 247, 240, 0.78);
  text-align: center;
}

.related-pieces {
  padding-block: 18px 34px;
  border-top: 0;
}

.related-pieces__grid {
  gap: 18px;
}

.product-signoff {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 9vw, 180px);
  min-height: 72px;
  padding: 18px 24px;
  background: linear-gradient(90deg, #76110f, #991818);
  color: #fff4e6;
  text-align: center;
}

.product-signoff strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.product-signoff svg {
  color: var(--fw-gold);
  width: 28px;
  height: 28px;
}

/* About and contact */
.about-hero {
  position: relative;
  min-height: 330px;
  padding: 0;
  overflow: hidden;
  background: #070807;
  color: var(--fw-ivory);
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.about-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 8, 7, 0.92), rgba(7, 8, 7, 0.58) 32%, rgba(7, 8, 7, 0.12) 78%);
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100% - 48px, var(--fw-container));
  max-width: var(--fw-container);
  margin-inline: auto;
  min-height: 330px;
  align-items: center;
}

.about-hero__content {
  max-width: 430px;
}

.about-hero h1 {
  font-size: clamp(44px, 4.6vw, 64px);
}

.about-hero p:not(.fw-kicker) {
  margin-top: 18px;
  color: rgba(251, 247, 240, 0.86);
  font-size: 14px;
}

.about-content {
  padding-block: 24px;
}

.about-content__inner {
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  gap: 42px;
}

.about-content__copy h2,
.contact-details h2 {
  margin-top: 10px;
  font-size: clamp(32px, 3.3vw, 48px);
}

.about-content__copy p,
.contact-details p {
  font-size: 13px;
  line-height: 1.68;
}

.about-content__copy .fw-card-link {
  margin-top: 18px;
}

.about-collage {
  grid-template-columns: 1.35fr 0.65fr;
  gap: 10px;
}

.about-collage img {
  border-radius: 2px;
}

.about-values {
  background: var(--fw-ivory);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--fw-line);
  border-bottom: 1px solid var(--fw-line);
}

.about-values article {
  min-height: 92px;
  padding: 18px 22px;
  border: 0;
  border-right: 1px solid var(--fw-line);
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.about-values article:last-child {
  border-right: 0;
}

.about-values article span {
  margin-inline: auto;
}

.about-values h3 {
  font-size: 16px;
}

.about-values p {
  font-size: 11px;
}

.contact-content {
  padding-block: 28px 26px;
  background: var(--fw-ivory);
}

.contact-content__inner {
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  gap: 42px;
}

.contact-detail-list {
  gap: 0;
  margin-top: 20px;
}

.contact-detail-list a,
.contact-detail-list > span {
  align-items: start;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--fw-line);
  background: transparent;
  color: var(--fw-ink);
}

.contact-detail-list svg {
  color: var(--fw-red);
}

.fw-contact-form {
  gap: 13px 16px;
  padding: 0;
  border: 0;
  background: transparent;
}

.fw-contact-form label {
  gap: 6px;
  color: #5d514a;
  font-size: 10px;
}

.fw-contact-form input,
.fw-contact-form textarea,
.fw-contact-form select {
  width: 100%;
  min-height: 38px;
  padding: 9px 11px;
  border: 1px solid rgba(70, 42, 24, 0.16);
  border-radius: 2px;
  background: #f8f1e7;
  color: var(--fw-ink);
  font-size: 12px;
}

.fw-contact-form textarea {
  min-height: 118px;
}

.fw-contact-form button {
  min-height: 38px;
}

.contact-promise {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  padding: 18px 24px;
  background: #f1e8da;
}

.contact-promise span {
  display: flex;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid var(--fw-line);
  color: #5d514a;
  font-size: 12px;
  text-align: center;
}

.contact-promise span:last-child {
  border-right: 0;
}

.contact-promise svg {
  flex: 0 0 auto;
  color: var(--fw-red);
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .fw-container,
  .fw-container-wide {
    width: min(100% - 40px, 100%);
  }

  .site-header .fw-container-wide,
  .home-hero__inner,
  .page-hero--image .page-hero__inner,
  .about-hero__inner,
  .gift-guide-hero__inner {
    width: min(100% - 40px, 100%);
    max-width: none;
  }

  .site-header .fw-container-wide {
    width: 100%;
  }

  .site-header__inner {
    grid-template-columns: 46px minmax(0, 1fr) 78px;
    min-height: 44px;
    padding-inline: 12px 10px;
  }

  .site-header__logo {
    grid-column: 2;
    justify-self: center;
    gap: 0;
  }

  .site-header__mark {
    display: none;
  }

  .site-header__brand {
    font-size: 13px;
    letter-spacing: 0.18em;
  }

  .site-header__actions {
    grid-column: 3;
    justify-self: end;
    gap: 2px;
  }

  .site-header__actions .fw-account-link {
    display: none;
  }

  .site-header__actions .fw-icon-btn {
    width: 28px;
    height: 30px;
  }

  .site-header__toggle {
    grid-column: 1;
    width: 30px;
    height: 30px;
  }

  .home-hero,
  .home-hero__inner {
    min-height: 268px;
    height: 268px;
  }

  .home-hero__content {
    width: 100%;
    padding: 0;
  }

  .home-hero__media img {
    object-position: var(--fw-hero-position-tablet, var(--fw-hero-position, 62% 50%));
  }

  .home-hero h1 {
    max-width: 340px;
    font-size: 36px;
  }

  .home-hero p {
    max-width: 300px;
    font-size: 11px;
  }

  .featured-piece__inner,
  .about-content__inner,
  .contact-content__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 28px;
  }

  .story-shelf__track,
  .story-shelf__grid {
    grid-template-columns: repeat(5, minmax(140px, 1fr));
    overflow-x: auto;
  }

  .collection-grid__items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .card-piece h3 {
    font-size: 18px;
  }

  .card-piece__body {
    padding: 12px;
  }

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

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

  .product-story details > div {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --fw-section-space: 30px;
  }

  .fw-container,
  .fw-container-wide {
    width: min(100% - 28px, 100%);
  }

  .site-header .fw-container-wide,
  .home-hero__inner,
  .page-hero--image .page-hero__inner,
  .about-hero__inner,
  .gift-guide-hero__inner {
    width: min(100% - 28px, 100%);
    max-width: none;
  }

  .site-header .fw-container-wide {
    width: 100%;
  }

  .site-header__inner {
    position: relative;
    grid-template-columns: 34px minmax(0, 1fr) 62px;
    min-height: 42px;
    padding-inline: 8px 7px;
  }

  .site-header__logo {
    grid-column: 2;
    justify-self: center;
    gap: 0;
    padding-right: 0;
  }

  .site-header__mark {
    display: none;
  }

  .site-header__brand {
    flex: none;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .site-header__brand::after {
    width: 5px;
    height: 5px;
    margin-left: 7px;
  }

  .site-header__actions {
    position: static;
    grid-column: 3;
    justify-self: end;
    gap: 1px;
  }

  .site-header__actions .fw-account-link {
    display: none;
  }

  .site-header__actions .fw-icon-btn {
    width: 26px;
    height: 28px;
  }

  .site-header__toggle {
    position: static;
    grid-column: 1;
    justify-self: start;
    width: 28px;
    height: 28px;
  }

  .site-header__actions .fw-icon-btn svg,
  .site-header__toggle svg {
    width: 15px;
    height: 15px;
  }

  .site-header__mobile-nav {
    padding: 8px 18px 14px;
  }

  .home-hero,
  .home-hero__inner {
    min-height: 246px;
    height: 246px;
  }

  .home-hero__media img {
    object-position: var(--fw-hero-position-mobile, var(--fw-hero-position, 72% 50%));
  }

  .home-hero__media::after {
    background:
      linear-gradient(90deg, rgba(7, 8, 7, 0.95), rgba(7, 8, 7, 0.66) 58%, rgba(7, 8, 7, 0.24)),
      linear-gradient(180deg, rgba(7, 8, 7, 0.08), rgba(7, 8, 7, 0.3));
  }

  .home-hero__content {
    width: 100%;
    justify-content: flex-start;
    padding: 34px 0 0;
  }

  .home-hero h1 {
    max-width: 220px;
    font-size: clamp(24px, 7.4vw, 29px);
    line-height: 1.05;
  }

  .home-hero p {
    max-width: 218px;
    margin-top: 10px;
    font-size: 10.2px;
    line-height: 1.42;
  }

  .home-hero .fw-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 13px;
  }

  .home-hero .fw-btn {
    width: auto;
    min-height: 30px;
    min-width: 132px;
    padding: 7px 11px;
    font-size: 9.5px;
  }

  .featured-piece {
    padding-block: 12px 16px;
  }

  .featured-piece__inner {
    grid-template-columns: minmax(104px, clamp(112px, 36vw, 150px)) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .featured-piece__media img {
    aspect-ratio: 1;
    object-position: 45% 50%;
  }

  .featured-piece .fw-kicker {
    margin-bottom: 6px;
    font-size: 10px;
    line-height: 1.05;
  }

  .featured-piece__content h2 {
    margin-top: 7px;
    font-size: 22px;
    line-height: 1.02;
  }

  .featured-piece__content p:not(.fw-kicker) {
    margin-top: 8px;
    font-size: 10.5px;
    line-height: 1.45;
  }

  .featured-piece__content .fw-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 12px;
  }

  .featured-piece__content .fw-btn {
    min-height: 32px;
    min-width: 126px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .fw-section-head {
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 9px;
  }

  .fw-section-head h2 {
    font-size: 10px;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .fw-section-head .fw-text-link {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .fw-section-head .fw-text-link span {
    font-size: 10px;
  }

  .story-shelf__track,
  .story-shelf__grid {
    grid-auto-columns: 88px;
    gap: 7px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .story-shelf__track::-webkit-scrollbar,
  .story-shelf__grid::-webkit-scrollbar,
  .shop-feeling__grid::-webkit-scrollbar {
    display: none;
  }

  .shelf-card,
  .shelf-card img {
    min-height: 66px;
  }

  .shelf-card span {
    inset: auto 7px 7px;
  }

  .shelf-card strong {
    font-size: 10.5px;
  }

  .shelf-card em {
    font-size: 8.5px;
    line-height: 1.18;
  }

  .shop-feeling__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
  }

  .feeling-card {
    min-width: 0;
    min-height: 78px;
    padding: 10px 5px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feeling-card__icon {
    grid-row: auto;
    margin-inline: auto;
    width: 24px;
    height: 24px;
  }

  .feeling-card strong {
    font-size: 9.5px;
    line-height: 1.15;
  }

  .feeling-card em {
    display: none;
  }

  .stories-preview__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stories-preview .card-story {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 10px;
    align-items: center;
    border-width: 0 0 1px;
    border-radius: 0;
    background: transparent;
  }

  .stories-preview .card-story__media img {
    aspect-ratio: 1.32;
  }

  .stories-preview .card-story__body {
    padding: 9px 0;
  }

  .stories-preview .card-story h3 {
    font-size: 15px;
  }

  .stories-preview .card-story p {
    font-size: 9px;
  }

  .stories-preview .fw-card-link {
    font-size: 10px;
  }

  .gift-guide-banner__inner {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 112px;
    min-height: 92px;
    border-radius: 0;
  }

  .gift-guide-banner__content {
    padding: 16px 14px;
  }

  .gift-guide-banner h2 {
    font-size: 16px;
  }

  .gift-guide-banner p {
    font-size: 10px;
  }

  .gift-guide-banner .fw-btn {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 10px;
    white-space: nowrap;
  }

  .gift-guide-banner__media img {
    height: 92px;
  }

  .page-hero--image {
    min-height: 240px;
  }

  .page-hero--image .page-hero__inner {
    min-height: 240px;
    align-items: end;
    padding-bottom: 26px;
  }

  .page-hero--image .page-hero__content {
    width: 100%;
  }

  .page-hero--image h1 {
    font-size: 33px;
  }

  .page-hero--image .page-hero__content p:not(.fw-kicker) {
    max-width: 265px;
    font-size: 11px;
  }

  .filter-chips {
    gap: 8px;
    margin-bottom: 14px;
  }

  .filter-chip {
    min-width: 52px;
    min-height: 30px;
    padding: 6px 10px;
    font-size: 10px;
  }

  .collection-grid {
    padding-block: 14px 0;
  }

  .collection-grid__meta {
    display: block;
    font-size: 10px;
  }

  .collection-grid__tools {
    margin-top: 8px;
  }

  .collection-grid__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .card-piece__body {
    gap: 5px;
    padding: 10px;
  }

  .card-piece h3 {
    font-size: 15px;
  }

  .card-piece p {
    min-height: 42px;
    font-size: 10px;
  }

  .collection-gift-strip {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
    padding: 14px;
  }

  .collection-gift-strip p {
    font-size: 12px;
    text-align: center;
  }

  .stories-grid {
    padding-block: 14px 0;
  }

  .stories-grid .filter-chips {
    justify-content: flex-start;
    margin-bottom: 14px;
  }

  .stories-grid__items {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stories-grid .card-story {
    display: grid;
    grid-template-columns: 86px 1fr 22px;
    gap: 10px;
    align-items: center;
    border-width: 0 0 1px;
    border-radius: 0;
    background: transparent;
  }

  .stories-grid .card-story::after {
    content: "\203A";
    color: var(--fw-ink);
    font-size: 18px;
  }

  .stories-grid .card-story__media img {
    aspect-ratio: 1.32;
  }

  .stories-grid .card-story__body {
    padding: 9px 0;
  }

  .stories-grid .card-story h3 {
    font-size: 15px;
  }

  .stories-grid .card-story p {
    font-size: 9px;
  }

  .stories-grid .fw-card-link {
    display: none;
  }

  .story-detail__hero img {
    height: 226px;
  }

  .story-detail__article {
    width: min(100% - 28px, 100%);
    padding-top: 18px;
  }

  .story-detail__heading h1 {
    font-size: 28px;
  }

  .story-detail__heading > p,
  .story-detail__body p {
    font-size: 11px;
  }

  .story-detail__intro,
  .story-detail__craft {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .story-detail__craft .story-detail__inline-image {
    order: 2;
  }

  .story-detail blockquote {
    margin-block: 22px;
    font-size: 16px;
  }

  .pieces-in-story__grid {
    grid-template-columns: 1fr;
  }

  .product-detail__breadcrumb {
    font-size: 10px;
  }

  .product-detail__top {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 18px;
  }

  .product-gallery__main img {
    aspect-ratio: 1.2;
  }

  .product-gallery__arrow {
    width: 30px;
    height: 30px;
  }

  .product-gallery__arrow--prev {
    left: -8px;
  }

  .product-gallery__arrow--next {
    right: -8px;
  }

  .product-info h1 {
    font-size: 32px;
  }

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

  .product-story details {
    padding: 14px 0;
    border-right: 0;
  }

  .product-story details:not([open]) > div {
    display: none;
  }

  .product-story details > div {
    grid-template-columns: 1fr;
  }

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

  .product-signoff {
    min-height: 58px;
  }

  .product-signoff strong {
    font-size: 13px;
  }

  .about-hero,
  .about-hero__inner {
    min-height: 324px;
  }

  .about-hero__inner {
    align-items: flex-start;
    padding-top: 32px;
  }

  .about-hero h1 {
    max-width: 220px;
    font-size: 30px;
  }

  .about-hero p:not(.fw-kicker) {
    max-width: 250px;
    font-size: 11px;
  }

  .about-content__inner,
  .contact-content__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .about-collage img:first-child {
    aspect-ratio: 1.7;
  }

  .about-collage img:not(:first-child) {
    display: none;
  }

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

  .about-values article {
    grid-template-columns: 30px 1fr 18px;
    min-height: 44px;
    align-items: center;
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid var(--fw-line);
    text-align: left;
  }

  .about-values article::after {
    content: "\203A";
  }

  .about-values article span {
    margin: 0;
  }

  .about-values h3 {
    font-size: 13px;
  }

  .about-values p {
    display: none;
  }

  .fw-contact-form {
    grid-template-columns: 1fr;
  }

  .fw-field-wide {
    grid-column: auto;
  }

  .contact-promise {
    grid-template-columns: 1fr;
    padding: 12px 0;
    background: transparent;
  }

  .contact-promise span {
    justify-content: flex-start;
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid var(--fw-line);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 26px;
  }

  .site-footer__brand h2 {
    font-size: 16px;
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(201, 153, 69, 0.22);
  }

  .site-footer__group summary {
    min-height: 34px;
  }

  .site-footer__bottom {
    display: none;
  }
}

/* Narrow tablets and large phones need a denser composition than true mobile. */
@media (min-width: 560px) and (max-width: 767px) {
  .home-hero,
  .home-hero__inner {
    min-height: 268px;
    height: 268px;
  }

  .home-hero__content {
    padding-top: 32px;
  }

  .home-hero h1 {
    max-width: 270px;
    font-size: 31px;
  }

  .home-hero p {
    max-width: 290px;
    font-size: 11px;
  }

  .home-hero .fw-actions {
    flex-direction: row;
    gap: 8px;
    margin-top: 14px;
  }

  .home-hero .fw-btn {
    min-width: 132px;
  }

  .featured-piece__inner {
    grid-template-columns: minmax(0, 40%) minmax(0, 1fr);
    align-items: center;
  }

  .featured-piece__media img {
    aspect-ratio: 1.72;
    object-position: 50% 56%;
  }

  .featured-piece__content p:not(.fw-kicker) {
    max-width: 360px;
  }

  .featured-piece__content .fw-actions {
    flex-direction: row;
    gap: 10px;
  }

  .story-shelf__track,
  .story-shelf__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-columns: unset;
    overflow: visible;
  }

  .shelf-card,
  .shelf-card img {
    min-height: 70px;
  }

  .shelf-card strong {
    font-size: 10px;
  }

  .shelf-card em {
    font-size: 8px;
  }
}

/* WooCommerce product backend display */
.card-piece__terms {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  color: rgba(250, 247, 242, 0.58);
  font-size: 10px;
  line-height: 1.35;
}

.card-piece__terms span + span::before {
  content: "/";
  margin-right: 5px;
  color: rgba(201, 153, 69, 0.58);
}

.fw-empty-state {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  min-height: 180px;
  place-items: center;
  padding: 34px 22px;
  border: 1px solid rgba(201, 153, 69, 0.22);
  background: rgba(255, 250, 244, 0.03);
  color: inherit;
  text-align: center;
}

.fw-empty-state h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(28px, 4vw, 42px);
}

.fw-empty-state p {
  max-width: 520px;
  margin: 0;
  color: currentColor;
  opacity: 0.72;
}

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

.product-story article.product-story__panel {
  min-height: 100%;
  padding: 26px 28px;
  border: 0;
  border-right: 1px solid rgba(201, 153, 69, 0.2);
  border-bottom: 1px solid rgba(201, 153, 69, 0.2);
  border-radius: 0;
  background: transparent;
}

.product-story article.product-story__panel:nth-child(2n) {
  border-right: 0;
}

.product-story article.product-story__panel--main {
  grid-column: 1 / -1;
}

.product-story__panel h2 {
  margin-bottom: 12px;
  color: var(--fw-ivory);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

.product-story__panel:not(.product-story__panel--main) h2 {
  color: var(--fw-gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-story__body {
  max-width: 820px;
}

.product-story__body p,
.product-story__body li {
  color: rgba(251, 247, 240, 0.76);
  font-size: 14px;
  line-height: 1.72;
}

.product-story__body p + p {
  margin-top: 12px;
}

.product-detail-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 30px max(24px, calc((100vw - var(--fw-container)) / 2)) 40px;
  border-top: 1px solid rgba(201, 153, 69, 0.2);
  background: var(--fw-black);
}

body.woocommerce div.product form.cart,
body.single-product div.product form.cart {
  display: none;
}

@media (max-width: 767px) {
  .product-story {
    grid-template-columns: 1fr;
    padding-bottom: 24px;
  }

  .product-story article.product-story__panel,
  .product-story article.product-story__panel:nth-child(2n) {
    padding: 20px 16px;
    border-right: 0;
  }

  .product-story__panel h2 {
    font-size: 30px;
  }

  .product-story__panel:not(.product-story__panel--main) h2 {
    font-size: 11px;
  }

  .product-detail-cta {
    flex-direction: column;
    padding: 20px 16px 28px;
  }

  .product-detail-cta .fw-btn {
    width: 100%;
  }
}
