@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: #040403;
  --black-2: #090806;
  --charcoal: #11100d;
  --cream: #f5efe3;
  --cream-light: #fbf7ef;
  --cream-line: rgba(64, 45, 24, 0.18);
  --text: #17120d;
  --muted: #5e5448;
  --gold: #c79a4c;
  --gold-bright: #dcb565;
  --gold-muted: #9f7238;
  --white: #f8f2e8;
  --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;
}

html {
  scroll-behavior: smooth;
}

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;
}

.site-header {
  position: relative;
  z-index: 10;
  background: rgba(5, 5, 4, 0.98);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.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 {
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: -0.045em;
  color: #fff7e9;
  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,
.text-cta:hover,
.cream-link: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);
}

/* Hero */

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("/assets/hero-good-stuff-lounge.webp");
  background-size: cover;
  background-position: center right;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.95) 0%, rgba(2, 2, 2, 0.82) 27%, rgba(2, 2, 2, 0.34) 11%, rgba(2, 2, 2, 0.36) 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.10));
}

.hero-inner {
  position: relative;
  padding-top: 66px;
}

.hero-copy {
  max-width: 470px;
}

.section-kicker,
.card-kicker,
.cream-kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.20em;
}

.cream-kicker::before {
  content: "";
  width: 45px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

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

.hero h1 {
  margin: 0;
  color: #fff8ed;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(54px, 5.6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.hero-copy p:not(.section-kicker) {
  width: 390px;
  max-width: 100%;
  margin: 24px 0 0;
  color: rgba(255, 248, 236, 0.84);
  font-size: 15px;
  line-height: 1.55;
}

.text-cta,
.cream-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero .text-cta {
  margin-top: 24px;
}

.text-cta.compact {
  margin-top: 12px;
  font-size: 10.5px;
}

/* Featured slider */

.featured-slider {
  position: relative;
  margin: 30px 48px 0;
  min-height: 178px;
  display: grid;
  grid-template-columns: 425px 1fr;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(7, 8, 7, 0.88);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
}

.slider-image {
  position: relative;
  min-height: 164px;
  overflow: hidden;
  background: #080807;
  max-height: 212px !important;
}

.slider-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(7, 8, 7, 0.70));
}

.slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 120px 24px 38px;
}

.slider-copy h2 {
  margin: 0;
  color: #fff8ec;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 33px;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.slider-copy p:not(.card-kicker) {
  margin: 10px 0 0;
  color: rgba(255, 248, 236, 0.70);
  font-size: 13px;
}

.slider-controls {
  position: absolute;
  right: 30px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.slider-button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-radius: 50%;
  color: rgba(255, 248, 236, 0.68);
  background: rgba(255, 255, 255, 0.02);
  line-height: 1;
}

.slider-button:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.slider-dots {
  display: inline-flex;
  gap: 7px;
}

.slider-dot {
  width: 5px;
  height: 5px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 248, 236, 0.32);
}

.slider-dot.active {
  background: var(--gold-bright);
}

/* Cream showcase */

.showcase {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.75), transparent 36%),
    linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 60%, #f0e7d9 100%);
  padding: 26px 0 0;
}

.section-row {
  border-bottom: 1px solid var(--cream-line);
  padding: 0 0 28px;
  margin-bottom: 28px;
}

.new-finds,
.worlds,
.feature-row,
.journal-row {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 42px;
  align-items: start;
}

.section-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.section-intro p:not(.cream-kicker) {
  margin: 12px 0 18px;
  color: #5e5349;
  font-size: 13px;
  line-height: 1.5;
}

.cream-kicker {
  color: #1d1712;
  font-size: 10px;
  letter-spacing: 0.16em;
  gap: 14px;
  margin-bottom: 10px;
}

.cream-link {
  color: #9d6d31;
}

.find-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.find-card {
  min-width: 0;
}

.find-card a {
  display: block;
}

.find-card img {
  width: 100%;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
  background: #0b0a08;
  transition: transform var(--ease), box-shadow var(--ease);
}

.find-card a:hover img {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(38, 28, 15, 0.14);
}

.find-card span {
  display: block;
  margin-top: 10px;
  color: #8f6430;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.find-card h3 {
  margin: 3px 0 0;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 600;
  color: #19130e;
}

.new-finds {
  position: relative;
}

.tiny-arrows {
  position: absolute;
  right: 0;
  bottom: 42px;
  display: flex;
  gap: 9px;
}

.tiny-arrows span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(145, 100, 44, 0.22);
  border-radius: 50%;
  color: #9b6c35;
  font-size: 17px;
}

/* Worlds */

