/* ============================================================
   TRENDY THEME — Main Stylesheet
   Extracted from trendy-marketing-site/index.html
   ============================================================ */

:root {
  --bone: #f8f5f0;
  --beige: #e8dfd3;
  --taupe: #c9bba8;
  --charcoal: #1a1a1a;
  --black: #0f0f0f;
  --hairline: rgba(26, 26, 26, 0.18);
  --serif: "Cormorant Garamond", serif;
  --sans: "Inter", sans-serif;
  --ease-luxe: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-slow: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bone);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  transform-origin: center;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

/* ── CUSTOM CURSOR ─────────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }
  #cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--charcoal);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition:
      width 0.25s var(--ease-hover),
      height 0.25s var(--ease-hover);
    will-change: transform;
  }
  #cursor-dot.cursor-expand {
    width: 40px;
    height: 40px;
  }
  a,
  button,
  .brand-card,
  .build-row,
  .process-step {
    cursor: none;
  }
}

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── TYPOGRAPHY UTILITIES ──────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--charcoal);
}
body.has-animations .eyebrow {
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.9s var(--ease-luxe),
    transform 0.9s var(--ease-luxe);
}
body.has-animations .eyebrow.visible {
  opacity: 1;
  transform: translateX(0);
}
.serif {
  font-family: var(--serif);
  font-weight: 300;
}
.italic {
  font-style: italic;
}

/* ── SECTIONS ──────────────────────────────────────────────── */
section {
  padding: 160px 0;
  position: relative;
}
.section-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--hairline);
  transform: translateX(-50%);
  transition: width 0.8s var(--ease-luxe);
}
.section-divider.hairline-revealed {
  width: 100%;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  white-space: nowrap;
  border: 1px solid var(--charcoal);
  transition: all 0.4s var(--ease-hover);
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: transparent;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--charcoal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-hover);
  z-index: -1;
}
.btn span {
  position: relative;
  z-index: 2;
  transition: color 0.5s var(--ease-hover);
}
.btn-filled {
  background: var(--charcoal);
  color: var(--bone);
}
.btn-filled::before {
  background: #2a2a2a;
}
.btn-filled:hover {
  letter-spacing: 0.32em;
  transform: scale(1.015);
}
.btn-filled:hover::before {
  transform: scaleX(1);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
}
.btn-outline:hover::before {
  transform: scaleX(1);
}
.btn-outline:hover span {
  color: var(--bone);
}

/* ── LINK GROW ──────────────────────────────────────────────── */
.link-grow {
  position: relative;
  padding-bottom: 2px;
  display: inline-block;
}
.link-grow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: width 0.4s var(--ease-luxe);
}
.link-grow:hover::after {
  width: 100%;
}

/* ── ANIMATION: WORD SPLIT ─────────────────────────────────── */
.word {
  display: inline-block;
}
body.has-animations .word {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s var(--ease-luxe),
    transform 1s var(--ease-luxe);
}
body.has-animations .word.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── ANIMATION: FADE UP ────────────────────────────────────── */
.fade-up-desc {
  opacity: 1;
  transform: translateY(0);
}
body.has-animations .fade-up-desc {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1.1s var(--ease-luxe),
    transform 1.1s var(--ease-luxe);
}
body.has-animations .fade-up-desc.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ────────────────────────────────────────────────────── */
.trendy-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 48px;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: all 0.6s var(--ease-hover);
  opacity: 1;
  transform: translateY(0);
}
body.has-animations .trendy-nav {
  opacity: 0;
  transform: translateY(-12px);
}
.trendy-nav.scrolled {
  background: rgba(248, 245, 240, 0.85);
  backdrop-filter: blur(12px);
  padding: 18px 48px;
  border-bottom: 1px solid var(--hairline);
}
.nav-left .custom-logo-link img {
  max-height: 40px;
  width: auto;
}
.nav-left .brand {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.05em;
}
.nav-center ul {
  display: flex;
  gap: 48px;
}
.nav-center a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}
.nav-right {
  justify-self: end;
}
.nav-right .btn {
  padding: 12px 20px;
  font-size: 10px;
}

