:root {
  --bg: #f2eadf;
  --paper: rgba(255, 251, 245, 0.82);
  --paper-strong: #fffaf2;
  --ink: #182126;
  --muted: rgba(24, 33, 38, 0.68);
  --line: rgba(24, 33, 38, 0.14);
  --sand: #dcc3a9;
  --sage: #adc4b6;
  --sky: #aac5d8;
  --rose: #d9b8ae;
  --shadow: 0 18px 60px rgba(24, 33, 38, 0.08);
  --radius: 22px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(170, 197, 216, 0.42), transparent 32%),
    radial-gradient(circle at 80% 12%, rgba(217, 184, 174, 0.3), transparent 24%),
    linear-gradient(180deg, #f6f0e6 0%, #efe5d7 100%);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 140ms ease, opacity 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

a:hover,
a:focus-visible {
  color: var(--ink);
}

a:active {
  opacity: 0.76;
}

a:visited {
  color: inherit;
}

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

main {
  display: block;
}

.shell {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(246, 240, 230, 0.74);
  border-bottom: 1px solid rgba(24, 33, 38, 0.08);
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 2rem;
  letter-spacing: 0.02em;
}

.brand-word {
  display: inline-block;
  transform: translateY(1px);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: lowercase;
  color: var(--ink);
}

.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(24, 33, 38, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 140ms ease, opacity 140ms ease;
}

.site-header.is-menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav a:not(.cta-link),
.nav button:not(.cta-link) {
  font-size: 0.92rem;
  color: var(--muted);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.nav a:not(.cta-link):hover,
.nav a:not(.cta-link):focus-visible,
.nav button:not(.cta-link):hover,
.nav button:not(.cta-link):focus-visible {
  color: var(--ink);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  background: linear-gradient(90deg, #f5c97d 0%, #f7b58d 38%, #f4a4b3 100%);
  color: var(--ink);
  font-weight: 500;
  border: 1px solid rgba(24, 33, 38, 0.08);
}

.cta-link.secondary {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid transparent;
  background-image:
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(90deg, #f1b45d 0%, #f3a06f 38%, #ef8fa0 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.cta-link:hover,
.cta-link:focus-visible,
.primary-button:hover,
.primary-button:focus-visible {
  background: linear-gradient(90deg, #f8d392 0%, #f8c09d 38%, #f7b1bd 100%);
  color: var(--ink);
}

.cta-link.secondary:hover,
.cta-link.secondary:focus-visible,
.ghost-button:hover,
.ghost-button:focus-visible {
  color: var(--ink);
  border-color: rgba(24, 33, 38, 0.28);
  background-image:
    linear-gradient(#fdf6ec, #fdf6ec),
    linear-gradient(90deg, #f1b45d 0%, #f3a06f 38%, #ef8fa0 100%);
}

.cta-link:active,
.primary-button:active {
  background: linear-gradient(90deg, #e9b767 0%, #e7a77a 38%, #e293a3 100%);
  color: var(--ink);
}

.cta-link.secondary:active,
.ghost-button:active {
  background-image:
    linear-gradient(#f8eee0, #f8eee0),
    linear-gradient(90deg, #d59b4e 0%, #d8895d 38%, #d2778b 100%);
}

.hero {
  padding: 4rem 0 2.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.6rem;
  align-items: stretch;
}

.hero-copy,
.form-panel,
.feature-card,
.story-card,
.info-panel,
.blog-preview,
.pull-quote,
.section-panel,
.blog-post,
.contact-card,
.legal-copy,
.support-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 2.4rem;
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -8% -30% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 197, 216, 0.72), transparent 68%);
  pointer-events: none;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: rgba(24, 33, 38, 0.28);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.01em;
}

h1 {
  margin-top: 1rem;
  font-size: 4.4rem;
  max-width: 9ch;
}

h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
}

h3 {
  font-size: 1.75rem;
}

.lede,
.section-copy,
.story-card p,
.blog-preview p,
.contact-card p,
.legal-copy p,
.blog-post p,
.support-card p,
.support-card li {
  color: var(--muted);
  font-size: 1.04rem;
}

.lede {
  max-width: 46rem;
  margin-top: 1.2rem;
}

.hero-points,
.compact-list,
.legal-list,
.support-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.hero-points li,
.compact-list li,
.legal-list li,
.support-list li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--ink);
}

.hero-points li::before,
.compact-list li::before,
.legal-list li::before,
.support-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.form-panel {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(255, 246, 234, 0.88));
}

.form-panel h2 {
  font-size: 2.2rem;
}

.form-panel p {
  margin: 0.8rem 0 1.2rem;
  color: var(--muted);
}

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

.form-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 0.34rem;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

input,
button,
textarea {
  font: inherit;
}

input,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.95rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(24, 33, 38, 0.16);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: transparent;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.84)),
    linear-gradient(90deg, #f1b45d 0%, #f3a06f 38%, #ef8fa0 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 0 0 3px rgba(241, 180, 93, 0.16);
}

input:disabled,
textarea:disabled {
  color: rgba(24, 33, 38, 0.36);
  background: rgba(24, 33, 38, 0.06);
  border-color: rgba(24, 33, 38, 0.1);
  cursor: not-allowed;
}

input:disabled::placeholder,
textarea:disabled::placeholder {
  color: rgba(24, 33, 38, 0.28);
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(24, 33, 38, 0.12);
}

.toggle-row input[type="checkbox"] {
  width: 20px;
  min-height: 20px;
  padding: 0;
}

.city-field {
  position: relative;
}

.search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.35rem);
  z-index: 20;
  display: grid;
  gap: 0.35rem;
  max-height: min(320px, 48vh);
  overflow-y: auto;
  padding: 0.45rem;
  border: 1px solid rgba(24, 33, 38, 0.14);
  border-radius: 6px;
  background: rgba(255, 250, 242, 0.98);
  box-shadow: 0 18px 44px rgba(24, 33, 38, 0.14);
}

