:root {
  /* Brand colors — used ONLY by locked QuackTrips/DamTrips booking elements */
  --quack-green: #0d994f;
  --quack-yellow: #ffd95f;
  --dam-black: #161616;
  --dam-orange: #ff6b1a;

  /* Parent-company Pacific Northwest palette */
  --forest: #16442c;
  --forest-2: #1f5c3b;
  --cream: #f7f2e7;
  --cream-2: #efe6d4;
  --charcoal: #222d29;
  --gold: #c39a44;
  --gold-deep: #9a7526;
  --gold-soft: rgba(195, 154, 68, 0.16);

  --ink: #1f2a28;
  --paper: #f7f2e7;
  --muted: #6b7671;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1100px 620px at 12% -8%, rgba(22, 68, 44, 0.08), transparent 60%),
    radial-gradient(1000px 560px at 90% -4%, rgba(195, 154, 68, 0.11), transparent 62%),
    radial-gradient(900px 520px at 50% 112%, rgba(22, 68, 44, 0.05), transparent 60%),
    var(--paper);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.site {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section,
.hero-band,
.footer-band {
  scroll-margin-top: 82px;
}

/* Sticky header / navigation */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 231, 0.86);
  -webkit-backdrop-filter: saturate(1.15) blur(10px);
  backdrop-filter: saturate(1.15) blur(10px);
  border-bottom: 1px solid rgba(22, 68, 44, 0.12);
}

.topbar__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.7rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brandmark__logo {
  width: 30px;
  height: 30px;
  display: inline-flex;
  flex: none;
}

.brandmark__logo svg { width: 100%; height: 100%; }

.brandmark__text {
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 1.02rem;
  color: var(--charcoal);
}

.brandmark__llc {
  margin-left: 0.45rem;
  font-size: 0.6em;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  vertical-align: middle;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.15em 0.55em;
}

.topnav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.9rem);
}

.topnav a {
  position: relative;
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.3rem 0;
}

.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.topnav a:hover::after,
.topnav a:focus-visible::after {
  transform: scaleX(1);
}

.topnav__contact {
  color: var(--forest) !important;
  font-weight: 700;
}

/* Hero band (full-bleed illustrated) */
.hero-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, #fff6ea 0%, #fdeede 40%, #f3f7f1 100%);
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-scene {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(200px, 26vw, 340px);
  margin-top: clamp(1.75rem, 4vw, 3rem);
  display: block;
}

.hero__accent {
  color: var(--quack-green);
}

/* Hero (legacy, still used for max-width helpers) */
.hero {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(2.25rem, 5vw, 3.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--quack-green);
  box-shadow: 10px 0 0 -1px var(--dam-orange);
  margin-right: 8px;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.02;
}

.hero__actions {
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--ink);
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(31, 42, 40, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 16px 34px rgba(31, 42, 40, 0.28);
}

.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  padding: 0;
  margin: clamp(1.5rem, 3vw, 2rem) 0 0;
}

.chips li {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 42, 40, 0.1);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
}

.chips li::before {
  content: "✓";
  color: var(--quack-green);
  font-weight: 800;
  margin-right: 0.45rem;
}