/* ── HERO ───────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  padding-top: 140px;
  display: flex;
  flex-direction: column;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.6);
  margin-bottom: 80px;
}
.hero-meta span {
  opacity: 1;
  transition: opacity 1s var(--ease-luxe);
}
body.has-animations .hero-meta span {
  opacity: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 60px;
  align-items: center;
  flex: 1;
}
.hero-grid h1 {
  font-size: clamp(64px, 9.5vw, 180px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 48px;
}
.hero-subline {
  max-width: 480px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  line-height: 2;
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 48px;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.9s var(--ease-luxe),
    transform 0.9s var(--ease-luxe);
}
body.has-animations .hero-subline {
  opacity: 0;
  transform: translateY(20px);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-actions .btn {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.8s var(--ease-luxe),
    transform 0.8s var(--ease-luxe);
}
body.has-animations .hero-actions .btn {
  opacity: 0;
  transform: scale(0.96);
}
.hero-image {
  overflow: hidden;
  aspect-ratio: 3/4;
  width: 100%;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 1.8s var(--ease-luxe),
    transform 1.8s var(--ease-luxe);
  will-change: transform;
}
body.has-animations .hero-image img {
  opacity: 0;
  transform: scale(1.05);
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity 1s var(--ease-luxe);
  animation: gentleBounce 2.4s ease-in-out infinite;
  animation-play-state: paused;
}
body.has-animations .scroll-indicator {
  opacity: 0;
}
.scroll-indicator.active {
  animation-play-state: running;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--charcoal);
}
@keyframes gentleBounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 8px);
  }
}

/* ── POSITIONING / APPROACH ─────────────────────────────────── */
.positioning-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.positioning-statement {
  font-size: clamp(56px, 8vw, 140px);
  line-height: 1;
  font-weight: 300;
  margin: 80px 0 100px;
  max-width: 1200px;
}
.positioning-cols {
  display: grid;
  grid-template-columns: 1fr 2fr 280px;
  gap: 80px;
  position: relative;
  align-items: start;
}
.positioning-cols .left {
  font-size: 32px;
  color: rgba(26, 26, 26, 0.55);
}
.positioning-cols .right {
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
}
.floating-image-wrap {
  width: 280px;
  aspect-ratio: 1;
  overflow: hidden;
  justify-self: end;
}
.floating-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

/* ── PARTNERSHIPS / WORK ────────────────────────────────────── */
.section-header {
  display: flex;
  justify-content: space-between;
}
.section-title {
  font-size: clamp(48px, 6.5vw, 100px);
  margin: 60px 0 100px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 60px;
}
.brand-image {
  overflow: hidden;
  aspect-ratio: 3/2;
  margin-bottom: 24px;
  position: relative;
}
.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-luxe);
  will-change: transform;
}
.brand-card:hover .brand-image img {
  transform: scale(1.06);
}
.brand-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.08);
  opacity: 0;
  transition: opacity 1.2s var(--ease-luxe);
}
.brand-card:hover .brand-overlay {
  opacity: 1;
}
.brand-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.brand-meta .discipline-label {
  color: rgba(26, 26, 26, 0.6);
  transition: letter-spacing 0.6s var(--ease-hover);
}
.brand-card:hover .discipline-label {
  letter-spacing: 0.02em;
}
.brand-meta .brand-name {
  font-size: 28px;
  letter-spacing: 0.02em;
  margin-top: 8px;
  transition: transform 0.6s var(--ease-hover);
}
.brand-card:hover .brand-name {
  transform: translateX(6px);
}
.brand-metric {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.6;
  transition: opacity 0.6s var(--ease-hover);
}
.brand-card:hover .brand-metric {
  opacity: 1;
}

/* ── WHAT WE BUILD ──────────────────────────────────────────── */
.build-row {
  display: grid;
  grid-template-columns: 120px 1fr 2fr;
  gap: 60px;
  padding: 48px 0;
  box-shadow: inset 0 1px var(--hairline);
  transition: background 0.6s var(--ease-hover);
}
.build-list {
  display: grid;
  grid-auto-rows: 1fr;
}
.build-row:last-child {
  border-bottom: 1px solid var(--hairline);
}
.build-row:hover {
  background: #f2ede5;
  box-shadow: inset 0 1.5px rgba(26, 26, 26, 0.3);
}
.build-num {
  font-size: 48px;
  color: rgba(26, 26, 26, 0.4);
  transition: transform 0.5s var(--ease-hover);
}
.build-row:hover .build-num {
  transform: translateX(8px);
}
.build-title {
  font-size: 32px;
  line-height: 1.1;
  transition: transform 0.5s var(--ease-hover) 0.1s;
}
.build-row:hover .build-title {
  transform: translateX(4px);
}
.build-desc {
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
  color: rgba(26, 26, 26, 0.75);
}

/* ── METHODOLOGY (DARK) ─────────────────────────────────────── */
.dark-section {
  background: var(--black);
  color: var(--bone);
  padding: 200px 0;
  transition: background 1.2s var(--ease-luxe);
}
.dark-section .eyebrow {
  color: rgba(248, 245, 240, 0.6);
}
.statement-row {
  padding: 64px 0;
  border-top: 1px solid rgba(248, 245, 240, 0.18);
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1.05;
  max-width: 1200px;
}
.statement-row:last-child {
  border-bottom: 1px solid rgba(248, 245, 240, 0.18);
}

