/* JGStudios PH — shared site styles. Used by every page; edit here, not inline. */

:root {
  --bg:       #0a0a0a;
  --bg2:      #111111;
  --bg3:      #181818;
  --card:     #141414;
  --border:   #1f1f1f;
  --coral:    #ff4d2e;
  --gold:     #e8b84b;
  --white:    #f5f0e8;
  --muted:    #6b6b6b;
  --subtle:   #2a2a2a;
  --green:    #27c46a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--coral);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, opacity 0.15s ease;
  mix-blend-mode: normal;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,77,46,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.35s cubic-bezier(.23,1,.32,1), width 0.3s, height 0.3s;
}
body:hover .cursor { opacity: 1; }

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9990;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--coral);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 75% 100%, 0 100%);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-text span { color: var(--coral); }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--coral);
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: #e63d1e !important; transform: translateY(-1px); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 4px;
  background: none;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,77,46,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,77,46,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-accent {
  position: absolute;
  top: 15%;
  right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,77,46,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-accent-2 {
  position: absolute;
  bottom: 5%;
  left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,184,75,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--coral);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--coral);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: 1.5rem;
}
.hero-headline .line2 { color: var(--coral); }
.hero-headline .line3 { 
  -webkit-text-stroke: 1px rgba(245,240,232,0.3);
  color: transparent;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.hero-sub strong { color: var(--white); font-weight: 500; }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--coral);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.25s;
  border: none;
  cursor: none;
}
.btn-primary:hover { background: #e63d1e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,77,46,0.3); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--muted);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
  cursor: none;
}
.btn-ghost:hover { border-color: var(--white); }
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-item { }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-num span { color: var(--coral); }
.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--coral), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* TRUST BAR */
.trust-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  font-weight: 500;
}
.trust-item .dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
.trust-item.gold .dot { background: var(--gold); }
.trust-item.coral .dot { background: var(--coral); }

/* SECTION BASE */
section { padding: 7rem 4rem; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--coral);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--coral);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.section-body {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
}

/* ABOUT STATS CARD */
.about-stats-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 420px;
}
.about-stat-item {
  background: var(--card);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.about-stat-num span { color: var(--coral); }
.about-stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

/* ABOUT */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 380px;
  background: var(--bg3);
  border: 1px solid var(--border);
  overflow: hidden;
}
.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--subtle);
}
.about-photo-placeholder svg { width: 56px; height: 56px; opacity: 0.3; }
.about-photo-placeholder p { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-mono); opacity: 0.5; }
.about-corner-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border-right: 3px solid var(--coral);
  border-bottom: 3px solid var(--coral);
  pointer-events: none;
}
.about-corner-accent-2 {
  position: absolute;
  top: -20px; left: -20px;
  width: 80px; height: 80px;
  border-left: 2px solid var(--gold);
  border-top: 2px solid var(--gold);
  pointer-events: none;
}
.about-badge {
  position: absolute;
  top: -15px; right: -30px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about-badge-icon { font-size: 1.5rem; }
.about-badge-text { }
.about-badge-num { font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; line-height: 1; }
.about-badge-sub { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.05em; }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
}
.tag.highlight { border-color: var(--coral); color: var(--coral); }
.about-quote {
  margin: 2.5rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid var(--coral);
}
.about-quote p { font-size: 1.1rem; color: var(--white); font-style: italic; line-height: 1.65; }
.about-quote cite { display: block; margin-top: 0.75rem; font-size: 0.8rem; color: var(--muted); font-style: normal; letter-spacing: 0.08em; text-transform: uppercase; }

