:root {
  --color-bg: #efeae3;
  --color-bg-warm: #e8e0d4;
  --color-text: #282722;
  --color-text-soft: #5a564d;
  --color-accent: #d7c8ba;
  --color-accent-dark: #b29479;
  --color-brass: #a4845e;
  --color-card: #ffffff;
  --color-border: #e3dccf;
  --color-error: #8a3a2a;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  --shadow-card: 0 1px 2px rgba(40, 39, 34, 0.04), 0 8px 24px rgba(40, 39, 34, 0.06);
  --shadow-image: 0 30px 60px -20px rgba(40, 39, 34, 0.25);

  --max-width: 1120px;
  --content-width: 720px;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(215, 200, 186, 0.55), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(215, 200, 186, 0.35), transparent 60%),
    var(--color-bg);
  background-attachment: fixed;
}

.app {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 24px 96px;
}

/* Brand bar at the top of every page */
.brand-bar {
  text-align: center;
  padding: 0 0 24px;
}
.brand-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-brass);
  border: 1px solid var(--color-brass);
  border-radius: 999px;
  padding: 7px 18px;
  transition: opacity 0.18s var(--ease);
}
.brand-bar a:hover { opacity: 0.7; }
.brand-bar-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.brand-bar-logo {
  height: 18px;
  width: auto;
  display: block;
  vertical-align: middle;
}

.screen { display: none; }
.screen.active {
  display: block;
  animation: fadein 0.35s var(--ease);
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding: 32px 0 64px;
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-brass);
  font-weight: 600;
  margin: 0 0 22px;
}

.display {
  font-family: "Impact", "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 9vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.display-accent {
  color: var(--color-text);
}

.lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-text-soft);
  margin: 0 0 32px;
  max-width: 460px;
}

.hero-cta {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}
.hero-cta .microcopy {
  text-align: center;
}

.microcopy {
  font-size: 13px;
  color: var(--color-text-soft);
  margin: 0;
}

.hero-figure {
  margin: 0;
  position: relative;
}
.hero-figure img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-image);
  display: block;
}
.hero-caption {
  margin: 14px 0 0;
  color: var(--color-text-soft);
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.01em;
  text-align: center;
}

/* ===== "What you'll get" strip ===== */
.inside {
  margin-top: 16px;
  padding: 36px 0;
  border-top: 1px solid var(--color-border);
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-brass);
  margin: 0 0 22px;
  font-weight: 600;
}
.inside-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  column-gap: 32px;
  row-gap: 14px;
}
.inside-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.inside-list .num {
  font-family: "Impact", sans-serif;
  font-size: 22px;
  color: var(--color-brass);
  letter-spacing: 0.05em;
}
.inside-name {
  font-size: 15px;
  font-weight: 500;
}
.inside-bonus-item {
  align-items: center;
}
.bonus-tag {
  display: inline-block;
  padding: 5px 11px;
  background: var(--color-brass);
  color: var(--color-bg);
  font-family: "Impact", "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
}
.inside-bonus-item .inside-name {
  font-weight: 700;
  color: var(--color-text);
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--color-text);
  color: var(--color-bg);
  border: 1px solid var(--color-text);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.12s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 4px 12px rgba(40, 39, 34, 0.18);
}
.btn-primary:hover {
  background: #1c1b17;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(40, 39, 34, 0.25);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-copy {
  margin-top: 12px;
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease);
}
.btn-copy:hover {
  background: var(--color-accent);
  border-color: var(--color-accent-dark);
}

/* Card actions row (Copy + Open in Canva) */
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  align-items: center;
}
.card-actions .btn-copy { margin-top: 0; }

/* Canva button */
.btn-canva {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-text);
  color: var(--color-bg);
  border: 1px solid var(--color-text);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease);
}
.btn-canva::after {
  content: "→";
  font-size: 13px;
  line-height: 1;
}
.btn-canva:hover {
  background: var(--color-brass);
  border-color: var(--color-brass);
}
.btn-canva.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.btn-canva.no-arrow::after { content: none; }
.btn-canva:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Privacy note above the photo dropzone (low-key) */
.privacy-note {
  font-size: 13px;
  font-style: italic;
  color: var(--color-text-soft);
  margin: 0 0 10px;
  opacity: 0.8;
}

