/* Thacker Co. Brand System v1.0 */

:root {
  --forest: #183F35;
  --paper: #F5F1E8;
  --brass: #A77A45;
  --sage: #DCE5DC;
  --ink: #202C28;
  --slate: #53635B;
  --line: #C8CEC4;

  /* Mapped aliases (kit v1.0) */
  --ink-soft: #2F3C37;
  --muted: #53635B;
  --paper-2: #EBE7DD; /* quiet paper tint; Sage reserved for soft accents */
  --paper-3: #DCE5DC; /* Sage */
  --line-strong: #183F35;
  --accent: #183F35; /* Forest for interactive / key info; brass is decorative only */
  --accent-hover: #122e27;
  --accent-soft: #DCE5DC; /* Sage */
  --surface: #FFFCFA;
  --error: #8b2e2e;
  --error-bg: #f8e8e8;
  --focus: #183F35;
  --btn-hover: #122e27;

  --max: 1180px;
  --narrow: 720px;
  --header-h: 4.25rem;
  --radius: 3px;
  --gutter-mobile: 20px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  --font-display: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ease: 180ms ease;

  --font-serif: var(--font-display);
  --font-body: var(--font-sans);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("../assets/noise.svg");
  background-repeat: repeat;
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}

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

figure {
  margin: 0;
}

a {
  color: var(--forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--btn-hover);
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 10000;
  background: var(--forest);
  color: var(--paper);
  padding: 0.65rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.wrap.narrow {
  width: min(100% - 2.5rem, var(--narrow));
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 232, 0.9);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: inherit;
}

.logo:hover {
  color: inherit;
  opacity: 0.85;
}

.logo-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  line-height: 1.1;
}

.logo-lockup-img {
  display: block;
  height: 2rem;
  width: auto;
}

.logo-footer-row {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-footer-row img {
  display: block;
  height: 1.75rem;
  width: auto;
}

.logo-footer-mono {
  width: 1.75rem;
  height: 1.75rem;
}

.logo-lockup-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.logo-mark {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: block;
}

.logo-mark--footer {
  width: 2rem;
  height: 2rem;
}

.logo-wordmark {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--forest);
  line-height: 1.1;
}

.logo-subtitle {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--slate);
  max-width: 14rem;
  line-height: 1.25;
}

.logo-lockup--footer {
  gap: 0.75rem;
}

.logo-lockup--footer .logo-wordmark,
.logo-wordmark--footer {
  color: var(--paper);
  font-size: 1.25rem;
}

.logo-lockup--footer .logo-subtitle--footer,
.logo-subtitle--footer {
  color: rgba(245, 241, 232, 0.72);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.45rem 0.8rem;
  min-height: 44px;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle:hover {
  border-color: var(--forest);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--slate);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--ease);
}

.site-nav a:hover {
  color: var(--forest);
}

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: var(--paper);
  padding: 0.55rem 1.1rem;
  min-height: 44px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid var(--forest);
  border-radius: var(--radius);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.site-nav .nav-cta:hover {
  background: var(--btn-hover);
  border-color: var(--btn-hover);
  color: var(--paper);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 3rem 4rem;
  align-items: stretch;
}

.hero-copy {
  padding-bottom: 0.5rem;
  max-width: 38rem;
}

.eyebrow {
  display: block;
  margin: 0 0 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
}

.hero h1 {
  margin: 0 0 1.35rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 3.85rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--forest);
  max-width: 16ch;
}

.hero-lead {
  margin: 0 0 2rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: var(--slate);
  max-width: 36rem;
  font-weight: 400;
}

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

.hero-note {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: var(--slate);
  font-weight: 500;
}

.hero-panel {
  position: relative;
  justify-self: stretch;
  width: 100%;
}

.hero-field {
  background: var(--forest);
  color: var(--paper);
  padding: 2rem 1.75rem 1.75rem;
  border-radius: var(--radius);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-field .eyebrow {
  color: rgba(245, 241, 232, 0.72);
  margin-bottom: 0.85rem;
}

.hero-field h2 {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  line-height: 1.25;
  color: var(--paper);
  letter-spacing: -0.015em;
}

.field-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.field-list li {
  padding: 0.95rem 0;
  border-top: 1px solid rgba(200, 206, 196, 0.35);
}

.field-list li:last-child {
  border-bottom: 1px solid rgba(200, 206, 196, 0.35);
}

.field-num {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brass);
  margin-bottom: 0.35rem;
}

.field-list strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 0.25rem;
}

.field-list p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(245, 241, 232, 0.78);
}

.hero-field-foot {
  margin: 1.25rem 0 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.55);
}

.hero-panel-frame {
  position: relative;
  border: 1px solid var(--line);
  background: var(--sage);
  box-shadow: 12px 12px 0 var(--sage);
  overflow: hidden;
  border-radius: var(--radius);
}

.hero-panel-graphic {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.visual-caption {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate);
}

