/* Aquamarine Pool Co Wisconsin — marketing site
   Palette: forest / lake / navy / soft aqua / stone · quiet luxury · mobile-first */

:root {
  --navy: #0b1f33;
  --navy-deep: #061525;
  --forest: #1e3a2f;
  --moss: #3d5c4a;
  --moss-soft: #8fad9a;
  --lake: #2a4a5c;
  --aqua: #3a9aa3;
  --aqua-soft: #8fbfc4;
  --aqua-glow: rgba(58, 154, 163, 0.1);
  --stone: #e4e0d6;
  --stone-warm: #f2efe8;
  --sand: #c4baa8;
  --grass-mist: #e8ebe4;
  --ink: #142433;
  --muted: #5a6b7a;
  --white: #ffffff;
  --line: rgba(11, 31, 51, 0.1);
  --shadow: 0 14px 40px rgba(6, 21, 37, 0.1);
  --radius: 14px;
  --radius-lg: 22px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --max: 1120px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--grass-mist) 0%, var(--stone-warm) 28%, var(--stone-warm) 100%);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  z-index: 1000;
}

.skip-link:focus {
  top: 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 240, 232, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, var(--moss-soft), var(--moss) 50%, var(--forest) 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
}

.logo-text span {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a {
  text-decoration: none;
  color: var(--navy);
  opacity: 0.85;
}

.nav a:hover,
.nav a[aria-current="page"] {
  opacity: 1;
  color: var(--forest);
}

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  opacity: 1 !important;
  padding: 0.55rem 1rem;
  border-radius: 999px;
}

.nav-cta:hover {
  background: #143552;
  color: var(--white) !important;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 2px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1.25rem 1.25rem;
  border-top: 1px solid var(--line);
  background: var(--stone-warm);
}

.mobile-nav a {
  text-decoration: none;
  padding: 0.75rem 0.5rem;
  color: var(--navy);
  font-weight: 500;
  border-radius: 8px;
}

.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  background: var(--aqua-glow);
}

.mobile-nav[hidden] {
  display: none;
}

@media (min-width: 860px) {
  .nav {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .mobile-nav {
    display: none !important;
  }
}

/* Typography helpers */
.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42rem;
}

.page-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-pad {
  padding: 3.5rem 0;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head.narrow {
  max-width: 40rem;
}

.section-head h1,
.section-head h2,
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
}

.page-hero {
  padding: 3rem 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.photo-credit {
  margin: 1.25rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--forest);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
}

.btn-secondary:hover {
  background: #143552;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-ghost-dark {
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}

.btn-ghost-dark:hover {
  border-color: var(--moss);
  background: rgba(61, 92, 74, 0.08);
}

.btn-block {
  width: 100%;
}

/* Hero (home) */
.hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(30, 58, 47, 0.35) 0%, transparent 45%),
    linear-gradient(180deg, rgba(6, 21, 37, 0.2) 0%, rgba(6, 21, 37, 0.55) 48%, rgba(6, 21, 37, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.25rem 3.25rem;
  width: 100%;
}

.hero .eyebrow {
  color: var(--moss-soft);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.85rem;
  max-width: 14ch;
  letter-spacing: -0.01em;
}

.hero-lead {
  max-width: 34rem;
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.86);
}