/* ── RESULTS / STATS ────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 60px 40px;
}
.stat-card {
  border-top: 1px solid var(--hairline);
  padding-top: 32px;
}
.stat-card:nth-child(1) {
  grid-column: 1 / span 7;
}
.stat-card:nth-child(2) {
  grid-column: 8 / span 5;
}
.stat-card:nth-child(3) {
  grid-column: 1 / span 5;
}
.stat-card:nth-child(4) {
  grid-column: 6 / span 7;
}
.stat-num {
  font-size: clamp(80px, 12vw, 200px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-top: 24px;
  max-width: 320px;
  color: rgba(26, 26, 26, 0.7);
}
.stats-caption {
  font-size: 11px;
  color: rgba(26, 26, 26, 0.55);
  margin-top: 80px;
}

/* ── PROCESS ────────────────────────────────────────────────── */
.process-wrapper {
  position: relative;
}
.process-timeline {
  position: absolute;
  left: 60px;
  top: 0;
  width: 1px;
  background: var(--hairline);
  height: 0;
  transition: height 1.6s var(--ease-luxe);
}
.process-timeline.visible {
  height: 100%;
}
.process-step {
  display: grid;
  grid-template-columns: 120px 1fr 2fr;
  gap: 60px;
  padding: 60px 0;
  align-items: start;
  position: relative;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 1s var(--ease-luxe),
    transform 1s var(--ease-luxe);
}
body.has-animations .process-step {
  opacity: 0;
  transform: translateY(30px);
}
body.has-animations .process-step.visible {
  opacity: 1;
  transform: translateY(0);
}
.process-indicator {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bone);
  padding-right: 16px;
}
.process-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--charcoal);
}
.process-num {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: transform 0.4s var(--ease-hover);
}
.process-step:hover .process-num {
  transform: scale(1.08);
}
.process-title {
  font-size: 36px;
  line-height: 1.1;
}
.process-title-inner {
  position: relative;
  display: inline-block;
}
.process-title-inner::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease-luxe);
}
.process-step:hover .process-title-inner::after {
  width: 100%;
}
.process-desc {
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
}

