/* ============ Reset & Base ============ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: oklch(0.975 0.008 235);
  font-family: 'Karla', sans-serif;
  color: oklch(0.32 0.035 252);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }

:root {
  --navy-900: oklch(0.2 0.045 260);
  --navy-850: oklch(0.24 0.04 255);
  --navy-800: oklch(0.28 0.04 253);
  --navy-700: oklch(0.32 0.035 252);
  --navy-600: oklch(0.42 0.03 250);
  --navy-500: oklch(0.5 0.03 250);
  --navy-450: oklch(0.55 0.025 248);
  --blue-mid: oklch(0.55 0.11 250);
  --amber: oklch(0.62 0.15 50);
  --amber-dark: oklch(0.56 0.15 50);
  --cream: oklch(0.975 0.008 235);
  --blue-gray: oklch(0.93 0.018 240);
  --border: oklch(0.88 0.02 240);
  --border-soft: oklch(0.85 0.025 242);
  --card: oklch(0.99 0.003 235);
  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body: 'Karla', sans-serif;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-mid);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--navy-850);
  margin-bottom: 16px;
  text-wrap: balance;
}
.section-head p { font-size: 17px; line-height: 1.65; color: var(--navy-600); }
.section-cream { background: var(--cream); }
.section-bluegray { background: var(--blue-gray); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 17px 34px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-amber { background: var(--amber); color: oklch(0.99 0.005 60); }
.btn-amber:hover { background: var(--amber-dark); transform: translateY(-2px); }
.btn-outline-light {
  border: 1.5px solid oklch(0.9 0.02 240 / 0.7);
  color: oklch(0.99 0.003 235);
  background: transparent;
}
.btn-outline-light:hover { background: oklch(1 0 0 / 0.1); }
.btn-navy { background: var(--navy-850); color: var(--cream); }
.btn-navy:hover { background: oklch(0.32 0.05 255); }

/* ============ Noise overlay (anti-hairline utility) ============ */
@keyframes riseIn { 0% { opacity: 0; transform: translateY(26px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes auroraDrift { 0% { transform: translate(-8%, 0) scale(1); } 50% { transform: translate(10%, -6%) scale(1.15); } 100% { transform: translate(-8%, 0) scale(1); } }
@keyframes auroraDrift2 { 0% { transform: translate(6%, 0) scale(1.1); } 50% { transform: translate(-10%, 8%) scale(0.95); } 100% { transform: translate(6%, 0) scale(1.1); } }

.noise-overlay {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
}

details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* ============ Nav ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease;
}
.site-header.is-solid {
  background: oklch(0.975 0.008 235 / 0.85);
  backdrop-filter: blur(14px);
  border-bottom-color: oklch(0.88 0.02 240 / 0.8);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
  width: 34px; height: 34px;
  background: var(--navy-850);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 18px;
  color: oklch(0.98 0.005 235);
  border-radius: 50%;
}
.brand-word {
  font-family: var(--font-display);
  font-weight: 800; font-size: 21px;
  letter-spacing: 1px;
  color: oklch(0.99 0.003 235);
  text-transform: uppercase;
  transition: color 0.35s ease;
}
.is-solid .brand-word { color: var(--navy-850); }
.brand-accent { color: oklch(0.85 0.05 235); transition: color 0.35s ease; }
.is-solid .brand-accent { color: var(--blue-mid); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: oklch(0.95 0.01 235);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.35s ease;
}
.is-solid .nav-links a { color: var(--navy-700); }
.nav-links a:hover { color: var(--amber); }

.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  color: oklch(0.99 0.003 235);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: color 0.35s ease;
}
.is-solid .nav-phone { color: var(--navy-850); }
.nav-cta-btn {
  background: var(--amber);
  color: oklch(0.99 0.005 60);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 999px;
  transition: background 0.25s ease;
}
.nav-cta-btn:hover { background: var(--amber-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid oklch(0.82 0.03 245);
  border-radius: 999px;
  padding: 9px 13px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  min-height: 44px;
  justify-content: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: oklch(0.99 0.003 235);
  transition: background 0.35s ease;
}
.is-solid .nav-toggle span { background: var(--navy-850); }
.nav-toggle span:nth-child(2) { background: var(--amber) !important; }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px 24px 20px;
  gap: 4px;
  border-top: 1px solid var(--border);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  color: var(--navy-800);
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  padding: 12px 4px;
}
.nav-mobile .nav-phone-mobile { color: var(--blue-mid); font-weight: 700; }
.nav-mobile .nav-cta-btn { text-align: center; margin-top: 8px; }

@media (max-width: 920px) {
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, oklch(0.35 0.06 258) 0%, oklch(0.52 0.07 250) 60%, oklch(0.72 0.05 245) 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  mix-blend-mode: luminosity;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, oklch(0.24 0.06 258 / 0.55) 0%, oklch(0.35 0.06 258 / 0.55) 55%, oklch(0.6 0.06 250 / 0.35) 100%);
}
.hero .noise-overlay {
  position: absolute; inset: 0;
  opacity: 0.035;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}
