@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;
  --cream: #f4ecdf;
  --cream-light: #fbf7ef;
  --cream-line: rgba(57, 40, 22, 0.15);
  --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 {
  position: relative;
  z-index: 10;
  background: rgba(5, 5, 4, 0.98);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 248, 236, 0.08);
}

.nav-shell {
  min-height: 68px;
  display: grid;
  grid-template-columns: 250px 1fr 285px;
  align-items: center;
  gap: 26px;
}

.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(220, 181, 101, 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,
.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,
.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);
}

/* Collection hero */

.collection-hero {
  position: relative;
  min-height: 370px;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center right;
  background-color: #050504;
}

.collection-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2,2,2,.26), rgba(2,2,2,.72) 08%, rgba(2,2,2,.12) 75%, rgba(2,2,2,.15)), linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.1));
}

.hero-shell {
  min-height: 340px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 575px;
  padding: 42px 0;
}

.section-kicker,
.center-kicker {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.20em;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 18px;
}

.section-kicker::after {
  content: "";
  width: 45px;
  height: 1px;
  background: currentColor;
  opacity: .7;
}

.hero-copy h1 {
  margin: 0;
  color: #fff8ed;
  font-family: var(--serif);
  font-size: clamp(58px, 6vw, 82px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.065em;
}

.hero-copy p:not(.section-kicker) {
  max-width: 450px;
  margin: 23px 0 0;
  color: rgba(255,248,236,.84);
  font-size: 16px;
  line-height: 1.55;
}

/* Cream body */

.collection-content {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.78), transparent 34%),
    linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
  padding: 34px 0 38px;
}

.center-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 20px;
  color: #b17a38;
}

.center-kicker span {
  width: 72px;
  height: 1px;
  background: rgba(177, 122, 56, .34);
}

/* Latest pick */

.latest-pick {
  margin-bottom: 35px;
}

.latest-pick-card {
  width: min(930px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(57, 40, 22, .12);
  background: rgba(255,252,246,.62);
}

.latest-pick-card a {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, .95fr);
  align-items: stretch;
  height: 240px;
  max-height: 240px;
  overflow: hidden;
}

.latest-pick-card figure {
  margin: 0;
  width: 100%;
  height: 240px;
  min-height: 240px;
  max-height: 240px;
  overflow: hidden;
  background: #090807;
}

.latest-pick-card img {
  display: block;
  width: 100%;
  height: 240px;
  min-height: 0;
  max-height: 240px;
  object-fit: cover;
  object-position: center;
  transition: transform var(--ease);
}

.latest-pick-card a:hover img {
  transform: scale(1.035);
}

.latest-pick-card div {
  height: 240px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 26px 32px;
  overflow: hidden;
}

.latest-pick-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.045em;
}

.latest-pick-card p {
  max-width: 360px;
  margin: 12px 0 0;
  color: #5d5248;
  font-size: 14px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-pick-card strong,
.find-row strong,
.section-card strong {
  color: #17120d;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.latest-pick-card strong {
  margin-top: auto;
  padding-top: 12px;
}

.find-row strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 10px;
}

/* Finds */

.finds-list {
  width: min(930px, 100%);
  margin: 0 auto 34px;
}

.finds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 22px;
}

.find-row {
  background: rgba(255,252,246,.50);
  border: 1px solid rgba(57, 40, 22, .10);
}

.find-row a {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 130px;
  height: 100%;
}

.find-row img {
  width: 170px;
  height: 130px;
  object-fit: cover;
  background: #090807;
  transition: transform var(--ease);
}

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

.find-row div {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  padding: 16px 24px 15px;
}

.find-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.find-row p {
  margin: 8px 0 0;
  color: #5b5148;
  font-size: 13px;
  line-height: 1.38;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Other sections */

.other-sections {
  width: min(930px, 100%);
  margin: 0 auto;
}

.section-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.section-card {
  position: relative;
  min-height: 162px;
  overflow: hidden;
  color: #fff8ed;
  background: #090807;
}

.section-card a {
  display: block;
  min-height: 162px;
}

.section-card img {
  position: absolute;
  opacity: 60%;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,.86));
  pointer-events: none;
}

.section-card div {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  padding: 20px;
  text-align: center;
}

.section-card h3 {
  margin: 0 0 8px;
  color: #fff8ed;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.04;
}

.section-card p {
  min-height: 38px;
  margin: 0 0 10px;
  color: rgba(255,248,236,.72);
  font-size: 12px;
  line-height: 1.35;
}