/* ── APPLY / CTA ────────────────────────────────────────────── */
#apply {
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 48px;
}
.cta-inner {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-title {
  font-size: clamp(48px, 7vw, 120px);
  line-height: 1.05;
  margin-bottom: 48px;
}
.cta-sub {
  font-size: 22px;
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto 64px;
  color: rgba(26, 26, 26, 0.75);
}
.cta-note {
  margin-top: 48px;
  font-size: 13px;
  color: rgba(26, 26, 26, 0.55);
}

/* ── CONTACT FORM ───────────────────────────────────────────── */
.trendy-contact-form {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}
.trendy-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.trendy-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.trendy-form-field label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(26, 26, 26, 0.6);
  font-family: var(--sans);
}
.trendy-form-field input,
.trendy-form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--charcoal);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s var(--ease-hover);
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}
.trendy-form-field input:-webkit-autofill,
.trendy-form-field input:-webkit-autofill:hover,
.trendy-form-field input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--bone) inset;
  box-shadow: 0 0 0 1000px var(--bone) inset;
  -webkit-text-fill-color: var(--charcoal);
  transition: background-color 0s 999999s;
  background-color: #e8dfd3 !important;
}
.trendy-form-field input::placeholder,
.trendy-form-field textarea::placeholder {
  color: rgba(26, 26, 26, 0.35);
}
.trendy-form-field input:focus,
.trendy-form-field textarea:focus {
  border-bottom-color: var(--charcoal);
  border-bottom-width: 2px;
}
.trendy-form-field input.is-error,
.trendy-form-field textarea.is-error {
  border-bottom-color: #c0392b;
}
.trendy-form-field textarea {
  resize: vertical;
  min-height: 120px;
}
.trendy-field-error {
  font-size: 11px;
  color: #c0392b;
  min-height: 16px;
  display: block;
}
.trendy-form-status {
  padding: 16px 24px;
  margin-bottom: 24px;
  font-size: 13px;
  letter-spacing: 0.05em;
  border: 1px solid var(--charcoal);
  text-align: center;
}
.trendy-form-status.is-success {
  border-color: rgba(26, 26, 26, 0.4);
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.5);
}
.trendy-form-status.is-error {
  border-color: #c0392b;
  color: #c0392b;
}
.trendy-contact-form .btn {
  margin-top: 8px;
  padding: 24px 48px;
  font-size: 12px;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.trendy-footer {
  border-top: 1px solid var(--hairline);
  padding: 80px 0 48px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 80px;
}
.footer-brand {
  font-size: 24px;
}
.footer-caption {
  font-size: 12px;
  color: rgba(26, 26, 26, 0.6);
  line-height: 1.6;
  margin-top: 16px;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  line-height: 2.2;
  margin-top: 16px;
  align-items: flex-start;
}
.footer-contact .email {
  display: inline-block;
  font-size: 14px;
  margin: 16px 0 24px;
}
.social-links {
  display: flex;
  gap: 16px;
}
.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(26, 26, 26, 0.55);
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-legal-links a {
  color: rgba(26, 26, 26, 0.55);
  text-decoration: none;
}
.footer-legal-links a:hover {
  color: var(--charcoal);
}
.footer-legal-links span {
  color: rgba(26, 26, 26, 0.3);
}
.footer-col .custom-logo-link img {
  max-height: 40px;
  width: auto;
}

/* ── EYEBROW VISIBLE OVERRIDE (footer) ──────────────────────── */
.eyebrow.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* ── GENERAL PAGE CONTENT (non-front-page) ──────────────────── */
.trendy-page-content {
  padding: 160px 0 120px;
  min-height: 60vh;
}
.trendy-page-content .container {
  max-width: 800px;
}
.trendy-page-content h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 48px;
}
.trendy-prose {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.8);
}
.trendy-prose p {
  margin-bottom: 24px;
}
.trendy-prose h2,
.trendy-prose h3 {
  font-family: var(--serif);
  font-weight: 300;
  margin: 48px 0 16px;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .container {
    padding: 0 24px;
  }
  .trendy-nav .nav-center {
    display: none;
  }
  .trendy-nav {
    padding: 16px 24px;
    grid-template-columns: 1fr 1fr;
  }
  .trendy-nav.scrolled {
    padding: 12px 24px;
  }
  .nav-right {
    justify-self: end;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image {
    order: -1;
    aspect-ratio: 4/5;
    max-height: 60vh;
  }
  .positioning-cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .positioning-cols .right {
    max-width: none;
  }
  .hero-subline {
    max-width: none;
  }
  .floating-image-wrap {
    display: none;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .build-row {
    grid-template-columns: 60px 1fr;
    gap: 24px;
  }
  .build-desc {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: none;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-card {
    grid-column: 1 / -1 !important;
  }
  .process-timeline {
    display: none;
  }
  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 24px;
  }
  .process-indicator {
    padding-right: 0;
  }
  .process-desc {
    grid-column: 2 / -1;
    grid-row: 2;
    margin-left: 0;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .footer-grid .footer-col:first-child {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    justify-content: space-between;
  }
  .scroll-indicator {
    display: none;
  }
  section {
    padding: 100px 0;
  }
  #hero {
    padding-top: 120px;
  }
  .trendy-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  #apply {
    padding: 100px 24px;
  }
  .dark-section {
    padding: 120px 0;
  }
}

/* ── MOBILE ─────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero-meta {
    flex-direction: column;
    gap: 4px;
  }
  .brand-name {
    font-size: 20px;
  }
  .brand-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .trendy-contact-form .btn {
    width: 100%;
    padding: 20px 24px;
  }
  .trendy-contact-form .btn-filled:hover {
    letter-spacing: 0.25em;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid .footer-col:first-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ── REDUCED MOTION ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── LEGAL PAGES (Privacy Policy / Terms & Conditions) ──────── */
.legal-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 32px 96px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--charcoal);
}
.legal-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(26, 26, 26, 0.5);
  margin-bottom: 16px;
}
.legal-wrap h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 48px;
}
.legal-wrap h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.1;
  margin: 0 0 20px;
}
.legal-wrap p {
  margin-bottom: 20px;
  color: rgba(26, 26, 26, 0.7);
}
.legal-wrap p:last-of-type {
  margin-bottom: 0;
}
.legal-wrap a {
  color: var(--charcoal);
  border-bottom: 1px solid rgba(26, 26, 26, 0.3);
  text-decoration: none;
}
.legal-wrap a:hover {
  border-bottom-color: var(--charcoal);
}
.legal-wrap hr {
  border: none;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
  margin: 48px 0;
}
.legal-section {
  margin-bottom: 40px;
}
.legal-wrap ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.legal-wrap ul li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
  color: rgba(26, 26, 26, 0.7);
}
.legal-wrap ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 1px;
  background: var(--taupe);
}
.legal-wrap ul li:last-child {
  border-bottom: none;
}
.legal-wrap ul li strong {
  color: var(--charcoal);
  font-weight: 400;
}
.legal-meta {
  font-size: 12px;
  color: rgba(26, 26, 26, 0.4);
  letter-spacing: 0.1em;
  margin-top: 48px;
}
