/* ============================================
   Tactile Design Co. — gettactile.com
   Build Week landing page (v3 layout)
   ============================================ */

:root {
  --color-grungy: #18181D;
  --color-moody: #061E2C;
  --color-dreamy: #184556;
  --color-rockstar: #B9795B;
  --color-cozy: #CFC0AE;
  --color-fresh: #F0EBE3;

  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1100px;
  --section-py: clamp(5rem, 10vw, 7.5rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-grungy);
  background: var(--color-fresh);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--color-rockstar);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: #a5694d;
}

:focus-visible {
  outline: 3px solid var(--color-rockstar);
  outline-offset: 3px;
  border-radius: 3px;
}

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

.container {
  width: 88%;
  max-width: var(--container);
  margin: 0 auto;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-grungy);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 em {
  font-style: italic;
  font-weight: 500;
}

h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.6rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.5em;
}

p:last-child {
  margin-bottom: 0;
}

em {
  font-style: italic;
}

/* --- Highlight (copper underline) --- */
.highlight {
  display: inline;
  background-image: linear-gradient(
    to top,
    var(--color-rockstar) 0%,
    var(--color-rockstar) 28%,
    transparent 28%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 0.05em;
}

/* Highlight on dark backgrounds — keep copper, slightly stronger */
.hero .highlight,
.why-me .highlight,
.cta-section .highlight {
  background-image: linear-gradient(
    to top,
    var(--color-rockstar) 0%,
    var(--color-rockstar) 32%,
    transparent 32%
  );
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--color-rockstar);
  color: var(--color-grungy);
  padding: 1rem 2.25rem;
  border-radius: 4px;
  font-size: 0.95rem;
}

.btn-primary:hover {
  background: #a5694d;
  color: var(--color-grungy);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(185, 121, 91, 0.3);
}

.btn-primary:active { transform: translateY(0); }

.btn-lg {
  padding: 1.15rem 2.75rem;
  font-size: 1rem;
}

.btn-full {
  display: block;
  width: 100%;
  text-align: center;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--color-grungy);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(207, 192, 174, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.btn-header {
  padding: 0.65rem 1.35rem;
  font-size: 0.85rem;
}

@media (max-width: 480px) {
  .logo-img { height: 36px; }
  .btn-header { padding: 0.55rem 1rem; font-size: 0.8rem; }
}

/* ============================================
   SECTION 1: Hero — DARK background
   ============================================ */
.hero {
  position: relative;
  background: var(--color-grungy);
  color: var(--color-fresh);
  padding: clamp(8rem, 14vw, 11rem) 0 clamp(5rem, 10vw, 8rem);
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(185, 121, 91, 0.18), transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(24, 69, 86, 0.35), transparent 60%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-flourish {
  position: absolute;
  top: 38%;
  right: -40px;
  width: 280px;
  height: 60px;
  color: var(--color-rockstar);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 768px) {
  .hero-flourish { display: none; }
}

.hero-content {
  max-width: 880px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--color-fresh);
  margin-bottom: 2.25rem;
}

.hero-body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-cozy);
  margin: 0 auto 2.5rem;
  max-width: 600px;
}

/* ============================================
   SECTIONS 2 & 3: Two-column prose (cream)
   ============================================ */
.prose-section {
  background: var(--color-fresh);
  padding: var(--section-py) 0;
}

.prose-section + .prose-section {
  padding-top: 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.two-col-head h2 {
  position: sticky;
  top: 6rem;
  margin-bottom: 0;
}

.two-col-body p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-grungy);
}

.pull-quote {
  margin: 2.5rem 0;
  padding: 1.75rem 1.75rem 1.75rem 2rem;
  border-left: 3px solid var(--color-rockstar);
  background: rgba(185, 121, 91, 0.06);
  border-radius: 0 10px 10px 0;
}

.pull-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.4;
  color: var(--color-grungy);
  margin: 0;
  letter-spacing: -0.005em;
}

.two-col-body p.lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.4;
  color: var(--color-rockstar);
  font-weight: 600;
  margin: 2.25rem 0;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .two-col-head h2 {
    position: static;
  }
}

/* ============================================
   SECTION 4: What Gets Built (cream, scannable)
   ============================================ */
.what-gets-built {
  background: var(--color-fresh);
  padding: var(--section-py) 0;
}

