/* =========================================================
   SoFlo Party Rentals — Redesign
   Type: Montserrat (display) + Open Sans (body) + DM Mono (utility)
   Palette: tropical SoFlo — citrus / pool / leaf / coral / sun
   ========================================================= */

:root {
  --cream: #FFF8EE;
  --cream-2: #FCEFD8;
  --ink: #1A1815;
  --ink-2: #3A352D;
  --muted: #6B6358;
  --line: rgba(0,0,0,0.10);
  --line-2: rgba(0,0,0,0.18);
  --citrus: #FF7A1A;
  --citrus-deep: #C45211;
  --coral: #FF4F6D;
  --pool: #2EA8C7;
  --pool-deep: #1B6F88;
  --pool-tint: #E8F6FA;
  --leaf: #4FA64E;
  --sun: #FFC93C;
  --coral-tint: #FFF1F3;
  --paper: #FFFFFF;

  --grad-sunset: linear-gradient(135deg, #FFC93C 0%, #FF7A1A 45%, #FF4F6D 100%);
  --grad-tropic: linear-gradient(135deg, #2EA8C7 0%, #4FA64E 100%);
  --grad-process: linear-gradient(135deg, #FF7A1A 0%, #FF4F6D 50%, #2EA8C7 100%);

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 22px;

  --shadow-card: 0 1px 0 #20181510, 0 18px 40px -28px #20181538;

  --container: 1240px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (max-width: 860px) { html { scroll-padding-top: 64px; } }

body {
  font-family: 'Open Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Stop iOS from auto-inflating text in landscape, and guard against
     any wide element (rotated headings, marquee) forcing a sideways scroll */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
/* Snappier taps on touch devices: drop the 300ms delay and the grey flash */
a, button, summary, [role="button"], input, select, textarea, label {
  -webkit-tap-highlight-color: rgba(255,122,26,0.18);
  touch-action: manipulation;
}
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
}

/* ---------- type system ---------- */
.serif {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.0;
}

.mono {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.eyebrow {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: currentColor;
  display: inline-block;
}

h1, h2, h3, h4 { font-weight: 700; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-sunset);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff;
  box-shadow: 0 8px 22px -10px rgba(255,122,26,0.55);
  transition: background-position 0.6s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.btn-primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 12px 28px -10px rgba(255,79,109,0.55);
  transform: translateY(-1px);
}
.btn-citrus {
  background: var(--grad-sunset);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff;
  box-shadow: 0 8px 22px -10px rgba(255,122,26,0.55);
  transition: background-position 0.6s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.btn-citrus:hover {
  background-position: 100% 50%;
  box-shadow: 0 12px 28px -10px rgba(255,79,109,0.55);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--pool-deep);
  border: 2px solid var(--pool);
}
.btn-ghost:hover { background: var(--pool); color: #fff; border-color: var(--pool); }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(245, 239, 228, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  padding: 10px 0;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}
.brand-logo {
  height: 80px;
  width: auto;
  display: block;
  transform-origin: center center;
  animation: logoPop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.1s;
}
@keyframes logoPop {
  0%   { opacity: 0; transform: scale(0.4) rotate(-8deg); }
  60%  { opacity: 1; transform: scale(1.15) rotate(2deg); }
  80%  { transform: scale(0.96) rotate(-1deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
}
.nav-links a {
  position: relative;
  padding: 8px 0;
  color: var(--ink-2);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:not(.cta-link)::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--citrus);
  transition: width 0.25s ease;
}
.nav-links a:not(.cta-link):hover::after { width: 100%; }
.nav-links a.cta-link {
  background: var(--ink);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: 999px;
}
.nav-links a.cta-link:hover { background: var(--citrus-deep); color: var(--cream); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); margin: 4px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- hero ---------- */
.hero {
  padding: 132px 0 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 85% 0%, rgba(255,201,60,0.28), transparent 60%),
    radial-gradient(ellipse 70% 60% at 0% 100%, rgba(255,79,109,0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(46,168,199,0.12), transparent 60%),
    var(--cream);
  background-size: 200% 200%, 200% 200%, 200% 200%, auto;
  background-position: 0% 0%, 100% 100%, 50% 50%, 0 0;
  animation: heroBreathe 22s ease-in-out infinite alternate;
}
@keyframes heroBreathe {
  0%   { background-position: 0% 0%, 100% 100%, 50% 50%, 0 0; }
  100% { background-position: 30% 20%, 70% 80%, 60% 40%, 0 0; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: end;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-eyebrow-row .pulse {
  width: 8px; height: 8px;
  background: var(--leaf);
  border-radius: 50%;
  position: relative;
}
.hero-eyebrow-row .pulse::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--leaf);
  opacity: 0.5;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(2); opacity: 0; }
}

.hero-title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: clamp(3.4rem, 7.6vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.hero-title em {
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--citrus);
}
.hero-title .accent-block {
  display: inline-block;
  background: var(--grad-sunset);
  color: #fff;
  padding: 0.04em 0.18em 0.06em;
  border-radius: 6px;
  transform: rotate(-1deg);
  box-shadow: 0 10px 28px -12px rgba(255,79,109,0.55);
}
.hero-sub {
  font-size: 1.12rem;
  color: var(--ink-2);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.meta-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-row .label { color: var(--muted); }
.meta-row .value {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.5rem;
  line-height: 1.1;
}

.hero-figure {
  margin-top: 56px;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--cream-2);
}
.hero-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;
}
.hero-figure-meta {
  position: absolute;
  left: 24px; bottom: 24px;
  display: none;
  align-items: center;
  gap: 14px;
  background: rgba(26,24,21,0.78);
  backdrop-filter: blur(8px);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
}
.hero-figure-meta .dot {
  width: 6px; height: 6px;
  background: var(--citrus);
  border-radius: 50%;
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin-top: 56px;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll 38s linear infinite;
  white-space: nowrap;
  width: max-content;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.65rem;
  letter-spacing: -0.01em;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee-track .star { color: var(--citrus); font-style: italic; font-size: 1.2em; }
.marquee-track span:nth-child(5n+1) .star { color: var(--citrus); }
.marquee-track span:nth-child(5n+2) .star { color: var(--sun); }
.marquee-track span:nth-child(5n+3) .star { color: var(--coral); }
.marquee-track span:nth-child(5n+4) .star { color: var(--pool); }
.marquee-track span:nth-child(5n+5) .star { color: var(--leaf); }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ---------- entrance keyframes ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}

/* hero entrance — fires on page load */
.hero-title {
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.05s;
}
.hero-sub {
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.22s;
}
.hero-actions {
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.38s;
}
.hero-meta {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.5s;
}
.hero-figure {
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.62s;
}
.hero-figure img {
  animation: heroZoom 1.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.62s;
}
.marquee {
  animation: fadeIn 0.6s ease both;
  animation-delay: 1.05s;
}

/* ---------- sections ---------- */
section { padding: 110px 0; position: relative; }
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.section-head h2 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.0;
  letter-spacing: -0.015em;
  max-width: 16ch;
}
.section-head h2 em { font-style: italic; color: var(--citrus); }
.section-head .meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  color: var(--muted);
}
.section-num {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 18px;
  display: block;
}

/* ---------- inventory grid ---------- */
.inv-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--line);
}
.inv-item {
  background: var(--paper);
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: background 0.25s ease;
}
.inv-item:hover { background: var(--cream); }
.inv-item .ix {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.inv-item .img-wrap {
  margin: 18px 0 22px;
  aspect-ratio: 4/3;
  background: var(--cream-2);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}
.inv-item .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.inv-item:hover .img-wrap img { transform: scale(1.04); }
.inv-item h3 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.85rem;
  line-height: 1.05;
  margin-bottom: 8px;
}
.inv-item .blurb {
  color: var(--ink-2);
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.inv-item .price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed var(--line-2);
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.inv-item .price strong {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}
.inv-price-row {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line-2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 12px;
}
.inv-price {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
}
.inv-price-unit {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--ink-2);
  margin-left: 4px;
  letter-spacing: 0.04em;
}
.inv-cta {
  margin-top: 0;
  flex: 1 1 auto;
  justify-content: center;
  padding: 8px 14px;
  font-size: 0.8rem;
  white-space: nowrap;
  cursor: pointer;
}