.world-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.world-card {
  position: relative;
  height: 142px;
  overflow: hidden;
  background: #090807;
}

.world-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.18) 100%);
}

.world-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease);
}

.world-card:hover img {
  transform: scale(1.045);
}

.world-card span {
  position: absolute;
  z-index: 2;
  left: 13px;
  right: 13px;
  bottom: 14px;
  color: #fff8ed;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

/* Feature row */

.feature-row {
  grid-template-columns: 230px minmax(340px, 1.05fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.section-intro.narrow h2 {
  max-width: 230px;
}

.wide-image-card {
  min-height: 170px;
  overflow: hidden;
  background: #090807;
}

.wide-image-card img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
}

.feature-copy-card {
  padding: 8px 0;
}

.feature-copy-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.046em;
}

.feature-copy-card p:not(.cream-kicker) {
  margin: 14px 0 18px;
  color: #4c4339;
  font-size: 13px;
  line-height: 1.55;
}

/* Editorial tiles */

.editorial-tiles {
  display: grid;
  grid-template-columns: 270px 250px 1fr;
  gap: 32px;
  align-items: stretch;
  border-bottom: 1px solid var(--cream-line);
  padding-bottom: 28px;
  margin-bottom: 28px;
}

.tile {
  min-height: 155px;
}

.image-tile {
  overflow: hidden;
  background: #111;
}

.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.copy-tile {
  padding: 10px 0;
}

.copy-tile h2,
.dark-tile h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 29px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.copy-tile p:not(.cream-kicker),
.dark-tile p:not(.card-kicker) {
  margin: 11px 0 18px;
  font-size: 13px;
  line-height: 1.55;
}

.copy-tile p:not(.cream-kicker) {
  color: #51473d;
}

.dark-tile {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #080806;
}

.dark-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(4,4,3,0.88), rgba(4,4,3,0.60) 45%, rgba(4,4,3,0.18));
}

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

.dark-tile > div {
  position: relative;
  z-index: 2;
  width: 58%;
  padding: 27px 31px;
}

.dark-tile p:not(.card-kicker) {
  color: rgba(255, 248, 236, 0.72);
}

/* Journal */

.journal-row {
  grid-template-columns: 245px 1fr;
  gap: 42px;
  border-bottom: 0;
  padding-bottom: 36px;
  margin-bottom: 0;
}

.journal-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.journal-card {
  position: relative;
  overflow: hidden;
  min-height: 116px;
  background: #090807;
}

.journal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 2, 2, 0.72), rgba(2, 2, 2, 0.35));
}

.journal-card img {
  width: 100%;
  height: 100%;
  min-height: 116px;
  object-fit: cover;
}

.journal-card div {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 18px 18px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff8ed;
}

.journal-card span {
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.journal-card h3 {
  width: 82%;
  margin: 7px 0 8px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.journal-card time {
  color: rgba(255, 248, 236, 0.72);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Brief CTA */

.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-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;
}

/* Footer */

.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;
}

.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;
  }

  .featured-slider {
    margin-left: 21px;
    margin-right: 21px;
    grid-template-columns: 360px 1fr;
  }

  .new-finds,
  .worlds,
  .journal-row,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .section-intro {
    max-width: 500px;
  }

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

  .editorial-tiles {
    grid-template-columns: 1fr 1fr;
  }

  .rare-tile {
    grid-column: 1 / -1;
  }

  .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;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    min-height: 0;
  }

  .featured-slider {
    position: relative;
    grid-template-columns: 1fr;
    margin: 34px 0 0;
  }

  .slider-copy {
    padding: 24px 28px 76px;
  }

  .slider-controls {
    left: 28px;
    right: auto;
  }

  .find-strip,
  .journal-cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .feature-row,
  .editorial-tiles {
    gap: 22px;
  }

  .editorial-tiles {
    grid-template-columns: 1fr;
  }

  .dark-tile > div {
    width: 100%;
    background: linear-gradient(90deg, rgba(4,4,3,.82), rgba(4,4,3,.32));
  }

  .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;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-copy p:not(.section-kicker) {
    width: auto;
  }

  .find-strip,
  .world-grid,
  .journal-cards {
    grid-template-columns: 1fr;
  }

  .world-card {
    height: 180px;
  }

  .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;
  }
}


/* Updated middle: signature collections directory */
.signature-showcase {
  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: 54px 0 62px;
}

.signature-header {
  max-width: 730px;
  margin: 0 auto 42px;
  text-align: center;
}

.signature-header .cream-kicker {
  justify-content: center;
}