.centered-head {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.centered-head h2 {
  margin-bottom: 1.25rem;
}

.section-lede {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-grungy);
  margin: 0;
}

.built-category {
  margin-bottom: 3rem;
}

.built-cat-label {
  font-family: var(--font-ui, var(--font-body));
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-rockstar);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-cozy);
}

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

.built-item {
  position: relative;
  padding: 1.6rem 1.6rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(207, 192, 174, 0.45);
  border-radius: 10px;
  box-shadow: 0 10px 24px -20px rgba(24, 24, 29, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.built-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -20px rgba(24, 24, 29, 0.28);
  border-color: rgba(185, 121, 91, 0.4);
}

.built-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-grungy);
  margin-bottom: 0.45rem;
  letter-spacing: -0.005em;
}

.built-item span {
  display: block;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-grungy);
}

.built-item em { font-style: italic; }

.built-closer {
  margin-top: 4rem;
  padding: 2.25rem 2rem;
  background: rgba(185, 121, 91, 0.08);
  border-left: 3px solid var(--color-rockstar);
  border-radius: 2px;
}

.built-closer h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-grungy);
}

.built-closer p {
  font-size: 1rem;
  margin: 0;
  color: var(--color-grungy);
}

.centered-cta {
  text-align: center;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .built-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================
   Shipped strip — proof images between 4 and 5
   ============================================ */
.shipped-strip {
  background: var(--color-fresh);
  padding: 3.5rem 0 4rem;
  border-top: 1px solid rgba(207, 192, 174, 0.5);
  border-bottom: 1px solid rgba(207, 192, 174, 0.5);
}

.shipped-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-rockstar);
  text-align: center;
  margin: 0 0 2rem;
}

.shipped-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.shipped-item {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(207, 192, 174, 0.55);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 30px -22px rgba(24, 24, 29, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shipped-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -22px rgba(24, 24, 29, 0.3);
}

.shipped-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  border-bottom: 1px solid rgba(207, 192, 174, 0.4);
}

.shipped-item figcaption {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-grungy);
  padding: 0.85rem 1rem;
  text-align: center;
  letter-spacing: -0.005em;
}

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

/* ============================================
   SECTION 5: How It Works — 4 cards in a row (cream)
   ============================================ */
.how-it-works {
  background: var(--color-fresh);
  padding: var(--section-py) 0;
}

.phases {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  align-items: stretch;
  counter-reset: phase;
}

.phase {
  counter-increment: phase;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.65rem 1.75rem;
  background: #fff;
  border: 1px solid rgba(207, 192, 174, 0.55);
  border-radius: 10px;
  box-shadow: 0 14px 30px -22px rgba(24, 24, 29, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.phase:nth-child(even) {
  transform: translateY(1.25rem);
}

.phase:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -22px rgba(24, 24, 29, 0.3);
}

.phase:nth-child(even):hover {
  transform: translateY(calc(1.25rem - 4px));
}

.phase-icon {
  width: 30px;
  height: 30px;
  color: var(--color-rockstar);
  margin-bottom: 0.9rem;
  display: block;
}

.phase::before {
  content: counter(phase);
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--color-rockstar);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.phase-label {
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--color-dreamy);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.5rem;
}

.phase h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-grungy);
}

.phase p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-grungy);
  margin: 0;
}

@media (max-width: 980px) {
  .phases { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .phases::before { display: none; }
}

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

/* ============================================
   SECTION 6: Why Me — DARK background
   ============================================ */
.why-me {
  background: var(--color-grungy);
  color: var(--color-fresh);
  padding: var(--section-py) 0;
}

.why-head h2 {
  color: var(--color-fresh);
}

.why-body {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}

.why-headshot {
  margin: 0 auto 2rem;
  width: 160px;
}

.why-headshot img {
  display: block;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid var(--color-rockstar);
  box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.55);
}

.why-headshot figcaption {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-rockstar);
}

.why-body p {
  color: var(--color-fresh);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.why-thesis {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem) !important;
  line-height: 1.4;
  color: var(--color-rockstar) !important;
  margin-top: 2.5rem !important;
}

.credibility-eyebrow {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-rockstar);
  text-align: center;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  max-width: 320px;
}