/* ---------- builder ---------- */
.builder-section { background: var(--paper); }
.builder {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream);
}
.builder-form { padding: 40px 44px; background: var(--paper); }
.builder-row {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.builder-row:last-child { border-bottom: 0; }
.builder-row:first-child { padding-top: 0; }
.builder-row-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.builder-row-head .label {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}
.builder-row-head .helper {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
  width: max-content;
  background: var(--cream);
}
.stepper button {
  width: 46px; height: 46px;
  border: 0; background: transparent;
  font-size: 1.2rem;
  color: var(--ink);
  display: grid; place-items: center;
  transition: background 0.18s ease;
}
.stepper button:hover { background: var(--ink); color: var(--cream); }
.stepper .count {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.5rem;
  width: 56px;
  text-align: center;
  line-height: 1;
}
.stepper-meta {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.toggle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.toggle-pill {
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 16px;
  background: var(--cream);
  cursor: pointer;
  transition: all 0.2s ease;
}
.toggle-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.toggle-pill .pill-name {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.15rem;
  line-height: 1.1;
  margin-bottom: 4px;
}
.toggle-pill .pill-meta {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.toggle-pill .pill-check {
  position: absolute;
  top: 12px; right: 12px;
  width: 18px; height: 18px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px;
  color: transparent;
  transition: all 0.2s ease;
}
.toggle-pill.on {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.toggle-pill.on .pill-meta { color: rgba(245,239,228,0.65); }
.toggle-pill.on .pill-check {
  background: var(--citrus);
  border-color: var(--citrus);
  color: var(--cream);
}

.county-row { display: flex; gap: 8px; flex-wrap: wrap; }
.county-chip {
  border: 1px solid var(--line-2);
  background: var(--cream);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.county-chip.on {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.builder-summary {
  padding: 40px 44px;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.builder-summary::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 90% 0%, rgba(232,106,31,0.22), transparent 50%),
    radial-gradient(at 0% 100%, rgba(79,143,181,0.18), transparent 50%);
  pointer-events: none;
}
.builder-summary > * { position: relative; }
.summary-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,239,228,0.6);
}
.summary-title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.7rem;
  line-height: 1.1;
  margin-top: 4px;
}
.summary-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
}
.summary-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(245,239,228,0.15);
  color: rgba(245,239,228,0.85);
}
.summary-list li.empty { color: rgba(245,239,228,0.4); justify-content: center; border: 0; padding: 24px 0; font-style: italic; }
.summary-total {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(245,239,228,0.2);
}
.summary-total .total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: rgba(245,239,228,0.7);
}
.summary-total .grand {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 12px;
}
.summary-total .grand .lhs {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,239,228,0.6);
}
.summary-total .grand .rhs {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 3.2rem;
  line-height: 1;
}
.summary-total .grand .rhs .from {
  font-size: 0.7rem;
  color: rgba(245,239,228,0.5);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.1em;
  display: block;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.summary-fineprint {
  font-size: 0.78rem;
  color: rgba(245,239,228,0.55);
  margin-top: 12px;
  line-height: 1.5;
}
.summary-cta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.summary-cta .btn-citrus { width: 100%; justify-content: center; padding: 18px; font-size: 1rem; }
.summary-cta a.phone {
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,239,228,0.7);
  padding: 8px;
}
.summary-cta a.phone:hover { color: var(--citrus); }

