/* ————————————————————————————————————————————
   ISMAILEY CONSTRUCTIONS
   Dark industrial editorial · Big Shoulders + IBM Plex
   ———————————————————————————————————————————— */

:root {
  --stone:      #0B0C0A;
  --stone-2:    #121310;
  --char:       #1A1B18;
  --ash:        #26271F; /*wrong*/
  --ash:        #232420;
  --line:       #36372F;
  --line-soft:  #272822;
  --cream:      #F1E9D4;
  --cream-2:    #D2C7A8;
  --muted:      #8F887A;
  --amber:      #F2BE3A;
  --amber-deep: #CF9B14;
  --steel:      #5A6672;

  --display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --sans:    "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, monospace;

  --pad: clamp(20px, 4vw, 56px);
  --max: 1480px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--stone); }

body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--stone);
  color: var(--cream);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: "ss01","ss02";
}

/* grain overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 0.95  0 0 0 0 0.85  0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: .8;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--amber); color: var(--stone); }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  position: relative;
}

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 400;
}

.rule { display: block; height: 1px; background: var(--line); border: 0; width: 100%; }

/* ————————————————————————————————————————————
   TOP STRIP
   ———————————————————————————————————————————— */
.topbar {
  background: var(--stone-2);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-2);
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.topbar .left { display: flex; align-items: center; gap: 14px; }
.topbar .right { display: flex; align-items: center; gap: 24px; }
.topbar .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(74,222,128,.7);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .45; }
}
.topbar a { color: var(--amber); }
.topbar a:hover { color: var(--cream); }
@media (max-width: 780px) {
  .topbar .hide-sm { display: none; }
}

/* ————————————————————————————————————————————
   NAV
   ———————————————————————————————————————————— */
nav.main {
  background: var(--stone);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 3;
}
nav.main .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.mark {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: .04em;
  line-height: 1;
  color: var(--cream);
  text-transform: uppercase;
}
.mark .dot { color: var(--amber); }
.mark sup {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  transform: translateY(-12px);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 34px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  align-items: center;
}
nav ul a { position: relative; padding: 4px 0; color: var(--cream-2); }
nav ul a:hover { color: var(--cream); }
nav ul a.active { color: var(--amber); }
nav ul a.active::before {
  content: "";
  position: absolute;
  left: -12px; top: 50%;
  width: 6px; height: 6px;
  background: var(--amber);
  transform: translateY(-50%);
}

nav .cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 13px 22px;
  background: var(--amber);
  color: var(--stone);
  font-weight: 600;
  border: 1px solid var(--amber);
  transition: background .3s, color .3s, transform .3s;
}
nav .cta:hover {
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  nav ul { display: none; }
}

/* ————————————————————————————————————————————
   24/7 BANNER
   ———————————————————————————————————————————— */
.banner247 {
  background: var(--amber);
  color: var(--stone);
  border-bottom: 1px solid var(--amber-deep);
  overflow: hidden;
}
.banner247 .track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  padding: 14px 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
  animation: scroll 38s linear infinite;
}
.banner247 .track span { display: inline-flex; align-items: center; gap: 50px; }
.banner247 .track .mk {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--stone);
  transform: rotate(45deg);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ————————————————————————————————————————————
   HERO
   ———————————————————————————————————————————— */
.hero {
  position: relative;
  padding-top: clamp(50px, 8vw, 120px);
  padding-bottom: clamp(60px, 9vw, 140px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero .hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
  position: relative;
  z-index: 2;
}
@media (max-width: 960px) {
  .hero .hero-grid { grid-template-columns: 1fr; }
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}
.hero .eyebrow .bar {
  width: 40px; height: 1px; background: var(--amber);
}

.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(58px, 11.5vw, 200px);
  line-height: .82;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--cream);
}
.hero h1 .amber { color: var(--amber); display: block; }
.hero h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cream-2);
  display: block;
}

.hero .sub {
  margin-top: 32px;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--cream-2);
  max-width: 52ch;
  font-weight: 400;
}
.hero .sub strong { color: var(--cream); font-weight: 500; }