.credibility-eyebrow::before,
.credibility-eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(207, 192, 174, 0.25);
}

.credibility-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 760px;
  margin: 0 auto;
}

.fact {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  background: rgba(240, 235, 227, 0.05);
  border: 1px solid rgba(207, 192, 174, 0.2);
  border-radius: 10px;
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.fact-icon {
  width: 28px;
  height: 28px;
  color: var(--color-rockstar);
  margin-bottom: 0.85rem;
  display: block;
}

.fact:hover {
  background: rgba(240, 235, 227, 0.07);
  border-color: rgba(185, 121, 91, 0.45);
  transform: translateY(-2px);
}

.fact strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-rockstar);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.fact span {
  display: block;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-cozy);
}

.fact-wide { grid-column: 1 / -1; }

.nd-line {
  max-width: 760px;
  margin: 2rem auto 0;
  text-align: center;
  font-style: italic;
  font-size: 1rem;
  color: var(--color-cozy);
}

@media (max-width: 560px) {
  .credibility-facts { grid-template-columns: 1fr; }
  .fact-wide { grid-column: auto; }
}

/* ============================================
   SECTION 7: Who This Is For — cream, centered
   ============================================ */
.who {
  background: var(--color-fresh);
  padding: var(--section-py) 0;
}

.who .container {
  max-width: 760px;
}

.who .centered-head {
  margin-bottom: 3rem;
}

.profiles {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2.75rem;
}

.profile p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-grungy);
  margin: 0;
}

.profile strong {
  color: var(--color-grungy);
  font-weight: 700;
}

.who-caveat {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-grungy);
  opacity: 0.7;
  padding-top: 2rem;
  border-top: 1px solid var(--color-cozy);
  text-align: center;
}

/* ============================================
   CTA intro (pricing) — merged into CTA section
   ============================================ */
.cta-intro {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}

.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-fresh);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.pricing-break {
  display: block;
  color: var(--color-rockstar);
  font-style: italic;
  font-size: 0.85em;
  margin-top: 0.25rem;
}

.pricing-installment {
  display: block;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  font-style: italic;
  font-weight: 500;
  color: var(--color-rockstar);
  margin-bottom: 2.25rem;
  line-height: 1.5;
}

.cta-body {
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
}

.cta-body p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-cozy);
}

.pricing-availability {
  font-style: italic;
  color: var(--color-rockstar);
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(207, 192, 174, 0.2);
  margin-top: 2rem !important;
}

/* ============================================
   SECTION 9: CTA — DARK background, two columns
   ============================================ */
.cta-section {
  position: relative;
  background: var(--color-grungy);
  color: var(--color-fresh);
  padding: var(--section-py) 0;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(185, 121, 91, 0.14), transparent 55%),
    radial-gradient(ellipse at 10% 100%, rgba(24, 69, 86, 0.35), transparent 55%);
  pointer-events: none;
}

.cta-section > .container { position: relative; z-index: 1; }

.cta-paths {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.cta-path {
  padding: 2.5rem 2.25rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.path-book {
  background: linear-gradient(160deg, var(--color-rockstar) 0%, #a5694d 100%);
  color: var(--color-grungy);
  justify-content: space-between;
  min-height: 380px;
  box-shadow: 0 24px 50px -28px rgba(185, 121, 91, 0.55);
  position: relative;
  overflow: hidden;
}

.path-book::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(240, 235, 227, 0.12);
  pointer-events: none;
}

.path-book h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.65rem, 2.6vw, 2rem);
  color: var(--color-grungy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.path-book p {
  color: rgba(24, 24, 29, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.path-book .path-lede {
  font-weight: 500;
  color: var(--color-grungy);
  margin-bottom: 1.25rem;
}

.path-book .path-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  position: relative;
  z-index: 1;
}

.path-book .path-includes li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(24, 24, 29, 0.85);
  margin-bottom: 0.6rem;
}

.path-book .path-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--color-grungy);
  border-radius: 50%;
}

.path-book .btn {
  background: var(--color-grungy);
  color: var(--color-fresh);
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.path-book .btn:hover {
  background: #000;
  color: var(--color-fresh);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.path-form {
  background: rgba(240, 235, 227, 0.04);
  border: 1px solid rgba(207, 192, 174, 0.2);
}

.path-form h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.2vw, 1.6rem);
  color: var(--color-fresh);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: var(--color-cozy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 0.9rem;
  background: var(--color-fresh);
  color: var(--color-grungy);
  border: 2px solid transparent;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-rockstar);
  box-shadow: 0 0 0 3px rgba(185, 121, 91, 0.2);
}