.hero-subhead {
  margin: 0 0 1.4rem;
  max-width: 36rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 500;
  font-style: italic;
  color: rgba(232, 235, 228, 0.88);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-secondary {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.hero-secondary a {
  color: var(--moss-soft);
  font-weight: 500;
  text-decoration: none;
}

.hero-secondary a:hover {
  text-decoration: underline;
}

/* Proof strip */
.proof {
  background: linear-gradient(90deg, var(--forest) 0%, var(--navy) 55%, var(--lake) 100%);
  color: var(--white);
  padding: 1.35rem 0;
}

.proof-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .proof-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.proof-item strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.proof-item span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Home project trio */
.home-projects {
  padding: 3.5rem 0 2rem;
}

.project-trio {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .project-trio {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  display: block;
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-card:hover img {
  transform: scale(1.03);
}

.project-card figcaption {
  padding: 1rem 1.1rem 1.15rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.project-card figcaption strong {
  display: block;
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: 0.15rem;
}

.home-cta {
  padding: 2.5rem 0 4rem;
}

.home-cta-card {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.25rem 1.5rem;
  background: linear-gradient(165deg, var(--white), var(--grass-mist));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}

.home-cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: var(--navy);
  margin: 0 0 0.6rem;
}

.home-cta-card p {
  color: var(--muted);
  margin: 0 auto 1.35rem;
  max-width: 32rem;
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Forms */
.form-card,
.contact-card,
.summary-card,
.include-card,
.stub-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

label.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--stone-warm);
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--aqua);
  outline-offset: 1px;
  background: var(--white);
}

.form-note {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  color: var(--moss);
}

.form-note[hidden] {
  display: none;
}

.form-hint {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Contact page layout */
.contact-layout {
  display: grid;
  gap: 1.75rem;
  padding-bottom: 4rem;
}

@media (min-width: 860px) {
  .contact-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.contact-aside {
  display: grid;
  gap: 1rem;
}

.aside-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.aside-block h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.aside-block p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* New pool */
.split-intro {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 860px) {
  .split-intro {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.quick-form h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin: 0 0 0.4rem;
}

.quick-form > p {
  margin: 0 0 1.1rem;
  color: var(--muted);
}

.drivers {
  padding: 0 0 3.5rem;
}

.drivers-intro {
  margin-bottom: 1.5rem;
}

.drivers-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.budget-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .budget-layout {
    grid-template-columns: 1.35fr 0.85fr;
    align-items: start;
  }
}

.budget-block {
  border: 0;
  margin: 0 0 1.25rem;
  padding: 0;
}

.budget-block legend {
  font-weight: 650;
  color: var(--navy);
  margin-bottom: 0.35rem;
  padding: 0;
}

.budget-block .hint {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.option-cards {
  display: grid;
  gap: 0.75rem;
}

.option-cards--shell {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .option-cards--shell {
    grid-template-columns: repeat(3, 1fr);
  }
  .option-cards--border,
  .option-cards--landscape {
    grid-template-columns: repeat(2, 1fr);
  }
  .option-cards--features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.option-card {
  position: relative;
  display: block;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.option-card:hover {
  border-color: var(--aqua);
}

.option-card.is-selected,
.option-card:has(input:checked) {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px var(--aqua-glow);
}

.option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.option-meta {
  padding: 0.85rem 0.95rem 1rem;
}

.option-meta--solo {
  min-height: 5.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.option-title {
  display: block;
  font-weight: 650;
  color: var(--navy);
}

.option-sub {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.summary-card {
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.summary-label {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moss);
}

.summary-headline {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

.summary-copy {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.summary-drivers {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  border-top: 1px solid var(--line);
}

.summary-drivers li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.summary-drivers li span:first-child {
  color: var(--muted);
}

.summary-drivers li span:last-child {
  font-weight: 600;
  color: var(--navy);
  text-align: right;
}

.summary-disclaimer {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.include-grid {
  display: grid;
  gap: 1rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 720px) {
  .include-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.include-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: var(--navy);
}

.include-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.include-card li {
  margin-bottom: 0.4rem;
}

.payment-stages {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.payment-stages li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.payment-stages .stage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: var(--aqua-glow);
  color: var(--moss);
  font-weight: 700;
  font-size: 0.85rem;
}

.payment-stages strong {
  display: block;
  color: var(--navy);
}

.payment-stages span {
  color: var(--muted);
  font-size: 0.92rem;
}

.attach-note {
  margin: 1.5rem 0 0;
  padding: 1rem 1.15rem;
  background: var(--stone);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.95rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
  padding-bottom: 4rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 650;
  color: var(--navy);
  position: relative;
  padding-right: 2.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--moss);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  color: var(--muted);
}

/* Projects */
.gallery-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(6, 21, 37, 0.08);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.process-block {
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
}

.job-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .job-timeline {
    grid-template-columns: repeat(4, 1fr);
  }
}

.job-timeline figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.job-timeline img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.job-timeline figcaption {
  padding: 0.85rem 1rem 1rem;
  font-weight: 600;
  color: var(--navy);
}

.job-timeline figcaption span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.15rem;
}

/* Service stub */
.stub-card {
  max-width: 40rem;
  margin: 0 auto 4rem;
}

.stub-card h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy);
  margin: 0 0 0.6rem;
}

.stub-card p {
  color: var(--muted);
  margin: 0 0 1rem;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 2.5rem 0 2rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 28rem;
}

.footer-col h3 {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss-soft);
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--moss-soft);
}

.footer-credit {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}


/* —— Designs band (home) —— */
.designs-band {
  padding: 2rem 0;
  background:
    linear-gradient(180deg, rgba(232, 235, 228, 0.65), rgba(255, 255, 255, 0.95));
  border-block: 1px solid var(--line);
}

.designs-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}

.designs-band-copy {
  flex: 1 1 18rem;
  max-width: 40rem;
}

.designs-band-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin: 0 0 0.45rem;
  line-height: 1.15;
}

.designs-band-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* —— Designs page —— */
.designs-hero .lede strong {
  color: var(--navy);
  font-weight: 600;
}

.featured-milan {
  padding-bottom: 2.5rem;
}

.milan-trio {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .milan-trio {
    grid-template-columns: repeat(3, 1fr);
  }
}

.milan-card,
.model-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  position: relative;
}

.milan-card.is-featured {
  border-color: var(--moss);
  box-shadow: 0 14px 36px rgba(30, 58, 47, 0.12);
}

.milan-card h3,
.model-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0.15rem 0 0;
  line-height: 1.15;
}

.model-size {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--moss);
}

