:root {
  --bg-dark: #161513;
  --bg-card: #1D1B18;
  --bg-card-2: #232019;
  --bg-light: #F3F2EF;
  --surface: #FFFFFF;
  --gold: #B2946C;
  --gold-light: #C9AE85;
  --gold-dark: #8F7350;
  --off-white: #F8F6F1;
  --text-muted: #8C887F;
  --text-soft: #6E6A63;
  --text-body: #C4C0BA;
  --line: #2E2B25;
  --line-light: #E1DFDA;
  --line-faint: #E8E5DF;
  --section-pad: clamp(4rem, 8vw, 7rem);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --font-ui: 'Inter', Helvetica, Arial, sans-serif;
  --font-serif: 'Merriweather', Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ui);
  color: var(--off-white);
  background-color: var(--bg-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s;
}

a:hover {
  color: var(--gold-light);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 0.6rem 1rem;
}

.skip-link:focus {
  left: 0;
}

/* ============ NAVBAR ============ */
.ft-navbar {
  background: rgba(22, 21, 19, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(46, 43, 37, 0.6);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  transition: background 0.3s, box-shadow 0.3s;
}

.ft-navbar-scrolled {
  background: rgba(22, 21, 19, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.ft-brand {
  display: inline-flex;
  align-items: center;
}

.ft-brand-logo {
  height: auto;
  max-height: 52px;
  transition: transform 0.25s;
}

.ft-brand:hover .ft-brand-logo {
  transform: scale(1.03);
}

.ft-nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-body);
  padding: 0.5rem 0.25rem;
  position: relative;
}

.ft-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.25s;
}

.ft-nav-link:hover,
.ft-nav-link:focus {
  color: var(--off-white);
}

.ft-nav-link:hover::after,
.ft-nav-link:focus::after {
  width: 100%;
}

.ft-toggler {
  border-color: rgba(184, 148, 108, 0.4);
  color: var(--gold);
}

.ft-toggler:hover {
  background: rgba(184, 148, 108, 0.12);
}

.ft-toggler .ti {
  width: 26px;
  height: 26px;
}

.btn-sm-ft {
  font-size: 0.85rem;
  padding: 0.5rem 1.1rem;
}

.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  border-radius: 999px;
  padding: 0.6rem 1.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--bg-dark);
  box-shadow: 0 8px 24px rgba(178, 148, 108, 0.25);
}

/* ============ HERO ============ */
.ft-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  isolation: isolate;
}

.ft-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.ft-hero-media img,
.ft-hero-media source {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ft-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(22, 21, 19, 0.92) 0%,
    rgba(22, 21, 19, 0.78) 45%,
    rgba(22, 21, 19, 0.35) 100%
  );
}

.ft-hero-content {
  padding-top: 2rem;
}

.ft-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.ft-hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin-bottom: 1.5rem;
}

.ft-hero-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 560px;
  margin-bottom: 2rem;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--bg-dark);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(178, 148, 108, 0.3);
}

.btn-gold .ti,
.btn-outline-gold .ti,
.btn-dark-solid .ti,
.ft-link-arrow .ti {
  width: 18px;
  height: 18px;
}

.ft-btn-icon {
  transition: transform 0.25s;
}

.btn-gold:hover .ft-btn-icon {
  transform: translateX(3px);
}

.ft-btn-label {
  display: inline-block;
}

.ft-counter {
  font-variant-numeric: tabular-nums;
}

.ft-quote-content {
  position: relative;
  z-index: 1;
}

.ft-stats-intro {
  margin-bottom: 3rem;
}

.ft-hero-meta {
  position: absolute;
  right: 3rem;
  bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.ft-hero-meta-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
}

/* ============ SECCIONES ============ */
.ft-section {
  padding-block: var(--section-pad);
}

.ft-section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--off-white);
}

.ft-about-text {
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.85;
}

.ft-about-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.9rem;
  color: var(--text-body);
  font-size: 0.95rem;
}

.ft-about-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.8;
}

.ft-about-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ============ CTA MINI ============ */
.ft-cta-mini {
  padding: 4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-card);
}

.ft-cta-mini-text {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--off-white);
  margin-bottom: 1.5rem;
}

.ft-cta-mini-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.ti-static {
  width: 20px;
  height: 20px;
}

