@font-face {
  font-family: "FTG Didot";
  src: url("/fonts/Didot.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FTG Didot";
  src: url("/fonts/Didot Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "FTG Didot";
  src: url("/fonts/Didot Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #050504;
  --black-2: #0a0907;
  --cream: #f4ecdf;
  --cream-light: #fbf7ef;
  --cream-line: rgba(57, 40, 22, 0.18);
  --text: #17120d;
  --muted: #5b5147;
  --gold: #c3974c;
  --gold-bright: #d8b162;
  --gold-muted: #9e7038;
  --white: #f8f1e6;
  --serif: "FTG Didot", "Didot", "Bodoni 72", "Bodoni MT", Georgia, serif;
  --sans: "Inter", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --shell: 1180px;
  --ease: 180ms ease;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--black);
  font-family: var(--sans);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  width: min(calc(100% - 96px), var(--shell));
  margin: 0 auto;
}

/* Header */

.site-header {
  background: var(--black);
  color: var(--white);
}

.nav-shell {
  min-height: 58px;
  display: grid;
  grid-template-columns: 230px 1fr 260px;
  gap: 26px;
  align-items: center;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.brand-mark {
  width: 31px;
  height: 31px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(216, 177, 98, 0.58);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
}

.brand-name {
  color: #fff7e9;
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 42px;
}

.main-nav a,
.footer-nav a,
.brief-access,
.search-button {
  color: rgba(255, 248, 236, 0.82);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.main-nav a.active,
.main-nav a:hover,
.footer-nav a:hover,
.brief-access:hover,
.search-button:hover {
  color: var(--gold-bright);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

.search-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
}

.search-icon {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  right: -6px;
  bottom: -4px;
  background: currentColor;
  transform: rotate(45deg);
  border-radius: 20px;
}

.brief-access {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.brief-access span {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--gold-bright);
}

.breadcrumb-bar {
  border-top: 1px solid rgba(255, 248, 236, 0.06);
  border-bottom: 1px solid rgba(255, 248, 236, 0.08);
  background: #070706;
}

.breadcrumb {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 248, 236, 0.55);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.breadcrumb a {
  color: var(--gold-bright);
}

.breadcrumb a:hover {
  color: #fff4dc;
}

/* Product intro */

.product-page {
  background: var(--cream-light);
}

.product-intro-section {
  padding: 34px 0 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.68), transparent 34%),
    linear-gradient(180deg, #fbf7ef 0%, #f7f0e6 100%);
}

.product-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.intro-copy {
  max-width: 980px;
}

.eyebrow,
.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 13px;
  color: #17120d;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow::after,
.panel-kicker::after {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.brand-label {
  margin: 0 0 6px;
  color: #17120d;
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: -0.02em;
}

.product-intro h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6.8vw, 86px);
  font-weight: 500;
  line-height: 0.90;
  letter-spacing: -0.075em;
  color: #14100c;
}

.intro-lead {
  max-width: 760px;
  margin: 19px 0 0;
  color: #302821;
  font-size: 16px;
  line-height: 1.58;
}

.intro-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  max-width: none;
}

.intro-tags span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(158, 112, 56, 0.22);
  border-radius: 999px;
  color: #4a3e34;
  background: rgba(255, 252, 246, 0.58);
  font-size: 11px;
  font-weight: 800;
}

/* Gallery + source CTA */

.product-gallery-section {
  padding: 8px 0 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.48), transparent 34%),
    linear-gradient(180deg, #f7f0e6 0%, #f4ecdf 100%);
}

.gallery-source-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(340px, 0.78fr);
  gap: 36px;
  align-items: stretch;
}

.gallery {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 14px;
}

.thumbnail-rail {
  display: grid;
  gap: 10px;
  align-content: start;
}

.gallery-thumb {
  width: 74px;
  height: 74px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 18, 13, 0.14);
  border-radius: 3px;
  background: #070706;
}

.gallery-thumb.active {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 2px rgba(216, 177, 98, 0.28);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




.main-image-frame {
  margin: 0;
  height: 500px;
  overflow: hidden;
  border: 1px solid rgba(23, 18, 13, 0.12);
  border-radius: 2px;
  background: #090807;
}

.main-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease;
}

.source-card {
  align-self: start;
  padding: 24px;
  border: 1px solid rgba(23, 18, 13, 0.12);
  background: rgba(255, 252, 246, 0.72);
  box-shadow: 0 18px 42px rgba(38, 28, 17, 0.045);
}

.source-card-top {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(23, 18, 13, 0.09);
}

.source-kicker {
  margin: 0 0 7px;
  color: #a47035;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.source-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #17120d;
}

.source-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #486f3e;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.source-status i {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #4d924d;
}

.source-price {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(23, 18, 13, 0.09);
}

