/* Concept A — Warm and Grounded */

:root {
  --color-bg: #F8F4EA;
  --color-bg-alt: #ECE6D4;
  --color-surface: #FFFFFF;
  --color-text: #33291E;
  --color-text-soft: #6B5D4A;
  --color-accent: #6E7F52;
  --color-accent-dark: #4F5C3A;
  --color-accent-soft: #DCE4C8;
  --color-brown: #7A5233;
  --color-brown-soft: #E9DCC8;
  --color-border: #DED4B9;

  --font-heading: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius-md: 14px;
  --radius-lg: 28px;
  --space-section: clamp(3rem, 6vw, 6rem);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* the 100vw full-bleed sections below can overflow by a scrollbar's width */
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--color-text);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--color-text-soft); }

a { color: var(--color-brown); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-accent-dark);
  color: #fff;
  padding: 0.75em 1.25em;
  border-radius: 0 0 var(--radius-md) 0;
  z-index: 100;
}
.skip-link:focus {
  left: 0;
}

a:focus-visible,
button:focus-visible,
.button:focus-visible,
.nav__toggle:focus-visible {
  outline: 3px solid var(--color-accent-dark);
  outline-offset: 3px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--color-brown);
  font-weight: 600;
}

/* Header / nav */

.site-header {
  padding: 1.25rem 1.5rem;
  background: var(--color-bg);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}