/* ---------- packages strip ---------- */
.packages-section { background: var(--pool-tint); position: relative; }
#process { background: var(--cream-2); position: relative; }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pkg-card {
  padding: 36px 22px 32px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--paper);
  transition: background 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.pkg-card:last-child { border-right: 0; }
.pkg-card:hover { background: var(--cream); transform: translateY(-4px); box-shadow: 0 20px 56px -24px rgba(32, 24, 21, 0.2); z-index: 1; }
.pkg-card.featured { background: var(--ink); color: var(--cream); }
.pkg-card.featured:hover { background: #0F0E0C; transform: translateY(-4px); box-shadow: 0 20px 56px -24px rgba(0,0,0,0.45); z-index: 1; }

.pkg-img-wrap {
  margin: 10px 0 12px;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 6px;
  background: var(--cream);
}
.pkg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pkg-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.pkg-card.featured .pkg-tag { color: var(--citrus); }
.pkg-name {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 2.1rem;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.pkg-name em { font-style: italic; color: var(--citrus); }
.pkg-price {
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pkg-price .from {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.pkg-card.featured .pkg-price .from { color: rgba(245,239,228,0.6); }
.pkg-price .num {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 2.6rem;
  line-height: 1;
}
.pkg-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
  flex-grow: 1;
}
.pkg-list li {
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
  color: var(--ink-2);
}
.pkg-card.featured .pkg-list li { color: rgba(245,239,228,0.85); }
.pkg-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1px;
  background: var(--citrus);
}
.pkg-details summary {
  list-style: none;
  cursor: pointer;
  color: var(--citrus);
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  user-select: none;
}
.pkg-details summary::-webkit-details-marker { display: none; }
.pkg-details summary::after {
  content: ' ↓';
  transition: transform 0.2s ease;
  display: inline-block;
}
.pkg-details[open] summary::after { transform: rotate(180deg); }
.pkg-card.featured .pkg-details summary { color: var(--citrus); }
.pkg-sublist {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 0;
}
.pkg-sublist li {
  padding-left: 14px !important;
  font-size: 0.82rem;
  color: var(--muted) !important;
  line-height: 1.4;
}
.pkg-sublist li::before { width: 6px !important; top: 8px !important; }
.pkg-card.featured .pkg-sublist li { color: rgba(245,239,228,0.55) !important; }

.pkg-cta {
  margin-top: 28px;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--ink);
  padding: 10px 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 0;
  background: transparent;
  border-left: 0; border-right: 0;
  transition: color 0.2s ease;
  text-align: left;
}
.pkg-card.featured .pkg-cta { color: var(--citrus); border-color: rgba(232,106,31,0.3); }
.pkg-cta:hover { color: var(--citrus); }

.pkg-upgrade-note {
  margin-top: 20px;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: center;
  padding: 0 24px;
}

/* ---------- process ---------- */
.process-list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.process-item {
  --color: var(--citrus);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 18px 4px;
  transition: background 0.25s ease;
}
.process-icon-art {
  color: var(--color);
  flex-shrink: 0;
  margin-top: 2px;
}
.process-icon-art svg { width: 28px; height: 28px; }
.process-body { flex: 1; min-width: 0; }
.step-title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.step-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.step-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.4;
}
.step-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 1px;
  background: var(--citrus);
}
.process-item:hover { background: var(--cream-2); }