.source-price span {
  color: #8f6330;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.source-price strong {
  font-family: var(--serif);
  font-size: 39px;
  font-weight: 500;
  line-height: 1;
  color: #17120d;
}

.source-price p {
  grid-column: 1 / -1;
  max-width: 350px;
  margin: 5px 0 0;
  color: #6b6055;
  font-size: 12px;
  line-height: 1.38;
}

.source-copy {
  margin: 18px 0 18px;
  color: #554a40;
  font-size: 14px;
  line-height: 1.52;
}

.source-button {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  background: linear-gradient(180deg, #dcb565, #b98139);
  color: #150e07;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.source-button:hover {
  filter: brightness(1.05);
}

.source-details {
  margin-top: 16px;
  border-top: 1px solid rgba(23, 18, 13, 0.09);
  padding-top: 13px;
}

.source-details summary {
  color: #17120d;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.source-details div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 12px;
}

.source-details a {
  color: #9a6a32;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.source-note {
  margin: 13px 0 0;
  color: #7c7065;
  font-size: 11px;
  line-height: 1.45;
}

.meta-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin-top: 20px;
  border: 1px solid rgba(23, 18, 13, 0.10);
  background: rgba(23, 18, 13, 0.10);
}

.meta-strip div {
  min-height: 76px;
  padding: 14px 14px 12px;
  background: rgba(255, 252, 246, 0.54);
}

.meta-strip strong {
  display: block;
  margin-bottom: 7px;
  color: #8f6330;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.meta-strip span {
  display: block;
  color: #2f271f;
  font-size: 12px;
  line-height: 1.28;
}

/* Cream content */

.cream-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.75), transparent 36%),
    linear-gradient(180deg, #fbf7ef 0%, var(--cream) 100%);
  padding: 0 0 24px;
}

.cut-details-grid {
  display: grid;
  grid-template-columns: 1fr 1.03fr 1fr;
  gap: 46px;
  padding: 30px 0 24px;
  border-top: 1px solid var(--cream-line);
  border-bottom: 1px solid var(--cream-line);
}

.text-panel p:not(.panel-kicker) {
  margin: 0;
  color: #2f271f;
  font-size: 14px;
  line-height: 1.63;
}

.movement-panel {
  margin: 0;
  min-height: 196px;
  overflow: hidden;
  border: 1px solid rgba(23, 18, 13, 0.10);
  background: #090807;
}

.movement-panel img {
  width: 100%;
  height: 100%;
  min-height: 196px;
  object-fit: cover;
}

.details-panel ul {
  margin: 0;
  padding-left: 18px;
  color: #2b241d;
  font-size: 13px;
  line-height: 1.62;
}

.lower-notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.05fr;
  gap: 46px;
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--cream-line);
}

.note-card p:not(.panel-kicker),
.note-card li {
  color: #3c332a;
  font-size: 13px;
  line-height: 1.58;
}

.note-card img {
  width: 100%;
  height: 145px;
  margin-top: 20px;
  object-fit: cover;
  border: 1px solid rgba(23, 18, 13, 0.10);
}

blockquote {
  margin: 18px 0 0;
  padding: 25px 30px;
  color: #fff8ed;
  background:
    radial-gradient(circle at 10% 0%, rgba(216, 177, 98, .14), transparent 26%),
    #090807;
}

blockquote p {
  margin: 0;
  color: #fff8ed !important;
  font-family: var(--serif);
  font-size: 24px !important;
  line-height: 1.12 !important;
}

blockquote cite {
  display: block;
  margin-top: 12px;
  color: rgba(255, 248, 236, 0.72);
  font-style: normal;
  font-size: 13px;
}

.dark-note {
  position: relative;
  overflow: hidden;
  min-height: 244px;
  background: #080807;
  color: #fff8ed;
}

.dark-note::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.80), rgba(0,0,0,.36));
}

.dark-note img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  border: 0;
}

.dark-note > div {
  position: relative;
  z-index: 1;
  width: 78%;
  padding: 28px;
}

.dark-note .panel-kicker {
  color: var(--gold-bright);
}

.dark-note p:not(.panel-kicker) {
  color: rgba(255, 248, 236, 0.84);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.18;
}

.dark-note a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

/* Related */

.related-section {
  padding: 23px 0 26px;
}

.related-heading {
  margin-bottom: 12px;
}

.related-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.related-card {
  background: #090807;
  color: #fff8ed;
  overflow: hidden;
}

.related-card a {
  display: block;
  min-height: 150px;
}

.related-card img {
  width: 100%;
  height: 98px;
  object-fit: cover;
}