.wordmark {
  font-size: clamp(2.3rem, 6vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1.03;
}

.wordmark .llc {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.45em;
  font-weight: 700;
  letter-spacing: 0.12em;
  vertical-align: middle;
  color: var(--muted);
  border: 1.5px solid currentColor;
  border-radius: 999px;
  padding: 0.15em 0.6em;
}

.hero__sub {
  margin: 1.1rem 0 0;
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  font-weight: 600;
  color: var(--ink);
}

.hero__lead {
  margin: 1.25rem auto 0;
  max-width: 680px;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  color: var(--muted);
}

/* Section scaffolding */
.section {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.section__title {
  text-align: center;
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(1.5rem, 3.5vw, 2.25rem);
}

.section__intro {
  text-align: center;
  max-width: 560px;
  margin: -1rem auto clamp(1.75rem, 3.5vw, 2.5rem);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.6;
  color: var(--muted);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  background: #ffffff;
  border: 3px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card__banner {
  position: relative;
  height: clamp(110px, 15vw, 150px);
  overflow: hidden;
}

.card--quack .card__banner {
  background: linear-gradient(135deg, #12a75a 0%, #0a7a3f 100%);
}

.card--dam .card__banner {
  background: linear-gradient(135deg, #ff8a3d 0%, #ff6b1a 100%);
}

.card__banner svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 2.2vw, 2rem);
  padding: clamp(2rem, 3.2vw, 2.75rem) clamp(1.75rem, 3.5vw, 3rem) clamp(2.25rem, 3.5vw, 3rem);
}

.card--quack {
  border-color: var(--quack-green);
  background: linear-gradient(160deg, #daf0e2 0%, #ecf8f1 42%, #ffffff 100%);
  box-shadow: 0 18px 44px rgba(13, 153, 79, 0.15);
}

.card--dam {
  border-color: var(--dam-orange);
  background: linear-gradient(160deg, #ffe4d0 0%, #fff3e9 42%, #ffffff 100%);
  box-shadow: 0 18px 44px rgba(255, 107, 26, 0.15);
}

.card:hover,
.card:focus-visible {
  transform: translateY(-6px);
}

.card--quack:hover,
.card--quack:focus-visible {
  box-shadow: 0 24px 50px rgba(13, 153, 79, 0.22);
}

.card--dam:hover,
.card--dam:focus-visible {
  box-shadow: 0 24px 50px rgba(255, 107, 26, 0.22);
}

.card:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.card__logo {
  width: 100%;
  height: clamp(170px, 21vw, 225px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
}

.card__logo img {
  height: 100%;
  width: auto;
  max-width: 100%;
}

.card__team {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
}

.card--quack .card__team {
  color: #0b6f3a;
  background: rgba(13, 153, 79, 0.12);
}

.card--dam .card__team {
  color: #c1490b;
  background: rgba(255, 107, 26, 0.14);
}

.card__desc {
  margin: 0;
  text-align: center;
  font-size: clamp(1.02rem, 1.4vw, 1.12rem);
  line-height: 1.65;
  color: var(--muted);
  max-width: 36ch;
}

.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  color: #ffffff;
  transition: gap 0.2s ease, filter 0.2s ease;
}

.card--quack .card__cta { background: var(--quack-green); }
.card--dam .card__cta { background: var(--dam-orange); }

.card:hover .card__cta { filter: brightness(1.06); }

.card:hover .card__cta { gap: 0.9rem; }

.arrow {
  transition: transform 0.2s ease;
}

.card:hover .arrow {
  transform: translateX(3px);
}

/* Footer */
.footer {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: 1.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer p {
  margin: 0.15rem 0;
}

.footer__legal {
  font-weight: 700;
  color: var(--ink);
}

.footer__contact,
.footer__links {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer a:hover {
  color: var(--ink);
  border-color: currentColor;
}

.footer__sep {
  color: rgba(0, 0, 0, 0.25);
}

.footer__copy {
  margin-top: 1rem;
  font-size: 0.82rem;
}

/* Full-width footer band (landing page) */
.footer-band {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-top: 1px solid rgba(31, 42, 40, 0.1);
  background:
    linear-gradient(180deg, rgba(13, 153, 79, 0.05), rgba(255, 107, 26, 0.05));
}

.footer-band .footer {
  max-width: 1240px;
  margin: 0 auto;
  border-top: none;
  padding: clamp(2.75rem, 5vw, 3.75rem) clamp(1.25rem, 4vw, 2.5rem) clamp(2.25rem, 4vw, 3rem);
}

/* What we do */
.what-panel {
  border-radius: 32px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3.25rem);
  background:
    radial-gradient(760px 420px at 6% 0%, rgba(13, 153, 79, 0.09), transparent 62%),
    radial-gradient(760px 420px at 100% 100%, rgba(255, 107, 26, 0.09), transparent 62%),
    #fbfcfa;
  border: 1px solid rgba(31, 42, 40, 0.08);
  box-shadow: 0 18px 50px rgba(31, 42, 40, 0.07);
}

.what-panel .section__title {
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.1rem, 2vw, 1.6rem);
}

.feature {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: clamp(1.6rem, 2vw, 2rem) clamp(1.5rem, 1.8vw, 1.75rem);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.feature__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(13, 153, 79, 0.1);
  color: var(--quack-green);
  margin-bottom: 1.15rem;
}

.feature:nth-child(even) .feature__icon {
  background: rgba(255, 107, 26, 0.12);
  color: var(--dam-orange);
}

.feature__icon svg {
  width: 25px;
  height: 25px;
}

.feature h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.feature p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Operating disclosure */
.disclosure {
  border: 1px solid rgba(31, 42, 40, 0.08);
  border-radius: 26px;
  padding: clamp(2.25rem, 5vw, 3.5rem) clamp(1.75rem, 5vw, 4rem);
  text-align: center;
  width: 100%;
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(13, 153, 79, 0.06), transparent 65%),
    radial-gradient(600px 300px at 100% 100%, rgba(255, 107, 26, 0.06), transparent 65%),
    #ffffff;
  box-shadow: 0 12px 34px rgba(31, 42, 40, 0.05);
}

.disclosure h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 2.8vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.disclosure p {
  margin: 0 auto;
  font-size: clamp(1.05rem, 1.5vw, 1.15rem);
  line-height: 1.75;
  color: var(--muted);
  max-width: 720px;
}

/* Operates line + disclaimer */
.operates {
  margin: clamp(3rem, 7vw, 4.5rem) auto 0;
  max-width: 720px;
  text-align: center;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.6;
  color: var(--ink);
}

.disclaimer {
  margin: 1.5rem auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--muted);
  opacity: 0.85;
}

/* Footer brand links */
.footer__brands {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 600;
}

.footer__brands a {
  color: var(--ink);
}

/* How it works */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.1rem, 2.5vw, 1.75rem);
}

.step {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: clamp(1.6rem, 2.2vw, 2.1rem);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
}

.step:nth-child(1) .step__num { background: var(--quack-green); }
.step:nth-child(2) .step__num { background: var(--dam-orange); }
.step:nth-child(3) .step__num { background: var(--ink); }

.step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.step p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq details {
  background: #ffffff;
  border: 1px solid rgba(31, 42, 40, 0.09);
  border-radius: 16px;
  padding: 0 clamp(1.1rem, 2vw, 1.5rem);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease;
}

.faq details[open] {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--ink);
}

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