/* ---------- about / why ---------- */
.about-section {
  background: var(--ink);
  color: var(--cream);
}
.about-section .section-head {
  border-bottom-color: rgba(245,239,228,0.15);
}
.about-section .section-head h2 em { color: var(--citrus); }
.about-section .section-head .meta { color: rgba(245,239,228,0.6); }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-features-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.about-founders {
  /* sits in column 2 naturally via auto-placement */
}
.about-feature {
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid rgba(245,239,228,0.12);
  position: relative;
}
.about-feature:nth-child(odd) { padding-right: 28px; border-right: 1px solid rgba(245,239,228,0.12); }
.about-feature:nth-child(even) { padding-left: 28px; }
.about-feature .num {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--citrus);
  font-style: italic;
  margin-bottom: 12px;
}
.about-feature h4 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.about-feature p {
  color: rgba(245,239,228,0.7);
  font-size: 0.92rem;
}

.about-founders {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: stretch;
}

.founders-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(245,239,228,0.06);
  margin: 0;
  display: flex;
  flex-direction: column;
}

.founders-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: 42% 25%;
  display: block;
  opacity: 1;
}

.founders-caption {
  padding: 14px 18px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(245,239,228,0.6);
  border-top: 1px solid rgba(245,239,228,0.1);
  background: rgba(245,239,228,0.03);
}
.founders-name {
  color: var(--citrus);
  font-weight: 600;
}

.founders-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.founders-headline {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 4px;
}

.founders-headline em {
  color: var(--citrus);
  font-style: italic;
}

.founders-text p {
  color: rgba(245,239,228,0.72);
  font-size: 0.93rem;
  line-height: 1.65;
}

.founders-contact {
  font-weight: 600;
  color: rgba(245,239,228,0.9) !important;
  margin-top: 8px;
}

.founders-contact a {
  color: var(--citrus);
  text-decoration: none;
  font-weight: 700;
}

.founders-contact a:hover {
  text-decoration: underline;
}

.founders-sign {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.05rem !important;
  font-weight: 700;
  color: var(--citrus) !important;
  margin-top: 6px;
}

/* keep old about-quote for fallback — now replaced */
.about-quote {
  background: rgba(245,239,228,0.05);
  border: 1px solid rgba(245,239,228,0.12);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
}
.about-quote .qmark {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 5rem;
  font-style: italic;
  color: var(--citrus);
  line-height: 0.5;
  margin-bottom: 14px;
}
.about-quote blockquote {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.6rem;
  line-height: 1.25;
  margin-bottom: 22px;
}
.about-quote cite {
  font-style: normal;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,239,228,0.6);
}