.section-card strong {
  color: var(--gold-bright);
}

/* Dark trust */

.trust-strip {
  background: linear-gradient(90deg, #080807, #11100d, #080807);
  color: var(--white);
  border-top: 1px solid rgba(255,248,236,.08);
  border-bottom: 1px solid rgba(255,248,236,.08);
}

.trust-grid {
  min-height: 142px;
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 44px;
  align-items: center;
}

.trust-grid blockquote {
  margin: 0;
}

.trust-grid blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.16;
}

.trust-grid cite {
  display: block;
  margin-top: 12px;
  color: var(--gold-bright);
  font-size: 12px;
  font-style: normal;
}

.trust-grid div {
  text-align: center;
}

.trust-grid span {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 10px;
  border: 1px solid rgba(216, 177, 98, 0.48);
  border-radius: 50%;
  color: var(--gold-bright);
}

.trust-grid strong {
  display: block;
  color: #fff8ed;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.trust-grid div p {
  margin: 5px 0 0;
  color: rgba(255,248,236,.56);
  font-size: 12px;
}

/* Brief join */

.brief-join {
  background: #0a0908;
  color: var(--white);
  padding: 38px 0;
  border-top: 1px solid rgba(255,248,236,.08);
}

.brief-join-shell {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 40px;
  align-items: center;
}

.brief-join p {
  margin: 0 0 11px;
  color: #b17a38;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .17em;
}

.brief-join h2 {
  margin: 0;
  color: #fff8ed;
  font-family: var(--serif);
  font-size: 39px;
  font-weight: 500;
  letter-spacing: -.04em;
}

.brief-join form {
  display: grid;
  grid-template-columns: 1fr 96px;
}

.brief-join input {
  height: 44px;
  border: 1px solid rgba(255,248,236,.16);
  background: rgba(255,255,255,.06);
  color: #fff8ed;
  padding: 0 16px;
  outline: 0;
}

.brief-join button {
  height: 44px;
  border: 0;
  background: linear-gradient(180deg, #deb76f, #b8843c);
  color: #120d07;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .10em;
}

/* Footer */

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

.footer-shell {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 50px;
  padding: 52px 0 38px;
}

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

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

.footer-brand-block p {
  margin: 12px 0 20px;
  color: rgba(255,248,236,.62);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 13px;
}

.socials a {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216,177,98,.35);
  border-radius: 50%;
  color: var(--gold-bright);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.footer-links h3 {
  margin: 0 0 14px;
  color: #fff8ed;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.footer-links a {
  display: block;
  margin: 8px 0;
  color: rgba(255,248,236,.58);
  font-size: 13px;
}

.footer-bottom {
  padding: 0 0 27px;
  color: rgba(255,248,236,.42);
  font-size: 11px;
  text-align: center;
}

.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: 22px;
  }

  .finds-grid,
  .section-card-grid,
  .trust-grid,
  .brief-join-shell,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .section-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

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

  .latest-pick-card a,
  .find-row a {
    grid-template-columns: 1fr;
  }

  .latest-pick-card a {
    height: auto;
    max-height: none;
  }

  .latest-pick-card figure,
  .latest-pick-card img {
    height: 240px;
    min-height: 240px;
    max-height: 240px;
  }

  .latest-pick-card div {
    height: auto;
    min-height: 210px;
    overflow: visible;
  }

  .find-row img {
    width: 100%;
    height: 220px;
  }

  .find-row div {
    min-height: 0;
    padding: 20px 22px;
  }

  .find-row strong {
    margin-top: 16px;
    padding-top: 0;
  }

  .section-card-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    padding: 32px 0;
  }
}

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

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

  .hero-copy h1 {
    font-size: 52px;
  }

  .brief-join form {
    grid-template-columns: 1fr;
    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;
}



/* Product-style Brief CTA and footer for collection pages */
.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;
  color: var(--white);
  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);
}

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

.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-nav a:hover {
  color: var(--gold-bright);
}

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

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

.site-footer .footer-bottom p {
  margin: 0;
}

@media (max-width: 1180px) {
  .brief-shell {
    grid-template-columns: 280px 1fr 200px;
  }

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

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

@media (max-width: 820px) {
  .brief-shell {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 560px) {
  .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;
  }
}
@media (max-width: 560px) {
  .collection-hero--cold-weather-flex .hero-bg {
    background-position: 72% center;
  }
}