/* Intelligent Property Sourcing — premium gold/black design system */

:root {
  --ink: #0a0a0c;
  --coal: #101014;
  --panel: #15151b;
  --panel-2: #18181f;
  --gold: #c9a227;
  --gold-2: #e8c96a;
  --gold-3: #9a7b1e;
  --line: rgba(201, 162, 39, 0.22);
  --line-soft: rgba(201, 162, 39, 0.12);
  --ivory: #f3eee2;
  --muted: #a39c8c;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Trebuchet MS", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background-color: var(--ink);
  color: var(--ivory);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* marble atmosphere: veining + vignette + grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(201, 162, 39, 0.07), transparent 60%),
    radial-gradient(900px 700px at -10% 40%, rgba(232, 201, 106, 0.04), transparent 55%),
    radial-gradient(1200px 800px at 50% 115%, rgba(201, 162, 39, 0.05), transparent 60%),
    var(--ink);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='700' height='700'%3E%3Cfilter id='m'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.004 0.009' numOctaves='4' seed='7'/%3E%3CfeColorMatrix values='0 0 0 0 0.79 0 0 0 0 0.64 0 0 0 0 0.15 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='700' height='700' filter='url(%23m)'/%3E%3C/svg%3E");
  background-size: 700px 700px;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

::selection { background: var(--gold); color: var(--ink); }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: 0.01em; }
h1 em, h2 em { font-style: italic; font-weight: 500; color: var(--gold-2); }

h1 { font-size: clamp(2.7rem, 6.2vw, 4.7rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin-bottom: 0.5em; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
  opacity: 0.7;
}

.section-lede { max-width: 620px; color: var(--muted); margin-bottom: 3.2rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05em 2.3em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s, color 0.4s, border-color 0.4s;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-3));
  color: #15120a;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(201, 162, 39, 0.28);
}
.btn-ghost {
  border-color: var(--line);
  color: var(--ivory);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: linear-gradient(rgba(10, 10, 12, 0.92), rgba(10, 10, 12, 0.85));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-mark { width: 44px; height: 42px; flex: none; }
.brand-text {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.5;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a:not(.btn) {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
  opacity: 0.85;
  transition: color 0.3s, opacity 0.3s;
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--gold-2); opacity: 1; }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-cta { padding: 0.8em 1.7em; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 36px;
  position: relative;
  cursor: pointer;
}
.nav-toggle span {
  position: absolute;
  left: 7px; right: 7px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.35s var(--ease), top 0.35s var(--ease);
}
.nav-toggle span:first-child { top: 13px; }
.nav-toggle span:last-child { top: 22px; }
.nav-toggle[aria-expanded="true"] span:first-child { top: 17px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { top: 17px; transform: rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 200px 0 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.hero-ghost {
  position: absolute;
  right: -6%;
  top: 10%;
  width: min(58vw, 720px);
  height: auto;
  aspect-ratio: 98/94;
  opacity: 0.055;
  pointer-events: none;
}
.hero .lede {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.15rem;
  margin: 2rem 0 2.8rem;
}
.cta-row { display: flex; gap: 18px; flex-wrap: wrap; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 88px;
  padding-top: 38px;
  border-top: 1px solid var(--line-soft);
}
.stat-n {
  display: block;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--gold-2);
  line-height: 1;
}
.stat-l {
  display: block;
  margin-top: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* hero load animation */
.rise { opacity: 0; transform: translateY(28px); animation: rise 1s var(--ease) forwards; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.22s; }
.d3 { animation-delay: 0.36s; }
.d4 { animation-delay: 0.5s; }
.d5 { animation-delay: 0.68s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- sections ---------- */
.section { padding: 110px 0; }
.section-alt {
  background: linear-gradient(rgba(21, 21, 27, 0.55), rgba(21, 21, 27, 0.55));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

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

/* strategy cards */
.card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  padding: 38px 30px 34px;
  position: relative;
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}
.card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1.6rem;
}
.card-num::after {
  content: "";
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
  margin-top: 10px;
  opacity: 0.6;
  transition: width 0.5s var(--ease);
}
.card:hover .card-num::after { width: 58px; }
.card h3 { font-size: 1.45rem; margin-bottom: 0.7rem; color: var(--ivory); }
.card p { font-size: 0.95rem; color: var(--muted); }

/* ---------- areas ---------- */
.region { margin-top: 3.4rem; }
.region-head { display: flex; align-items: center; gap: 26px; margin-bottom: 1.8rem; }
.region-head h3 {
  font-size: 1.9rem;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-2);
  white-space: nowrap;
}
.region-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }

.area {
  background: rgba(10, 10, 12, 0.45);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--gold-3);
  padding: 24px 26px;
  transition: border-color 0.4s, background 0.4s, transform 0.4s var(--ease);
}
.area:hover { border-left-color: var(--gold-2); background: rgba(21, 21, 27, 0.8); transform: translateX(4px); }
.area h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}
.area p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.area-more { border-left-style: dashed; }
.area-more h4 { color: var(--gold); }