/* ============ CARDS DE SERVICIOS ============ */
.ft-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0;
  cursor: pointer;
  transition: gap 0.25s, color 0.25s;
}

.ft-link-arrow:hover {
  color: var(--gold-light);
  gap: 0.8rem;
}

.ft-card {
  position: relative;
  height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.ft-card:hover {
  border-color: rgba(178, 148, 108, 0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.ft-card-featured {
  border-color: rgba(178, 148, 108, 0.45);
  background: linear-gradient(160deg, var(--bg-card-2), var(--bg-card));
}

.ft-card-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(178, 148, 108, 0.12);
  color: var(--gold);
}

.ft-card-icon .ti {
  width: 22px;
  height: 22px;
}

.ft-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.5rem;
}

.ft-card-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

.ft-card-arrow {
  position: absolute;
  right: 1.5rem;
  bottom: 1.4rem;
  width: 18px;
  height: 18px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}

.ft-card:hover .ft-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============ QUOTE + STATS ============ */
.ft-quote {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: var(--section-pad) 0;
  isolation: isolate;
}

.ft-quote-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.ft-quote-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ft-quote-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    rgba(22, 21, 19, 0.82),
    rgba(22, 21, 19, 0.92)
  );
}

.ft-quote-text {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  line-height: 1.25;
  color: var(--off-white);
  margin-bottom: 1.5rem;
  position: relative;
}

.ft-quote-mark {
  color: var(--gold);
  font-size: 1.6em;
  line-height: 0;
  vertical-align: middle;
  margin-right: 0.2em;
}

.ft-quote-mark-end {
  margin-left: 0.2em;
  margin-right: 0;
}

.ft-quote-who {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.85;
  max-width: 620px;
}

.ft-quote-passion {
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-top: 1rem;
}

.ft-quote-dash {
  color: var(--gold);
}

.ft-stats {
  padding: var(--section-pad) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--line);
}

.ft-stats-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.ft-stats-desc {
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.8;
}

.ft-stat {
  text-align: center;
  padding: 1.5rem 1rem;
}

.ft-stat-icon {
  width: 30px;
  height: 30px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.ft-stat-number {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--off-white);
  margin-bottom: 0.4rem;
}

.ft-stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  text-transform: uppercase;
}

/* ============ GALERÍA ============ */
.ft-gallery {
  padding: var(--section-pad) 0;
}

.ft-gallery-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--off-white);
  margin-bottom: 2.5rem;
  text-align: center;
}

.ft-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ft-gallery-grid a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.ft-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s, filter 0.4s;
}

.ft-gallery-grid a:hover img {
  transform: scale(1.06);
  filter: brightness(0.85);
}

/* ============ CTA ============ */
.ft-cta {
  padding: var(--section-pad) 0;
  background: var(--bg-card-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ft-cta-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.ft-cta-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--off-white);
  margin-bottom: 2rem;
}

.btn-dark-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-dark);
  color: var(--off-white);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0.85rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.25s, color 0.25s;
}

.btn-dark-solid:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* ============ CONTACTO ============ */
.ft-contact-text {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.ft-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ft-contact-list li {
  margin-bottom: 0.5rem;
}

.ft-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-body);
  font-size: 0.95rem;
  padding: 0.8rem 0;
  transition: color 0.25s;
}

a.ft-contact-item:hover {
  color: var(--gold-light);
}

.ft-contact-item .ti {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--gold);
}

.ft-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
}

.ft-input {
  background: var(--bg-dark) !important;
  border: 1px solid var(--line) !important;
  color: var(--off-white) !important;
  border-radius: 6px !important;
  padding: 0.8rem 1rem !important;
  font-size: 0.92rem !important;
}

.ft-input::placeholder {
  color: var(--text-soft);
}

.ft-input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 0.2rem rgba(178, 148, 108, 0.15) !important;
}

select.ft-input option {
  background: var(--bg-card);
  color: var(--off-white);
}

.ft-form-status {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: 6px;
  background: rgba(106, 153, 102, 0.12);
  border: 1px solid rgba(106, 153, 102, 0.4);
  color: var(--off-white);
  font-size: 0.9rem;
}

.ft-form-status .ti {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: #6a9966;
}