.signature-header h2 {
  margin: 0;
  color: #15100c;
  font-family: var(--serif);
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.signature-header p:not(.cream-kicker) {
  max-width: 560px;
  margin: 15px auto 0;
  color: #5a5048;
  font-size: 14px;
  line-height: 1.5;
}

.signature-directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 38px;
  row-gap: 0;
  margin-bottom: 20px;
}

.signature-item {
  border-top: 1px solid var(--cream-line);
}

.signature-item:nth-last-child(-n + 3) {
  border-bottom: 1px solid var(--cream-line);
}

.signature-item a {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 22px;
  min-height: 164px;
  align-items: center;
  padding: 18px 0;
}

.signature-item img {
  width: 130px;
  height: 116px;
  object-fit: cover;
  background: #090807;
  transition: transform var(--ease), box-shadow var(--ease);
}

.signature-item a:hover img {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(40, 26, 14, 0.12);
}

.signature-item span {
  display: block;
  margin-bottom: 8px;
  color: #b17a38;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.signature-item h3 {
  margin: 0;
  color: #17120d;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.signature-item p {
  margin: 8px 0 13px;
  color: #5a5048;
  font-size: 13px;
  line-height: 1.4;
}

.signature-item strong {
  color: #17120d;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Optional latest section under signature directory */
.latest-from-brief {
  display: grid;
  grid-template-columns: minmax(220px, .55fr) 1fr;
  gap: 38px;
  align-items: start;
  padding-top: 28px;
  border-top: 1px solid var(--cream-line);
}

.latest-copy h2 {
  margin: 0;
  color: #15100c;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.latest-copy p:not(.cream-kicker) {
  margin: 13px 0 0;
  color: #5a5048;
  font-size: 14px;
  line-height: 1.5;
}

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

.latest-card {
  background: rgba(255,252,246,.55);
  border: 1px solid rgba(57, 40, 22, 0.10);
  overflow: hidden;
}

.latest-card a {
  display: block;
}

.latest-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  background: #090807;
}

.latest-card div {
  padding: 18px 18px 20px;
}

.latest-card span {
  color: #b17a38;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.latest-card h3 {
  margin: 6px 0 14px;
  color: #17120d;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.035em;
}

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

@media (max-width: 1180px) {
  .signature-directory {
    grid-template-columns: repeat(2, 1fr);
  }

  .signature-item:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  .signature-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--cream-line);
  }

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

@media (max-width: 820px) {
  .signature-directory,
  .latest-card-row {
    grid-template-columns: 1fr;
  }

  .signature-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .signature-item:last-child {
    border-bottom: 1px solid var(--cream-line);
  }

  .signature-item a {
    grid-template-columns: 120px 1fr;
  }

  .signature-item img {
    width: 120px;
  }
}

@media (max-width: 560px) {
  .signature-showcase {
    padding: 42px 0 48px;
  }

  .signature-header h2 {
    font-size: 40px;
  }

  .signature-item a {
    grid-template-columns: 1fr;
  }

  .signature-item img {
    width: 100%;
    height: 190px;
  }
}


/* 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;
}


.latest-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #17120d;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.latest-view-all:hover {
  color: #9f7238;
}

.latest-page-section {
  min-height: 620px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.74), transparent 36%),
    linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
  padding: 58px 0 70px;
}

.latest-page-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.latest-page-head h1 {
  margin: 0;
  color: #15100c;
  font-family: var(--serif);
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.latest-page-head p:not(.cream-kicker) {
  max-width: 560px;
  margin: 16px auto 0;
  color: #5a5048;
  font-size: 15px;
  line-height: 1.55;
}


/* 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: 24px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.inline-brief-cta span {
  display: block;
  max-width: 720px;
  color: #5b5147;
  font-size: 13px;
  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: 10px;
  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%;
  }
}

.latest-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.latest-page-card {
  background: rgba(255,252,246,.58);
  border: 1px solid rgba(57, 40, 22, 0.10);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(35, 24, 12, 0.045);
}

.latest-page-card a {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.latest-page-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  background: #090807;
  transition: transform 220ms ease;
}

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

.latest-page-card div {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 22px;
}

.latest-page-card span {
  color: #b17a38;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.latest-page-card h2 {
  margin: 7px 0 0;
  color: #17120d;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.04em;
}

.latest-page-card p {
  margin: 10px 0 0;
  color: #5b5148;
  font-size: 13px;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-page-card strong {
  margin-top: auto;
  padding-top: 14px;
  color: #17120d;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

@media (max-width: 980px) {
  .latest-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .latest-page-section {
    padding: 44px 0 54px;
  }

  .latest-page-grid {
    grid-template-columns: 1fr;
  }
}

.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;
}