.snow-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 3; }
.hero-inner {
  position: relative; z-index: 4;
  max-width: 1240px; margin: 0 auto;
  padding: 130px 24px 110px;
  width: 100%; box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
}
.hero-copy { max-width: 640px; animation: riseIn 0.9s ease-out both; }
.hero-copy .eyebrow { color: oklch(0.93 0.03 235); margin-bottom: 18px; }
.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(46px, 7.5vw, 92px);
  line-height: 0.98;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: oklch(0.99 0.003 235);
  text-wrap: balance;
  margin-bottom: 22px;
}
.hero-copy > p {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  color: oklch(0.93 0.02 240);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px 24px;
  margin-bottom: 36px;
  max-width: 520px;
  list-style: none;
  padding: 0;
}
.hero-badges li { display: flex; align-items: center; gap: 10px; }
.hero-badges .dot { width: 9px; height: 9px; background: var(--amber); border-radius: 50%; flex-shrink: 0; }
.hero-badges span.label { color: oklch(0.97 0.01 235); font-weight: 600; font-size: 15px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-stars { margin: 0; color: oklch(0.88 0.025 240); font-size: 14px; }
.hero-stars .stars { color: var(--amber); letter-spacing: 2px; }

/* Quote card */
.quote-card {
  background: oklch(0.99 0.003 235 / 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid oklch(0.99 0.003 235 / 0.5);
  border-top: 4px solid var(--amber);
  padding: clamp(22px, 3vw, 34px);
  border-radius: 14px;
  box-shadow: 0 18px 50px oklch(0.2 0.05 258 / 0.35);
  max-width: 500px; width: 100%;
  box-sizing: border-box;
  justify-self: end;
  animation: riseIn 0.9s ease-out 0.15s both;
  position: relative; z-index: 4;
}
.quote-card h2 {
  font-family: var(--font-display);
  font-weight: 800; font-size: 28px;
  text-transform: uppercase;
  color: var(--navy-850);
  margin-bottom: 6px;
}
.quote-card > p { color: var(--navy-600); font-size: 15px; line-height: 1.5; margin-bottom: 18px; }
.quote-form { display: grid; gap: 13px; }
.quote-form label {
  display: grid; gap: 6px;
  color: oklch(0.32 0.035 252);
  font-size: 13.5px; font-weight: 700;
}
.quote-form label .optional { font-weight: 400; color: var(--navy-450); }
.quote-form input, .quote-form select, .quote-form textarea {
  background: oklch(0.985 0.005 235);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--navy-850);
  font-size: 16px;
  font-family: var(--font-body);
  width: 100%;
  box-sizing: border-box;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  border-color: var(--blue-mid);
  outline: none;
}
.quote-form textarea { resize: vertical; }
.quote-submit {
  background: var(--amber);
  color: oklch(0.99 0.005 60);
  border: none; cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 15px 20px; border-radius: 999px;
  min-height: 44px;
}
.quote-submit:hover { background: var(--amber-dark); }
.quote-fineprint { text-align: center; color: var(--navy-450); font-size: 12.5px; margin: 0; }
.quote-success { text-align: center; padding: 34px 10px; }
.quote-success h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 26px;
  text-transform: uppercase; color: var(--blue-mid);
  margin-bottom: 10px;
}
.quote-success p { color: var(--navy-600); font-size: 16px; line-height: 1.6; }
.quote-success a { color: var(--amber); font-weight: 700; text-decoration: none; }
.quote-card[data-sent="true"] .quote-form-wrap { display: none; }
.quote-card[data-sent="true"] .quote-success { display: block; }
.quote-card:not([data-sent="true"]) .quote-success { display: none; }