.hero .cta-row {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.btn {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 17px 26px;
  border: 1px solid var(--cream);
  color: var(--cream);
  background: transparent;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .35s cubic-bezier(.2,.7,.1,1);
}
.btn:hover { background: var(--cream); color: var(--stone); }
.btn.primary {
  background: var(--amber);
  color: var(--stone);
  border-color: var(--amber);
}
.btn.primary:hover { background: var(--cream); border-color: var(--cream); }
.btn .arrow { font-size: 14px; }
.btn:hover .arrow { transform: translateX(3px); }
.btn .arrow { transition: transform .35s; }

.hero figure {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--char);
  border: 1px solid var(--line);
}
.hero figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.95);
}
.hero figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,12,10,.85) 100%);
  pointer-events: none;
}
.hero figure .cap {
  position: absolute;
  left: 18px; bottom: 18px; right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
}
.hero figure .cap .big {
  font-family: var(--display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: .02em;
  color: var(--amber);
  line-height: 1;
}

.hero .facts {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero .facts > div {
  background: var(--stone);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero .facts .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero .facts .v {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--cream);
  letter-spacing: .02em;
}
.hero .facts .v .amb { color: var(--amber); }
@media (max-width: 780px) {
  .hero .facts { grid-template-columns: repeat(2, 1fr); }
}

/* blueprint grid background */
.blueprint-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,0,0,.55), transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,0,0,.55), transparent 70%);
  opacity: .45;
  pointer-events: none;
  z-index: 1;
}

/* ————————————————————————————————————————————
   SECTION BASE
   ———————————————————————————————————————————— */
section.block {
  padding-top: clamp(70px, 9vw, 130px);
  padding-bottom: clamp(70px, 9vw, 130px);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  margin-bottom: 60px;
  align-items: baseline;
}
@media (max-width: 780px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; }
}

.section-head .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  position: relative;
  padding-left: 16px;
}
.section-head .label::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 7px; height: 7px;
  background: var(--amber);
  transform: rotate(45deg);
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(42px, 6.6vw, 100px);
  line-height: .86;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--cream);
  max-width: 14ch;
}
.section-head h2 .amber { color: var(--amber); }
.section-head h2 .stroke {
  color: transparent;
  -webkit-text-stroke: 1.2px var(--cream-2);
}

/* ————————————————————————————————————————————
   SERVICE TIERS (home page)
   ———————————————————————————————————————————— */
.tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--line);
}
@media (max-width: 900px) {
  .tiers { grid-template-columns: 1fr; }
}

.tier {
  background: var(--stone);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  min-height: 640px;
  position: relative;
  transition: background .4s;
}
.tier:hover { background: var(--char); }
.tier:hover .tier-num { color: var(--amber); }
.tier:hover .tier-cta { background: var(--amber); color: var(--stone); border-color: var(--amber); }

.tier .tier-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-2);
  margin-bottom: 14px;
  transition: color .4s;
}
.tier figure {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--char);
  margin-bottom: 32px;
  position: relative;
}
.tier figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 2.2s cubic-bezier(.2,.7,.1,1);
}
.tier:hover figure img { transform: scale(1.04); }
.tier h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .88;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 24px;
}
.tier h3 .amber { color: var(--amber); }
.tier .price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--display);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.tier .price .num {
  font-size: 64px;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--amber);
}
.tier .price .unit {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 10px;
}
.tier .price .custom {
  font-size: 42px;
  line-height: 1;
  color: var(--amber);
  letter-spacing: 0;
}
.tier .desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--cream-2);
  max-width: 46ch;
  margin-bottom: 32px;
}
.tier .inc {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.tier .inc .lab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.tier .inc ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}
.tier .inc ul li {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 11px;
  border: 1px solid var(--line);
  color: var(--cream-2);
}
.tier-cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 16px 22px;
  border: 1px solid var(--cream);
  background: transparent;
  color: var(--cream);
  text-align: center;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: all .35s cubic-bezier(.2,.7,.1,1);
  align-self: stretch;
}

/* ————————————————————————————————————————————
   SERVICES LIST (handy + reno pages)
   ———————————————————————————————————————————— */
.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-list > div {
  background: var(--stone);
  padding: 32px 26px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: background .4s;
  position: relative;
}
.service-list > div:hover { background: var(--char); }
.service-list > div:hover .n { color: var(--amber); }
.service-list .n {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--muted);
  transition: color .4s;
}
.service-list .name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  line-height: .95;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--cream);
}
@media (max-width: 900px) {
  .service-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .service-list { grid-template-columns: 1fr; }
}