.model-vibe {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.model-features {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.model-features li {
  margin-bottom: 0.15rem;
}

.silhouette-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(61, 92, 74, 0.1), rgba(42, 74, 92, 0.08)),
    var(--grass-mist);
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.silhouette-plan svg {
  width: 78%;
  max-width: 200px;
  height: auto;
}

.brand-pill {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}

.brand-latham {
  background: rgba(11, 31, 51, 0.08);
  color: var(--navy);
}

.brand-thursday {
  background: rgba(61, 92, 74, 0.12);
  color: var(--forest);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.35rem;
}

.tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.18rem 0.45rem;
  border-radius: 4px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  opacity: 0.85;
}

.model-link {
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--moss);
  text-decoration: none;
}

.model-link:hover {
  text-decoration: underline;
}

/* Long Lake progress strip */
.long-lake {
  padding: 2rem 0 2.25rem;
  border-top: 1px solid var(--line);
}

.long-lake-strip-head {
  margin-bottom: 0.85rem;
}

.long-lake-strip-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.long-lake-strip-line {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 42rem;
}

.long-lake-gallery {
  display: grid;
  gap: 0.85rem;
}

.long-lake-gallery--strip {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .long-lake-gallery--strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

.long-lake-gallery--strip .progress-shot figcaption {
  display: none;
}

.long-lake-gallery--strip .progress-shot img {
  aspect-ratio: 16 / 10;
}

@media (min-width: 720px) {
  .long-lake-gallery:not(.long-lake-gallery--strip) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.photo-slot {
  min-height: 180px;
  border-radius: var(--radius-lg);
  border: 1.5px dashed rgba(11, 31, 51, 0.22);
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 8px,
      rgba(43, 184, 196, 0.05) 8px,
      rgba(43, 184, 196, 0.05) 16px
    ),
    var(--white);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
}

.photo-slot-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
}

.photo-slot p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Catalog filters + grid */
.catalog-section {
  padding: 2.5rem 0 1rem;
  border-top: 1px solid var(--line);
}