/* ---------- promise ---------- */
.promise-section { background: var(--cream-2); }
.promise-section .section-head h2 em { color: var(--citrus); }

.promise-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.promise-icons {
  list-style: none;
  border-top: 1px solid var(--line);
  width: 100%;
}
.promise-icon {
  --color: var(--citrus);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 18px 4px;
  transition: background 0.25s ease;
}
.promise-icon:hover { background: var(--cream); }

.promise-icon-art {
  color: var(--color);
  flex-shrink: 0;
  margin-top: 2px;
}
.promise-icon-art svg { width: 28px; height: 28px; }

.promise-body { flex: 1; min-width: 0; }
.promise-body h3 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 700;
}
.promise-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.promise-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-2);
  font-size: 0.92rem;
  line-height: 1.4;
}
.promise-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 1px;
  background: var(--color, var(--citrus));
}
.promise-statement {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-2);
}
.promise-statement-title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 12px;
}

/* ---------- faq ---------- */
.faq-section { background: var(--paper); }
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  cursor: pointer;
}
.faq-item summary {
  list-style: none;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 24px;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .qnum {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
.faq-item .toggler {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: grid; place-items: center;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.4rem;
  transition: all 0.25s ease;
}
.faq-item[open] .toggler {
  background: var(--ink);
  color: var(--cream);
  transform: rotate(45deg);
}
.faq-item .answer {
  margin-top: 18px;
  margin-left: 84px;
  max-width: 65ch;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.6;
}
details[open] .answer {
  animation: slideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ---------- contact ---------- */
.contact-section { background: var(--coral-tint); position: relative; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper);
}
.contact-side {
  padding: 48px;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.contact-side::after {
  content: 'Hi.';
  position: absolute;
  bottom: -40px; right: -20px;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-style: italic;
  font-size: 18rem;
  line-height: 1;
  color: var(--citrus);
  opacity: 0.12;
  pointer-events: none;
}
.contact-side > * { position: relative; z-index: 1; }
.contact-headline {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 2.6rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.contact-headline em { font-style: italic; color: var(--citrus); }

.contact-blurb {
  color: rgba(245,239,228,0.7);
  margin-bottom: 32px;
  max-width: 32ch;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.contact-info-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(245,239,228,0.12);
}
.contact-info-item .label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,239,228,0.5);
  margin-bottom: 4px;
  display: block;
}
.contact-info-item .val {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.45rem;
  line-height: 1.1;
}
.contact-info-item .val a:hover { color: var(--citrus); }

.contact-form-wrap {
  padding: 48px;
  background: var(--paper);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
.field-optional {
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-2);
  font-style: italic;
  margin-left: 4px;
}
.form-consent {
  margin-top: 14px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--ink-2);
}
.form-consent a {
  color: var(--citrus-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-consent a:hover { color: var(--citrus); }
.field input, .field textarea, .field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  padding: 8px 0;
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.field textarea { resize: vertical; min-height: 80px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success .check {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--citrus);
  color: var(--cream);
  display: grid; place-items: center;
  font-size: 2rem;
  margin: 0 auto 18px;
  font-family: 'Montserrat', system-ui, sans-serif;
}
.form-success h3 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.form-success p { color: var(--ink-2); }

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 90px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245,239,228,0.15);
}
.footer-logo {
  height: 90px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}
.footer-brand p {
  color: rgba(245,239,228,0.65);
  max-width: 32ch;
  font-size: 0.92rem;
}
.footer-col h5 {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,239,228,0.5);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col a, .footer-col p {
  display: block;
  color: var(--cream);
  font-size: 0.95rem;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--citrus); }
.footer-mega {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.9;
  margin: 64px 0 32px;
  letter-spacing: -0.02em;
  text-align: center;
}
.footer-mega em { font-style: italic; color: var(--citrus); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(245,239,228,0.15);
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,239,228,0.5);
}
.footer-bottom a:hover { color: var(--citrus); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1); transition-delay: var(--reveal-delay, 0ms); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */

/* tablet middle range — give breathing room before the mobile breakpoint kicks in */
@media (max-width: 1100px) {
  section { padding: 92px 0; }
}
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-meta { border-left: 0; padding-left: 0; flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .meta-row { min-width: 140px; }
  .inv-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-card:nth-child(2n) { border-right: 0; }
  .pkg-card:nth-child(odd) { border-right: 1px solid var(--line); }
  .pkg-card { border-bottom: 1px solid var(--line); }
  .pkg-card:nth-last-child(-n+2) { border-bottom: 0; }
  .builder { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-features-col { grid-column: 1; display: contents; }
  .about-founders { grid-column: 1; order: 2; }
  .founders-photo { order: 1; }
  .founders-contact { order: 3; }
  .founders-sign { order: 4; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* mobile + small-tablet — raised from 720 to 860 to catch landscape phones & small tablets */
@media (max-width: 860px) {
  section { padding: 72px 0; }
  .hero { padding-top: 96px; }

  /* nav shrinks to slim bar; hamburger handles links */
  .nav { padding: 12px 0; }
  .nav.scrolled { padding: 8px 0; }
  .brand-logo { height: 64px; }
  .nav-links { display: flex; flex-direction: column; align-items: center; justify-content: center; position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100vh; background: var(--cream); padding: 80px 32px 40px; gap: 8px; transform: translateX(100%); transition: transform 0.3s ease; z-index: 101; visibility: hidden; overflow-y: auto; }
  .nav-links.open { transform: translateX(0); visibility: visible; }
  .nav-links a { font-size: 1.6rem; padding: 18px 0; width: 100%; max-width: 320px; text-align: center; border-bottom: 1px solid var(--line); }
  .nav-links a.cta-link { margin-top: 24px; padding: 16px 28px; border-bottom: 0; font-size: 1.1rem; }
  .nav-toggle { display: block; z-index: 103; position: relative; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* hero — keep title readable, fix figure aspect */
  .hero-title { font-size: clamp(2.9rem, 11vw, 4.6rem); }
  .hero-figure { aspect-ratio: 4 / 3; margin-top: 36px; }
  .hero-sub { font-size: 1rem; }
  .marquee { padding: 16px 0; margin-top: 36px; }
  .marquee-track { font-size: 1.25rem; gap: 40px; }
  .marquee-track span { gap: 40px; }

  /* sections */
  .section-head { grid-template-columns: 1fr; gap: 14px; margin-bottom: 36px; }
  .section-head .meta { text-align: left; align-items: flex-start; }

  /* inventory + packages */
  .inv-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-card { border-right: 0 !important; border-bottom: 1px solid var(--line); padding: 28px 22px; }
  .pkg-card:last-child { border-bottom: 0; }

  /* builder */
  .builder-form, .builder-summary { padding: 28px 22px; }
  .builder-row-head { flex-wrap: wrap; gap: 6px; }
  .builder-row-head .label { font-size: 1.35rem; }
  .toggle-grid { grid-template-columns: repeat(2, 1fr); }
  .county-chip { font-size: 0.85rem; padding: 10px 14px; min-height: 44px; display: inline-flex; align-items: center; }
  .summary-total .grand .rhs { font-size: 2.6rem; }

  /* contact */
  .contact-side, .contact-form-wrap { padding: 32px 24px; }
  .contact-side::after { font-size: 11rem; bottom: -28px; right: -16px; }
  .contact-headline { font-size: 2.1rem; }
  .contact-info-item .val { font-size: 1.2rem; }
  .field-row { grid-template-columns: 1fr; }

  /* about */
  .about-grid { gap: 32px; }
  .about-features { grid-template-columns: 1fr; }
  .about-feature, .about-feature:nth-child(odd) { padding: 22px 0; border-right: 0; }
  .about-founders { flex-direction: column; }
  .founders-photo { width: 100%; }
  .founders-photo img { height: 360px; }
  /* reorder: photo → text → CTA */
  .about-features-col { display: contents; }
  .founders-photo { order: 1; }
  .about-founders { order: 2; }
  .founders-contact { order: 3; }
  .founders-sign { order: 4; }

  /* faq */
  .faq-item summary { grid-template-columns: 1fr auto; gap: 16px; font-size: 1.15rem; }
  .faq-item .qnum { display: none; }
  .faq-item .answer { margin-left: 0; font-size: 0.95rem; }

  /* footer */
  .footer { padding: 64px 0 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 36px; }
  .footer-mega { font-size: clamp(3rem, 16vw, 6.5rem); margin: 40px 0 24px; }
  .footer-bottom { font-size: 0.65rem; }
}

/* small phones — tighten further */
@media (max-width: 480px) {
  section { padding: 60px 0; }
  .hero { padding-top: 84px; }
  .hero-title { font-size: clamp(2.6rem, 13vw, 3.6rem); }
  .hero-actions .btn { padding: 13px 18px; font-size: 0.9rem; }

  /* one column for concession toggles so labels never crowd */
  .toggle-grid { grid-template-columns: 1fr; }

  /* stepper row: stack helper under label so they never collide */
  .builder-row-head { flex-direction: column; align-items: flex-start; gap: 4px; }

  .builder-form, .builder-summary { padding: 24px 18px; }
  .contact-side, .contact-form-wrap { padding: 28px 20px; }
  .contact-side::after { font-size: 8.5rem; }

  /* hero meta — stack rather than wrap */
  .hero-meta { flex-direction: column; gap: 16px; }

  .summary-total .grand .rhs { font-size: 2.2rem; }
  .pkg-name { font-size: 1.8rem; }
  .pkg-price .num { font-size: 2.2rem; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero, .hero-title, .hero-sub, .hero-actions, .hero-meta,
  .hero-figure, .hero-figure img, .marquee,
  details[open] .answer { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Tropical SoFlo accents — vibrancy layer
   ========================================================= */

/* Inventory cards: top accent bar + colored hover lift */
.inv-item { overflow: hidden; }
.inv-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent, var(--citrus));
  transform: scaleX(0.4);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}
.inv-item:hover::before { transform: scaleX(1); }
.inv-item:nth-child(1) { --accent: var(--citrus); }
.inv-item:nth-child(2) { --accent: var(--pool); }
.inv-item:nth-child(3) { --accent: var(--coral); }
.inv-item:nth-child(4) { --accent: var(--sun); }
.inv-item:nth-child(5) { --accent: var(--pool); }
.inv-item:hover h3 em,
.inv-item .ix { color: var(--accent); }

/* Package cards: per-tier accent + lift */
.pkg-card {
  --accent: var(--citrus);
  border-top: 3px solid transparent;
  transition: background 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-top-color 0.3s ease;
}
.pkg-card:nth-child(1) { --accent: var(--pool); }
.pkg-card:nth-child(2) { --accent: var(--citrus); }
.pkg-card:nth-child(3) { --accent: var(--coral); }
.pkg-card:nth-child(4) { --accent: var(--leaf); }
.pkg-card:hover { border-top-color: var(--accent); box-shadow: 0 24px 56px -24px color-mix(in srgb, var(--accent) 55%, transparent); }
.pkg-card:not(.featured) .pkg-tag { color: var(--accent); }
.pkg-card:not(.featured) .pkg-name em {
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);
}
.pkg-card:not(.featured) .pkg-list li::before { background: var(--accent); }
.pkg-card:not(.featured) .pkg-cta:hover { color: var(--accent); }

/* Featured package: sunset border glow + Most Popular badge */
.pkg-card.featured {
  position: relative;
  border-top: 3px solid transparent;
  background-clip: padding-box;
}
.pkg-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-sunset);
}
.pkg-card.featured .pkg-name em {
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--citrus);
}
.pkg-badge {
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--sun);
  color: var(--ink);
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
  box-shadow: 0 6px 16px -6px rgba(255,201,60,0.6);
  z-index: 2;
}