.form-group input { height: 50px; }
.form-group textarea { min-height: 110px; resize: vertical; }

.path-form .btn-full {
  margin-top: 0.5rem;
  height: 50px;
}

.form-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  min-height: 1.5em;
}

.status-error { color: #e57373; }

.form-confirmation { text-align: center; padding: 2rem 0; }
.form-confirmation h3 { color: var(--color-rockstar); margin-bottom: 0.5rem; }
.form-confirmation p { color: var(--color-cozy); }

.cta-shared {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.95rem;
  color: var(--color-cozy);
  font-style: italic;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .cta-paths { grid-template-columns: 1fr; gap: 1.5rem; }
  .path-book { min-height: auto; }
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--color-grungy);
  border-top: 1px solid rgba(207, 192, 174, 0.08);
  padding: 1.5rem 0;
  text-align: center;
}

.site-footer p {
  font-size: 0.75rem;
  color: var(--color-cozy);
  opacity: 0.4;
  margin: 0;
}

/* ============================================
   Tech strip (full-width, logos)
   ============================================ */
.tech-strip {
  background: var(--color-cozy);
  padding: 3rem 0;
  border-top: 1px solid rgba(24, 24, 29, 0.08);
  border-bottom: 1px solid rgba(24, 24, 29, 0.08);
}

.tech-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.tech-strip-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--color-moody);
  margin-bottom: 1.75rem;
  letter-spacing: 0.01em;
}

.tech-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.25rem 2.75rem;
  margin: 0 auto 1.5rem;
  max-width: 1120px;
}

.tech-logos img {
  height: 28px;
  width: auto;
  opacity: 0.68;
  transition: opacity 0.2s ease, transform 0.2s ease;
  filter: saturate(0.9);
}

.tech-logos img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.tech-strip-note {
  font-size: 0.88rem;
  color: rgba(6, 30, 44, 0.62);
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .tech-logos { gap: 1.5rem 1.75rem; }
  .tech-logos img { height: 22px; }
}

/* ============================================
   Built columns (compressed)
   ============================================ */
.built-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 auto 3rem;
  max-width: 1060px;
}

.built-column .built-cat-label {
  margin-bottom: 1rem;
}

.built-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.built-list li {
  position: relative;
  padding: 1rem 0 1rem 1.25rem;
  border-top: 1px solid rgba(24, 24, 29, 0.1);
  font-size: 0.95rem;
  line-height: 1.55;
}

.built-list li:last-child {
  border-bottom: 1px solid rgba(24, 24, 29, 0.1);
}

.built-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 6px;
  height: 6px;
  background: var(--color-rockstar);
  border-radius: 50%;
}

.built-list li strong {
  display: inline;
  color: var(--color-grungy);
  font-weight: 600;
}

@media (max-width: 860px) {
  .built-columns { grid-template-columns: 1fr; gap: 1.5rem; max-width: 560px; }
}

/* ============================================
   Why layout (headshot + body side-by-side)
   ============================================ */
.why-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.why-layout .why-headshot {
  margin: 0;
  width: 220px;
  position: sticky;
  top: 2rem;
}

.why-layout .why-headshot img {
  width: 220px;
  height: 220px;
}

.why-layout .why-body {
  max-width: none;
  margin: 0;
  text-align: left;
}

.why-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.2;
  color: var(--color-fresh);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.why-h2 em {
  font-style: italic;
  color: var(--color-rockstar);
  display: inline;
}

@media (max-width: 760px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .why-layout .why-headshot {
    margin: 0 auto;
    position: static;
    width: 160px;
  }
  .why-layout .why-headshot img { width: 160px; height: 160px; }
  .why-layout .why-body { text-align: center; }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 480px) {
  body { font-size: 1rem; }
  .btn-primary { padding: 0.9rem 1.75rem; font-size: 0.9rem; }
  .btn-lg { padding: 1rem 2rem; font-size: 0.95rem; }
  h1 { font-size: clamp(1.85rem, 7vw, 2.5rem); }
}