/* Photo widget on the gated reveal */
.photo-widget .photo-widget-text {
  margin: 0 0 4px;
  color: var(--color-text-soft);
  font-size: 14.5px;
}
.photo-widget #photos-status {
  margin-top: 10px;
}

/* Canva availability note (gated reveal) */
.canva-note {
  margin: 0 4px 18px;
  font-size: 13px;
  font-style: italic;
  color: var(--color-text-soft);
  opacity: 0.85;
}

/* Agent Social Haus CTA at the end of the gated reveal */
.ash-cta {
  position: relative;
  background: linear-gradient(135deg, var(--color-accent) 0%, #e9d8c5 60%, var(--color-bg-warm) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  margin: 36px 0 12px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-card);
}
.ash-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 240px at 100% 0%, rgba(164, 132, 94, 0.18), transparent 60%),
    radial-gradient(360px 200px at 0% 100%, rgba(255, 255, 255, 0.45), transparent 60%);
  z-index: -1;
}
.ash-kicker {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-brass);
  font-weight: 600;
  margin: 0 0 14px;
}
.ash-headline {
  font-family: "Impact", "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 42px);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--color-text);
}
.ash-body {
  margin: 0 auto 26px;
  max-width: 480px;
  color: var(--color-text);
  opacity: 0.85;
  font-size: 16px;
}
.ash-btn {
  display: inline-block;
  background: var(--color-text);
  color: var(--color-bg);
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: background 0.2s var(--ease), transform 0.12s var(--ease);
  box-shadow: 0 4px 14px rgba(40, 39, 34, 0.18);
}
.ash-btn:hover {
  background: var(--color-brass);
  transform: translateY(-1px);
}
.ash-btn.is-pending {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* ===== Email sent confirmation ===== */
.confirmation-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  margin: 28px 0 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.check-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  background: #8a9c75;
  color: var(--color-bg);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.check-icon svg {
  width: 36px;
  height: 36px;
}
.confirmation-card h2 {
  font-family: "Impact", "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 38px);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 14px;
}
.confirmation-card p {
  margin: 0 0 8px;
  color: var(--color-text-soft);
}
.email-confirm {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-brass) !important;
  margin: 6px 0 20px !important;
  word-break: break-all;
}
.confirmation-card .microcopy {
  margin-top: 18px;
}
.confirmation-card .confirm-bonus {
  margin-top: 6px;
  color: var(--color-brass);
  font-weight: 600;
}

/* ===== Site footer ===== */
.site-footer {
  margin-top: 56px;
  padding: 28px 0 12px;
  border-top: 1px solid var(--color-border);
  text-align: center;
}
.footer-disclaimer {
  font-size: 12px;
  color: var(--color-text-soft);
  margin: 0 auto 14px;
  max-width: 600px;
  opacity: 0.85;
  line-height: 1.5;
}
.footer-meta {
  font-size: 12px;
  color: var(--color-text-soft);
  margin: 0;
}
.footer-meta a {
  color: var(--color-text-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.footer-meta a:hover {
  border-bottom-color: var(--color-brass);
}

/* ===== Legal pages (terms / privacy) ===== */
.app.legal {
  max-width: 720px;
  padding: 56px 24px 96px;
}
.app.legal h3 {
  font-family: "Impact", sans-serif;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 32px 0 12px;
}
.app.legal p, .app.legal ul {
  color: var(--color-text-soft);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0 0 14px;
}
.app.legal ul {
  padding-left: 22px;
}
.app.legal ul li {
  margin-bottom: 6px;
}
.app.legal a {
  color: var(--color-text);
  text-decoration: underline;
}
.app.legal .legal-note {
  font-style: italic;
  font-size: 13.5px;
  border-left: 3px solid var(--color-accent-dark);
  padding: 8px 14px;
  background: var(--color-card);
  margin-top: 32px;
}
.app.legal .back-link {
  margin-top: 36px;
  font-size: 14px;
}
.app.legal .back-link a {
  color: var(--color-brass);
}

/* ===== SCREEN HEADERS ===== */
.screen-header {
  text-align: left;
  margin: 8px 0 28px;
  max-width: var(--content-width);
}
.screen-header h2 {
  font-family: "Impact", "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 4.5vw, 44px);
  line-height: 1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.screen-sub {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 16px;
}

/* ===== FORM ===== */
#form, #loading, #results {
  max-width: var(--content-width);
  margin: 0 auto;
}
.form-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.field-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field > span,
.field > legend {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-text-soft);
  text-align: left;
  padding-left: 4px;
}
.field input,
.field select {
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-card);
  font: inherit;
  color: inherit;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--color-text);
  box-shadow: 0 0 0 3px rgba(178, 148, 121, 0.25);
}
fieldset.field {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px;
  background: var(--color-card);
  position: relative;
  margin-top: 14px;
}
fieldset.field legend {
  position: absolute;
  top: -20px;
  left: 0;
  padding: 0;
  margin: 0;
}
fieldset.field input {
  margin-bottom: 10px;
  background: var(--color-bg);
}
fieldset.field input:last-child { margin-bottom: 0; }

