:root {
  --black: #000000;
  --charcoal: #030303;
  --charcoal-2: #080808;
  --orange: #2f7dff;        /* blue accent */
  --orange-light: #5b9cff;
  --cream: #f5f3f0;
  --muted: #9a9a9a;
  --line: rgba(255, 255, 255, 0.09);
  --radius: 6px;
  --wrap: 1260px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--cream);
  background: var(--black);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
html, body { overflow-x: hidden; }

h1, h2, h3, .brand-text, .display { font-family: "Anton", "Barlow Condensed", sans-serif; font-weight: 400; letter-spacing: 0.005em; text-transform: uppercase; }
.eyebrow, .btn, .nav a, .sec-num, .ticker, .scroll-cue, .field label { font-family: "Barlow Condensed", sans-serif; }

h1 { font-size: clamp(3.2rem, 9vw, 6.6rem); line-height: 0.92; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 0.98; }
h3 { font-family: "Barlow Condensed", sans-serif; font-size: 1.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; }

a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap.narrow { max-width: 780px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.82rem; font-weight: 600; color: var(--orange-light);
  margin-bottom: 0.5rem;
}
.eyebrow .tick { width: 8px; height: 8px; background: var(--orange); display: inline-block; box-shadow: 0 0 12px var(--orange); }
.center { text-align: center; }
.section-lead { color: var(--muted); max-width: 640px; font-size: 1.05rem; }
.section-lead.center { margin-left: auto; margin-right: auto; }