.search-results:empty {
  display: none;
}

.result-button {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(24, 33, 38, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  min-height: 48px;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  cursor: pointer;
}

.result-button:hover,
.result-button:focus-visible {
  border-color: rgba(24, 33, 38, 0.28);
  transform: translateY(-1px);
}

.selected-city {
  font-size: 0.92rem;
  color: var(--ink);
  padding: 0.8rem 0.95rem;
  border-radius: 6px;
  background: rgba(170, 197, 216, 0.2);
}

.helper,
.disclaimer,
.form-note,
.empty-state {
  color: var(--muted);
  font-size: 0.92rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.time-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 132px;
  gap: 0.95rem;
}

.period-toggle {
  display: grid;
  gap: 0.34rem;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.period-toggle-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(24, 33, 38, 0.16);
  background: rgba(255, 255, 255, 0.84);
}

.period-toggle-buttons input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.period-toggle-buttons label {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.period-toggle-buttons input:checked + label {
  background: var(--ink);
  color: #f7f1e7;
}

.period-toggle-buttons input:disabled + label {
  color: rgba(24, 33, 38, 0.32);
  background: rgba(24, 33, 38, 0.06);
  cursor: not-allowed;
}

[data-time-fields].is-disabled {
  opacity: 0.45;
  filter: saturate(0.6);
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.2rem;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease;
}

.primary-button {
  background: linear-gradient(90deg, #f5c97d 0%, #f7b58d 38%, #f4a4b3 100%);
  color: var(--ink);
  border: 1px solid rgba(24, 33, 38, 0.08);
}

.ghost-button {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid transparent;
  background-image:
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(90deg, #f1b45d 0%, #f3a06f 38%, #ef8fa0 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.story-card .stat {
  font-size: 3rem;
  margin-top: 1rem;
  display: block;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 800;
}

.pull-quote blockquote {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
}

.primary-button[disabled],
.ghost-button[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.sections {
  padding: 1.2rem 0 5rem;
}

.section-stack {
  display: grid;
  gap: 1.2rem;
}

.section-intro {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.feature-grid,
.story-grid,
.blog-grid,
.support-grid,
.legal-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.story-card,
.blog-preview,
.pull-quote,
.section-panel,
.blog-post,
.contact-card,
.legal-copy,
.support-card {
  padding: 1.4rem;
}

.feature-card strong,
.story-card strong,
.blog-preview strong,
.support-card strong {
  display: block;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.feature-card h3,
.story-card h3,
.blog-preview h3,
.blog-post h3,
.contact-card h3,
.support-card h3 {
  margin-bottom: 0.7rem;
}

.feature-card.accent-sand {
  background: rgba(220, 195, 169, 0.34);
}

.feature-card.accent-sage {
  background: rgba(173, 196, 182, 0.28);
}

.feature-card.accent-sky {
  background: rgba(170, 197, 216, 0.24);
}

.story-card {
  min-height: 260px;
}

.story-card.large {
  grid-column: span 2;
}

.story-card .stat {
  font-size: 3rem;
  margin-top: 1rem;
  display: block;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 800;
}

.split-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 1rem;
}

.pull-quote {
  display: grid;
  align-content: space-between;
  background: linear-gradient(180deg, rgba(170, 197, 216, 0.3), rgba(255, 250, 242, 0.65));
}

.pull-quote blockquote {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
}

.blog-preview time,
.blog-post time {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.blog-preview a,
.blog-post a {
  font-weight: 700;
}

.section-panel {
  display: grid;
  gap: 0.9rem;
}

.site-footer {
  border-top: 1px solid rgba(24, 33, 38, 0.1);
  padding: 1.5rem 0 2.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  color: var(--muted);
}

.page-hero {
  padding: 4rem 0 2rem;
}

.page-hero .shell,
.page-section .shell {
  display: grid;
  gap: 1rem;
}

.page-tag {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.page-body {
  padding: 0 0 5rem;
}

.page-body .section-stack {
  gap: 1rem;
}

.contact-card a,
.support-card a,
.legal-copy a {
  text-decoration: underline;
}

.blog-layout {
  display: block;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-callout,
  .footer-grid,
  .feature-grid,
  .story-grid,
  .blog-grid,
  .support-grid,
  .legal-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .story-card.large {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .site-header .shell {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .brand {
    justify-self: start;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    align-items: stretch;
    justify-content: stretch;
    gap: 0.4rem;
    padding-top: 0.4rem;
  }

  .site-header.is-menu-open .nav {
    display: grid;
  }

  .nav a {
    width: 100%;
  }

  .nav a:not(.cta-link),
  .nav button:not(.cta-link) {
    min-height: 44px;
    padding: 0.65rem 0;
    text-align: left;
  }

  .hero {
    padding-top: 2.3rem;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
  }

  .form-panel {
    order: 1;
  }

  .hero-copy {
    order: 2;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-brand img {
    width: 54px;
    height: 54px;
  }

  .hero-copy,
  .form-panel,
  .feature-card,
  .story-card,
  .blog-preview,
  .pull-quote,
  .section-panel,
  .blog-post,
  .contact-card,
  .legal-copy,
  .support-card {
    padding: 1.15rem;
  }

  .form-grid.two-up,
  .form-grid.three-up,
  .time-row {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.4rem;
  }
}
.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
}

.hero-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.hero-brand span {
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: lowercase;
  color: var(--ink);
}
