:root {
  --ink: #142b35;
  --ink-deep: #0b2029;
  --paper: #f3f0e8;
  --paper-light: #fbfaf6;
  --muted: #657176;
  --line: rgba(20, 43, 53, 0.16);
  --cyan: #40a9be;
  --magenta: #d31770;
  --white: #ffffff;
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}
h2 { font-size: clamp(2.7rem, 5.1vw, 5.6rem); }
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: 3px;
}
.skip-link:focus { top: 12px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: rgba(14, 28, 50, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: 100%;
  height: 84px;
  margin: 0 auto;
  padding: 0 clamp(24px, 7vw, 118px);
  display: flex;
  align-items: center;
  gap: 38px;
}
.brand { display: block; width: 190px; margin-right: auto; }
.brand img { width: 100%; height: 58px; object-fit: contain; object-position: left center; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a, .header-call {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}
.desktop-nav a { position: relative; }
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--magenta);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }
.header-call {
  padding: 11px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 2px;
}
.header-call:hover, .header-call:focus-visible { background: var(--magenta); border-color: var(--magenta); }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { cursor: pointer; color: var(--white); font-size: .8rem; font-weight: 700; letter-spacing: .08em; list-style: none; text-transform: uppercase; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu nav {
  position: absolute;
  right: 0;
  top: 36px;
  width: 220px;
  padding: 12px;
  display: grid;
  background: #0e1c32;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 50px rgba(11, 32, 41, .16);
}
.mobile-menu nav a { padding: 10px; color: var(--white); text-decoration: none; }
.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.92fr);
  background: var(--paper-light);
}
.hero-copy {
  padding: clamp(76px, 9vw, 150px) clamp(32px, 7vw, 118px);
  align-self: center;
  container-type: inline-size;
}
.eyebrow {
  margin-bottom: 25px;
  color: var(--cyan);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}