/* Wave dividers */
.wave { height: 60px; margin-top: -60px; position: relative; z-index: 5; }
.wave--hero-to-bluegray {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 70px;
  background: var(--blue-gray);
  clip-path: polygon(0 100%, 100% 100%, 100% 45%, 94% 80%, 87% 30%, 80% 70%, 72% 25%, 64% 75%, 56% 35%, 48% 80%, 40% 30%, 32% 70%, 24% 28%, 16% 72%, 8% 38%, 0 65%);
  z-index: 5; margin-top: 0;
}
.wave--bluegray-to-cream { background: var(--cream); clip-path: polygon(0 100%, 100% 100%, 100% 35%, 92% 70%, 84% 22%, 76% 65%, 68% 30%, 60% 75%, 52% 28%, 44% 68%, 36% 25%, 28% 72%, 20% 32%, 12% 66%, 5% 28%, 0 62%); }
.wave--cream-to-bluegray { background: var(--blue-gray); clip-path: polygon(0 100%, 100% 100%, 100% 42%, 93% 72%, 85% 26%, 77% 70%, 69% 28%, 60% 74%, 52% 30%, 44% 76%, 36% 26%, 28% 68%, 20% 26%, 12% 72%, 5% 33%, 0 58%); }
.wave--bluegray-to-cream2 { background: var(--cream); clip-path: polygon(0 100%, 100% 100%, 100% 38%, 92% 68%, 84% 24%, 76% 66%, 68% 32%, 60% 78%, 52% 26%, 44% 70%, 36% 22%, 28% 74%, 20% 30%, 12% 64%, 5% 30%, 0 66%); }
.wave--cream-to-bluegray2 { background: var(--blue-gray); clip-path: polygon(0 100%, 100% 100%, 100% 44%, 93% 74%, 85% 24%, 77% 72%, 69% 26%, 60% 70%, 52% 34%, 44% 74%, 36% 24%, 28% 70%, 20% 28%, 12% 68%, 5% 36%, 0 60%); }

/* ============ Services ============ */
.services { padding: 90px 24px 100px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 24px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px oklch(0.4 0.06 255 / 0.14); }
.service-card img { aspect-ratio: 16/10; width: 100%; object-fit: cover; }
.service-body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.service-body h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 24px;
  letter-spacing: 0.5px; text-transform: uppercase; color: var(--navy-850);
}
.service-body p { color: var(--navy-600); font-size: 15.5px; line-height: 1.6; flex: 1; }
.service-link {
  color: var(--amber); text-decoration: none; font-weight: 700;
  font-size: 14px; letter-spacing: 0.8px; text-transform: uppercase;
  transition: letter-spacing 0.25s ease;
}
.service-link:hover { letter-spacing: 1.8px; }

/* ============ About ============ */
.about { padding: 100px 24px; }
.about-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 48px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  aspect-ratio: 4/5; max-height: 560px; width: 100%; object-fit: cover;
  border-radius: 14px;
}
.about-badge {
  position: absolute; left: 18px; bottom: 18px;
  background: var(--navy-850); color: oklch(0.98 0.005 235);
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 12px 22px; border-radius: 999px;
}
.about-copy h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 5vw, 60px); line-height: 1;
  text-transform: uppercase; color: var(--navy-850);
  margin-bottom: 18px; text-wrap: balance;
}
.about-copy > p.lead { font-size: 17px; line-height: 1.65; color: var(--navy-600); margin-bottom: 34px; }
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.about-feature {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
}
.about-feature h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 19px;
  letter-spacing: 0.5px; text-transform: uppercase; color: var(--navy-850);
  margin-bottom: 6px;
}
.about-feature p { color: var(--navy-600); font-size: 15px; line-height: 1.55; }

/* ============ Gallery ============ */
.gallery { padding: 90px 24px 100px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 18px;
}
.gallery-grid img {
  aspect-ratio: 4/3; width: 100%; object-fit: cover;
  border-radius: 12px; border: 1px solid var(--border-soft);
}
.gallery-cta { text-align: center; margin-top: 40px; }