.related-card h3 {
  min-height: 62px;
  margin: 0;
  padding: 10px 12px 12px;
  color: #fff8ed;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.related-next {
  position: absolute;
  right: -44px;
  top: 50%;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(158, 112, 56, 0.24);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-muted);
  font-size: 18px;
}

/* Brief CTA and footer */

.brief-cta {
  background: #070706;
  color: var(--white);
  border-top: 1px solid rgba(255, 248, 236, 0.08);
}

.brief-shell {
  min-height: 158px;
  display: grid;
  grid-template-columns: 365px 1fr 260px;
  gap: 0;
  overflow: hidden;
  border-left: 1px solid rgba(255, 248, 236, 0.10);
  border-right: 1px solid rgba(255, 248, 236, 0.10);
  background: #0b0a08;
}

.brief-photo {
  position: relative;
  overflow: hidden;
}

.brief-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(11, 10, 8, 0.46));
}

.brief-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brief-form-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 42px;
}

.brief-form-area h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brief-form-area p {
  max-width: 520px;
  margin: 10px 0 13px;
  color: rgba(255, 248, 236, 0.78);
  font-size: 14px;
  line-height: 1.42;
}

.brief-form-area form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  max-width: 520px;
}

.brief-form-area input {
  height: 39px;
  min-width: 0;
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-right: 0;
  background: rgba(255, 255, 255, 0.035);
  color: #fff8ed;
  padding: 0 16px;
  outline: 0;
}

.brief-form-area input::placeholder {
  color: rgba(255, 248, 236, 0.46);
}

.brief-form-area button {
  height: 39px;
  border: 0;
  background: linear-gradient(180deg, #deb76f, #b8843c);
  color: #130d06;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brief-form-area .brief-note {
  margin: 9px 0 0;
  color: rgba(255, 248, 236, 0.48);
  font-size: 11px;
}

.brief-book {
  position: relative;
  border-left: 1px solid rgba(255, 248, 236, 0.10);
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #080807;
}

.brief-book img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.38;
  object-fit: cover;
}

.brief-book span {
  position: relative;
  z-index: 1;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  background: #060605;
  color: rgba(255, 248, 236, 0.70);
  border-top: 1px solid rgba(255, 248, 236, 0.06);
}

.footer-shell {
  min-height: 58px;
  display: grid;
  grid-template-columns: 260px 1fr 180px;
  align-items: center;
  gap: 28px;
}

.footer-brand .brand-name {
  font-size: 18px;
}

.footer-brand .brand-mark {
  width: 25px;
  height: 25px;
  font-size: 18px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.footer-nav a {
  font-size: 9px;
  color: rgba(255, 248, 236, 0.72);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-access {
  justify-self: end;
  font-size: 9px;
}

.footer-bottom {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255, 248, 236, 0.05);
  color: rgba(255, 248, 236, 0.42);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

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

/* Responsive */

@media (max-width: 1180px) {
  .site-shell {
    width: min(calc(100% - 42px), var(--shell));
  }

  .nav-shell {
    grid-template-columns: 210px 1fr auto;
  }

  .main-nav {
    gap: 20px;
  }

  .product-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .intro-tags {
    justify-content: flex-start;
    max-width: none;
  }

  .gallery-source-grid {
    grid-template-columns: 1fr;
  }

  .source-card {
    max-width: none;
  }

  .meta-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .cut-details-grid,
  .lower-notes-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .related-next {
    right: 0;
  }

  .brief-shell {
    grid-template-columns: 280px 1fr 200px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    padding: 24px 0;
    justify-items: center;
  }

  .footer-access {
    justify-self: center;
  }
}

@media (max-width: 820px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding: 16px 0;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 14px;
  }

  .header-actions {
    gap: 18px;
  }

  .search-button span:last-child {
    display: none;
  }

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

  .thumbnail-rail {
    order: 2;
    grid-template-columns: repeat(6, 74px);
    overflow-x: auto;
  }

  .main-image-frame {
    height: 420px;
  }

  .meta-strip,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brief-shell {
    grid-template-columns: 1fr;
  }

  .brief-photo,
  .brief-book {
    min-height: 150px;
  }

  .brief-form-area {
    padding: 30px 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .brand-name {
    font-size: 20px;
  }

  .brief-access {
    font-size: 9px;
  }

  .product-intro h1 {
    font-size: 52px;
  }

  .main-image-frame {
    height: 330px;
  }

  .source-card-top,
  .source-price {
    display: block;
  }

  .source-status {
    margin-top: 12px;
  }

  .source-price strong {
    display: block;
    margin-top: 8px;
  }

  .meta-strip,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .brief-form-area form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .brief-form-area input {
    border-right: 1px solid rgba(255, 248, 236, 0.18);
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 18px 28px;
  }
}


/* Lean find-page middle section */
.find-bottom-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.74), transparent 38%),
    linear-gradient(180deg, #fbf7ef 0%, var(--cream) 100%);
  padding: 34px 0 40px;
  border-top: 1px solid var(--cream-line);
}