.hero-rule {
  display: block;
  width: 3rem;
  height: 3px;
  background: var(--brass);
  margin: 0 0 1.75rem;
  border: 0;
}

/* ---------- Sage value band ---------- */

.value-band {
  background: var(--sage);
  border-bottom: 1px solid var(--line);
  padding: 1.35rem 0;
}

.value-band-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 1.5rem;
}

.value-band-list li {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.01em;
}

/* ---------- Mood band ---------- */

.band-photo {
  padding: 0;
  background: var(--sage);
  border-bottom: 1px solid var(--line);
}

.band-photo-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr);
  gap: 0;
  align-items: stretch;
  width: min(100%, var(--max));
  padding: 0;
}

.band-figure {
  min-height: 16rem;
}

.band-figure img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
  object-position: center;
}

.band-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2rem 2.5rem 2.25rem;
  background: var(--sage);
  border-left: 1px solid var(--line);
}

.band-lead {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--forest);
  max-width: 14ch;
}

.band-text .eyebrow {
  margin-bottom: 1rem;
}

/* ---------- Sections ---------- */

.section {
  padding: 5rem 0;
}

.section-alt {
  background: rgba(220, 229, 220, 0.45);
  border-block: 1px solid var(--line);
}

.section-head {
  margin-bottom: 2.75rem;
  max-width: 38rem;
}

.offer-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  max-width: none;
}

.offer-illus {
  flex-shrink: 0;
  opacity: 0.85;
  margin-bottom: 0.25rem;
}

.section-label {
  display: block;
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
}

.section h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.65rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--forest);
}

.section-intro {
  margin: 0;
  color: var(--slate);
  font-size: 1.05rem;
  max-width: 36rem;
}

.section > .wrap > h2:first-child,
.section > .wrap.narrow > h2:first-child {
  margin-bottom: 1rem;
}

/* Who */

.who-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 3rem 3.5rem;
  align-items: start;
}

.who-lead {
  margin: 0 0 2rem;
  font-size: 1.15rem;
  color: var(--ink);
  max-width: 36rem;
}

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

.plain-list li {
  margin: 0;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--slate);
  font-size: 1.05rem;
}

.plain-list li strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.who-aside {
  position: relative;
  padding-top: 2.5rem;
}

.who-illus {
  position: absolute;
  top: 0;
  left: -0.5rem;
  width: 5.5rem;
  z-index: 2;
  background: var(--paper);
  padding: 0.35rem;
}

.who-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
  margin-left: 1.25rem;
  max-width: calc(100% - 1.25rem);
  border-radius: var(--radius);
}

/* Offer */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--forest);
}

.offer-item {
  padding: 2rem 1.75rem 0.25rem 0;
  border-right: 1px solid var(--line);
}

.offer-item:last-child {
  border-right: none;
  padding-right: 0;
}

.offer-item:not(:first-child) {
  padding-left: 1.75rem;
}

.offer-index {
  display: block;
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--brass);
  font-weight: 400;
}

.offer-item h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--forest);
}

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

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--forest);
  padding: 2rem 1.85rem;
  border-radius: var(--radius);
}

.price-card--secondary {
  border-color: var(--line);
  background: transparent;
}

.price-card h3 {
  margin: 0 0 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}

.price {
  margin: 0 0 1.25rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--forest);
}

.price-unit {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--forest);
}

.price-note {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.875rem;
  color: var(--slate);
  font-weight: 500;
}

.price-card > p {
  margin: 0 0 1rem;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.55;
}

.price-card .price-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.price-card .price-bullets li {
  margin: 0;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.45;
}

/* About */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 3rem 4rem;
  align-items: center;
}

.about-layout--no-photo {
  grid-template-columns: 1fr;
  max-width: 40rem;
}

.about-layout--no-photo .about-visual {
  display: none;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
  box-shadow: -10px 10px 0 var(--sage);
  border-radius: var(--radius);
}

.about-body h2 {
  margin: 0 0 1.5rem;
}