/* ============ Reviews ============ */
.reviews { padding: 100px 24px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 30px;
  display: flex; flex-direction: column; gap: 16px;
}
.review-card .stars { color: var(--amber); letter-spacing: 3px; font-size: 16px; }
.review-card p { color: var(--navy-700); font-size: 16px; line-height: 1.65; flex: 1; }
.review-card .attribution { color: var(--navy-500); font-size: 14px; font-weight: 700; }

/* ============ FAQ ============ */
.faq { padding: 90px 24px 100px; }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 0 24px;
}
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; cursor: pointer; padding: 20px 0;
  color: var(--navy-850); font-weight: 700; font-size: 17px;
}
.faq-item summary .icon {
  color: var(--amber); font-family: var(--font-display);
  font-weight: 800; font-size: 22px; flex-shrink: 0;
}
.faq-item[open] summary .icon { transform: rotate(45deg); display: inline-block; }
.faq-item p { margin: 0; padding: 0 0 22px; color: var(--navy-600); font-size: 16px; line-height: 1.65; }

/* ============ CTA banner ============ */
.cta {
  background: linear-gradient(120deg, oklch(0.3 0.055 258), oklch(0.42 0.07 252));
  padding: 90px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.cta .noise-overlay {
  position: absolute; inset: 0;
  opacity: 0.035; mix-blend-mode: overlay; pointer-events: none;
}
.cta-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
.cta-inner h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(38px, 5.5vw, 66px); line-height: 1;
  text-transform: uppercase; color: oklch(0.99 0.003 235);
  text-wrap: balance; margin-bottom: 18px;
}
.cta-inner > p { font-size: 18px; line-height: 1.6; color: oklch(0.88 0.025 240); margin-bottom: 34px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============ Footer ============ */
.footer {
  background: linear-gradient(160deg, oklch(0.22 0.048 259), oklch(0.18 0.042 261));
  position: relative; overflow: hidden;
}
.footer .noise-overlay {
  position: absolute; inset: 0; opacity: 0.035;
  mix-blend-mode: overlay; pointer-events: none;
}
.aurora { position: absolute; filter: blur(40px); pointer-events: none; border-radius: 50%; }
.aurora--one {
  top: -120px; left: 10%; width: 480px; height: 320px;
  background: radial-gradient(ellipse, oklch(0.6 0.12 250 / 0.28), transparent 70%);
  animation: auroraDrift 11s ease-in-out infinite;
}
.aurora--two {
  top: -100px; right: 8%; width: 420px; height: 300px;
  background: radial-gradient(ellipse, oklch(0.62 0.12 200 / 0.22), transparent 70%);
  animation: auroraDrift2 13s ease-in-out infinite;
}
.ft-top { position: relative; }
.ft-wm-wrap {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
  display: flex; align-items: flex-end; justify-content: flex-end;
}
.ft-wm {
  font-family: var(--font-display); font-weight: 800; line-height: 0.9;
  font-size: clamp(50px, 9vw, 130px); text-align: right;
  padding: 0 32px 6px 0; text-transform: uppercase;
}
.ft-wm-l1 { color: oklch(0.42 0.03 250 / 0.55); }
.ft-wm-l2 { display: block; color: oklch(0.62 0.15 50 / 0.35); }
.fw-letter {
  display: inline-block; opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.34, 1.4, 0.5, 1), transform 0.7s cubic-bezier(0.34, 1.4, 0.5, 1);
  transition-delay: calc(var(--i) * 40ms);
}
.footer.is-revealed .fw-letter { opacity: 1; transform: translateY(0); }

.foot-rise {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: calc(var(--i) * 70ms);
}
.footer.is-revealed .foot-rise { opacity: 1; transform: translateY(0); }

.ft-inner { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; padding: 90px 24px 0; }
.ft-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 1fr 1.05fr; gap: 48px 64px; }