/* ————————————————————————————————————————————
   PROCESS
   ———————————————————————————————————————————— */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.process .step {
  background: var(--stone);
  padding: 36px 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.process .step .num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 72px;
  line-height: 1;
  color: var(--amber);
  margin-bottom: 22px;
  letter-spacing: 0;
}
.process .step h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.process .step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream-2);
}
@media (max-width: 900px) {
  .process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process { grid-template-columns: 1fr; }
}

/* ————————————————————————————————————————————
   PULL / QUOTE
   ———————————————————————————————————————————— */
.pull {
  padding: clamp(80px, 12vw, 180px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.pull .bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/blueprint.png");
  background-size: cover;
  background-position: center;
  opacity: .35;
  filter: saturate(.7);
}
.pull .bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--stone) 0%, rgba(11,12,10,.68) 30%, rgba(11,12,10,.68) 70%, var(--stone) 100%);
}
.pull .wrap { position: relative; z-index: 2; }
.pull h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(52px, 8.8vw, 150px);
  line-height: .82;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--cream);
  max-width: 14ch;
}
.pull h2 .amber { color: var(--amber); }
.pull h2 .stroke {
  color: transparent;
  -webkit-text-stroke: 1.4px var(--cream-2);
}
.pull .note {
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-2);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 60ch;
}
.pull .note::before {
  content: "";
  width: 40px; height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

/* ————————————————————————————————————————————
   CONTACT / QUOTE
   ———————————————————————————————————————————— */
.contact {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--stone-2);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1000px 600px at 90% 20%, rgba(242,190,58,.14), transparent 60%),
              radial-gradient(900px 700px at 0% 100%, rgba(242,190,58,.06), transparent 60%);
  pointer-events: none;
}
.contact .wrap { position: relative; z-index: 2; }
.contact .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact .eyebrow::before {
  content: "";
  width: 40px; height: 1px; background: var(--amber);
}
.contact h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(52px, 9vw, 150px);
  line-height: .82;
  text-transform: uppercase;
  color: var(--cream);
}
.contact h2 .amber { color: var(--amber); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
.contact-grid .lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--cream-2);
  max-width: 44ch;
  margin-bottom: 40px;
}
.contact-grid .lead strong { color: var(--cream); font-weight: 500; }

.quote-btn {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 36px;
  background: var(--amber);
  color: var(--stone);
  border: 1px solid var(--amber);
  position: relative;
  overflow: hidden;
  transition: background .3s, transform .4s cubic-bezier(.2,.7,.1,1);
}
.quote-btn:hover { background: var(--cream); transform: translateY(-2px); }
.quote-btn .lab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .75;
}
.quote-btn .mail {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: 0;
  text-transform: uppercase;
}
.quote-btn .arr {
  position: absolute;
  top: 16px; right: 18px;
  font-family: var(--mono);
  font-size: 18px;
}

.contact-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 40px;
}
.contact-side div { display: flex; flex-direction: column; gap: 8px; }
.contact-side .v {
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cream);
  font-weight: 400;
}
.contact-side a.v:hover { color: var(--amber); }

/* ————————————————————————————————————————————
   FOOTER
   ———————————————————————————————————————————— */
footer {
  background: var(--stone);
  padding: 50px 0 44px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
footer .wrap {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
footer .mark {
  font-size: 44px;
  margin-bottom: 14px;
}
footer p.small {
  font-family: var(--sans);
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.55;
  color: var(--cream-2);
  max-width: 38ch;
}
footer h5 {
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 14px;
  font-family: var(--mono);
  letter-spacing: .12em;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer a:hover { color: var(--amber); }
footer .legal {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
}
footer .legal strong {
  color: var(--cream-2);
  font-weight: 500;
}
@media (max-width: 820px) {
  footer .wrap { grid-template-columns: 1fr 1fr; }
  footer .mark-col { grid-column: 1 / -1; }
}

/* ————————————————————————————————————————————
   REVEAL
   ———————————————————————————————————————————— */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(.2,.7,.1,1), transform 1s cubic-bezier(.2,.7,.1,1);
}
.reveal.in { opacity: 1; transform: none; }

.hero .eyebrow, .hero h1, .hero .sub, .hero .cta-row, .hero figure, .hero .facts {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 1.1s cubic-bezier(.2,.7,.1,1) forwards;
}
.hero .eyebrow { animation-delay: .05s; }
.hero h1       { animation-delay: .15s; }
.hero .sub     { animation-delay: .35s; }
.hero .cta-row { animation-delay: .5s; }
.hero figure   { animation-delay: .25s; }
.hero .facts   { animation-delay: .65s; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