.faq summary::after {
  content: "+";
  flex: none;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  color: var(--muted);
  transition: transform 0.2s ease;
}

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

.faq details p {
  margin: 0 0 1.2rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.faq a {
  color: var(--quack-green);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

/* Call-to-action band */
.cta-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: clamp(3rem, 7vw, 5rem);
  padding: clamp(2.75rem, 6vw, 4.25rem) 1.5rem;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(115deg, #0d994f 0%, #14a95c 42%, #ff6b1a 100%);
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-band h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-band p {
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  opacity: 0.95;
}

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

.btn-on-color {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-on-color:hover,
.btn-on-color:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.26);
}

.btn-on-color--green { color: #0b7d41; }
.btn-on-color--orange { color: #c1490b; }

/* Responsive */
@media (max-width: 860px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

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

@media (max-width: 460px) {
  .features {
    grid-template-columns: 1fr;
  }
}

/* ---------- Legal / policy pages ---------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 3rem) 1.5rem 2rem;
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.legal__back:hover { color: var(--ink); }

.legal__brand {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.legal h1 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  letter-spacing: -0.02em;
  margin: 0.6rem 0 0.25rem;
}

.legal__effective {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 2rem;
}

.legal article {
  color: #2c332f;
  line-height: 1.7;
  font-size: 1rem;
}

.legal article h2 {
  font-size: 1.15rem;
  margin: 2rem 0 0.6rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  letter-spacing: -0.01em;
}

.legal article h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal article p { margin: 0.75rem 0; }

.legal article ul {
  margin: 0.75rem 0;
  padding-left: 1.25rem;
}

.legal article li { margin: 0.3rem 0; }

.legal article a {
  color: var(--quack-green);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.legal__intro {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
}

.legal .footer {
  max-width: none;
}
