:root {
  --navy: #061322;
  --navy-2: #0b1c30;
  --navy-3: #10263d;
  --cream: #f3ecdf;
  --muted: #a8b1bb;
  --gold: #cfaa67;
  --gold-2: #e1c58f;
  --line: rgba(224, 196, 142, 0.18);
  --line-soft: rgba(255,255,255,0.09);
  --max: 1500px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy);
  color: var(--cream);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
::selection { background: var(--gold); color: var(--navy); }

.topline {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 6px 20px;
  background: var(--gold);
  color: #081522;
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: .27em;
  font-weight: 700;
  text-align: center;
}
.topline span { opacity: .48; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 100%;
  padding: 0 clamp(24px, 5vw, 86px);
  background: rgba(6, 19, 34, .9);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 230px; }
.brand img { width: 36px; height: 36px; object-fit: contain; }
.brand span { font-family: "Cormorant Garamond", serif; font-size: 18px; font-weight: 600; letter-spacing: .25em; white-space: nowrap; }
.site-header nav { display: flex; align-items: center; gap: clamp(22px, 2.5vw, 44px); }
.site-header nav a { font-size: 11px; letter-spacing: .1em; color: #c8cfd5; transition: color .25s ease; }
.site-header nav a:hover { color: var(--gold-2); }
.site-header .nav-cta { border: 1px solid rgba(207,170,103,.55); padding: 11px 18px; color: var(--gold-2); }
.menu-button { display: none; border: 0; background: none; color: var(--cream); letter-spacing: .18em; font-size: 11px; }

.hero {
  position: relative;
  min-height: calc(100svh - 106px);
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(480px, 1.15fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 34px clamp(60px, 8vw, 150px);
  padding: clamp(70px, 8vw, 130px) clamp(24px, 8vw, 150px) 38px;
  background:
    radial-gradient(circle at 76% 42%, rgba(37,64,92,.48), transparent 33%),
    linear-gradient(120deg, #04101e 0%, #07182a 49%, #0d2136 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.hero::after {
  content: "";
  position: absolute;
  right: -11vw;
  bottom: -33vw;
  width: 58vw;
  aspect-ratio: 1;
  border: 1px solid rgba(207,170,103,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(207,170,103,.025), 0 0 0 145px rgba(207,170,103,.017);
}
.hero-lines {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to right, black, transparent 56%);
  pointer-events: none;
}
.hero-seal {
  position: relative;
  z-index: 2;
  justify-self: center;
  text-align: center;
}
.seal-ring {
  width: min(34vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(207,170,103,.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
}
.seal-ring::before,
.seal-ring::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(207,170,103,.08);
  border-radius: 50%;
}
.seal-ring::after { inset: -17px; border-color: rgba(207,170,103,.07); }
.seal-ring img { width: 62%; filter: drop-shadow(0 28px 40px rgba(0,0,0,.35)); }
.hero-seal p { margin: 24px 0 0; font-size: 9px; letter-spacing: .34em; color: var(--gold); }

.hero-copy { position: relative; z-index: 3; max-width: 680px; }
.eyebrow { margin: 0 0 16px; font-size: 9px; line-height: 1.4; letter-spacing: .27em; font-weight: 700; color: var(--gold); }
h1, h2, h3, blockquote { font-family: "Cormorant Garamond", serif; font-weight: 500; }
h1 { margin: 0; font-size: clamp(66px, 6.6vw, 116px); line-height: .83; letter-spacing: -.035em; }
h1 em, h2 em { color: var(--gold-2); font-weight: 500; }
.hero-intro { max-width: 650px; margin: 34px 0 0; color: #c0c8cf; font-size: clamp(14px, 1vw, 17px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 31px; }
.button { min-height: 47px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid transparent; font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: #071421; }
.button-gold:hover { background: var(--gold-2); }
.button-ghost { border-color: rgba(255,255,255,.23); color: var(--cream); }
.button-ghost:hover { border-color: rgba(207,170,103,.65); }
.button-cream { background: var(--cream); color: var(--navy); }
.hero-proof { margin-top: 34px; display: flex; align-items: center; flex-wrap: wrap; gap: 12px; color: #8592a0; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.hero-proof i { width: 24px; height: 1px; background: rgba(207,170,103,.35); }

.hero-categories {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-soft);
}
.mini-category {
  min-height: 108px;
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 18px;
  padding: 20px clamp(18px, 2.5vw, 40px);
  border-right: 1px solid var(--line-soft);
  transition: background .25s ease;
}
.mini-category:last-child { border-right: 0; }
.mini-category:hover { background: rgba(255,255,255,.025); }
.mini-category span { grid-row: 1 / 3; align-self: center; color: var(--gold); font-size: 10px; letter-spacing: .2em; }
.mini-category strong { font-family: "Cormorant Garamond", serif; font-weight: 600; font-size: 28px; letter-spacing: .02em; }
.mini-category small { color: #8d98a5; font-size: 10px; letter-spacing: .07em; }

.section-narrow { max-width: 1050px; margin: 0 auto; padding: 110px 30px; text-align: center; }
.manifesto blockquote { margin: 0; font-size: clamp(38px, 4vw, 66px); line-height: 1.05; color: #ddd5c8; font-style: italic; }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(90px, 10vw, 160px) clamp(24px, 6vw, 90px); }
.section-intro { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(50px, 8vw, 130px); align-items: end; margin-bottom: 70px; }
.section-intro h2, .section-title h2, .reference-band h2, .story h2, .closing h2 { margin: 0; font-size: clamp(52px, 5vw, 86px); line-height: .9; letter-spacing: -.025em; }
.section-intro > p { color: #aeb8c2; max-width: 580px; margin: 0 0 8px; }

.category-stack { border-top: 1px solid var(--line-soft); }
.category-row {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(340px, 1.1fr) minmax(310px, .9fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  min-height: 430px;
  border-bottom: 1px solid var(--line-soft);
  padding: 52px 0;
}
.category-row.reverse { grid-template-columns: 70px minmax(310px, .9fr) minmax(340px, 1.1fr); }
.category-row.reverse .category-art { order: 3; }
.category-row.reverse .category-copy { order: 2; }
.category-number { align-self: start; color: #6e7a86; font-size: 10px; letter-spacing: .2em; padding-top: 11px; }
.category-art { min-height: 310px; display: grid; place-items: center; position: relative; overflow: hidden; background: linear-gradient(145deg, rgba(255,255,255,.02), rgba(255,255,255,.008)); }
.category-art::after { content: ""; position: absolute; inset: 19px; border: 1px solid rgba(207,170,103,.11); }
.category-art svg { width: 86%; max-height: 270px; fill: rgba(207,170,103,.06); stroke: rgba(225,197,143,.78); stroke-width: 2.3; filter: drop-shadow(0 22px 28px rgba(0,0,0,.25)); }
.formal-art { background: radial-gradient(circle at 55% 45%, rgba(88,71,47,.22), transparent 52%), #09192a; }
.sneaker-art { background: radial-gradient(circle at 46% 40%, rgba(54,71,84,.25), transparent 50%), #0b1b2d; }
.loafer-art { background: radial-gradient(circle at 56% 44%, rgba(101,64,45,.18), transparent 51%), #081827; }
.category-copy { max-width: 530px; }
.category-copy h3 { margin: 0 0 16px; font-size: clamp(41px, 3.3vw, 61px); line-height: .95; }
.category-copy > p:not(.eyebrow) { color: #9ca7b2; margin: 0 0 28px; }
.text-link { display: inline-block; color: var(--gold-2); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; border-bottom: 1px solid rgba(207,170,103,.35); padding-bottom: 6px; }

.reference-band {
  max-width: 1360px;
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: center;
  padding: clamp(65px, 7vw, 100px) clamp(28px, 6vw, 90px);
  background: var(--gold);
  color: #071421;
}
.reference-band .eyebrow { color: rgba(7,20,33,.62); }
.reference-band h2 em { color: #fff6e6; }
.reference-copy p { max-width: 520px; margin: 0 0 28px; color: rgba(7,20,33,.75); }

.accessory-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-soft); border-left: 1px solid var(--line-soft); }
.accessory-card { min-height: 480px; position: relative; padding: 35px 32px; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); transition: background .3s ease, transform .3s ease; overflow: hidden; }
.accessory-card:hover { background: rgba(255,255,255,.025); }
.accessory-index { position: absolute; top: 28px; right: 28px; color: #6e7a86; font-size: 9px; letter-spacing: .18em; }
.accessory-card > p { margin: 28px 0 6px; color: var(--gold); font-size: 9px; letter-spacing: .2em; }
.accessory-card h3 { margin: 0 0 24px; font-size: 38px; line-height: .98; }
.accessory-card small { color: #83909c; font-size: 8px; letter-spacing: .14em; }
.watch-face { width: 190px; height: 190px; margin: 56px auto 50px; border: 1px solid rgba(225,197,143,.7); border-radius: 50%; position: relative; box-shadow: inset 0 0 0 15px rgba(207,170,103,.035), 0 25px 60px rgba(0,0,0,.28); }
.watch-face::before, .watch-face::after { content:""; position:absolute; left:50%; top:50%; transform-origin: 0 0; width: 58px; height:1px; background: var(--gold-2); }
.watch-face::before { transform: rotate(-90deg); }
.watch-face::after { width: 43px; transform: rotate(18deg); }
.watch-face i, .watch-face b { position:absolute; left:50%; width: 38px; height: 45px; border: 1px solid rgba(225,197,143,.4); transform: translateX(-50%); }
.watch-face i { top:-46px; border-bottom:0; } .watch-face b { bottom:-46px; border-top:0; }
.belt-shape { width: 78%; height: 154px; margin: 77px auto 59px; position:relative; border: 1px solid rgba(225,197,143,.55); border-radius: 90px 10px 10px 90px; transform: rotate(-8deg); }
.belt-shape::before { content:""; position:absolute; right:8%; top:50%; width:48px; height:48px; border: 1px solid var(--gold-2); transform: translateY(-50%); }
.belt-shape i { position:absolute; left:9%; top:50%; width:8px; height:8px; border:1px solid rgba(225,197,143,.65); border-radius:50%; transform:translateY(-50%); box-shadow: 28px 0 0 -1px #0a1a2b, 28px 0 0 0 rgba(225,197,143,.65), 56px 0 0 -1px #0a1a2b, 56px 0 0 0 rgba(225,197,143,.65); }
.wallet-shape { width: 65%; height: 190px; margin: 60px auto 40px; border: 1px solid rgba(225,197,143,.58); border-radius: 12px; position:relative; transform: perspective(500px) rotateY(-11deg); box-shadow: 25px 26px 50px rgba(0,0,0,.22); }
.wallet-shape::after { content:""; position:absolute; top:28%; right:-1px; width:36%; height:42%; border:1px solid rgba(225,197,143,.55); border-right:0; border-radius:8px 0 0 8px; }
.wallet-shape i { position:absolute; left:13%; top:20%; width:45%; height:1px; background: rgba(225,197,143,.4); }
.wallet-shape b { position:absolute; left:13%; bottom:20%; width:28%; height:1px; background: rgba(225,197,143,.25); }

.story {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 760px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.story-visual { position:relative; display:grid; place-items:center; min-height:640px; background: linear-gradient(145deg, #071525, #0d2137); overflow:hidden; }
.story-visual::before { content:""; position:absolute; width:70%; aspect-ratio:1; border:1px solid rgba(207,170,103,.15); border-radius:50%; box-shadow: 0 0 0 65px rgba(207,170,103,.025), 0 0 0 130px rgba(207,170,103,.016); }
.story-visual img { position:relative; z-index:2; width:43%; }
.story-visual span { position:absolute; bottom:42px; left:50%; transform:translateX(-50%); color:#788591; font-size:8px; letter-spacing:.3em; }
.story-copy { padding: clamp(70px, 8vw, 130px); align-self:center; }
.story-copy h2 { margin-bottom: 36px; }
.story-copy p { color:#9eabb6; max-width:680px; }
.story-copy .story-lead { color:#d9d1c4; font-family:"Cormorant Garamond",serif; font-size:28px; line-height:1.2; }
.story-signature { margin-top:40px; padding-top:24px; border-top:1px solid var(--line); display:flex; flex-direction:column; gap:5px; }
.story-signature strong { font-family:"Cormorant Garamond",serif; font-size:22px; letter-spacing:.16em; font-weight:600; }
.story-signature span { color:#788591; font-size:8px; letter-spacing:.2em; }

.section-title.centered { text-align:center; max-width:900px; margin:0 auto 65px; }
.steps { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line-soft); border-left:1px solid var(--line-soft); }
.steps article { min-height:260px; padding:34px 28px; border-right:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft); }
.steps article span { color:var(--gold); font-size:9px; letter-spacing:.2em; }
.steps article h3 { font-size:34px; margin:55px 0 10px; }
.steps article p { color:#8e9aa5; font-size:12px; }

.closing {
  position:relative;
  max-width:var(--max);
  margin:0 auto;
  min-height:680px;
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  align-items:center;
  gap:clamp(50px,9vw,150px);
  padding:clamp(90px,10vw,150px) clamp(24px,7vw,110px);
  overflow:hidden;
}
.closing::before { content:""; position:absolute; right:-220px; top:50%; width:620px; aspect-ratio:1; transform:translateY(-50%); border:1px solid rgba(207,170,103,.08); border-radius:50%; box-shadow: 0 0 0 75px rgba(207,170,103,.018), 0 0 0 150px rgba(207,170,103,.01); }
.closing-mark { position:relative; z-index:2; display:grid; place-items:center; }
.closing-mark img { width:min(340px,70%); filter:drop-shadow(0 30px 45px rgba(0,0,0,.35)); }
.closing-copy { position:relative; z-index:2; }
.closing-copy > p:not(.eyebrow) { color:#9ca8b3; max-width:550px; margin:26px 0 0; }

footer {
  border-top:1px solid var(--line-soft);
  min-height:260px;
  padding:55px clamp(24px,6vw,90px) 30px;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  grid-template-rows:auto auto;
  align-items:start;
  gap:30px;
  background:#040f1c;
}
.footer-brand img { width:190px; max-height:125px; object-fit:contain; object-position:left center; }
.footer-center { text-align:center; color:#a4aeb7; font-size:11px; }
.footer-center p { margin:0 0 4px; color:#d8d1c5; font-family:"Cormorant Garamond",serif; font-size:21px; }
.footer-center span { color:#687684; font-size:9px; letter-spacing:.11em; text-transform:uppercase; }
.footer-links { display:flex; justify-content:flex-end; flex-wrap:wrap; gap:18px 25px; }
.footer-links a { color:#8b97a2; font-size:9px; letter-spacing:.11em; text-transform:uppercase; }
footer small { grid-column:1/-1; text-align:center; color:#53616e; font-size:8px; letter-spacing:.1em; }

.floating-whatsapp {
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:60;
  min-height:48px;
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:0 16px;
  border:1px solid rgba(207,170,103,.52);
  background:rgba(6,19,34,.92);
  color:var(--gold-2);
  box-shadow:0 16px 38px rgba(0,0,0,.35);
  backdrop-filter:blur(14px);
  font-size:9px;
  letter-spacing:.11em;
  text-transform:uppercase;
}
.floating-whatsapp svg { width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }

.reveal { opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity:1; transform:none; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: .75fr 1.25fr; gap:45px; padding-left:45px; padding-right:45px; }
  .seal-ring { width:320px; }
  .category-row, .category-row.reverse { grid-template-columns:55px 1fr; }
  .category-row .category-art, .category-row.reverse .category-art { order:2; }
  .category-row .category-copy, .category-row.reverse .category-copy { order:3; grid-column:2; }
  .category-row { row-gap:25px; }
  .accessory-grid { grid-template-columns:1fr 1fr; }
  .accessory-card:last-child { grid-column:1/-1; }
  .story { grid-template-columns:1fr; }
  .story-visual { min-height:480px; }
  .story-visual img { width:30%; }
  .steps { grid-template-columns:1fr 1fr; }
}

@media (max-width: 820px) {
  .topline { letter-spacing:.16em; font-size:8px; }
  .site-header { min-height:68px; padding:0 22px; }
  .brand { min-width:0; }
  .brand img { width:32px; height:32px; }
  .brand span { font-size:16px; letter-spacing:.18em; }
  .menu-button { display:block; }
  .site-header nav {
    position:fixed; inset:98px 0 0; background:#051321; display:none; flex-direction:column; align-items:flex-start; gap:0; padding:35px 24px; border-top:1px solid var(--line-soft);
  }
  .site-header nav.open { display:flex; }
  .site-header nav a { width:100%; padding:18px 2px; border-bottom:1px solid var(--line-soft); font-size:12px; }
  .site-header .nav-cta { margin-top:20px; width:auto; border:1px solid rgba(207,170,103,.55); padding:12px 18px; }

  .hero { min-height:auto; grid-template-columns:1fr; grid-template-rows:auto; padding:70px 24px 0; gap:55px; text-align:center; }
  .hero-seal { order:1; }
  .seal-ring { width:min(70vw,330px); }
  .hero-copy { order:2; margin:0 auto; }
  h1 { font-size:clamp(64px,17vw,95px); }
  .hero-actions, .hero-proof { justify-content:center; }
  .hero-categories { order:3; grid-column:auto; grid-template-columns:1fr; width:100vw; margin-left:-24px; }
  .mini-category { border-right:0; border-bottom:1px solid var(--line-soft); text-align:left; }
  .section-narrow { padding:80px 24px; }
  .section { padding:85px 24px; }
  .section-intro { grid-template-columns:1fr; gap:26px; margin-bottom:45px; }
  .section-intro h2, .section-title h2, .reference-band h2, .story h2, .closing h2 { font-size:clamp(50px,13vw,72px); }
  .category-row, .category-row.reverse { grid-template-columns:1fr; min-height:0; padding:40px 0 55px; gap:22px; }
  .category-number { grid-column:1; }
  .category-row .category-art, .category-row.reverse .category-art { order:2; grid-column:1; min-height:245px; }
  .category-row .category-copy, .category-row.reverse .category-copy { order:3; grid-column:1; }
  .reference-band { grid-template-columns:1fr; gap:35px; margin:0; }
  .accessory-grid { grid-template-columns:1fr; }
  .accessory-card, .accessory-card:last-child { grid-column:auto; min-height:430px; }
  .story-copy { padding:70px 24px; }
  .story-visual { min-height:410px; }
  .story-visual img { width:42%; }
  .steps { grid-template-columns:1fr; }
  .steps article { min-height:210px; }
  .steps article h3 { margin-top:38px; }
  .closing { grid-template-columns:1fr; text-align:center; gap:30px; min-height:620px; padding:90px 24px; }
  .closing-mark img { width:220px; }
  .closing .hero-actions { justify-content:center; }
  footer { grid-template-columns:1fr; text-align:center; }
  .footer-brand img { margin:0 auto; object-position:center; }
  .footer-links { justify-content:center; }
  footer small { grid-column:1; }
}

@media (max-width: 480px) {
  .brand span { font-size:14px; }
  .hero-intro { font-size:13px; }
  .button { width:100%; }
  .hero-proof { gap:8px; }
  .hero-proof i { display:none; }
  .accessory-card { padding:30px 24px; }
  .floating-whatsapp span { display:none; }
  .floating-whatsapp { width:48px; padding:0; justify-content:center; border-radius:50%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  .reveal { opacity:1; transform:none; transition:none; }
  .button { transition:none; }
}

.photo-art img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  display: block;
}

.suits-section {
  padding-top: 40px;
}

.feature-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 58px 0;
}

.feature-image {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: linear-gradient(145deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}

.feature-image::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(207,170,103,.12);
  pointer-events: none;
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}

.feature-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(40px, 3.4vw, 62px);
  line-height: .95;
}

.feature-copy > p:not(.eyebrow) {
  color: #a8b2bc;
  max-width: 520px;
}

.feature-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 34px;
  display: grid;
  gap: 12px;
}

.feature-points li {
  color: #d8d1c5;
  position: relative;
  padding-left: 18px;
  font-size: 13px;
}

.feature-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 9px;
}

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

.photo-card {
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}

.photo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(207,170,103,.3);
}

.photo-card-media {
  height: 330px;
  overflow: hidden;
}

.photo-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-card-copy {
  padding: 24px 24px 30px;
}

.photo-card-copy p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: .2em;
}

.photo-card-copy h3 {
  margin: 0 0 18px;
  font-size: 36px;
  line-height: .98;
}

.photo-card-copy small {
  color: #83909c;
  font-size: 8px;
  letter-spacing: .14em;
}

.curated-edit {
  padding-top: 30px;
}

.edit-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-auto-rows: 280px;
  gap: 20px;
}

.edit-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,.02);
}

.edit-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.edit-tile.tall {
  grid-row: span 2;
}

.edit-tile.wide {
  grid-column: span 2;
}

@media (max-width: 1050px) {
  .feature-split {
    grid-template-columns: 1fr;
  }

  .photo-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-card-grid .photo-card:last-child {
    grid-column: 1 / -1;
  }

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

  .edit-tile.wide {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .photo-art img,
  .feature-image img,
  .feature-image {
    min-height: 300px;
  }

  .feature-split {
    padding: 40px 0;
  }

  .photo-card-grid,
  .edit-grid {
    grid-template-columns: 1fr;
  }

  .photo-card-grid .photo-card:last-child,
  .edit-tile.wide,
  .edit-tile.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .edit-grid {
    grid-auto-rows: 260px;
  }
}
