/* A11y / SEO skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: #EA4F00;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Easy Spaces — easyspaces.online landing
   Brand: #0A414B #0E7382 #EA4F00 #ECEEF3 #FFFFFF */

:root {
  --teal-deep: #0A414B;
  --teal: #0E7382;
  --orange: #EA4F00;
  --gray: #ECEEF3;
  --white: #FFFFFF;
  --text: #0A414B;
  --muted: #5A6A72;
  --border: #D5DAE0;
  --success: #0E7382;
  --danger: #B91C1C;
  --radius: 0.75rem;
  --shadow: 0 12px 40px rgba(10, 65, 75, 0.12);
  --font: "Barlow", system-ui, -apple-system, Segoe UI, sans-serif;
  --max: 72rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}
.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(10,65,75,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 0; gap: 1rem;
}
.logo {
  display: inline-flex; align-items: center;
  text-decoration: none; line-height: 0;
}
.logo img {
  display: block;
  height: 64px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(10,65,75,0.12);
}
.footer-logo {
  display: inline-flex; margin-bottom: 0.85rem; line-height: 0;
}
.footer-logo img {
  display: block;
  height: 72px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.header-phone {
  font-weight: 600; font-size: 0.95rem; color: var(--teal-deep);
  text-decoration: none;
}
.header-phone:hover { color: var(--teal); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  padding: 0.9rem 1.4rem; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--orange); color: var(--white); border-color: var(--orange);
}
.btn-primary:hover { background: #d24600; border-color: #d24600; color: var(--white); }
.btn-secondary {
  background: transparent; color: var(--teal-deep); border-color: var(--teal-deep);
}
.btn-secondary:hover { background: var(--teal-deep); color: var(--white); }
.btn-on-dark.btn-secondary {
  color: var(--white); border-color: rgba(255,255,255,0.55);
}
.btn-on-dark.btn-secondary:hover {
  background: var(--white); color: var(--teal-deep);
}
.btn-hero {
  background: var(--orange); color: var(--white); border-color: var(--orange);
  font-size: 1.05rem; padding: 1rem 1.6rem;
}
.btn-hero:hover { background: #d24600; color: var(--white); }
.cta-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center;
  margin-top: 1.25rem;
}
.signature {
  font-style: italic; color: var(--muted); margin-top: 1.25rem;
  font-size: 0.95rem;
}
.signature-on-dark { color: rgba(255,255,255,0.65); }

/* Labels / type */
.eyebrow, .section-label {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 0.75rem;
}
h1, h2, h3 {
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 1rem;
}
h1 { font-size: clamp(1.85rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 40rem; }
.section { padding: 4rem 0; }
.section-tight { padding: 3rem 0; }
.section-dark {
  background: var(--teal-deep); color: var(--white);
}
.section-dark .section-label { color: #ff9a5c; }
.section-dark .lead, .section-dark p { color: rgba(255,255,255,0.82); }
.section-gray { background: var(--gray); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Hero — gradient plate like OBC photo treatment */
.hero {
  position: relative;
  padding: 4.25rem 0 3.75rem;
  color: #fff;
  background-color: #0A414B;
  background-image:
    linear-gradient(105deg, rgba(10,65,75,0.82) 0%, rgba(10,65,75,0.62) 50%, rgba(10,65,75,0.55) 100%),
    url("images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero .eyebrow { color: #ffb38a; }
.hero h1 { color: #fff; }
.hero .lead { color: rgba(255,255,255,0.9); margin-bottom: 1.75rem; }
.hero .trust-pills li {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
}
.hero .lead { margin-bottom: 1.75rem; }
.trust-pills {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.75rem;
  list-style: none; padding: 0;
}
.trust-pills li {
  background: var(--gray); color: var(--teal-deep);
  font-size: 0.85rem; font-weight: 600;
  padding: 0.45rem 0.85rem; border-radius: 999px;
}

/* Stats */
.stats {
  background: var(--teal-deep); color: var(--white);
  padding: 1.25rem 0;
}
.stats-list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.65rem 1.25rem;
  list-style: none; padding: 0; margin: 0;
  font-size: 0.9rem; font-weight: 600;
}
.stats-list li {
  display: flex; align-items: center; gap: 0.4rem;
}
.stats-list li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

/* Story / Epiphany */
.prose { max-width: 40rem; }
.prose p { color: var(--muted); font-size: 1.05rem; }
.epiphany-list {
  list-style: none; padding: 0; margin: 1.5rem 0;
  display: grid; gap: 1rem;
}
.epiphany-list li {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.1rem 1.25rem;
  box-shadow: 0 4px 16px rgba(10,65,75,0.04);
}
.epiphany-list strong { color: var(--teal-deep); display: block; margin-bottom: 0.25rem; }
.epiphany-list span { color: var(--muted); font-size: 0.98rem; }

/* Calculator */
#calculator { scroll-margin-top: 4.5rem; }
.calc-wrap { max-width: 960px; margin: 0 auto; }
.calc-card {
  background: var(--white); border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.35); overflow: hidden;
}
.calc-inputs {
  padding: 1.5rem; border-bottom: 1px solid var(--border);
  display: grid; gap: 1.5rem;
}
@media (min-width: 720px) {
  .calc-inputs { grid-template-columns: 1fr 1fr; padding: 2rem; }
}
.field-label {
  display: block; font-weight: 700; font-size: 0.9rem;
  color: var(--teal-deep); margin-bottom: 0.25rem;
}
.field-help {
  font-size: 0.75rem; color: #8A949A; margin: 0 0 0.75rem;
}
.sqft-row { display: flex; align-items: center; gap: 0.75rem; }
.sqft-row input[type="range"] { flex: 1; accent-color: var(--teal); }
.sqft-row input[type="number"] {
  width: 6rem; border: 2px solid var(--teal); border-radius: 0.5rem;
  padding: 0.5rem 0.75rem; text-align: center; font-weight: 700;
  font-family: var(--font); color: var(--teal-deep); font-size: 0.875rem;
}
.range-ends {
  display: flex; justify-content: space-between;
  font-size: 0.75rem; color: #8A949A; margin-top: 0.25rem;
}
.select-wrap { position: relative; }
.select-wrap select {
  width: 100%; appearance: none;
  border: 1.5px solid var(--border); border-radius: 0.5rem;
  padding: 0.625rem 2.25rem 0.625rem 0.75rem;
  font-size: 0.875rem; font-weight: 600; font-family: var(--font);
  color: var(--teal-deep); background: var(--white);
}
.select-wrap svg {
  position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
  pointer-events: none; color: #8A949A;
}
.toggle-row, .yn-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.toggle-btn, .yn-btn {
  font-family: var(--font); font-weight: 700; font-size: 0.875rem;
  padding: 0.55rem 0.9rem; border-radius: 0.5rem;
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--teal-deep); cursor: pointer; transition: all 0.15s;
}
.toggle-btn.active, .yn-btn.active {
  background: var(--teal); border-color: var(--teal); color: var(--white);
}
.toggle-btn:hover:not(.active), .yn-btn:hover:not(.active) {
  border-color: var(--teal);
}
.calc-results { padding: 1.5rem; }
@media (min-width: 720px) { .calc-results { padding: 2rem; } }
.coming-soon { display: none; text-align: center; padding: 3rem 1rem; }
.coming-soon h3 { color: var(--teal-deep); }
.coming-soon p { color: var(--muted); }
.waitlist-form {
  max-width: 400px; margin: 1.5rem auto 0;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.waitlist-form input {
  padding: 0.75rem 1rem; border: 1.5px solid var(--border);
  border-radius: 0.5rem; font-size: 0.95rem; font-family: var(--font);
}
.waitlist-thanks {
  display: none; color: var(--teal); font-weight: 700; margin-top: 1rem;
}
.calc-cols {
  display: grid; gap: 1rem; margin-bottom: 1rem;
}
@media (min-width: 800px) {
  .calc-cols { grid-template-columns: 1fr 1fr 1fr; }
}
.plan-card {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem;
}
.plan-card.featured {
  background: #FAFFFE; border: 2px solid var(--teal);
  position: relative;
}
.featured-badge {
  align-self: center; background: var(--orange); color: var(--white);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 0.3rem 0.65rem; border-radius: 999px;
}
.plan-title { text-align: center; }
.plan-title strong {
  display: block; font-size: 0.95rem; color: var(--teal-deep); font-weight: 800;
}
.plan-card.featured .plan-title strong { color: var(--teal); }
.plan-title span { font-size: 0.7rem; color: #8A949A; }
.plan-price {
  text-align: center; padding: 0.75rem; background: #F4F6F8;
  border-radius: 0.5rem;
}
.plan-card.featured .plan-price { background: #E8F5F5; }
.plan-price .label { font-size: 0.7rem; color: #8A949A; margin: 0 0 0.25rem; }
.plan-card.featured .plan-price .label { color: var(--teal); }
.plan-price .amount {
  font-weight: 900; font-size: 1.5rem; color: var(--teal-deep); margin: 0;
}
.plan-card.featured .plan-price .amount { color: var(--teal); }
.plan-price .total { font-size: 0.7rem; color: #8A949A; margin: 0.2rem 0 0; }
.plan-features {
  list-style: none; padding: 0; margin: 0;
  font-size: 0.8rem; color: var(--muted);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.plan-features li { display: flex; align-items: flex-start; gap: 0.5rem; }
.icon-x { color: var(--danger); flex-shrink: 0; margin-top: 2px; }
.icon-check { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.plan-features .emphasis { font-weight: 600; color: var(--teal-deep); }
.space-row {
  background: #FFF8F3; border: 1px solid #FDDCC4; border-radius: var(--radius);
  padding: 1.25rem; margin-bottom: 1rem;
}
.space-row-grid {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  align-items: flex-start; justify-content: space-between;
}
.space-row .amount-orange {
  font-weight: 900; font-size: 1.5rem; color: var(--orange); margin: 0.25rem 0 0;
}
.space-row .amount-teal {
  font-weight: 900; font-size: 1.25rem; color: var(--teal); margin: 0.25rem 0 0;
}
.calc-disclaimer {
  font-size: 0.75rem; text-align: center; color: #8A949A; margin: 0;
  line-height: 1.55;
}
.offer-gate { text-align: center; margin-top: 3rem; }
.offer-gate h3 { color: var(--white); }
.offer-gate .body { color: rgba(255,255,255,0.78); max-width: 32rem; margin: 0 auto 0.5rem; }

/* Stack */
.stack-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.75rem;
}
@media (min-width: 640px) {
  .stack-grid { grid-template-columns: 1fr 1fr; }
}
.stack-grid li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.1rem;
}
.stack-grid .tick {
  flex-shrink: 0; width: 1.5rem; height: 1.5rem; border-radius: 50%;
  background: rgba(14,115,130,0.12); color: var(--teal);
  display: grid; place-items: center; font-weight: 800; font-size: 0.85rem;
}

/* Process */
.process-steps {
  list-style: none; padding: 0; margin: 0 0 2rem;
  display: grid; gap: 1.25rem; counter-reset: step;
}
@media (min-width: 900px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); }
}
.process-steps li {
  background: var(--white); border-radius: var(--radius);
  padding: 1.35rem 1.25rem; border: 1px solid var(--border);
  position: relative; counter-increment: step;
}
.process-steps li::before {
  content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-weight: 800; font-size: 0.9rem; margin-bottom: 0.75rem;
}
.process-steps strong { display: block; color: var(--teal-deep); margin-bottom: 0.4rem; }
.process-steps p { margin: 0; font-size: 0.95rem; color: var(--muted); }

/* Proof */
.proof-grid {
  display: grid; gap: 1.25rem; margin-bottom: 1.5rem;
}
@media (min-width: 720px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
}
.case-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.case-card h3 { color: var(--teal); font-size: 1.1rem; margin-bottom: 0.75rem; }
.case-card p { color: var(--muted); margin: 0 0 1rem; }
.callouts {
  display: flex; flex-wrap: wrap; gap: 0.45rem; list-style: none; padding: 0; margin: 0;
}
.callouts li {
  background: rgba(14,115,130,0.1); color: var(--teal-deep);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.35rem 0.7rem; border-radius: 999px;
}
.proof-stat {
  text-align: center; font-weight: 600; color: var(--muted);
  font-size: 0.95rem;
}

/* Qualifier */
.fit-list {
  list-style: none; padding: 0; margin: 0 0 1.25rem;
  display: grid; gap: 0.75rem;
}
.fit-list li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.85rem 1rem; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--border);
}
.fit-list .mark {
  color: var(--teal); font-weight: 800; flex-shrink: 0;
}
.honest-out {
  background: #FFF8F3; border-left: 4px solid var(--orange);
  padding: 1rem 1.15rem; border-radius: 0 0.5rem 0.5rem 0;
  color: var(--muted); margin-bottom: 1rem;
}
.soft-cre {
  font-size: 0.95rem; color: var(--muted); margin-bottom: 1.5rem;
}
.soft-cre a { font-weight: 700; color: var(--teal); }

/* Close */
.close-section { text-align: center; }
.close-section .lead { margin: 0 auto 0.5rem; }

/* FAQ */
.faq details {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.15rem; margin-bottom: 0.65rem;
}
.faq summary {
  font-weight: 700; color: var(--teal-deep); cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-weight: 800; color: var(--orange); font-size: 1.25rem;
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  margin: 0.85rem 0 0; color: var(--muted); font-size: 0.98rem;
}

/* Footer */
.site-footer {
  background: #062a31; color: rgba(255,255,255,0.7);
  padding: 2.5rem 0 2rem; font-size: 0.9rem;
}
.site-footer .tagline {
  font-weight: 800; color: var(--white); font-size: 1.1rem; margin: 0 0 0.75rem;
}
.site-footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-meta { margin: 0.35rem 0; line-height: 1.55; }
.footer-copy {
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
}

/* Reveal */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: none; }


/* Content figures (LP art) */
.content-figure {
  margin: 1.75rem 0 2rem;
  max-width: 56rem;
}
.content-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgba(10, 65, 75, 0.12);
  background: #ECEEF3;
}
.content-figure figcaption {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: #5a6a6e;
  text-align: center;
}
.content-figure-on-dark {
  margin-left: auto;
  margin-right: auto;
}
.content-figure-on-dark img {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
.content-figure-on-dark figcaption {
  color: rgba(255,255,255,0.72);
}