.about-body p {
  margin: 0 0 1.15rem;
  color: var(--ink);
  font-size: 1.08rem;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.about-body p:first-of-type {
  font-size: 1.2rem;
  color: var(--ink);
}

/* FAQ */

.faq-list {
  margin-top: 2rem;
  border-top: 1px solid var(--forest);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0;
  background: transparent;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 2.5rem 1.25rem 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color var(--ease);
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  color: var(--forest);
}

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

.faq-list summary:hover {
  color: var(--forest);
}

.faq-list details p {
  margin: 0;
  padding: 0 2.5rem 1.35rem 0;
  color: var(--slate);
  max-width: 40rem;
  font-size: 1rem;
}

/* Form */

.inquire-layout {
  width: min(100% - 2.5rem, var(--narrow));
}

.inquire-intro {
  margin-bottom: 2.5rem;
}

.inquiry-form {
  margin-top: 0;
  padding: 2rem 0 0;
  border-top: 1px solid var(--forest);
}

.field {
  margin-bottom: 1.35rem;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
}

.req {
  color: var(--forest);
}

.optional {
  font-weight: 400;
  color: var(--slate);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  transition: border-color var(--ease), background var(--ease);
  min-height: 44px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8a948c;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #a8b0a6;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest);
  outline: none;
  box-shadow: 0 0 0 3px rgba(24, 63, 53, 0.18);
}

.field textarea {
  resize: vertical;
  min-height: 7rem;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

.form-error {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  background: var(--error-bg);
  border: 1px solid #e0b4b4;
  border-radius: var(--radius);
  color: var(--error);
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.85rem 1.5rem;
  min-height: 44px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}

.btn-primary {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--btn-hover);
  border-color: var(--btn-hover);
  color: var(--paper);
}

.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn-secondary,
.btn-ghost {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}

.btn-secondary:hover,
.btn-ghost:hover {
  background: var(--forest);
  color: var(--paper);
}

/* Thanks */

.thanks-section {
  min-height: calc(100vh - var(--header-h) - 10rem);
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.thanks-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem 3.5rem;
  align-items: center;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.thanks-visual img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 10px 10px 0 var(--sage);
  border-radius: var(--radius);
}

.thanks-copy h1 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 6vw, 4rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--forest);
}

.thanks-copy p {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--ink);
  max-width: 34rem;
}

.thanks-copy .hero-actions {
  margin-top: 2rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--forest);
  padding: 3rem 0 2.75rem;
  background: var(--forest);
  color: rgba(245, 241, 232, 0.78);
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-tagline {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--paper);
}

.footer-contact {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(245, 241, 232, 0.6);
}

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

.footer-contact a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.45);
}

.footer-copy {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: rgba(245, 241, 232, 0.45);
  letter-spacing: 0.02em;
}

/* Services pitch + how-it-works */

.services-pitch {
  margin-bottom: 2.5rem;
}

.services-how {
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
  max-width: 52rem;
}

.services-how-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 400;
  margin: 0 0 1rem;
  color: var(--forest);
}

.services-how-lead {
  margin: 0 0 1.5rem;
  color: var(--slate);
  font-size: 1rem;
  max-width: 40rem;
}

.services-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--forest);
}

.services-timeline li {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 1rem 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.timeline-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  padding-top: 0.2rem;
}

.timeline-body {
  color: var(--slate);
  font-size: 1.02rem;
  line-height: 1.55;
}

.timeline-body strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.05rem;
}

/* Examples */

.examples-note {
  font-weight: 600;
  color: var(--ink);
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--forest);
  margin-top: 0.5rem;
}

.example-card {
  padding: 1.75rem 1.5rem 0.25rem 0;
  border-right: 1px solid var(--line);
}

.example-card:last-child {
  border-right: none;
  padding-right: 0;
}

.example-card:not(:first-child) {
  padding-left: 1.5rem;
}

.example-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--forest);
}

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

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
  }

  .hero-panel {
    justify-self: stretch;
    max-width: none;
  }

  .value-band-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .band-photo-inner {
    grid-template-columns: 1fr;
  }

  .band-text {
    border-left: none;
    border-top: 1px solid var(--line);
    padding: 2rem 1.25rem 2.25rem;
  }

  .who-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .who-aside {
    max-width: 22rem;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-item,
  .offer-item:not(:first-child),
  .offer-item:last-child {
    padding: 1.75rem 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .offer-item:last-child {
    border-bottom: none;
  }

  .offer-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-visual {
    max-width: 22rem;
  }

  .about-visual img {
    box-shadow: 8px 8px 0 var(--sage);
  }

  .thanks-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .thanks-visual {
    max-width: 18rem;
  }

  .services-timeline li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .examples-grid {
    grid-template-columns: 1fr;
  }

  .example-card,
  .example-card:not(:first-child),
  .example-card:last-child {
    padding: 1.5rem 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .example-card:last-child {
    border-bottom: none;
  }
}

@media (max-width: 800px) {
  .wrap,
  .wrap.narrow,
  .inquire-layout,
  .thanks-layout {
    width: min(100% - 40px, var(--max));
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(245, 241, 232, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1.25rem 1.15rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .site-nav a {
    display: block;
    padding: 0.7rem 0.4rem;
  }

  .site-nav .nav-cta {
    text-align: center;
    margin-top: 0.4rem;
  }

  .hero {
    padding: 2.75rem 0 3rem;
  }

  .section {
    padding: 4rem 0;
  }

  .inquiry-form {
    padding-top: 1.5rem;
  }

  .who-photo {
    margin-left: 0;
    max-width: 100%;
  }

  .who-illus {
    left: auto;
    right: 0.5rem;
  }

  .logo-subtitle {
    max-width: 11rem;
    font-size: 0.62rem;
  }

  .value-band-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
  }

  body::before {
    opacity: 0.02;
    mix-blend-mode: normal;
    background-size: 240px 240px;
  }
}

@media (max-width: 480px) {
  .value-band-list {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (min-width: 801px) {
  .site-header .header-inner {
    position: relative;
  }
}