/* About section: tropic accent strip on top edge */
.about-section { position: relative; }
.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-tropic);
  z-index: 1;
}
.about-feature .num {
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--citrus);
}
.about-feature:nth-child(2) .num { background: linear-gradient(135deg, var(--sun), var(--coral)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.about-feature:nth-child(3) .num { background: linear-gradient(135deg, var(--pool), var(--leaf)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.about-feature:nth-child(4) .num { background: linear-gradient(135deg, var(--leaf), var(--sun)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Contact side: pool accent strip on left */
.contact-side { border-left: 4px solid transparent; background-image: linear-gradient(var(--ink), var(--ink)), var(--grad-tropic); background-origin: border-box; background-clip: padding-box, border-box; }

/* Footer: tropic strip on top + sun-colored hover */
.footer { position: relative; border-top: 3px solid transparent; background-image: linear-gradient(var(--ink), var(--ink)), var(--grad-tropic); background-origin: border-box; background-clip: padding-box, border-box; }
.footer-col a:hover { color: var(--sun); }
.footer-bottom a:hover { color: var(--sun); }
.footer-mega em {
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--citrus);
}

/* Section heading em accents — extend palette beyond citrus */
.section-head h2 em,
.contact-headline em,
.founders-headline em {
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--citrus);
}

/* FAQ open toggler — sunset gradient instead of flat ink */
.faq-item[open] .toggler {
  background: var(--grad-sunset);
  border-color: transparent;
  color: #fff;
}

/* Form success check — sunset gradient */
.form-success .check {
  background: var(--grad-sunset);
  box-shadow: 0 12px 28px -10px rgba(255,79,109,0.55);
}

/* Reduced-motion guard for new hero breathing animation */
@media (prefers-reduced-motion: reduce) {
  .hero { animation: none; }
  .brand-logo { animation: none; }
}

/* =========================================================
   Display weights for Montserrat headings
   ========================================================= */
.hero-title,
.footer-mega {
  font-weight: 800;
}
.section-head h2 {
  font-weight: 700;
}

/* No true italic — keep em upright, gradient color provides the pop */
.hero-title em,
.section-head h2 em,
.pkg-name em,
.contact-headline em,
.founders-headline em,
.footer-mega em,
.accent-block {
  font-style: normal;
}

/* =========================================================
   Accessibility additions
   ========================================================= */

/* Visually hidden but available to assistive tech */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip-to-content link — visible on keyboard focus */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 1000;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: 8px;
  font-family: 'Open Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: top 0.18s ease;
}
.skip-link:focus {
  top: 12px;
  outline: 3px solid var(--citrus);
  outline-offset: 2px;
}

/* Visible focus styles for keyboard users */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid var(--citrus);
  outline-offset: 3px;
  border-radius: 4px;
}

.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: 2px solid var(--citrus);
  outline-offset: 4px;
  border-bottom-color: var(--ink);
}

/* Footer heading: keep the original h5 visual treatment but use h2 for proper landmark hierarchy */
.footer-col .footer-heading {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,239,228,0.5);
  margin-bottom: 18px;
  font-weight: 500;
}