/* HAZARD STRIPE (reusable accent) */
.stripe {
  height: 8px;
  background: repeating-linear-gradient(-45deg, var(--orange) 0 18px, #000000 18px 36px);
}

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 74px; }
.nav { flex-wrap: nowrap; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 9px;
  background: linear-gradient(160deg, #7fb2ff, #2f7dff 55%, #1450b8);
  color: #fff; font-family: "Anton", sans-serif; font-size: 1.15rem;
  box-shadow: 0 6px 16px rgba(47,125,255,0.45), inset 0 1.5px 0 rgba(255,255,255,0.55), inset 0 -3px 6px rgba(0,0,0,0.4);
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.brand-mark-img {
  height: 46px; width: 46px; display: block; flex-shrink: 0;
  filter: drop-shadow(0 5px 14px rgba(47,125,255,0.35));
}
.brand-text { font-size: 1.4rem; line-height: 1; white-space: nowrap; }
.brand-text em { color: var(--orange); font-style: normal; }

.nav { display: flex; align-items: center; gap: 22px; }
.nav a { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; opacity: 0.82; transition: opacity 0.2s, color 0.2s; }
.nav a:hover { opacity: 1; color: var(--orange-light); }
.nav-cta { background: linear-gradient(180deg, #6aa6ff, #2f7dff 60%, #1a5ed0); color: #fff !important; padding: 10px 22px; border-radius: 7px; opacity: 1 !important; box-shadow: 0 5px 14px rgba(47,125,255,0.4), inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -2px 4px rgba(0,0,0,0.25); text-shadow: 0 1px 1px rgba(0,0,0,0.3); transition: transform 0.15s, box-shadow 0.2s; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(47,125,255,0.55), inset 0 1px 0 rgba(255,255,255,0.5); }
.nav-cta:active { transform: translateY(0); box-shadow: 0 3px 8px rgba(47,125,255,0.4), inset 0 2px 5px rgba(0,0,0,0.35); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--cream); transition: 0.2s; }

/* HERO */
.hero { position: relative; min-height: 94vh; display: flex; align-items: center; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 72% 22%, rgba(47,125,255,0.18), transparent 52%), linear-gradient(120deg, #000000, #070707), url("assets/img/hero.jpg") center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.97) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 90px 24px; max-width: 900px; }
.hero h1 { margin-top: 0.4rem; }
.hero h1 .hl { color: var(--orange); display: inline-block; position: relative; }
.hero-sub { font-size: 1.22rem; color: #ded9d2; max-width: 600px; margin-top: 1.6rem; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2.4rem; }
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  text-transform: uppercase; letter-spacing: 0.25em; font-size: 0.72rem; color: var(--muted);
  padding-bottom: 26px;
}
.scroll-cue::after {
  content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 18px; background: var(--orange); animation: cue 1.6s infinite;
}
@keyframes cue { 0%,100% { opacity: 0.3; height: 10px; } 50% { opacity: 1; height: 20px; } }

/* TRADES TICKER */
.ticker { background: linear-gradient(180deg, #3d8bff, #2f7dff 50%, #1f66d8); color: #fff; overflow: hidden; white-space: nowrap; border-top: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid #000000; box-shadow: inset 0 2px 6px rgba(255,255,255,0.15), inset 0 -3px 8px rgba(0,0,0,0.3); text-shadow: 0 1px 1px rgba(0,0,0,0.25); }
.ticker-track { display: inline-flex; align-items: center; gap: 26px; padding: 13px 0; animation: scroll 34s linear infinite; }
.ticker-track span { font-family: "Barlow Condensed", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 1.15rem; }
.ticker-track .dot { opacity: 0.55; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* BUTTONS */
.btn {
  display: inline-block; padding: 15px 28px; border-radius: 5px;
  font-size: 1.08rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  cursor: pointer; border: 0; transition: transform 0.14s ease, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(180deg, #6aa6ff, #2f7dff 55%, #1a5ed0); color: #fff;
  box-shadow: 0 7px 18px rgba(47,125,255,0.4), inset 0 1.5px 0 rgba(255,255,255,0.45), inset 0 -3px 6px rgba(0,0,0,0.28);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.btn-primary:hover { box-shadow: 0 14px 34px rgba(47,125,255,0.55), inset 0 1.5px 0 rgba(255,255,255,0.55); }
.btn-primary:active { transform: translateY(1px); box-shadow: 0 4px 10px rgba(47,125,255,0.4), inset 0 2px 6px rgba(0,0,0,0.4); }
.btn-ghost { background: rgba(255,255,255,0.05); color: var(--cream); border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--orange); }
.btn-block { width: 100%; margin-top: 6px; }

/* SECTIONS */
.section { padding: 104px 0; position: relative; }
.sec-head { display: flex; align-items: flex-start; gap: 22px; margin-bottom: 1rem; }
.sec-head.center-head { justify-content: center; text-align: left; }
.sec-num {
  font-family: "Anton", sans-serif; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 0.8;
  color: transparent; -webkit-text-stroke: 1.5px var(--orange); text-stroke: 1.5px var(--orange);
  flex-shrink: 0;
}
.sec-num.inline { display: block; margin-bottom: 0.6rem; -webkit-text-stroke: 1.5px rgba(47,125,255,0.7); }
.section-lead { margin-bottom: 3.4rem; }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 2rem; perspective: 1500px; }
.card {
  position: relative; background: var(--charcoal-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px 30px; overflow: hidden; transform-style: preserve-3d;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.03);
  transition: border-color 0.25s, transform 0.3s cubic-bezier(.2,.7,.3,1), background 0.25s, box-shadow 0.3s;
}
.card::before { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--orange); transition: width 0.3s ease; }
.card:hover { border-color: rgba(47,125,255,0.45); transform: translateY(-8px) rotateX(5deg) rotateY(-4deg); background: #0c0f16; box-shadow: 0 26px 50px rgba(0,0,0,0.6), 0 0 0 1px rgba(47,125,255,0.25), 0 12px 30px rgba(47,125,255,0.18); }
.card:hover::before { width: 100%; }
.card.feature { border-color: rgba(47,125,255,0.5); background: linear-gradient(165deg, #0e1a2e, var(--charcoal-2)); }
.card.feature::before { width: 100%; }
.card-accent { width: 34px; height: 3px; background: var(--orange); margin-bottom: 22px; border-radius: 2px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.98rem; }

/* SPLIT SECTIONS */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-copy p { color: var(--muted); margin-top: 1rem; }
.split-copy h2 { margin-top: 0.2rem; }
.split-media {
  position: relative; min-height: 460px; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, #0b1524, #070707);
  border: 1px solid var(--line); display: grid; place-items: center;
  box-shadow: 0 24px 55px rgba(0,0,0,0.6), 0 0 0 1px rgba(47,125,255,0.12);
}
.split-media::after {
  content: ""; position: absolute; top: 14px; left: 14px; right: 14px; bottom: 14px;
  border: 1px solid rgba(47,125,255,0.25); border-radius: 4px; pointer-events: none;
}
.split-media.alt { background: linear-gradient(135deg, #141414, #070707); }
.split-media img, .tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.spotlight { background: var(--charcoal); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.check-list { list-style: none; margin: 1.6rem 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 32px; color: #ded9d2; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px;
  background: var(--orange); clip-path: polygon(14% 44%, 0 58%, 40% 100%, 100% 16%, 86% 4%, 40% 72%);
}

/* GALLERY */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 1rem; }
.tile {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, #0b1524, #070707); border: 1px solid var(--line);
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(0,0,0,0.5);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.tile:hover { transform: translateY(-5px) scale(1.02); border-color: rgba(47,125,255,0.45); box-shadow: 0 22px 44px rgba(0,0,0,0.6), 0 8px 22px rgba(47,125,255,0.2); }
.tile figcaption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-family: "Barlow Condensed", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
}

/* ABOUT */
.about { background: var(--charcoal); border-top: 1px solid var(--line); }
.stats { display: flex; gap: 40px; margin: 2rem 0; flex-wrap: wrap; }
.stat strong { display: block; font-family: "Anton", sans-serif; font-size: 2.2rem; color: var(--orange); line-height: 1; }
.stat span { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.fineprint { font-size: 0.9rem; color: var(--muted); }
.fineprint em { color: var(--orange-light); font-style: normal; }


/* FOUNDER QUOTE */
.founder-quote {
  position: relative;
  margin: 1.6rem 0 1.8rem;
  padding: 0 0 0 26px;
  border-left: 2px solid var(--orange);
  font-size: 1.12rem;
  line-height: 1.6;
  color: #ded9d2;
  font-style: italic;
}
.founder-quote cite {
  display: block;
  margin-top: 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange-light);
}

/* portrait media panel - taller crop for a person */
.split-media.portrait { min-height: 560px; }
.split-media.portrait img { object-position: center 22%; }
@media (max-width: 900px) { .split-media.portrait { min-height: 420px; } }

/* QUOTE FORM */
.quote { background: linear-gradient(180deg, var(--black), #050505); }
.quote-form { margin-top: 2.6rem; display: grid; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.field input, .field select, .field textarea {
  background: var(--charcoal-2); border: 1px solid var(--line); border-radius: 5px;
  padding: 14px 15px; color: var(--cream); font-family: inherit; font-size: 1rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(47,125,255,0.15); }
.field textarea { resize: vertical; }
.form-status { text-align: center; font-size: 0.95rem; min-height: 1.2em; }
.form-status.ok { color: #7ac77a; }
.form-status.err { color: #e08a8a; }

/* PAGE HERO (interior pages) */
.page-hero { position: relative; min-height: 62vh; display: flex; align-items: center; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 72% 22%, rgba(47,125,255,0.18), transparent 52%), linear-gradient(120deg, #000000, #070707), url("assets/img/s-panoramic.jpg") center/cover no-repeat;
}
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.66) 50%, rgba(0,0,0,0.97) 100%); }
.page-hero-inner { position: relative; z-index: 2; padding: 96px 24px 84px; max-width: 900px; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); margin-top: 0.4rem; }
.page-hero h1 .hl { color: var(--orange); }
.crumb { color: var(--orange-light); }
.crumb:hover { text-decoration: underline; }

/* CLICKABLE TILES */
.tile.linked, .gallery-lb .tile { cursor: pointer; }
.tile.linked::after, .gallery-lb .tile::after {
  position: absolute; top: 10px; right: 12px; z-index: 2;
  width: 30px; height: 30px; display: grid; place-items: center; border-radius: 5px;
  background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.18);
  color: var(--cream); font-size: 0.95rem; opacity: 0; transition: opacity 0.2s;
}
.gallery-lb .tile::after { content: "⤢"; }
.tile.linked::after { content: "→"; }
.tile.linked:hover::after, .gallery-lb .tile:hover::after { opacity: 1; }
.tile-link { display: contents; }
.tile.linked:focus-visible, .gallery-lb .tile:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

/* SPOTLIGHT IMAGE AS LINK */
.split-media.linked { text-decoration: none; }
.media-cta {
  position: relative; z-index: 2;
  font-family: "Barlow Condensed", sans-serif; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 1.02rem; color: #fff;
  padding: 13px 24px; border-radius: 6px;
  background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(4px);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s, border-color 0.25s;
}
.split-media.linked:hover .media-cta,
.split-media.linked:focus-visible .media-cta { opacity: 1; transform: none; background: rgba(47,125,255,0.85); border-color: var(--orange-light); }
.split-media.linked img { transition: transform 0.4s ease; }
.split-media.linked:hover img { transform: scale(1.04); }
@media (hover: none) {
  .media-cta { opacity: 1; transform: none; }
  .tile.linked::after, .gallery-lb .tile::after { opacity: 1; }
}

/* REAL PROJECTS */
.projects-strip { background: var(--charcoal); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.projects-hero .page-hero-bg {
  background: radial-gradient(circle at 72% 22%, rgba(47,125,255,0.18), transparent 52%), linear-gradient(120deg, #000000, #070707), url("assets/img/work/patio-06-finished.jpg") center/cover no-repeat;
}
.project.alt { background: var(--charcoal); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.project .section-lead { margin-bottom: 2.6rem; }


/* SAUNA GALLERY — four strong tiles in one even row */
#builds .gallery { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1120px) { #builds .gallery { grid-template-columns: repeat(2, 1fr); } }

/* BUILD PROCESS — text-only step cards (photos pulled until real ones exist) */
.steps-text { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 1rem; }
.step-card {
  background: var(--charcoal-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px 24px; position: relative; overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.45);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.step-card::before { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--orange); transition: width 0.3s ease; }
.step-card:hover { border-color: rgba(47,125,255,0.4); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.55); }
.step-card:hover::before { width: 100%; }
.step-card h3 { margin-bottom: 9px; }
.step-card p { color: var(--muted); font-size: 0.95rem; }
@media (max-width: 1120px) { .steps-text { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px)  { .steps-text { grid-template-columns: 1fr; } }


/* INLINE VIDEO */
.video-block { display: grid; grid-template-columns: 340px 1fr; gap: 34px; align-items: center; margin-top: 1.6rem; }
.video-frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: #000;
  box-shadow: 0 18px 44px rgba(0,0,0,0.55);
}
.video-frame video { display: block; width: 100%; height: auto; }
.video-copy p { color: var(--muted); font-size: 1rem; margin-bottom: 1rem; }
.video-copy p:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
  .video-block { grid-template-columns: 1fr; gap: 22px; }
  .video-frame { max-width: 340px; margin: 0 auto; }
}

/* BEFORE / AFTER PAIR */
.ba { margin: 0 0 3.6rem; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ba-item { aspect-ratio: 10/14; }
.ba-pair.landscape .ba-item { aspect-ratio: 4/3; }

.ba-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-tag {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-family: "Barlow Condensed", sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.86rem;
  padding: 7px 16px; border-radius: 4px;
  background: rgba(0,0,0,0.7); border: 1px solid rgba(255,255,255,0.22); color: var(--cream);
  backdrop-filter: blur(4px);
}
.ba-tag.is-after {
  background: linear-gradient(180deg, #6aa6ff, #2f7dff 60%, #1a5ed0); border-color: transparent; color: #fff;
  box-shadow: 0 4px 12px rgba(47,125,255,0.45);
}
.ba-cap { margin-top: 16px; color: var(--muted); font-size: 0.98rem; }
.sub-head {
  margin-top: 3.4rem; margin-bottom: 0.6rem; padding-top: 2.4rem;
  border-top: 1px solid var(--line); color: var(--cream);
}


/* Recent projects strip: 4 real projects sit as one even row, not 3 + orphan */
.projects-strip .gallery { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1120px) { .projects-strip .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px)  { .projects-strip .gallery { grid-template-columns: repeat(2, 1fr); } }

/* BUILD PROCESS STEPS */
.process { background: var(--charcoal); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps { list-style: none; display: grid; gap: 28px; margin-top: 1rem; counter-reset: step; }
.step {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 34px; align-items: center;
  background: var(--charcoal-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; box-shadow: 0 10px 26px rgba(0,0,0,0.45);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.step:hover { border-color: rgba(47,125,255,0.35); box-shadow: 0 18px 40px rgba(0,0,0,0.55), 0 6px 20px rgba(47,125,255,0.14); }
.step:nth-child(even) .tile { order: 2; }
.step .tile { aspect-ratio: 16/10; }
.step-copy { padding: 6px 10px 6px 4px; }
.step-num {
  display: inline-block; font-family: "Barlow Condensed", sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.82rem;
  color: var(--orange-light); margin-bottom: 8px;
}
.step-copy h3 { margin-bottom: 10px; }
.step-copy p { color: var(--muted); font-size: 1rem; }

/* CTA BAND */
.cta-band { background: linear-gradient(180deg, var(--black), #050505); text-align: center; }
.cta-band h2 { margin-bottom: 1rem; }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center;
  background: rgba(0,0,0,0.94); backdrop-filter: blur(6px); padding: 60px 20px;
  opacity: 0; transition: opacity 0.22s ease;
}
.lightbox[hidden] { display: none; }
.lightbox.open { opacity: 1; }
.lb-stage { max-width: min(1180px, 94vw); max-height: 84vh; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.lb-img {
  max-width: 100%; max-height: 74vh; object-fit: contain; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: 0 30px 70px rgba(0,0,0,0.7);
}
.lb-cap {
  font-family: "Barlow Condensed", sans-serif; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 1.1rem; text-align: center;
}
.lb-count { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: var(--muted); font-size: 0.85rem; letter-spacing: 0.12em; }
.lb-close, .lb-nav {
  position: absolute; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18);
  color: var(--cream); cursor: pointer; border-radius: 6px; line-height: 1;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.lb-close:hover, .lb-nav:hover { background: rgba(47,125,255,0.22); border-color: var(--orange); }
.lb-close { top: 20px; right: 22px; width: 46px; height: 46px; font-size: 2rem; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 62px; font-size: 2.4rem; }
.lb-nav:hover { transform: translateY(-50%) scale(1.05); }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }
body.lb-open { overflow: hidden; }

/* IMG PLACEHOLDER NOTES */
.img-note {
  position: relative; z-index: 1;
  color: rgba(245,243,240,0.5); font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.88rem; padding: 9px 14px;
  border: 1px dashed rgba(245,243,240,0.22); border-radius: 5px;
}

/* FOOTER */
.site-footer { background: #050505; border-top: 1px solid var(--line); padding-top: 56px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 26px; padding-bottom: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; align-items: center; max-width: 520px; }
.footer-brand strong { font-family: "Anton", sans-serif; font-size: 1.35rem; text-transform: uppercase; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; margin-top: 0; line-height: 1.5; }
.footer-area {
  color: var(--muted); font-size: 0.78rem; line-height: 1.7;
  max-width: 460px; margin-top: 4px;
}
.footer-logo { width: 240px; max-width: 100%; height: auto; display: block; }
.footer-contact { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px 30px; }
.footer-contact a { color: #ded9d2; transition: color 0.2s; font-size: 1.02rem; }
.footer-contact a:hover { color: var(--orange); }
.footer-legal { border-top: 1px solid var(--line); padding-top: 22px; padding-bottom: 30px; text-align: center; }
.lic-link { color: var(--muted); border-bottom: 1px solid rgba(255,255,255,0.22); transition: color 0.2s, border-color 0.2s; }
.lic-link:hover { color: var(--orange-light); border-bottom-color: var(--orange); }
.footer-legal p { color: var(--muted); font-size: 0.85rem; }


/* FOOTER SOCIAL */
.footer-social { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.footer-social a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 20px; border-radius: 6px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.03); color: #ded9d2;
  font-family: "Barlow Condensed", sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em; font-size: 1rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.footer-social a:hover {
  color: #fff; border-color: var(--orange); background: rgba(47,125,255,0.14);
  transform: translateY(-2px); box-shadow: 0 8px 20px rgba(47,125,255,0.18);
}
.footer-social a:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.footer-social svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.footer-social .ig-icon { width: 21px; height: 21px; }
.footer-social .ig-icon path { fill: url(#igGrad); }

/* SCROLL REVEAL */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .ticker-track, .scroll-cue::after { animation: none; }
}

/* RESPONSIVE */
@media (max-width: 1120px) {
  .nav { position: fixed; inset: 74px 0 auto 0; flex-direction: column; gap: 0; background: var(--charcoal-2); border-bottom: 1px solid var(--line); padding: 8px 0; transform: translateY(-160%); transition: transform 0.28s; }
  .nav.open { transform: translateY(0); }
  .nav a { width: 100%; padding: 15px 24px; }
  .nav-cta { border-radius: 0; }
  .nav-toggle { display: flex; }
}
@media (max-width: 900px) {
  .cards, .gallery { grid-template-columns: repeat(2, 1fr); }
  .ba-item { aspect-ratio: 10/13; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-media { min-height: 320px; order: -1; }
  .step { grid-template-columns: 1fr; gap: 18px; }
  .step:nth-child(even) .tile { order: 0; }
  .step .tile { aspect-ratio: 16/10; }
}
@media (max-width: 680px) {
  .nav { position: fixed; inset: 74px 0 auto 0; flex-direction: column; gap: 0; background: var(--charcoal-2); border-bottom: 1px solid var(--line); padding: 8px 0; transform: translateY(-150%); transition: transform 0.28s; }
  .nav.open { transform: translateY(0); }
  .nav a { width: 100%; padding: 15px 24px; }
  .nav-cta { border-radius: 0; }
  .nav-toggle { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .footer-contact { flex-direction: column; gap: 12px; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .section { padding: 68px 0; }
  .sec-head { gap: 14px; }
  .hero { min-height: 84vh; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-mark-img { height: 38px; width: 38px; }
  .brand-text { font-size: 1.2rem; }
  .footer-area {
  color: var(--muted); font-size: 0.78rem; line-height: 1.7;
  max-width: 460px; margin-top: 4px;
}
.footer-logo { width: 220px; }
  .hero-corner { display: none; }
  .hero h1 { font-size: 2.7rem; }
  .hero-sub { font-size: 1.05rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 100%; text-align: center; }
  .page-hero { min-height: 52vh; }
  .page-hero h1 { font-size: 2.5rem; }
  .lightbox { padding: 74px 12px; }
  .lb-nav { width: 42px; height: 52px; font-size: 1.9rem; }
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
  .lb-close { top: 14px; right: 14px; width: 40px; height: 40px; }
}
@media (max-width: 400px) {
  .brand-text { font-size: 1.05rem; }
  .hero h1 { font-size: 2.3rem; }
}
