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

:root {
  --midnight: #0a1018;
  --navy: #111d2e;
  --navy-mid: #172440;
  --gilt: #c9a84c;
  --gilt-light: #e2c97e;
  --parchment: #f0ebe0;
  --linen: #e8e3d8;
  --muted: #c2bdb2;
  --rule: rgba(201, 168, 76, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--midnight);
  color: var(--parchment);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* â”€â”€â”€ NAV â”€â”€â”€ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4rem;
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.15);
  background: rgba(10, 16, 24, 0.92);
  backdrop-filter: blur(12px);
  transition: padding 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.nav-mono {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gilt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-mono span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gilt);
  letter-spacing: 0.04em;
}

.nav-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--parchment);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gilt);
}

.nav-cta {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gilt);
  border: 0.5px solid var(--gilt);
  padding: 0.55rem 1.25rem;
  text-decoration: none;
  font-weight: 400;
  transition:
    background 0.2s,
    color 0.2s;
}

.nav-cta:hover {
  background: var(--gilt);
  color: var(--midnight);
}

/* â”€â”€â”€ HERO â”€â”€â”€ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 80% 40%,
      rgba(23, 36, 64, 0.7) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 10% 80%,
      rgba(201, 168, 76, 0.05) 0%,
      transparent 60%
    ),
    linear-gradient(
      160deg,
      rgba(10, 16, 24, 0.85) 0%,
      rgba(17, 29, 46, 0.85) 50%,
      rgba(13, 21, 32, 0.85) 100%
    ),
    url('./hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gilt);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 0.5px;
  background: var(--gilt);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 500;
  line-height: 0.9;
  color: var(--parchment);
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gilt-light);
}

.hero-body {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gilt);
  color: var(--midnight);
  padding: 1rem 2.2rem;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--gilt-light);
}

.btn-ghost {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.2s;
}

.btn-ghost:hover {
  color: var(--parchment);
}

.btn-ghost::after {
  content: 'â†’';
  font-size: 14px;
}

.hero-stats {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
  display: flex;
  gap: 3rem;
  z-index: 1;
}

.stat {
  text-align: right;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--parchment);
  line-height: 1;
}

.stat-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 21, 32, 0) 0%,
    rgba(13, 21, 32, 0.85) 40%,
    rgba(13, 21, 32, 0.85) 100%
  );
  display: flex;
  justify-content: center;
  gap: 8rem;
  padding: 3rem 4rem 1.5rem;
  z-index: 10;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gilt);
  margin-bottom: 0.3rem;
}

.hero-stat-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* â”€â”€â”€ SHARED SECTION â”€â”€â”€ */
section {
  padding: 7rem 4rem;
}

.section-rule {
  width: 40px;
  height: 0.5px;
  background: var(--gilt);
  margin-bottom: 1rem;
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gilt);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--parchment);
  margin-bottom: 1.5rem;
}

.section-body {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.85;
}

/* â”€â”€â”€ ABOUT â”€â”€â”€ */
#about {
  background: var(--navy);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.pillar {
  padding-left: 1.5rem;
  border-left: 0.5px solid var(--rule);
}

.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--parchment);
  margin-bottom: 0.35rem;
}

.pillar-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-card {
  background: var(--midnight);
  border: 0.5px solid rgba(201, 168, 76, 0.15);
  padding: 1.75rem 2rem;
}

.about-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--gilt);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.about-card-title {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gilt);
  margin-bottom: 0.5rem;
}

.about-card-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

/* â”€â”€â”€ SELLERS / PROCESS â”€â”€â”€ */
#process {
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--gilt) 1px, transparent 1px),
    linear-gradient(90deg, var(--gilt) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: rotate(45deg);
  z-index: 0;
}

.process-list {
  display: flex;
  flex-direction: column;
}

.process-row {
  display: grid;
  grid-template-columns: 120px 240px 1fr;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 0.5px solid var(--rule);
}

.process-row:first-child {
  border-top: 0.5px solid var(--rule);
}

.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gilt);
}

.process-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--parchment);
}

.process-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}

/* â”€â”€â”€ NETWORK â”€â”€â”€ */
#network {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.network-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 80% at 90% 50%,
    rgba(201, 168, 76, 0.04) 0%,
    transparent 70%
  );
}

.network-inner {
  position: relative;
  z-index: 1;
}

.network-header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

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

.network-card {
  background: var(--midnight);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.network-card:hover {
  background: #0e1925;
}

.network-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gilt), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.network-card:hover::before {
  opacity: 1;
}

.network-card-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--gilt);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.network-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--parchment);
  margin-bottom: 0.75rem;
}

.network-card-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.network-geography {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 0.5px solid rgba(201, 168, 76, 0.15);
  display: flex;
  gap: 4rem;
  align-items: center;
}

.geo-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gilt);
  margin-bottom: 0.5rem;
}

.geo-markets {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.geo-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--parchment);
  border: 0.5px solid rgba(201, 168, 76, 0.3);
  padding: 0.4rem 1rem;
  font-weight: 400;
}

.geo-body {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
}

/* â”€â”€â”€ BUYERS â”€â”€â”€ */
#buyers {
  background: var(--midnight);
}

.buyers-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}

.mandate-form {
  background: var(--navy);
  border: 0.5px solid rgba(201, 168, 76, 0.2);
  padding: 2.5rem;
}

.mandate-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--parchment);
  margin-bottom: 0.5rem;
}

.mandate-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.mandate-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gilt);
}

.field-input {
  background: var(--midnight);
  border: 0.5px solid rgba(201, 168, 76, 0.2);
  color: var(--parchment);
  padding: 0.75rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}

.field-input:focus {
  border-color: var(--gilt);
}