/* SERVICES */
.services-bg { background: var(--bg2); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--card);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card:hover { background: #181818; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--coral);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.5rem;
  color: var(--white);
  opacity: 0.7;
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.stack-pill {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  background: var(--subtle);
  color: var(--muted);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

/* PROCESS */
.process-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}
.process-sticky {
  position: sticky;
  top: 7rem;
}
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.step-num-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.step-num {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--coral);
  flex-shrink: 0;
  transition: all 0.3s;
}
.process-step:hover .step-num {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}
.step-connector {
  width: 1px;
  flex: 1;
  background: var(--border);
  margin-top: 0.5rem;
  min-height: 20px;
}
.step-content { flex: 1; }
.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  padding-top: 0.5rem;
}
.step-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* PORTFOLIO */
.portfolio-bg { background: var(--bg); }
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.project-featured {
  background: var(--bg2);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s;
}
.project-featured:hover { border-color: var(--coral); }
.project-screen {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a0a00 0%, #0d0d0d 50%, #001a0a 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.project-screen-inner {
  width: 60%;
  aspect-ratio: 9/16;
  background: #1a1a1a;
  border-radius: 16px;
  border: 2px solid #333;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: rotate(-3deg);
  position: relative;
  z-index: 2;
}
.phone-topbar {
  height: 32px;
  background: var(--coral);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
}
.phone-topbar span { width: 6px; height: 6px; background: rgba(255,255,255,0.5); border-radius: 50%; }
.phone-body {
  flex: 1;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phone-map {
  flex: 1;
  background: #1e2a1e;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  overflow: hidden;
}
.phone-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 12px,
    rgba(39,196,106,0.08) 12px, rgba(39,196,106,0.08) 13px
  ),
  repeating-linear-gradient(
    90deg, transparent, transparent 12px,
    rgba(39,196,106,0.08) 12px, rgba(39,196,106,0.08) 13px
  );
}
.phone-stats { display: flex; gap: 6px; }
.phone-stat {
  flex: 1; background: #252525; border-radius: 6px; padding: 8px;
  text-align: center;
}
.phone-stat .n { font-size: 1rem; font-weight: 700; font-family: var(--font-display); color: var(--coral); }
.phone-stat .l { font-size: 0.55rem; color: #666; letter-spacing: 0.05em; }
.phone-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(5px);
  background: rgba(10,10,10,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  z-index: 10;
}
.phone-overlay-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.35rem 1rem;
  border-radius: 2px;
  text-transform: uppercase;
}
.phone-overlay-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.phone-screen-glow {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,77,46,0.2), transparent 70%);
  left: 10%; top: 50%; transform: translateY(-50%);
  z-index: 1;
}
.project-info { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.project-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.project-tag .dot { width: 5px; height: 5px; background: var(--green); border-radius: 50%; }
.project-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.project-desc { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }
.project-metrics {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.metric { }
.metric-val { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--coral); }
.metric-label { font-size: 0.75rem; color: var(--muted); margin-top: 0.15rem; letter-spacing: 0.05em; }
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
  transition: border-color 0.2s, color 0.2s;
}
.project-link:hover { border-color: var(--coral); color: var(--coral); }
.project-links-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.project-link-ghost {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.project-link-ghost:hover { color: var(--white); border-color: var(--muted); }

/* HOAHUB CARD */
.app-store-badge { display: inline-block; margin-bottom: 1.5rem; line-height: 0; }
.app-store-badge img { height: 40px; width: auto; }
.project-featured-flipped {
  background: var(--bg2);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s;
}
.project-featured-flipped:hover { border-color: var(--gold); }
.project-screen-hoa {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #001a0a 0%, #0d0d0d 50%, #0a0a1a 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.project-screen-hoa-glow {
  position: absolute;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(232,184,75,0.15), transparent 70%);
  right: 10%; top: 50%; transform: translateY(-50%);
  z-index: 1;
}
.hoa-card-stack {
  position: relative;
  width: 68%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hoa-mock-card {
  background: #1c1c1c;
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  margin-bottom: -18px;
}
.hoa-mock-card:first-child { transform: scale(0.97); transform-origin: top center; z-index: 1; opacity: 0.6; }
.hoa-mock-card:nth-child(2) { transform: scale(0.985); transform-origin: top center; z-index: 2; opacity: 0.8; }
.hoa-mock-card:last-child { transform: scale(1); z-index: 3; opacity: 1; margin-bottom: 0; }
.hoa-card-topbar { height: 6px; }
.hoa-mock-card:first-child .hoa-card-topbar { background: var(--gold); }
.hoa-mock-card:nth-child(2) .hoa-card-topbar { background: var(--coral); }
.hoa-mock-card:last-child .hoa-card-topbar { background: var(--gold); }
.hoa-card-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 8px; }
.hoa-card-line { height: 7px; background: var(--subtle); border-radius: 4px; }
.hoa-card-line.short { width: 55%; }
.hoa-card-line.medium { width: 80%; }
.hoa-card-line.full { width: 100%; }
.hoa-card-line.xshort { width: 35%; background: rgba(232,184,75,0.25); }
.hoahub-waitlist-form { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.hoahub-waitlist-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.hoahub-email-input {
  width: 100%;
  background: var(--subtle);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.hoahub-email-input:focus { border-color: var(--gold); }
.hoahub-email-input::placeholder { color: var(--muted); }
.hoahub-submit-btn {
  width: 100%;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.hoahub-submit-btn:hover {
  background: #e03d20;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,77,46,0.3);
}
.hoahub-microcopy {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: -0.25rem;
}
.hoahub-success {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--green);
  padding: 1rem 0;
  display: none;
}
.project-tag-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.project-tag-gold .dot-gold { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.project-tech-line {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

/* TESTIMONIALS */
.testimonials-bg { background: var(--bg2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover { border-color: rgba(255,77,46,0.3); transform: translateY(-4px); }
.testimonial-card.featured {
  border-color: var(--coral);
  background: linear-gradient(135deg, rgba(255,77,46,0.05), var(--card));
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--coral);
  opacity: 0.3;
  margin-bottom: 0.5rem;
  margin-top: -1rem;
}
.testimonial-text { font-size: 0.95rem; color: var(--white); line-height: 1.75; margin-bottom: 2rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--subtle);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--coral);
  flex-shrink: 0;
  border: 1.5px solid var(--border);
}
.author-name { font-size: 0.9rem; font-weight: 600; }
.author-title { font-size: 0.75rem; color: var(--muted); margin-top: 0.1rem; }
.stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.stars span { color: var(--gold); font-size: 0.9rem; }

/* TECH STACK */
.tech-section { padding: 4rem; background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tech-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.tech-label { font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; flex-shrink: 0; }
.tech-logos {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
}
.tech-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all 0.2s;
  letter-spacing: 0.05em;
}
.tech-badge:hover { color: var(--white); border-color: var(--subtle); }
.tech-badge .icon { font-size: 1rem; }

/* CTA SECTION */
.cta-section {
  padding: 8rem 4rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,77,46,0.08) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.cta-headline span { color: var(--coral); }
.cta-sub { font-size: 1.1rem; color: var(--muted); line-height: 1.7; margin-bottom: 3rem; }
.cta-actions { display: flex; justify-content: center; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.cta-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}
.cta-note a { color: var(--coral); text-decoration: none; }

/* CONTACT */
.contact-bg { background: var(--bg2); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.contact-info { }
.contact-channels { margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem; }
.channel-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--white);
  transition: all 0.25s;
}
.channel-item:hover { border-color: var(--coral); background: rgba(255,77,46,0.05); }
.channel-icon { font-size: 1.25rem; }
.channel-label { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font-mono); }
.channel-value { font-size: 0.95rem; font-weight: 500; margin-top: 0.15rem; }
.form-wrap { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-label { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-mono); display: block; margin-bottom: 0.5rem; }
.form-input {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--coral); }
.form-input::placeholder { color: var(--muted); }
select.form-input option { background: #1a1a1a; }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  background: var(--coral);
  color: #fff;
  border: none;
  padding: 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: none;
  border-radius: 2px;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit:hover { background: #e63d1e; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,77,46,0.3); }
.form-disclaimer { font-size: 0.75rem; color: var(--muted); margin-top: 1rem; text-align: center; line-height: 1.5; }

/* FOOTER */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .logo-text { font-size: 1.2rem; display: block; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.875rem; color: var(--muted); line-height: 1.65; max-width: 240px; }
.footer-heading { font-size: 0.72rem; color: var(--white); letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-mono); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-ph-flag { display: inline-flex; align-items: center; gap: 0.4rem; }
.flag-icon { font-size: 1rem; }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--coral); }
.mobile-close {
  position: absolute;
  top: 2rem; right: 2rem;
  font-size: 1.5rem;
  color: var(--muted);
  cursor: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* TOUCH / MOBILE — disable custom cursor */
@media (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .btn-primary, .btn-ghost, .hamburger, .form-submit, .mobile-close { cursor: pointer; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav { padding: 1.25rem 2rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 7rem 2rem 4rem; }
  section { padding: 5rem 2rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 300px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-inner { grid-template-columns: 1fr; gap: 2rem; }
  .process-sticky { position: static; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trust-bar { padding: 1.25rem 2rem; gap: 1.5rem; }
  .tech-section { padding: 3rem 2rem; }
  .cta-section { padding: 6rem 2rem; }
  footer { padding: 3rem 2rem; }
  .project-featured { grid-template-columns: 1fr; }
  .project-featured-flipped { grid-template-columns: 1fr; }
  .project-featured-flipped .project-info { order: -1; }
  .project-featured-flipped .project-screen-hoa { order: 1; }
  .scroll-indicator { display: none; }
  .hero-stats { gap: 2rem; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* Respect the hidden attribute even where a class sets display */
[hidden] { display: none !important; }

/* Skip link for keyboard users */
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 10000;
  background: var(--coral); color: var(--white);
  padding: 0.6rem 1rem; font-family: var(--font-mono); font-size: 0.8rem;
  text-decoration: none; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   INNER PAGES (services, work, privacy, 404)
   ============================================================ */
.page-hero {
  padding: 10rem 4rem 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero > *:not(.hero-bg-grid):not(.hero-accent) { position: relative; z-index: 1; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.breadcrumb li + li::before { content: '/'; margin-right: 0.5rem; color: var(--coral); }
.breadcrumb a { color: var(--white); text-decoration: none; }
.breadcrumb a:hover { color: var(--coral); }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: 1.5rem;
}
.page-title span { color: var(--coral); }
.page-lede {
  font-size: 1.15rem;
  color: var(--white);
  opacity: 0.8;
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.page-section { border-bottom: 1px solid var(--border); }
.page-section.alt { background: var(--bg2); }
.prose { max-width: 760px; }
.prose p, .prose li {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--white);
  opacity: 0.82;
}
.prose p + p { margin-top: 1.25rem; }
.prose ul { margin: 1.25rem 0 0 1.25rem; }
.prose li + li { margin-top: 0.5rem; }
.prose a { color: var(--coral); text-decoration: underline; text-underline-offset: 3px; }
.prose h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
}
.steps { list-style: none; margin-top: 2.5rem; display: grid; gap: 1.5rem; max-width: 760px; counter-reset: step; }
.steps li {
  counter-increment: step;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem 2rem 2rem 5rem;
  position: relative;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 2rem; top: 2rem;
  font-family: var(--font-mono); font-size: 0.8rem; color: var(--coral); letter-spacing: 0.1em;
}
.steps h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.steps p { font-size: 0.98rem; line-height: 1.7; color: var(--white); opacity: 0.8; }
.faq { max-width: 760px; margin-top: 2.5rem; border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.faq summary {
  cursor: none;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--coral); font-family: var(--font-mono); }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 1rem; font-size: 1rem; line-height: 1.75; color: var(--white); opacity: 0.82; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.related-card { text-decoration: none; color: var(--white); display: block; }
.related-card .service-desc { margin-bottom: 0; }
.related-card .card-link { display: inline-block; margin-top: 1.25rem; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); }
.service-more {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.service-more:hover { border-color: var(--coral); }
.placeholder-note {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px dashed var(--gold);
  padding: 0.5rem 0.9rem;
}
.form-consent {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.82rem; line-height: 1.6; color: var(--white); opacity: 0.8;
  margin: 0.5rem 0 1.25rem;
}
.form-consent input { margin-top: 0.3rem; accent-color: var(--coral); flex-shrink: 0; width: 16px; height: 16px; }
.form-consent a { color: var(--coral); }
.waitlist-box { max-width: 480px; margin-top: 2rem; }
.error-code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 900;
  line-height: 1;
  color: var(--coral);
}
.error-links { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; }
@media (max-width: 1024px) {
  .page-hero { padding: 8rem 2rem 4rem; }
}
@media (max-width: 640px) {
  .page-hero { padding: 7rem 1.25rem 3rem; }
  .steps li { padding: 3.5rem 1.5rem 1.5rem; }
  .steps li::before { left: 1.5rem; top: 1.5rem; }
}

/* ============================================================
   MOBILE FIXES: project cards fit narrow screens (360px)
   ============================================================ */
@media (max-width: 1024px) {
  .project-featured, .project-featured-flipped { grid-template-columns: minmax(0, 1fr); }
  .project-featured > *, .project-featured-flipped > * { min-width: 0; }
}
@media (max-width: 640px) {
  .project-info { padding: 2rem 1.5rem; }
  .project-metrics { flex-wrap: wrap; gap: 1.25rem 2rem; }
  .project-screen { aspect-ratio: auto; padding: 2.5rem 0; }
  .project-screen-inner { width: min(55%, 200px); }
}

/* ============================================================
   COOKIE CONSENT BANNER (built by site.js, RA 10173)
   ============================================================ */
.cookie-banner {
  position: fixed;
  right: 1rem; bottom: 1rem; left: 1rem;
  z-index: 9000;
  max-width: 34rem;
  margin-left: auto;
  background: var(--bg3);
  border: 1px solid var(--subtle);
  border-top: 2px solid var(--coral);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.cookie-banner p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 1rem;
}
.cookie-banner a { color: var(--coral); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cookie-btn {
  flex: 1 1 8rem;
  min-height: 44px;
  padding: 0.65rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 2px;
  border: 1px solid var(--coral);
  cursor: inherit;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cookie-btn-accept { background: var(--coral); color: var(--bg); }
.cookie-btn-accept:hover { background: var(--white); border-color: var(--white); }
.cookie-btn-decline { background: transparent; color: var(--white); border-color: var(--muted); }
.cookie-btn-decline:hover { border-color: var(--white); }
.cookie-btn:focus-visible, .cookie-settings-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.cookie-settings-link {
  background: none; border: 0; padding: 0;
  font: inherit; color: var(--coral);
  cursor: inherit;
}
.cookie-settings-link:hover { text-decoration: underline; }
@media (pointer: coarse) { .cookie-btn, .cookie-settings-link { cursor: pointer; } }
@media (max-width: 640px) {
  .cookie-banner { right: 0.75rem; bottom: 0.75rem; left: 0.75rem; padding: 1rem 1.1rem; }
}

/* HOAHub: real app screenshots (homepage card + /work/hoahub/) */
.hoa-shots {
  position: relative; z-index: 2;
  display: flex; gap: 6%; justify-content: center; align-items: flex-start;
  width: 100%; height: 100%; padding-top: 8%;
}
.hoa-shots img {
  width: 34%; height: auto;
  border-radius: 18px;
  border: 1px solid var(--subtle);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.hoa-shots img + img { margin-top: 10%; }
.app-hero-icon { width: 72px; height: 72px; border-radius: 16px; margin-bottom: 1.5rem; display: block; }
.app-shots {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 2.5rem; max-width: 1100px;
}
.app-shots figure { margin: 0; }
.app-shots img {
  width: 100%; height: auto; display: block;
  border-radius: 22px; border: 1px solid var(--subtle);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.app-shots figcaption {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white); opacity: 0.7;
  margin-top: 1rem; text-align: center;
}
@media (max-width: 1024px) {
  .app-shots { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .app-shots { gap: 1rem; }
  .app-shots img { border-radius: 14px; }
}

/* HOAHub homepage card: both phones top-aligned, and on desktop the screenshot
   panel fills the full card height (no dark band under it) */
.hoa-shots img + img { margin-top: 0; }
@media (min-width: 1025px) {
  .project-screen-hoa { aspect-ratio: auto; align-self: stretch; min-height: 100%; }
  .hoa-shots { position: absolute; inset: 0; padding-top: 10%; }
}
@media (max-width: 1024px) { .project-screen-hoa { aspect-ratio: 4/3; } }
@media (max-width: 640px)  { .project-screen-hoa { aspect-ratio: 1/1; } .hoa-shots img { width: 40%; } }
