/* =========================================================
   WALL TO WALL — Global Stylesheet
   Brand: Strong. Modern. Timeless.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Brand colors */
  --color-mountain-navy: #1C2839;
  --color-pine-green:    #122317;   /* darker forest — matches mockup */
  --color-pine-deep:     #122317;   /* deepest, for CTA */
  --color-pine-soft:     #2F4636;   /* original brand pine, used sparingly */
  --color-alpine-fog:    #A8B5AD;
  --color-fog-light:     #e7e0d4;
  --color-sunset-clay:   #bd643a;
  --color-warm-ivory:    #f0e9e0;
  --color-warm-ivory-2:  #ECE7DA;
  --color-rule:          rgba(28, 40, 57, 0.12);
  --color-rule-dark:     rgba(242, 238, 229, 0.16);

  --bg-primary:    var(--color-warm-ivory);
  --text-primary:  var(--color-mountain-navy);
  --text-muted:    #6B7480;
  --text-on-dark:  var(--color-warm-ivory);

  --font-heading: 'Fraunces', 'Recoleta', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1440px;
  --container-pad: clamp(1.5rem, 4vw, 3rem);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 180ms;
  --dur-base: 320ms;
  --dur-slow: 600ms;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd { margin: 0; }
ul[role='list'], ol[role='list'] { list-style: none; padding: 0; }
img, picture, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------- BASE ---------- */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-top: 48px; /* offset for fixed nav */
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

p { max-width: 60ch; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section--forest { background: var(--color-pine-green); color: var(--text-on-dark); }
.section--forest .eyebrow,
.section--forest h2 { color: var(--color-warm-ivory); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.95rem 1.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              opacity var(--dur-base) var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--color-sunset-clay);
  color: var(--color-warm-ivory);
}
.btn--primary:hover { background: var(--color-mountain-navy); }

.btn--ghost-light {
  background: transparent;
  color: var(--color-warm-ivory);
  border-color: rgba(242, 238, 229, 0.6);
}
.btn--ghost-light:hover {
  background: var(--color-warm-ivory);
  color: var(--color-mountain-navy);
  border-color: var(--color-warm-ivory);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--color-mountain-navy);
  border-color: rgba(28, 40, 57, 0.3);
}
.btn--ghost-dark:hover {
  background: var(--color-mountain-navy);
  color: var(--color-warm-ivory);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  transition: gap var(--dur-base) var(--ease), opacity var(--dur-base) var(--ease);
}
.link-arrow:hover { gap: 0.95rem; }

.circle-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(28,40,57,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: background var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}
.circle-btn:hover {
  background: var(--color-mountain-navy);
  color: var(--color-warm-ivory);
  border-color: var(--color-mountain-navy);
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--color-warm-ivory);
  border-bottom: 1px solid var(--color-rule);
}
.nav__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 0 var(--container-pad);
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  overflow: hidden;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__logo img {
  height: 110px;
  width: auto;
  flex-shrink: 0;
  margin-top: 8px;
}
.nav__links {
  display: flex;
  gap: 2.75rem;
  align-items: center;
  list-style: none;
}
.nav__links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity var(--dur-fast) var(--ease);
}
.nav__links a:hover { opacity: 0.6; }
.nav__cta { padding: 0.25rem 0.875rem; font-size: 0.62rem; }
.nav__links a.nav__cta:hover {
  opacity: 1;
  background: var(--color-mountain-navy);
}

@media (max-width: 880px) {
  .nav__links { gap: 1.25rem; }
  .nav__item:not(:last-child) { display: none; }
}

/* =========================================================
   1. HERO
   ========================================================= */
.hero {
  padding: 0;
}
.hero__frame {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(15, 22, 32, 0.78) 0%,
    rgba(15, 22, 32, 0.45) 45%,
    rgba(15, 22, 32, 0.10) 100%
  );
  z-index: -1;
}
.hero__content {
  position: absolute;
  top: clamp(3rem, 9vh, 6rem);
  left: 0;
  padding-left: clamp(2rem, 6vw, 5rem);
  padding-right: 2rem;
  color: var(--color-warm-ivory);
  max-width: 820px;
}
.hero__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.5rem, 4.5vw, 4.25rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--color-warm-ivory);
  margin-bottom: 1.75rem;
}
.hero__sub {
  font-size: clamp(0.95rem, 0.7vw + 0.6rem, 1.05rem);
  line-height: 1.55;
  color: rgba(242, 238, 229, 0.82);
  font-weight: 300;
  margin-bottom: 2.25rem;
  max-width: 26rem;
}
.hero__stamp {
  position: absolute;
  bottom: clamp(2rem, 5vh, 3rem);
  right: clamp(2rem, 6vw, 5rem);
  width: clamp(160px, 14vw, 210px);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

@media (max-width: 600px) {
  .hero__frame { height: 600px; }
  .hero__content { padding: 0 1.5rem; top: 2.5rem; }
  .hero__stamp { right: 1.5rem; bottom: 1.5rem; width: 130px; }
}

/* =========================================================
   2. CORE SERVICES
   ========================================================= */
.services-core {
  padding-block: clamp(2.5rem, 4vw, 4rem);
}
.services-core__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(3.5rem, 6vw, 5rem);
}
.services-core__rule {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--color-mountain-navy);
  opacity: 0.35;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.service-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 0.5rem clamp(1rem, 2.5vw, 2rem);
  position: relative;
}
.service-card + .service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 76%;
  background: var(--color-rule);
}
.service-card__icon {
  flex: 0 0 auto;
  width: 36px;
  color: var(--color-mountain-navy);
}
.service-card__icon svg { width: 100%; height: auto; }
.service-card__body h3 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
  line-height: 1.2;
  color: var(--text-primary);
}
.service-card__body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 400;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 0; }
  .service-card { padding: 0 1rem; }
  .service-card + .service-card::before { display: none; }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* =========================================================
   3. STRUCTURE WE BUILD ON
   ========================================================= */