/* Footer nav links inherit existing .footer-col a styling */
.footer-col[aria-label] { display: flex; flex-direction: column; }

/* Strip default list-style/padding from ordered/unordered list landmarks reused as layout */
ol.process-list,
ul.promise-icons {
  list-style: none;
  padding: 0;
  margin: 0;
}


/* Reduced motion: silence remaining decorative animations */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Mobile optimization layer
   ========================================================= */

/* Comfortable, thumb-friendly tap targets on touch-sized screens.
   Apple/Google both recommend ~44px minimum for interactive controls. */
@media (max-width: 860px) {
  .btn { min-height: 46px; }
  .inv-cta {
    min-height: 46px;
    font-size: 0.9rem;
    padding: 12px 16px;
    flex: 1 1 100%;
  }
  .pkg-cta { padding: 16px 0; min-height: 46px; }
  /* the fullscreen nav menu links already clear 44px via their 18px padding */
  .footer-col a,
  .contact-info-item .val a,
  .form-consent a { min-height: 44px; display: inline-flex; align-items: center; }
  /* keep footer link rows compact even with the larger hit area */
  .footer-col a { padding: 8px 0; }
  /* prevent the contact email from forcing horizontal scroll on narrow phones */
  .contact-info-item .val a { word-break: break-word; }
}

/* ---------- sticky mobile call / quote bar ---------- */
/* Hidden on desktop; on phones it keeps the two primary conversion actions
   one thumb-tap away no matter how far the visitor has scrolled. */
.mobile-cta-bar { display: none; }

@media (max-width: 860px) {
  .mobile-cta-bar {
    display: flex;
    gap: 10px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    padding: 10px 14px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(245, 239, 228, 0.94);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px -16px rgba(26,24,21,0.45);
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  /* slide out of the way once the visitor reaches the contact section */
  .mobile-cta-bar.is-hidden { transform: translateY(130%); }

  .mcb-btn {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1;
  }
  .mcb-text {
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--line-2);
  }
  .mcb-text svg { width: 18px; height: 18px; flex-shrink: 0; }
  .mcb-quote {
    background: var(--grad-sunset);
    color: #fff;
    border: 1px solid transparent;
  }
}

/* Don't let the bar animate in if the visitor prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mobile-cta-bar { transition: none; }
}