.nav__logo {
  text-decoration: none;
  color: var(--color-text);
  display: inline-flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav__logo-name {
  font-family: 'Parisienne', Georgia, serif;
  font-style: italic;
  font-size: 2.1rem;
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-top: 0.15rem;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav__links a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.95rem;
}

.nav__links a:hover {
  color: var(--color-brown);
}

.nav__cta {
  flex-shrink: 0;
}

.nav__toggle-input {
  display: none;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  display: block;
}

/* Buttons */

.button {
  display: inline-block;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.15s ease;
}

.button--primary {
  background: var(--color-accent-dark);
  color: #fff;
}

.button--primary:hover {
  background: var(--color-accent);
}

.button--secondary {
  background: transparent;
  color: var(--color-brown);
  border: 1.5px solid var(--color-brown);
}

.button--secondary:hover {
  background: var(--color-brown-soft);
}

.button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.link-arrow {
  display: inline-block;
  color: var(--color-brown);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.link-arrow::after {
  content: " \2192";
}

/* Layout helpers */

section {
  padding: var(--space-section) 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

.empathy,
.about-teaser {
  background: var(--color-bg-alt);
  width: calc(100% - 3rem);
  max-width: 1180px;
  border-radius: var(--radius-lg);
  margin: 0 auto;
}

.how-it-helps,
.services,
.cta-band {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.empathy > * {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.about-teaser {
  padding: var(--space-section) 1.5rem;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding-top: 2rem;
}

.hero__content { max-width: 620px; }

.hero__lede {
  font-size: 1.15rem;
  max-width: 46ch;
}

.placeholder-image {
  background: linear-gradient(135deg, var(--color-brown-soft), var(--color-accent-soft));
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-soft);
  font-size: 0.85rem;
  padding: 1.5rem;
  min-height: 280px;
}

.placeholder-image--organic {
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
}

.placeholder-image__label {
  max-width: 22ch;
}

/* Empathy list */

.section-lede {
  font-size: 1.05rem;
}

.empathy__list {
  list-style: none;
  max-width: 760px;
  margin: 1.5rem auto 0;
  padding: 0;
}

.empathy__list li {
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
  color: var(--color-text);
}

.empathy__list li:last-child {
  border-bottom: 1px solid var(--color-border);
}

/* Cards */

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

.card {
  padding: 1.25rem 0;
  border-top: 1px solid var(--color-border);
}

.card:first-child {
  padding-top: 0;
  border-top: none;
}

.placeholder-note {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-text-soft);
}

.price-note {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 1em;
}

.package-list {
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.package-list__name {
  font-weight: 700;
}

/* About teaser */

.about-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

/* CTA band */

.cta-band {
  text-align: center;
  background:
    linear-gradient(rgba(51, 41, 30, 0.4), rgba(51, 41, 30, 0.55)),
    url("images/cliff.jpg") center 15% / cover no-repeat;
  color: #fff;
  border-radius: var(--radius-lg);
  max-width: none;
  margin: 0 1.5rem var(--space-section);
  padding: var(--space-section) 1.5rem;
}

@media (min-width: 640px) {
  /* A wide, short band forces "cover" to scale the image up to match
     the width, which crops out most of its height, the wider the
     window gets. A vw-based min-height keeps the band's height roughly
     proportional to its (full-bleed) width instead of a fixed padding
     amount, so the crop stays "zoomed out" enough to show the coastal
     path and wildflowers, not just a sliver of them, at any monitor
     size. (aspect-ratio itself was tried first but Chromium lets it
     shrink the box's width once max-height clamps in, breaking the
     full-bleed layout, so plain vw units are used instead.) */
  .cta-band {
    background-position: center 65%;
    min-height: clamp(380px, 42vw, 620px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
  }
}

.cta-band h2,
.cta-band p {
  color: #fff;
  text-shadow: 0 1px 12px rgba(51, 41, 30, 0.55);
}

.cta-band > * {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .button--primary {
  background: #fff;
  color: var(--color-accent-dark);
  margin-top: 0.5rem;
}

.cta-band .button--primary:hover {
  background: var(--color-accent-soft);
}

/* Footer */

.site-footer {
  padding: 3rem 1.5rem 2.5rem;
  border-top: 1px solid var(--color-border);
}

.site-footer__top {
  max-width: 1180px;
  margin: 0 auto 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.9rem;
}

.footer-note,
.footer-copyright {
  max-width: 1180px;
  margin: 0 auto;
  font-size: 0.82rem;
  color: var(--color-text-soft);
}

.footer-note { margin-bottom: 0.5rem; }

/* Work With Me: page intro */

.page-intro {
  text-align: center;
  padding-bottom: 0;
}

.page-intro > * {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Work With Me: checklist */

.checklist {
  list-style: none;
  max-width: 760px;
  margin: 1.5rem auto 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem 0.9rem 3rem;
  color: var(--color-text);
  position: relative;
}

.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 1.2rem;
  color: var(--color-accent-dark);
  font-weight: 700;
}

/* Work With Me: how it works, 3 steps */

.steps {
  display: grid;
  gap: 2rem;
  margin-top: 1.75rem;
}

.step {
  padding-left: 0;
}

.step__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brown);
  margin-bottom: 0.5em;
}

.step h3 {
  margin: 0 0 0.3em;
}

.step p {
  margin: 0;
}

@media (min-width: 640px) {
  .step {
    padding-left: 2rem;
    border-left: 1px solid var(--color-border);
  }
  .step:first-child {
    padding-left: 0;
    border-left: none;
  }
}

/* Work With Me: package bands (full-bleed, alternating tint) */

.package-band {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: var(--space-section) 1.5rem;
}

.package-band:nth-child(even) {
  background: var(--color-bg-alt);
}

.package-band__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.package-band--with-image .package-band__inner {
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .package-band--with-image .package-band__inner {
    grid-template-columns: 0.85fr 1fr;
    gap: 2.5rem;
  }
  .package-band--with-image.package-band--image-right .package-band__image {
    order: 2;
  }
}

.package-band__image {
  height: 260px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

@media (min-width: 720px) {
  .package-band__image {
    height: 320px;
    align-self: center;
  }
}

.package-band__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.package-band h3 {
  font-size: 1.6rem;
  margin: 0 0 0.3em;
}

.package-band__price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 1em;
}

.package-band details {
  border-top: 1px solid var(--color-border);
  padding: 0.85rem 0;
}

.package-band details:last-of-type {
  border-bottom: 1px solid var(--color-border);
}

.package-band summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-text);
  list-style: none;
}

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

.package-band summary::after {
  content: " \002B";
  float: right;
  color: var(--color-brown);
}

.package-band details[open] summary::after {
  content: "\2212";
}

.package-band details p {
  margin: 0.75rem 0 0;
}

/* Work With Me: testimonial placeholder */

.testimonial-placeholder {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  color: var(--color-text-soft);
  font-style: italic;
  margin-top: 1.75rem;
}

/* Work With Me: FAQ */

.faq {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.75rem;
}

.faq details {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-text);
  list-style: none;
}

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

.faq summary::after {
  content: " \002B";
  float: right;
  color: var(--color-brown);
}

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

.faq details p {
  margin: 0.75rem 0 0;
}

/* Responsive */

@media (min-width: 640px) {
  .hero { grid-template-columns: 1.1fr 0.9fr; }
  .about-teaser { grid-template-columns: 0.9fr 1.1fr; }
  .card-grid--three { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .card-grid--three .card {
    padding: 0 0 0 2rem;
    border-top: none;
    border-left: 1px solid var(--color-border);
  }
  .card-grid--three .card:first-child {
    padding-left: 0;
    border-left: none;
  }
}

@media (min-width: 860px) {
  .card-grid:not(.card-grid--three) { grid-template-columns: repeat(3, 1fr); }
  .card-grid:not(.card-grid--three) .card {
    padding: 0 0 0 2rem;
    border-top: none;
    border-left: 1px solid var(--color-border);
  }
  .card-grid:not(.card-grid--three) .card:first-child {
    padding-left: 0;
    border-left: none;
  }
}

@media (max-width: 780px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    gap: 1rem;
  }

  .nav__toggle-input:checked ~ .nav__links {
    display: flex;
  }

  .nav__cta {
    display: none;
  }
}