/* Dropzone */
.dropzone {
  border: 1.5px dashed var(--color-accent-dark);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  padding: 36px 20px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.dropzone:hover,
.dropzone.dragover {
  background: var(--color-accent);
  border-color: var(--color-text);
}
.dz-prompt { margin: 0; color: var(--color-text-soft); }
.dz-link { color: var(--color-text); text-decoration: underline; font-weight: 500; }

.photo-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 10px;
}
.photo-list li {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--color-bg);
}
.photo-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-list button {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: none;
  background: rgba(40, 39, 34, 0.85);
  color: white;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}

.turnstile {
  display: flex;
  justify-content: center;
  min-height: 65px;
}

.form-actions {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin-top: 8px;
}
.form-actions .microcopy {
  text-align: center;
}
.form-error {
  color: var(--color-error);
  font-size: 14px;
  margin: 4px 0 0;
}

/* ===== LOADING ===== */
.loader {
  text-align: center;
  padding: 96px 0;
}
.loader h2 {
  font-family: "Impact", sans-serif;
  font-weight: 400;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 0 8px;
}

/* Sign loader animation (For Sale sign swinging, SOLD topper blinking) */
.sign-loader {
  display: flex;
  justify-content: center;
  margin: 0 auto 32px;
}
.sl-svg {
  width: 240px;
  height: auto;
  overflow: visible;
}
.sl-ground {
  stroke: var(--color-brass);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.5;
}
.sl-stake,
.sl-crossbar {
  stroke: var(--color-text);
  stroke-width: 3;
  stroke-linecap: round;
}
.sl-connector {
  stroke: var(--color-text);
  stroke-width: 1.5;
  stroke-linecap: round;
}