.structure-section {
  padding-block: clamp(1.5rem, 2vw, 2rem);
}
.structure-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--color-fog-light);
  overflow: hidden;
}
.structure-block__content {
  padding: clamp(2rem, 3.5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.structure-block__content .eyebrow {
  margin-bottom: 2rem;
}
.structure-block__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.structure-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.structure-item__icon {
  width: 30px;
  flex: 0 0 auto;
  color: var(--color-mountain-navy);
}
.structure-item__icon svg { width: 100%; height: auto; }
.structure-item__body h3 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
  color: var(--text-primary);
}
.structure-item__body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.structure-block__media {
  position: relative;
  min-height: 260px;
}
.structure-block__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

@media (max-width: 820px) {
  .structure-block { grid-template-columns: 1fr; }
  .structure-block__media { min-height: 280px; }
}
@media (max-width: 480px) {
  .structure-block__items { grid-template-columns: 1fr; }
}

/* =========================================================
   4. BEYOND THE FINISH
   ========================================================= */
.beyond {
  padding-block: clamp(3rem, 5vw, 5rem);
}
.beyond__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.beyond__copy .eyebrow { display: block; margin-bottom: 1.5rem; }
.beyond__copy h2 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1.04;
  margin-bottom: 1.75rem;
  text-wrap: balance;
  font-weight: 400;
  letter-spacing: -0.025em;
}
.beyond__copy p {
  color: rgba(242, 238, 229, 0.75);
  margin-bottom: 2.25rem;
  font-size: 0.95rem;
  max-width: 26rem;
  line-height: 1.6;
}

.beyond__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
}
.beyond-card { display: block; }
.beyond-card__media {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  border: 1px solid var(--color-warm-ivory);
}
.beyond-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.beyond-card:hover .beyond-card__media img { transform: scale(1.05); }

.beyond-card__label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  color: var(--color-warm-ivory);
}
.beyond-card__icon {
  width: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-warm-ivory);
}
.beyond-card__title {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-warm-ivory);
  margin-bottom: 0.3rem;
}
.beyond-card__sub {
  display: block;
  font-size: 0.8rem;
  color: rgba(242, 238, 229, 0.65);
  line-height: 1.5;
  font-weight: 300;
}

@media (max-width: 820px) {
  .beyond__inner { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .beyond__grid { grid-template-columns: 1fr; }
  .beyond-card__media { aspect-ratio: 16/10; }
}

/* =========================================================
   5. FEATURED PROJECT
   ========================================================= */
.featured {
  padding-block: clamp(3rem, 5vw, 5rem);
}
.featured__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.7fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.featured__copy .eyebrow { display: block; margin-bottom: 1.5rem; }
.featured__copy h2 {
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  margin-bottom: 1.5rem;
  text-wrap: balance;
  font-weight: 400;
  letter-spacing: -0.025em;
}
.featured__copy p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 22rem;
  line-height: 1.6;
}

.featured__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
}
.phase {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 2/3;
  isolation: isolate;
}
.phase__link {
  display: block;
  width: 100%;
  height: 100%;
}
.phase__link:focus-visible {
  outline: 2px solid var(--color-copper);
  outline-offset: -4px;
}
.phase img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.phase:hover img { transform: scale(1.04); }
.phase::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 22, 32, 0.85) 100%);
  pointer-events: none;
}
.phase figcaption {
  position: absolute;
  left: 0.875rem; bottom: 0.875rem;
  z-index: 2;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-warm-ivory);
  font-weight: 500;
}