/* ---------- deals ---------- */
.deal {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  padding: 30px 30px 70px;
  position: relative;
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.deal:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}
.deal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 1.3rem;
  flex-wrap: wrap;
}
.tag {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #15120a;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  padding: 5px 12px;
}
.deal-loc {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.deal h3 { font-size: 1.4rem; margin-bottom: 1.4rem; }
.deal-stats div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px dotted rgba(201, 162, 39, 0.18);
}
.deal-stats dt { font-size: 0.86rem; color: var(--muted); }
.deal-stats dd { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; color: var(--ivory); }
.deal-stats .deal-key { border-bottom: none; padding-top: 14px; }
.deal-stats .deal-key dt { color: var(--gold-2); }
.deal-stats .deal-key dd { color: var(--gold-2); font-size: 1.5rem; }
.badge {
  position: absolute;
  left: 30px; bottom: 24px;
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  padding: 5px 11px;
}
.disclaimer {
  margin-top: 2.6rem;
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 700px;
  opacity: 0.85;
}

/* ---------- process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 3rem;
}
.step { position: relative; padding-top: 26px; }
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0 38px, var(--line-soft) 38px);
}
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--gold-2);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.32rem; margin-bottom: 0.6rem; }
.step p { font-size: 0.92rem; color: var(--muted); }

/* ---------- why ---------- */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.why-text p:not(.eyebrow) { color: var(--muted); margin-top: 1.4rem; }
.why-list { list-style: none; }
.why-list li {
  padding: 22px 0 22px 34px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  color: var(--muted);
  font-size: 0.98rem;
}
.why-list li:first-child { padding-top: 8px; }
.why-list strong { color: var(--ivory); font-weight: 500; display: block; margin-bottom: 2px; }
.why-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 34px;
  width: 14px; height: 1px;
  background: var(--gold);
}
.why-list li:first-child::before { top: 20px; }

/* ---------- contact ---------- */
.section-contact {
  background:
    radial-gradient(800px 500px at 15% 20%, rgba(201, 162, 39, 0.06), transparent 60%),
    linear-gradient(rgba(16, 16, 20, 0.7), rgba(16, 16, 20, 0.7));
  border-top: 1px solid var(--line-soft);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.contact-intro p:not(.eyebrow) { color: var(--muted); margin-top: 1.4rem; max-width: 420px; }
.contact-mark { margin-top: 3.5rem; }
.contact-mark svg { width: 140px; height: 134px; opacity: 0.35; }

.form {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 44px 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form select,
.form textarea {
  display: block;
  width: 100%;
  margin-top: 9px;
  background: rgba(10, 10, 12, 0.6);
  border: 1px solid var(--line-soft);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.98rem;
  letter-spacing: normal;
  padding: 13px 15px;
  transition: border-color 0.3s;
}
.form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.form select:invalid { color: var(--muted); }
.form option { background: var(--panel); color: var(--ivory); }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form textarea { resize: vertical; }
.form ::placeholder { color: rgba(163, 156, 140, 0.55); }
.hp { display: none !important; }
.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  font-size: 0.85rem !important;
  font-weight: 300 !important;
  color: var(--muted) !important;
}
.consent input { accent-color: var(--gold); margin-top: 4px; }
.consent a { color: var(--gold-2); }
.btn-submit { width: 100%; border: none; font-size: 0.86rem; }
.form-status { margin-top: 14px; font-size: 0.9rem; min-height: 1.4em; letter-spacing: 0.04em; }
.form-status.ok { color: var(--gold-2); }
.form-status.err { color: #d98a7e; }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: 64px 0 40px;
  background: rgba(10, 10, 12, 0.7);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; gap: 18px; align-items: flex-start; }
.footer-brand .brand-mark { width: 52px; height: 50px; }
.footer-brand p {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.7;
}
.footer-brand span { color: var(--muted); font-weight: 300; letter-spacing: 0.08em; text-transform: none; font-size: 0.86rem; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; padding-top: 6px; }
.footer-links a {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-2); }
.footer-legal { margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line-soft); }
.footer-legal p { font-size: 0.76rem; color: var(--muted); opacity: 0.75; max-width: 880px; }
.footer-legal p + p { margin-top: 12px; }