/* House */
.sl-house-roof,
.sl-house-body,
.sl-house-chimney {
  fill: var(--color-bg);
  stroke: var(--color-text);
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.sl-house-door {
  fill: var(--color-bg);
  stroke: var(--color-text);
  stroke-width: 2;
  stroke-linejoin: round;
}
.sl-house-arch {
  fill: var(--color-accent);
  stroke: var(--color-text);
  stroke-width: 1.8;
  stroke-linejoin: round;
}
.sl-house-arch-vert,
.sl-house-arch-horiz {
  stroke: var(--color-text);
  stroke-width: 1.5;
}
.sl-house-window {
  fill: var(--color-accent);
  stroke: var(--color-text);
  stroke-width: 1.8;
}
.sl-house-window-cross-v,
.sl-house-window-cross-h {
  stroke: var(--color-text);
  stroke-width: 1.5;
}

/* Hearts rising from chimney */
.sl-heart {
  fill: none;
  stroke: var(--color-text);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.sl-heart-1 { animation: sl-heart-rise 4s ease-out infinite 0s; }
.sl-heart-2 { animation: sl-heart-rise 4s ease-out infinite 1.3s; }
.sl-heart-3 { animation: sl-heart-rise 4s ease-out infinite 2.6s; }
@keyframes sl-heart-rise {
  0%   { transform: translate(0, 0) scale(0.6); opacity: 0; }
  12%  { transform: translate(0, -4px) scale(0.85); opacity: 0.9; }
  60%  { transform: translate(-1px, -22px) scale(1); opacity: 0.9; }
  100% { transform: translate(-3px, -42px) scale(1.1); opacity: 0; }
}

/* SOLD plaque (sits on crossbar, blinks) */
.sl-sold rect {
  fill: var(--color-brass);
  stroke: var(--color-text);
  stroke-width: 2;
  animation: sl-sold-blink 1.4s ease-in-out infinite;
}
.sl-sold-text {
  fill: var(--color-bg);
  font-family: "Impact", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
}
@keyframes sl-sold-blink {
  0%, 100% { fill: var(--color-brass); }
  50%      { fill: #f0c878; }
}

/* Hanging panel swings on the crossbar */
.sl-hanging-panel {
  transform-origin: 190px 148px;
  animation: sl-swing 3.4s ease-in-out infinite;
}
@keyframes sl-swing {
  0%, 100% { transform: rotate(-5deg); }
  50%      { transform: rotate(5deg); }
}
.sl-hanging-panel rect:first-of-type {
  fill: var(--color-bg);
  stroke: var(--color-text);
  stroke-width: 2.5;
}
.sl-icon-roof,
.sl-icon-body {
  fill: var(--color-bg);
  stroke: var(--color-text);
  stroke-width: 1.8;
  stroke-linejoin: round;
}
.sl-icon-window {
  fill: var(--color-accent);
  stroke: var(--color-text);
  stroke-width: 1.2;
}

/* ===== RESULTS ===== */
.preview-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px 26px 22px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-card);
}
.preview-card h3 {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-brass);
  margin: 0 0 14px;
  font-weight: 600;
}
.content-body {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 15.5px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-wrap: break-word;
}

#content-carousel .carousel-item {
  border-top: 1px solid var(--color-border);
  padding: 16px 0;
}
#content-carousel .carousel-item:first-child {
  border-top: none;
  padding-top: 0;
}
#content-carousel h4 {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-text-soft);
}

/* ===== EMAIL GATE ===== */
.email-gate {
  position: relative;
  background: var(--color-text);
  color: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  margin: 28px 0;
  text-align: left;
  overflow: hidden;
  isolation: isolate;
}
.email-gate::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 220px at 110% 0%, rgba(164, 132, 94, 0.35), transparent 60%),
    radial-gradient(400px 200px at -10% 100%, rgba(215, 200, 186, 0.18), transparent 60%);
  z-index: -1;
}
.email-gate h3 {
  font-family: "Impact", sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 3.5vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 12px;
}
.email-gate p {
  margin: 0 0 20px;
  opacity: 0.85;
  max-width: 540px;
}
.email-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.email-form .field {
  flex: 1 1 260px;
  display: block;
  margin: 0;
  min-width: 0;
}
.email-form input {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-bg);
  font: inherit;
  box-sizing: border-box;
}
.email-form input::placeholder { color: rgba(239, 234, 227, 0.55); }
.email-form input:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.1);
}
.email-form .btn-primary {
  background: var(--color-accent);
  color: var(--color-text);
  border-color: var(--color-accent);
  border-radius: 10px;
  height: 52px;
  padding: 0 22px;
  white-space: nowrap;
  box-sizing: border-box;
}
.email-form .btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}
.email-gate .microcopy { color: rgba(239, 234, 227, 0.65); margin-top: 12px; }

.reveal-title {
  font-family: "Impact", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: 0;
  margin: 36px 0 18px;
}
.reveal-note { color: var(--color-text-soft); margin-top: 18px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 16px 0 40px;
  }
  .hero-figure {
    order: -1;
  }
  .hero-figure img {
    aspect-ratio: 16 / 10;
  }
  .lede { max-width: none; }
}

@media (max-width: 520px) {
  .app { padding: 20px 18px 80px; }
  .display { font-size: clamp(48px, 14vw, 80px); }
  .lede { font-size: 16px; }
  .email-gate { padding: 28px 22px; }
}