.ft-form-status-error {
  background: rgba(198, 102, 102, 0.12);
  border-color: rgba(198, 102, 102, 0.4);
}

.ft-form-status-error .ti {
  color: #c66;
}

.ft-form-alt {
  font-size: 0.88rem;
  color: var(--text-body);
}

.ft-link-gold {
  color: var(--gold);
  font-weight: 500;
}

.ft-link-gold:hover {
  color: var(--gold-light);
}

/* ============ FOOTER ============ */
.ft-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--line);
  padding-top: 4rem;
}

.ft-footer-tagline {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.ft-tpn-badge {
  display: block;
  margin-top: 1.2rem;
  opacity: 0.85;
  transition: opacity 0.25s;
}

.ft-tpn-badge:hover {
  opacity: 1;
}

.ft-footer-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.ft-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ft-footer-list li {
  margin-bottom: 0.6rem;
}

.ft-footer-list a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.25s, padding-left 0.25s;
}

.ft-footer-list a:hover {
  color: var(--off-white);
  padding-left: 4px;
}

.ft-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.8rem;
}

.ft-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-body);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.ft-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(178, 148, 108, 0.1);
}

.ft-social .ti {
  width: 18px;
  height: 18px;
}

.ft-footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.ft-footer-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
}

.ft-footer-bottom a {
  color: var(--text-soft);
}

.ft-footer-bottom a:hover {
  color: var(--off-white);
}

/* ============ WHATSAPP FLOTANTE ============ */
.ft-wa {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}

.ft-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.ft-wa .ti {
  width: 22px;
  height: 22px;
}

.ft-wa-label {
  display: inline;
}

.ft-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid #25D366;
  animation: ft-wa-pulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes ft-wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ============ MODAL ============ */
.ft-modal .modal-content {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--off-white);
}

.ft-modal .modal-header {
  border-bottom: 1px solid var(--line);
}

.ft-modal-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--gold);
}

.ft-modal-isotipo {
  width: 100%;
  height: 100%;
}

.ft-modal-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.ft-modal-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--off-white);
  margin-bottom: 2rem;
}

.ft-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.ft-modal-service {
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card-2);
  transition: border-color 0.25s;
}

.ft-modal-service:hover {
  border-color: rgba(178, 148, 108, 0.45);
}

.ft-modal-service-num {
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.ft-modal-service h4 {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.4rem;
}

.ft-modal-service p {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

.ft-modal .modal-footer {
  border-top: 1px solid var(--line);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991.98px) {
  .ft-navbar .navbar-collapse {
    background: rgba(22, 21, 19, 0.97);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-top: 0.75rem;
    border: 1px solid var(--line);
  }

  .ft-nav-link {
    display: block;
    padding: 0.6rem 0;
  }

  .ft-modal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .ft-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ft-hero {
    min-height: auto;
    padding-top: 7rem;
  }

  .ft-hero-meta {
    display: none;
  }

  .ft-wa-label {
    display: none;
  }

  .ft-wa {
    padding: 0.85rem;
    border-radius: 50%;
  }
}

@media (max-width: 575.98px) {
  .ft-gallery-grid {
    grid-template-columns: 1fr;
  }

  .ft-form {
    padding: 1.5rem;
  }

  .ft-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .ft-footer-bottom ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============ PÁGINAS LEGALES ============ */
.legal-page {
  background: var(--bg-dark);
  padding-block: var(--section-pad);
}

.legal-header {
  margin-bottom: 3rem;
}

.legal-page h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--off-white);
}

.legal-page h2 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.legal-page h3 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--off-white);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-page p,
.legal-page li {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.legal-page ul {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.legal-page ul li {
  margin-bottom: 0.5rem;
}

.legal-page a {
  color: var(--gold);
  text-underline-offset: 4px;
}

.legal-page a:hover {
  color: var(--gold-light);
}

.legal-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.ft-logo-cream {
  filter: brightness(0) saturate(100%) invert(89%) sepia(14%) saturate(254%) hue-rotate(339deg) brightness(101%) contrast(93%);
}

.ft-logo-link {
  display: inline-block;
  margin-bottom: 2rem;
}

.ft-footer-main {
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 2rem;
  margin-top: 3rem;
}

.ft-footer-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.ft-footer-about {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}