/* ---------- floating cta ---------- */
.float-cta {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 40;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  color: #15120a;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.float-cta svg { width: 22px; height: 22px; }
.float-cta:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 18px 40px rgba(201, 162, 39, 0.3); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

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

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 22px; }
  .why-wrap, .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .contact-mark { display: none; }
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 69px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(10, 10, 12, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 10px 28px 26px;
    transform: translateY(-130%);
    transition: transform 0.45s var(--ease);
  }
  .nav-links.open { transform: none; }
  .nav-links a:not(.btn) { padding: 15px 0; width: 100%; border-bottom: 1px solid var(--line-soft); }
  .nav-cta { margin-top: 20px; }
}

@media (max-width: 640px) {
  .section { padding: 78px 0; }
  .hero { padding: 150px 0 70px; }
  .hero-ghost { right: -30%; opacity: 0.04; width: 90vw; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; margin-top: 60px; }
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form { padding: 32px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .brand-text { font-size: 0.68rem; }
  .float-cta { right: 18px; bottom: 18px; width: 50px; height: 50px; }
}

/* ============================================================
   Imagery & light editorial section
   ============================================================ */

/* hero photography */
.hero { padding: 225px 0 100px; }
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 32%;
  filter: saturate(0.95) contrast(1.04);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 12, 0.92) 0%, rgba(10, 10, 12, 0.7) 42%, rgba(10, 10, 12, 0.3) 100%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.6) 0%, transparent 26%, transparent 52%, var(--ink) 97%);
}
.hero .lede { color: #cfc8b8; }

/* strategy card imagery */
.card { overflow: hidden; }
.card-img {
  margin: -38px -30px 26px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 0.8s var(--ease);
}
.card:hover .card-img img { transform: scale(1.06); }

/* region banners */
.region-banner {
  position: relative;
  aspect-ratio: 16 / 5;
  min-height: 200px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  margin-bottom: 26px;
}
.region-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 1.2s var(--ease);
}
.region:hover .region-banner img { transform: scale(1.04); }
.region-banner figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 32px 22px;
  background: linear-gradient(transparent, rgba(10, 10, 12, 0.88));
}
.region-banner h3 {
  font-size: 2rem;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-2);
}

/* deal card imagery */
.deal { overflow: hidden; padding-top: 0; }
.deal-img {
  margin: 0 -30px 24px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.deal-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.8s var(--ease);
}
.deal:hover .deal-img img { transform: scale(1.06); }

/* ivory editorial section */
.section-light {
  background: #f2ede3;
  border-top: 1px solid rgba(154, 123, 30, 0.3);
  border-bottom: 1px solid rgba(154, 123, 30, 0.3);
}
.section-light h2 { color: #17130b; }
.section-light h2 em { color: #8a6d15; }
.section-light .eyebrow { color: #8a6d15; }
.section-light .eyebrow::before { background: #8a6d15; }
.section-light .why-text p:not(.eyebrow) { color: #57503f; }
.section-light .why-list li { color: #57503f; border-bottom: 1px solid rgba(23, 19, 11, 0.14); }
.section-light .why-list strong { color: #17130b; }
.section-light .why-list li::before { background: #8a6d15; }
.why-img {
  position: relative;
  z-index: 0;
  margin-top: 2.8rem;
  margin-right: 16px;
}
.why-img img { width: 100%; display: block; filter: saturate(0.96); }
.why-img::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid #8a6d15;
  z-index: -1;
}

@media (max-width: 640px) {
  .hero { padding: 170px 0 80px; }
  .hero-bg::after {
    background:
      linear-gradient(rgba(10, 10, 12, 0.82), rgba(10, 10, 12, 0.74) 50%, var(--ink) 97%);
  }
  .region-banner { aspect-ratio: 16 / 9; }
  .card-img { margin: -38px -22px 22px; }
  .deal-img { margin: 0 -22px 22px; }
  .card, .deal { padding-left: 22px; padding-right: 22px; }
  .why-img { margin-right: 16px; }
}