@media (max-width: 820px) {
  .featured__inner { grid-template-columns: 1fr; }
  .featured__nav { grid-column: 1; }
  .featured__strip { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   6. CTA BAND
   ========================================================= */
.cta {
  position: relative;
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: var(--color-pine-deep);
  color: var(--color-warm-ivory);
  isolation: isolate;
  overflow: hidden;
}
.cta__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.85;
}
.cta__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30, 50, 34, 0.45) 0%, rgba(20, 38, 24, 0.75) 100%);
  z-index: -1;
}
.cta__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.cta__copy .eyebrow { display: block; margin-bottom: 1.5rem; color: var(--color-alpine-fog); }
.cta__copy h2 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  color: var(--color-warm-ivory);
  margin-bottom: 2.25rem;
  text-wrap: balance;
  font-weight: 400;
  letter-spacing: -0.025em;
}
.cta__locale {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-left: clamp(0px, 3vw, 2.5rem);
  border-left: 1px solid var(--color-rule-dark);
}
.cta__locale-text { display: flex; flex-direction: column; gap: 0.875rem; flex-shrink: 0; }
.cta__locale-text .eyebrow { color: var(--color-alpine-fog); }
.cta__cities {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-warm-ivory);
  font-weight: 300;
}
.cta__stamp {
  width: clamp(180px, 16vw, 240px);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

@media (max-width: 820px) {
  .cta__inner { grid-template-columns: 1fr; }
  .cta__locale {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--color-rule-dark);
    padding-top: 2.5rem;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--color-pine-green);
  border-top: 1px solid rgba(242, 238, 229, 0.15);
}
.footer__inner {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 4vw, 5rem);
  padding: 1.1rem var(--container-pad);
  max-width: var(--container-max);
  margin-inline: auto;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  flex-shrink: 0;
}
.footer__logo-wrap {
  overflow: hidden;
  height: 38px;
  width: 120px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.footer__logo {
  width: 120px;
  height: auto;
  flex-shrink: 0;
  margin-top: 6px;
}
.footer__col { flex: 1; }
.footer__inner > .footer__col:nth-child(2) { margin-left: clamp(2rem, 5vw, 6rem); }
.footer__tagline {
  display: flex;
  flex-direction: row;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 238, 229, 0.72);
  font-weight: 400;
  line-height: 1.2;
}
.footer__tagline span { white-space: nowrap; }
.footer__col .eyebrow {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--color-warm-ivory);
}
.footer__col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer__col a {
  font-size: 0.75rem;
  color: rgba(242, 238, 229, 0.65);
  font-weight: 400;
  transition: opacity var(--dur-fast) var(--ease);
}
.footer__col a:hover { color: var(--color-warm-ivory); }

.footer__social-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  border-left: 1px solid var(--color-rule-dark);
  padding-left: clamp(1rem, 2vw, 2rem);
  height: 100%;
  justify-content: center;
}
.footer__social {
  display: flex;
  gap: 0.875rem;
  color: var(--color-warm-ivory);
}
.footer__social a { transition: opacity var(--dur-fast) var(--ease); }
.footer__social a:hover { opacity: 0.6; }
.footer__copy {
  font-size: 0.68rem;
  color: rgba(242, 238, 229, 0.5);
  text-align: right;
  line-height: 1.5;
}


/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   HAMBURGER — hidden on desktop
   ========================================================= */
.nav__hamburger {
  display: none;
}

.nav__mobile {
  display: none;
}

/* =========================================================
   MOBILE — ≤ 600px
   ========================================================= */
@media (max-width: 600px) {

  /* --- Nav bar --- */
  .nav__inner { padding-inline: 1.25rem; }

  /* Hide desktop nav links entirely */
  .nav__links { display: none; }

  /* Show hamburger button */
  .nav__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
  }

  .nav__hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: currentColor;
    transition: transform var(--dur-base) var(--ease),
                opacity var(--dur-base) var(--ease);
  }

  /* Animate to X when open */
  .nav__hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .nav__hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav__hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  /* --- Mobile dropdown menu --- */
  .nav__mobile {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--color-rule);
    border-bottom: 1px solid var(--color-rule);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--dur-base) var(--ease);
    z-index: 999;
  }

  .nav__mobile.is-open {
    max-height: 500px;
  }

  .nav__mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .nav__mobile li a {
    display: block;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-primary);
    border-bottom: 1px solid var(--color-rule);
    transition: color var(--dur-fast) var(--ease);
  }

  .nav__mobile li:last-child a {
    border-bottom: none;
    color: var(--color-sunset-clay);
    font-weight: 600;
  }

  .nav__mobile li a:hover {
    color: var(--color-sunset-clay);
  }

  /* --- Footer --- */
  .footer__inner {
    flex-wrap: wrap;
    gap: 2rem;
    padding-block: 2.5rem;
    align-items: flex-start;
  }

  /* Brand block */
  .footer__brand {
    width: 100%;
    gap: 0.5rem;
  }

  .footer__tagline {
    display: flex;
  }

  /* Two link columns side by side */
  .footer__col {
    flex: none;
    width: calc(50% - 1rem);
  }

  /* Remove the desktop left margin on the first col */
  .footer__inner > .footer__col:nth-child(2) {
    margin-left: 0;
  }

  /* Social + copyright — full width bottom row, clear desktop border-left */
  .footer__social-block {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(242, 238, 229, 0.1);
    padding-top: 1.5rem;
    height: auto;
  }

  .footer__copy {
    text-align: left;
  }
}