.filter-bar {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1.15rem 1.2rem;
  background: var(--white);
  border: 1px solid rgba(11, 31, 51, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(6, 21, 37, 0.08);
  position: sticky;
  top: calc(var(--header-h) + 8px);
  z-index: 20;
}

@media (min-width: 860px) {
  .filter-bar {
    grid-template-columns: 1fr 1.35fr 1fr 0.95fr;
    align-items: end;
  }
}

.filter-tools {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.btn-clear-filters {
  align-self: flex-start;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--navy);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-clear-filters:hover {
  border-color: var(--navy);
  background: rgba(11, 31, 51, 0.06);
}

.catalog-empty {
  margin: 0 0 1.25rem;
  padding: 1.25rem 1.35rem;
  background: var(--stone);
  border: 1px dashed rgba(11, 31, 51, 0.2);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 1rem;
  text-align: center;
}

.filter-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.chip {
  border: 1px solid var(--line);
  background: var(--stone-warm);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.chip:hover {
  border-color: var(--moss);
  background: rgba(61, 92, 74, 0.06);
}

.chip.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(11, 31, 51, 0.22);
}

.filter-search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: var(--stone-warm);
  color: var(--ink);
}

.filter-search input:focus {
  outline: 2px solid var(--moss);
  outline-offset: 1px;
}

.catalog-count {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.model-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .model-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .model-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.catalog-note {
  margin: 0 0 2rem;
  padding: 1rem 1.15rem;
  background: var(--stone);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.92rem;
}


/* Long Lake progress photos */
.progress-shot {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.progress-shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.progress-shot figcaption {
  padding: 0.85rem 1rem 1.05rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.progress-shot figcaption .photo-slot-label {
  display: block;
  margin-bottom: 0.25rem;
}

/* Homepage Long Lake teaser */
.long-lake-teaser {
  padding: 0 0 1rem;
}

.long-lake-teaser-inner {
  max-width: var(--max);
}

.progress-teaser-card {
  display: grid;
  gap: 0;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

@media (min-width: 720px) {
  .progress-teaser-card {
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
  }
}

.progress-teaser-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (min-width: 720px) {
  .progress-teaser-card img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 220px;
  }
}

.progress-teaser-copy {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.progress-teaser-copy strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--navy);
  font-weight: 600;
}

.progress-teaser-copy span {
  color: var(--muted);
  font-size: 0.98rem;
}

.progress-teaser-card:hover {
  border-color: var(--aqua);
}


/* —— Northwoods atmospheric band (home) —— */
.northwoods-band {
  padding: 2.75rem 0;
  background:
    linear-gradient(180deg, rgba(30, 58, 47, 0.04), transparent 40%),
    linear-gradient(90deg, var(--grass-mist), var(--stone-warm) 60%, #e6ebe8);
  border-bottom: 1px solid var(--line);
}

.northwoods-band-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .northwoods-band-inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 2.25rem;
  }
}

.northwoods-band-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  color: var(--navy);
  margin: 0 0 0.55rem;
  line-height: 1.18;
  font-weight: 600;
}

.northwoods-band-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 36rem;
}

.northwoods-band-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}

.northwoods-band-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 40%;
}

.northwoods-band-photo figcaption {
  padding: 0.7rem 1rem 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.designs-subhead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 500;
  font-style: italic;
  color: var(--moss);
  margin: 1rem 0 0;
  line-height: 1.3;
  max-width: 36rem;
}

.designs-hero h1 {
  max-width: 18ch;
}

/* Active chips stay primary navy (see .chip.is-active above) */
.filter-chips .chip:hover {
  border-color: var(--moss);
}

/* Homepage — finished projects gallery */
.section-lede {
  max-width: 36rem;
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.project-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}

@media (min-width: 720px) {
  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }
  .project-gallery .project-card-lg {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .project-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .project-gallery .project-card-lg {
    grid-column: span 2;
    grid-row: span 2;
  }
  .project-gallery .project-card-lg img {
    min-height: 100%;
    aspect-ratio: auto;
    height: 100%;
    object-fit: cover;
  }
}

.home-projects-more {
  margin: 1.75rem 0 0;
}

.home-projects-only .photo-credit {
  margin-top: 1.25rem;
}

.hero-finished .hero-lead {
  max-width: 32rem;
}


/* Designs — AI concept board */
.concept-board {
  margin: 2.5rem auto 1.5rem;
}

/* Concept board — loud separation from Long Lake WIP (council) */
.concept-board {
  margin-top: 3.5rem;
  padding-top: 2.75rem;
  border-top: 2px solid rgba(12, 42, 58, 0.12);
}
.concept-board .eyebrow {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 220, 120, 0.55);
  color: #0c1a22;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.concept-hero {
  margin: 1.25rem 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: var(--shadow);
}
.concept-hero img {
  width: 100%;
  height: auto;
  display: block;
}
.concept-hero figcaption {
  margin: 0;
  padding: 0.85rem 1.1rem 1.1rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  background: var(--navy-deep);
}

/* About page */
.wrap.narrow {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.prose-page h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  color: var(--navy-deep, #0c2a3a);
}
.prose-page h2:first-child {
  margin-top: 0;
}
.prose-page p {
  margin: 0 0 1.1rem;
  line-height: 1.65;
  color: var(--ink-soft, #3a4a52);
  font-size: 1.05rem;
}
.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 2.5rem !important;
  padding-top: 0.5rem;
}


/* AI concept — hard on-image label (council) */
.concept-hero {
  position: relative;
}
.concept-hero .ai-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0c1a22;
  background: rgba(255, 220, 120, 0.95);
  box-shadow: 0 1px 4px rgba(0,0,0,0.35);
}