.hero h1 {
  width: 100%;
  max-width: 760px;
  font-size: clamp(2.75rem, 10.5cqw, 7rem);
  text-wrap: balance;
}
.hero h1 em { color: var(--magenta); font-weight: 400; }
.hero-intro { max-width: 650px; margin: 42px 0 0; color: #40545b; font-size: clamp(1.05rem, 1.4vw, 1.3rem); line-height: 1.72; }
.hero-actions { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 52px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--ink); }
.button-primary:hover { background: var(--magenta); border-color: var(--magenta); }
.button-quiet { background: transparent; }
.hero-visual { position: relative; min-height: 600px; overflow: hidden; background: #d7d9d3; }
.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 25, 33, .72));
  content: "";
}
.hero-visual img { object-fit: cover; object-position: 48% center; transition: transform 1s ease; }
.hero-visual > img, .project-card > img, .about-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero:hover .hero-visual img { transform: scale(1.015); }
.hero-caption {
  position: absolute;
  right: clamp(24px, 4vw, 62px);
  bottom: 45px;
  left: clamp(24px, 4vw, 62px);
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
}
.hero-caption span { max-width: 170px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; line-height: 1.45; text-transform: uppercase; }
.hero-caption strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 2.8vw, 3.2rem); font-weight: 400; }
.proof-bar {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.proof-bar div { padding: 0 30px; border-left: 1px solid var(--line); }
.proof-bar div:first-child { padding-left: 0; border-left: 0; }
.proof-bar strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; font-weight: 400; line-height: 1.2; }
.proof-bar span { display: block; margin-top: 4px; color: var(--muted); font-size: .76rem; letter-spacing: .05em; }
.section { padding: clamp(72px, 8vw, 120px) max(24px, calc((100vw - var(--max)) / 2)); }
.intro-section { display: grid; grid-template-columns: .85fr 1.15fr; column-gap: 8vw; background: var(--paper); }
.section-heading { align-self: start; }
.section-lead { max-width: 760px; margin: 58px 0 0; color: #536268; font-size: clamp(1.06rem, 1.6vw, 1.32rem); }
.services-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); grid-column: 1 / -1; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { position: relative; padding: 42px 38px 48px; border-left: 1px solid var(--line); }
.service-card:first-child { border-left: 0; padding-left: 0; }
.service-number { display: block; margin-bottom: 42px; color: var(--magenta); font-family: Georgia, "Times New Roman", serif; font-size: 1.1rem; }
.service-card h3 { max-width: 340px; margin-bottom: 24px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.7rem, 2.4vw, 2.55rem); font-weight: 400; line-height: 1.08; }
.service-card p { color: #516168; }
.service-card ul { margin: 28px 0 0; padding: 0; list-style: none; }
.service-card li { padding: 10px 0; border-top: 1px solid var(--line); font-size: .88rem; font-weight: 700; }
.service-card li::before { margin-right: 9px; color: var(--cyan); content: "—"; }
.projects-section { display: grid; grid-template-columns: .85fr 1.15fr; column-gap: 8vw; background: var(--ink-deep); }
.light { color: var(--white); }
.projects-section .section-lead { color: #b8c5c9; }
.projects-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 390px; gap: 14px; grid-column: 1 / -1; }
.project-card { position: relative; min-height: 390px; overflow: hidden; background: #40545b; }
.project-card img { object-fit: cover; transition: transform .55s ease; }
.project-card:hover img { transform: scale(1.035); }
.project-card::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(5, 22, 29, .9)); content: ""; }
.project-wide { grid-column: span 2; }
.project-tall { grid-row: span 2; }
.project-overlay { position: absolute; right: 28px; bottom: 26px; left: 28px; z-index: 2; color: var(--white); }
.project-overlay p { margin-bottom: 2px; color: var(--cyan); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.project-overlay h3 { margin-bottom: 9px; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 400; line-height: 1.05; }
.project-overlay span { display: block; max-width: 420px; color: #d9e0e2; font-size: .82rem; line-height: 1.45; }
.current-work-section { display: grid; grid-template-columns: .85fr 1.15fr; column-gap: 8vw; background: var(--paper); }
.residential-story { margin-top: 58px; display: grid; grid-template-columns: 2fr 1fr; gap: 14px; grid-column: 1 / -1; }
.residential-main { position: relative; min-height: 650px; overflow: hidden; background: #50636a; }
.residential-main > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.residential-main:hover > img { transform: scale(1.02); }
.residential-main::after { position: absolute; inset: 35% 0 0; background: linear-gradient(180deg, transparent, rgba(5, 22, 29, .88)); content: ""; }
.residential-label { position: absolute; right: clamp(24px, 4vw, 58px); bottom: clamp(25px, 4vw, 52px); left: clamp(24px, 4vw, 58px); z-index: 1; max-width: 640px; color: var(--white); }
.residential-label > span { color: var(--cyan); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.residential-label h3 { margin: 8px 0 14px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.1rem, 4vw, 4.3rem); font-weight: 400; line-height: 1; }
.residential-label p { max-width: 550px; margin: 0; color: #e1e7e9; }
.residential-details { display: grid; grid-template-rows: repeat(2, 1fr); gap: 14px; }
.residential-details img { width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.interior-story { min-height: 520px; margin-top: 14px; display: grid; grid-template-columns: 1.25fr .75fr; grid-column: 1 / -1; color: var(--white); background: var(--ink); }
.interior-image { position: relative; min-height: 520px; overflow: hidden; }
.interior-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.interior-copy { padding: clamp(45px, 6vw, 90px); display: flex; flex-direction: column; justify-content: center; }
.interior-copy h3 { margin-bottom: 26px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.3rem, 4vw, 4.2rem); font-weight: 400; line-height: 1.04; }
.interior-copy p:last-child { margin: 0; color: #cbd5d8; font-size: 1rem; line-height: 1.75; }
.award-section { padding: clamp(72px, 8vw, 120px) max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: 1fr .8fr; column-gap: 8vw; align-items: center; background: #e7e2d7; }
.award-copy h2 { font-size: clamp(2.8rem, 4.6vw, 5.2rem); }
.award-lead { margin-top: 38px; color: #485b62; font-size: 1.08rem; line-height: 1.75; }
.award-facts { margin: 42px 0; border-top: 1px solid rgba(24, 42, 50, .22); }
.award-facts div { padding: 14px 0; display: grid; grid-template-columns: 110px 1fr; gap: 20px; border-bottom: 1px solid rgba(24, 42, 50, .22); }
.award-facts dt { color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.award-facts dd { margin: 0; font-weight: 700; }
.award-button { color: var(--white); background: var(--ink); }
.award-button:hover { color: var(--white); background: var(--magenta); border-color: var(--magenta); }
.award-document { padding: clamp(14px, 2vw, 25px); display: block; background: #fff; box-shadow: 0 25px 65px rgba(24, 42, 50, .18); transform: rotate(1deg); transition: transform .3s ease, box-shadow .3s ease; }
.award-document:hover { box-shadow: 0 30px 75px rgba(24, 42, 50, .24); transform: rotate(0deg) translateY(-4px); }
.award-document img { width: 100%; height: auto; display: block; }
.award-separator { height: 1px; margin-top: clamp(48px, 5vw, 72px); grid-column: 1 / -1; background: rgba(24, 42, 50, .25); }
.press-card { margin-top: clamp(34px, 4vw, 54px); display: grid; grid-template-columns: 1.1fr .9fr; grid-column: 1 / -1; background: var(--paper-light); }
.press-image { padding: clamp(16px, 2vw, 28px); display: flex; align-items: center; justify-content: center; background: #eeeae1; }
.press-image img { width: 100%; height: auto; max-height: 520px; object-fit: contain; }
.press-copy { padding: clamp(40px, 6vw, 85px); align-self: center; }
.press-copy h3 { margin-bottom: 25px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 3.5vw, 3.7rem); font-weight: 400; line-height: 1.06; }
.press-copy p:last-child { margin: 0; color: #516168; }
.about-section { display: grid; grid-template-columns: .95fr 1.05fr; gap: 9vw; align-items: center; background: var(--paper-light); }
.about-image { position: relative; min-height: 730px; }
.about-image img { object-fit: cover; }
.about-stamp {
  position: absolute;
  right: -38px;
  bottom: 42px;
  width: 154px;
  height: 154px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background: var(--magenta);
  border-radius: 50%;
  transform: rotate(-7deg);
}
.about-stamp strong { font-family: Georgia, "Times New Roman", serif; font-size: 2.7rem; font-weight: 400; line-height: .9; }
.about-stamp span { margin-top: 8px; font-size: .66rem; font-weight: 800; letter-spacing: .1em; line-height: 1.3; text-transform: uppercase; }
.about-copy { max-width: 660px; }
.about-copy h2 { margin-bottom: 38px; }
.about-copy > p:not(.eyebrow) { color: #526168; }
.about-copy .large-copy { color: var(--ink) !important; font-size: 1.25rem; line-height: 1.65; }
.timeline { margin-top: 45px; border-top: 1px solid var(--line); }
.timeline div { padding: 14px 0; display: grid; grid-template-columns: 80px 1fr; border-bottom: 1px solid var(--line); }
.timeline strong { color: var(--magenta); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.timeline span { font-size: .9rem; font-weight: 700; }
.process-section {
  padding: clamp(72px, 8vw, 112px) max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8vw;
  color: var(--white);
  background: var(--cyan);
}
.process-intro .eyebrow { color: var(--ink-deep); }
.process-intro h2 { font-size: clamp(2.6rem, 4.6vw, 5rem); }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); }
.process-steps > div { padding: 0 28px; border-left: 1px solid rgba(255,255,255,.35); }
.process-steps span { font-family: Georgia, "Times New Roman", serif; font-size: 1.1rem; }
.process-steps h3 { margin: 58px 0 15px; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 400; }
.process-steps p { margin-bottom: 0; font-size: .9rem; line-height: 1.65; }
.contact-section {
  padding: clamp(76px, 8vw, 120px) max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  align-items: end;
  background: var(--paper);
}
.contact-copy h2 { font-size: clamp(3rem, 5.5vw, 6rem); }
.contact-copy > p:last-child { max-width: 600px; margin: 42px 0 0; color: #536268; font-size: 1.1rem; }
.contact-card { border-top: 1px solid var(--line); }
.contact-line { padding: 25px 0; display: grid; grid-template-columns: 100px 1fr auto; align-items: center; gap: 18px; border-bottom: 1px solid var(--line); text-decoration: none; }
.contact-line span { color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-line strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.25rem, 2vw, 1.8rem); font-weight: 400; line-height: 1.25; word-break: break-word; }
.contact-line b { color: var(--magenta); font-size: 1.2rem; transition: transform .2s ease; }
.contact-line:hover b { transform: translate(3px, -3px); }
.site-footer { padding: 70px max(24px, calc((100vw - var(--max)) / 2)) 28px; color: var(--white); background: var(--ink-deep); }
.footer-main { padding-bottom: 55px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.footer-kicker { margin-bottom: 8px; font-family: Georgia, "Times New Roman", serif; font-size: 2.2rem; }
.footer-main p { margin-bottom: 0; color: #c4ced1; }
.footer-contact { display: grid; gap: 7px; text-align: right; }
.footer-contact a { color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; text-decoration: none; }
.footer-bottom { padding-top: 24px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.18); color: #92a4aa; font-size: .76rem; }
.footer-bottom div { display: flex; gap: 24px; }
.footer-bottom a { text-decoration: none; }
.legal-main { min-height: 70vh; background: var(--paper-light); }
.legal-head { padding: 110px max(24px, calc((100vw - var(--max)) / 2)) 80px; background: var(--ink-deep); color: var(--white); }
.legal-head h1 { font-size: clamp(3.5rem, 7vw, 7rem); }
.legal-copy { width: min(800px, calc(100% - 48px)); margin: 0 auto; padding: 90px 0 120px; }
.legal-copy h2 { margin: 50px 0 18px; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 400; letter-spacing: -.025em; line-height: 1.1; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy h3 { margin: 28px 0 10px; font-size: 1rem; }
.legal-copy p { color: #485b62; }
.legal-copy a { text-decoration-color: var(--cyan); text-underline-offset: 3px; }

@media (max-width: 1100px) {
  .header-inner { width: 100%; padding-right: 16px; padding-left: 16px; }
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: .7rem; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-right: 42px; padding-left: 42px; }
  .intro-section, .projects-section, .current-work-section { column-gap: 5vw; }
  .project-overlay { right: 20px; bottom: 20px; left: 20px; }
}

@media (max-width: 880px) {
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 90px 32px 80px; }
  .hero-visual { min-height: 68vh; }
  .proof-bar { grid-template-columns: 1fr 1fr; }
  .proof-bar div { padding: 20px 22px; border-bottom: 1px solid var(--line); }
  .proof-bar div:nth-child(odd) { padding-left: 0; border-left: 0; }
  .intro-section, .projects-section, .current-work-section { grid-template-columns: 1fr; }
  .section-lead { margin-top: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:first-child { padding: 35px 0; border-top: 1px solid var(--line); border-left: 0; }
  .service-card:first-child { border-top: 0; }
  .service-number { margin-bottom: 20px; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-wide { grid-column: span 2; }
  .project-tall { grid-row: auto; }
  .residential-story { grid-template-columns: 1fr; }
  .residential-main { min-height: 580px; }
  .residential-details { grid-template-rows: none; grid-template-columns: repeat(2, 1fr); }
  .residential-details img { aspect-ratio: 1; }
  .interior-story, .award-section, .press-card { grid-template-columns: 1fr; }
  .award-document { width: min(100%, 620px); margin: 0 auto; }
  .award-separator { margin-top: 54px; }
  .press-card { margin-top: 34px; }
  .about-section { grid-template-columns: 1fr; }
  .about-image { min-height: 610px; }
  .about-stamp { right: 22px; }
  .about-copy { max-width: none; }
  .process-section { grid-template-columns: 1fr; }
  .process-steps > div:first-child { padding-left: 0; border-left: 0; }
  .contact-section { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 620px) {
  html, body { overflow-x: hidden; }
  .site-header { position: relative; top: auto; backdrop-filter: none; }
  .header-inner { width: 100%; height: 66px; padding-right: 12px; padding-left: 12px; gap: 10px; }
  .brand { width: 126px; min-width: 0; }
  .brand img { height: auto; max-height: 42px; }
  .header-call { padding: 7px 8px; font-size: .59rem; letter-spacing: .06em; white-space: nowrap; }
  .mobile-menu { flex: 0 0 auto; }
  .mobile-menu summary { font-size: .68rem; letter-spacing: .05em; }
  .hero-copy { padding: 72px 24px 64px; }
  .hero-intro { margin-top: 30px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-visual { min-height: 72vh; }
  .hero-caption { align-items: flex-start; flex-direction: column; }
  .proof-bar { width: calc(100% - 48px); grid-template-columns: 1fr; }
  .proof-bar div, .proof-bar div:nth-child(odd) { padding: 18px 0; border-bottom: 1px solid var(--line); border-left: 0; }
  .section { padding-right: 24px; padding-left: 24px; }
  .projects-grid { grid-template-columns: 1fr; grid-auto-rows: 420px; }
  .project-wide { grid-column: auto; }
  .residential-story { margin-top: 42px; gap: 10px; }
  .residential-main { min-height: 430px; }
  .residential-details { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .residential-details img { width: 100%; height: auto; min-height: 0; aspect-ratio: 4 / 3; object-fit: cover; }
  .interior-story { margin-top: 10px; }
  .interior-image { min-height: 0; aspect-ratio: 4 / 3; }
  .award-button { width: 100%; }
  .press-image { min-height: 0; padding: 14px; }
  .about-image { min-height: 500px; }
  .about-stamp { width: 130px; height: 130px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps > div, .process-steps > div:first-child { padding: 26px 0; border-top: 1px solid rgba(255,255,255,.35); border-left: 0; }
  .process-steps h3 { margin-top: 20px; }
  .contact-line { grid-template-columns: 78px 1fr auto; gap: 10px; }
  .contact-line strong { font-size: 1.04rem; }
  .footer-main, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-contact { text-align: left; }
  .footer-bottom { gap: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