.ft-pill {
  display: inline-block; background: oklch(0.62 0.15 50 / 0.14); color: var(--amber);
  font-weight: 700; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; border: 1px solid oklch(0.62 0.15 50 / 0.3);
  margin-bottom: 20px;
}
.ft-heading {
  font-family: var(--font-display); font-weight: 800; letter-spacing: 0.5px;
  font-size: clamp(26px, 3vw, 34px); text-transform: uppercase; line-height: 1.15;
  color: oklch(0.98 0.005 235); margin-bottom: 14px; max-width: 420px;
}
.ft-copy { color: oklch(0.72 0.03 248); font-size: 15px; line-height: 1.6; margin-bottom: 26px; max-width: 420px; }
.ft-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--amber); color: oklch(0.99 0.005 60);
  font-weight: 700; padding: 14px 10px 14px 22px; border-radius: 999px;
  text-decoration: none; font-size: 14px; letter-spacing: 0.6px; text-transform: uppercase;
}
.ft-cta-circle {
  display: inline-flex; width: 28px; height: 28px; border-radius: 50%;
  background: oklch(0.18 0.03 220 / 0.16); align-items: center; justify-content: center;
}
.ft-cta-circle svg { width: 15px; height: 15px; }
.ft-nav { margin-top: 34px; border-top: 1px solid oklch(1 0 0 / 0.12); max-width: 420px; }
.ft-nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 2px; border-bottom: 1px solid oklch(1 0 0 / 0.12);
  text-decoration: none; color: oklch(0.98 0.005 235);
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s ease;
}
.ft-nav-row svg { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; }
.ft-nav-row:hover { color: var(--amber); }

.ft-col-title {
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  letter-spacing: 1px; text-transform: uppercase; color: oklch(0.88 0.025 240);
  margin-bottom: 16px;
}
.ft-col-copy { color: oklch(0.72 0.03 248); font-size: 14.5px; line-height: 1.6; margin-bottom: 28px; }
.ft-links { display: flex; flex-direction: column; gap: 10px; }
.ft-links a { color: oklch(0.72 0.03 248); text-decoration: none; font-size: 14.5px; }
.ft-links a:hover { color: oklch(0.98 0.005 235); }

.ft-contact { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.ft-contact li { display: flex; align-items: flex-start; gap: 10px; color: oklch(0.72 0.03 248); font-size: 14.5px; line-height: 1.5; }
.ft-contact a { color: oklch(0.75 0.1 60); text-decoration: none; font-weight: 700; }
.ft-ico { flex-shrink: 0; width: 18px; height: 18px; color: var(--amber); margin-top: 1px; }
.ft-ico svg { width: 100%; height: 100%; }
.ft-cred {
  display: inline-flex; align-items: center; gap: 8px; color: oklch(0.72 0.03 248);
  font-size: 13.5px; margin: 0 0 22px;
}
.ft-cred svg { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; }
.ft-pay-label { font-size: 11.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: oklch(0.55 0.025 248); margin-bottom: 10px; }
.ft-pay { display: flex; gap: 8px; flex-wrap: wrap; }
.ft-pay span { border: 1px solid oklch(1 0 0 / 0.14); border-radius: 6px; padding: 6px 12px; font-size: 12.5px; color: oklch(0.72 0.03 248); }

.ft-bottom {
  position: relative; border-top: 1px solid oklch(0.32 0.05 258);
  margin-top: 56px; padding: 24px 0; display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
}
.ft-bottom p { color: oklch(0.6 0.035 250); font-size: 13.5px; margin: 0; }
.ft-bottom-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.ft-social { display: flex; gap: 10px; }
.ft-social a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid oklch(1 0 0 / 0.14);
  display: flex; align-items: center; justify-content: center;
  color: oklch(0.72 0.03 248); text-decoration: none;
}
.ft-social a svg { width: 16px; height: 16px; }
.ft-social a:hover { color: var(--amber); border-color: var(--amber); }
.ft-legal { display: flex; gap: 10px; align-items: center; color: oklch(0.6 0.035 250); font-size: 13.5px; }
.ft-legal a { color: oklch(0.6 0.035 250); text-decoration: none; }
.ft-legal a:hover { color: oklch(0.98 0.005 235); }

@media (max-width: 900px) {
  .ft-grid { grid-template-columns: 1fr; gap: 40px; }
  .ft-wm { font-size: 56px; padding-right: 20px; }
}
@media (max-width: 600px) {
  .ft-bottom { justify-content: center; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .fw-letter, .foot-rise { transition: none; opacity: 1; transform: none; }
}