.field-input::placeholder {
  color: rgba(194, 189, 178, 0.55);
}

.field-select {
  background: var(--midnight);
  border: 0.5px solid rgba(201, 168, 76, 0.2);
  color: var(--parchment);
  padding: 0.75rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  outline: none;
  width: 100%;
  appearance: none;
  transition: border-color 0.2s;
}

.field-select:focus {
  border-color: var(--gilt);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.mandate-submit {
  margin-top: 1.5rem;
  width: 100%;
  background: var(--gilt);
  color: var(--midnight);
  border: none;
  padding: 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.mandate-submit:hover {
  background: var(--gilt-light);
}

.buyers-right {
  padding-top: 1rem;
}

.buyers-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.buyer-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.1);
}

.buyer-item:last-child {
  border-bottom: none;
}

.buyer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gilt);
  flex-shrink: 0;
  margin-top: 8px;
}

.buyer-item-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--parchment);
  margin-bottom: 0.25rem;
}

.buyer-item-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
}

/* â”€â”€â”€ STRUCTURES / DEAL CARDS â”€â”€â”€ */
#structures {
  background: var(--navy);
}

.structures-header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.deal-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.deal-card {
  border: 0.5px solid rgba(201, 168, 76, 0.15);
  padding: 2rem 1.75rem;
  background: var(--midnight);
  position: relative;
}

.deal-card-badge {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gilt);
  margin-bottom: 1.25rem;
  display: block;
}

.deal-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--parchment);
  margin-bottom: 1rem;
}

.deal-card-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 1rem;
}

.deal-note {
  font-size: 1rem;
  color: rgba(194, 189, 178, 0.75);
  margin-top: 1rem;
  line-height: 1.6;
  font-style: italic;
}

/* â”€â”€â”€ TWO-COL GRID â”€â”€â”€ */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  margin-bottom: 3rem;
}

.about-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.buyers-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 4rem;
}

/* â”€â”€â”€ CONTACT â”€â”€â”€ */
#contact {
  background: var(--midnight);
  padding: 8rem 4rem;
  position: relative;
}

.contact-layout {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 500;
  color: var(--parchment);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.contact-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

.contact-info-list {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border: 0.5px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gilt);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.contact-info-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.contact-info-val {
  font-size: 1.05rem;
  color: var(--parchment);
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-input {
  background: transparent;
  border: 0.5px solid var(--rule);
  padding: 0.85rem 1rem;
  color: var(--parchment);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: var(--gilt);
}

textarea.form-input {
  min-height: 100px;
  resize: vertical;
}

.btn-submit {
  background: var(--gilt);
  color: var(--midnight);
  border: none;
  padding: 1rem 2rem;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: var(--gilt-light);
}

/* â”€â”€â”€ FOOTER â”€â”€â”€ */
footer {
  background: var(--navy);
  padding: 4rem 4rem 2rem;
  display: flex;
  flex-direction: column;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 4rem;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--parchment);
  margin-bottom: 1rem;
}

.footer-brand h3 span {
  color: var(--gilt);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.6;
}

.footer-col-title {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a,
.footer-contact-item {
  font-size: 0.9rem;
  color: var(--parchment);
  text-decoration: none;
  transition: color 0.2s;
  opacity: 0.9;
}

.footer-links a:hover {
  color: var(--gilt);
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  color: rgba(194, 189, 178, 0.55);
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-sep {
  opacity: 0.5;
  font-size: 0.8em;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--gilt);
}

/* â”€â”€â”€ DIVIDER â”€â”€â”€ */
.gilt-divider {
  width: 100%;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--gilt), transparent);
  opacity: 0.3;
}

/* â”€â”€â”€ ANIMATIONS â”€â”€â”€ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  nav {
    padding: 1.25rem 24px !important;
  }

  .nav-logo {
    gap: 12px;
  }

  .nav-wordmark {
    font-size: 16px;
  }

  .nav-links {
    display: none;
  }

  section,
  #contact {
    padding: 5rem 1.5rem;
  }

  .hero {
    padding: 7rem 1.5rem 24rem;
  }

  .hero-stats {
    right: 1.5rem;
    bottom: 2rem;
    gap: 2rem;
  }

  .hero-stats-bar {
    flex-direction: column;
    gap: 1.5rem;
    padding: 3.5rem 1.5rem 2rem;
  }

  .about-grid,
  .sellers-layout,
  .buyers-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .network-grid,
  .deal-cards,
  .two-col-grid,
  .about-text-grid,
  .buyers-pillars-grid {
    grid-template-columns: 1fr;
  }

  .process-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 2.5rem 0;
  }

  .network-geography {
    flex-direction: column;
    gap: 2rem;
  }

  footer {
    padding: 2rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }

  .footer-bottom-links {
    order: -1;
    gap: 1.5rem;
  }

  .footer-sep {
    display: none;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .legal-page {
    padding: 7rem 1.5rem 5rem !important;
  }

  .legal-title {
    font-size: 2rem !important;
    margin-bottom: 0rem !important;
  }

  .legal-content h3 {
    font-size: 1.5rem !important;
    margin-top: 1rem !important;
  }
}

/* ─── LEGAL PAGES ─── */
.legal-page {
  padding: 7rem 4rem 8rem;
  max-width: 1300px;
  margin: 0 auto;
  min-height: 70vh;
}

.legal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--gilt);
  margin-bottom: 3rem;
}

.legal-content {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.legal-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--parchment);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}
.legal-content ul {
  /* list-style-type: none; */
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  position: relative;
  margin-bottom: 0.75rem;
}

/* .legal-content li::before {
  content: '•';
  position: absolute;
  left: -1.25rem;
  color: var(--gilt);
} */