/* Inline Brief CTA */
.inline-brief-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 0 0 34px;
  padding: 18px 22px;
  border: 1px solid rgba(57, 40, 22, 0.12);
  background:
    linear-gradient(90deg, rgba(255, 252, 246, 0.72), rgba(255, 252, 246, 0.44)),
    radial-gradient(circle at 92% 50%, rgba(216, 177, 98, 0.16), transparent 36%);
  box-shadow: 0 18px 42px rgba(35, 24, 12, 0.04);
}

.inline-brief-cta p {
  margin: 0 0 4px;
  color: #17120d;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.inline-brief-cta span {
  display: block;
  max-width: 720px;
  color: #5b5147;
  font-size: 14px;
  line-height: 1.45;
}

.inline-brief-cta > a {
  min-width: 142px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  background: linear-gradient(180deg, #deb76f, #b8843c);
  color: #130d06;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  white-space: nowrap;
}

.inline-brief-cta > a:hover {
  filter: brightness(1.05);
}

@media (max-width: 720px) {
  .inline-brief-cta {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .inline-brief-cta > a {
    width: 100%;
  }
}

.good-stuff-standard {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 0;
  min-height: 340px;
  margin-bottom: 34px;
  border: 1px solid rgba(57, 40, 22, 0.10);
  background: rgba(255, 252, 246, 0.52);
  overflow: hidden;
}

.standard-image {
  margin: 0;
  min-height: 340px;
  background: #090807;
  overflow: hidden;
}

.standard-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: 66% center;
}

.standard-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 56px;
}

.standard-copy h2 {
  margin: 0;
  color: #17120d;
  font-family: var(--serif);
  font-size: clamp(38px, 4.8vw, 58px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.standard-copy h2 span {
  color: #b17a38;
}

.standard-copy p:not(.panel-kicker) {
  max-width: 500px;
  margin: 18px 0 0;
  color: #3f362d;
  font-size: 15px;
  line-height: 1.55;
}

.more-from-section {
  padding-top: 6px;
}

.more-from-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 18px;
}

.more-from-heading .panel-kicker {
  margin-bottom: 0;
}

.view-all-link {
  color: #9a6a32;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.more-from-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.more-find-card {
  background: #090807;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(35, 24, 12, 0.08);
}

.more-find-card a {
  position: relative;
  display: block;
  min-height: 300px;
  color: #fff8ed;
}

.more-find-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.more-find-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.88));
}

.more-find-card a:hover img {
  transform: scale(1.035);
}

.more-find-card div {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 26px 22px;
}

.more-find-card h3 {
  margin: 0 0 12px;
  color: #fff8ed;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.more-find-card span {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

@media (max-width: 980px) {
  .good-stuff-standard {
    grid-template-columns: 1fr;
  }

  .standard-copy {
    padding: 34px 30px;
  }

  .more-from-grid {
    grid-template-columns: 1fr;
  }

  .more-find-card a,
  .more-find-card img {
    min-height: 260px;
    height: 260px;
  }
}

@media (max-width: 560px) {
  .find-bottom-section {
    padding: 24px 0 30px;
  }

  .good-stuff-standard {
    min-height: 0;
  }

  .standard-image,
  .standard-image img {
    min-height: 230px;
  }

  .standard-copy h2 {
    font-size: 40px;
  }

  .more-from-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}


/* Dynamic Blade helpers */
.image-placeholder {
  min-height: 180px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 45%, rgba(216, 177, 98, 0.18), rgba(8, 7, 6, 0.96) 62%);
  color: rgba(255, 248, 236, 0.68);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.empty-state {
  border: 1px solid rgba(57, 40, 22, 0.14);
  background: rgba(255, 252, 246, 0.62);
  padding: 28px;
  color: #5b5147;
}
.search-page-section {
  min-height: 520px;
  background: linear-gradient(180deg, var(--cream-light, #fbf7ef), var(--cream, #f4ecdf));
  padding: 58px 0 70px;
}
.search-page-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}
.search-page-head h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}
.search-page-head p {
  margin: 14px auto 22px;
  max-width: 520px;
  color: var(--muted, #5b5147);
}
.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid rgba(57, 40, 22, 0.18);
  background: rgba(255,255,255,.45);
}
.search-form input {
  min-width: 0;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0 16px;
  outline: 0;
}
.search-form button {
  height: 44px;
  border: 0;
  background: linear-gradient(180deg, #deb76f, #b8843c);
  color: #130d06;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pagination-wrap {
  margin-top: 34px;
}
.pagination-wrap nav {
  display: flex;
  justify-content: center;
}
