/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #000000;
  --white: #ffffff;
  --chamoisee: #a07f56;
  --khaki: #BCB2A6;
  --linen: #ede3da;
  --ebony: #5D685B;
  --sage: #a4a082;
  --paynes-gray: #607077;
  --cadet-gray: #789094;
  --russet: #915335;
  --dark-bg: #0a0a0a;
  --section-dark: #111111;
}

html { scroll-behavior: smooth; font-size: 19px; }

body {
  font-family: 'EB Garamond', Georgia, serif;
  color: var(--white);
  background-color: var(--black);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--chamoisee); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--khaki); }

/* ========================================
   SKIP LINK (accessibility)
   ======================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.8rem 1.5rem;
  background: var(--chamoisee);
  color: var(--black);
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: 0 0 4px 4px;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--chamoisee);
  margin-bottom: 1rem;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: 0.04em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: 0.03em; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: 0.02em; }

.body-text {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.85;
  color: #d6d0c7;
}

.body-text-white { color: rgba(255,255,255,0.88); }
.text-gold { color: var(--chamoisee); }
.text-linen { color: var(--linen); }

/* ========================================
   LAYOUT
   ======================================== */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

.section-linen {
  background-color: var(--linen);
  color: var(--black);
}

.section-linen .body-text { color: #3a3a3a; }
.section-linen h2, .section-linen h3 { color: var(--black); }

.section-dark { background-color: var(--section-dark); }

.divider {
  width: 60px;
  height: 2px;
  background: var(--chamoisee);
  margin: 2.5rem auto;
}

.divider-left {
  margin-left: 0;
  margin-right: auto;
}

/* ========================================
   CTA BUTTON
   ======================================== */
.cta-button {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem 2.8rem;
  border: 1.5px solid var(--chamoisee);
  color: var(--chamoisee);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
}

.cta-button:hover {
  background: var(--chamoisee);
  color: var(--black);
}

.cta-button-solid {
  background: var(--chamoisee);
  color: var(--black);
}

.cta-button-solid:hover {
  background: transparent;
  color: var(--chamoisee);
}

/* ========================================
   NAV
   ======================================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.7rem 2rem;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.3s ease;
}

nav.scrolled { padding: 0.55rem 2rem; }

nav .logo img,
nav .logo svg {
  height: 28px;
  width: auto;
}

.nav-logo-img {
  height: 28px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo-text:hover {
  color: var(--linen);
}

nav .nav-cta {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.55rem 1.6rem;
  border: 1px solid var(--chamoisee);
  color: var(--chamoisee);
  transition: all 0.3s ease;
}

nav .nav-cta:hover {
  background: var(--chamoisee);
  color: var(--black);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: visible;
  padding-top: 100px;
  padding-bottom: 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000 url('images/hero-venue.jpg') center/cover no-repeat;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.45);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 1rem 2rem;
}

.hero-logo {
  width: 180px;
  margin: 0 auto 1.5rem;
}

.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--linen);
  margin-bottom: 1.2rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 0.8rem;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
}

.hero-sub {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(1.05rem, 1.6vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin: 0 auto 1.2rem;
}

.hero .tagline {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--chamoisee);
  margin-bottom: 1rem;
}

.hero-details {
  font-family: 'EB Garamond', serif;
  font-size: 1.15rem;
  color: var(--linen);
  margin-bottom: 1.4rem;
}

.hero-details span {
  margin: 0 0.8rem;
  color: rgba(255,255,255,0.2);
}

/* ========================================
   LETTER SECTION
   ======================================== */
.letter p {
  margin-bottom: 1.5rem;
}

.letter .salutation {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 2rem;
}

.letter-emphasis {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--chamoisee);
}

.letter-buildline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--chamoisee);
  margin-top: 1rem;
  line-height: 1.3;
}

/* ========================================
   INLINE STATS
   ======================================== */
.stat-inline {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  margin: 2.5rem 0;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 2px solid rgba(160,127,86,0.35);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--chamoisee);
}

.stat-src {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--khaki);
  opacity: 0.65;
  margin-top: 0.6rem;
}

/* ========================================
   IMAGE SECTIONS
   ======================================== */
.full-image-break {
  position: relative;
  height: 50vh;
  min-height: 350px;
  overflow: hidden;
}

.full-image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-image-break .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.6) 100%);
}

/* ========================================
   ABOUT RE SECTION
   ======================================== */
.about-re {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-re-image {
  position: relative;
}

.about-re-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}

.about-re-image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--chamoisee);
  z-index: -1;
}

/* ========================================
   EXPERIENCE GRID (visual cards)
   ======================================== */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.experience-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(160,127,86,0.12);
  overflow: hidden;
  transition: border-color 0.4s ease;
}

.experience-card:hover {
  border-color: rgba(160,127,86,0.3);
}

.experience-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.experience-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.experience-card:hover .experience-card-img img {
  transform: scale(1.03);
}

.experience-card-body {
  padding: 2rem;
}

.experience-card-body h3 {
  font-size: 1.15rem;
  color: var(--chamoisee);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.experience-card-body .body-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ========================================
   SHIFT QUOTE
   ======================================== */
.shift-quote {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-style: italic;
  line-height: 1.8;
  color: var(--chamoisee);
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================
   OUTCOME GRID
   ======================================== */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.outcome-card {
  padding: 2rem 1.5rem;
  border-top: 2px solid var(--chamoisee);
}

.outcome-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--chamoisee);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.outcome-card h3 {
  font-size: 1.2rem;
  text-transform: none;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.outcome-card .body-text {
  font-size: 1.05rem;
  line-height: 1.75;
}

.outcome-source {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--khaki);
  opacity: 0.6;
  margin-top: 0.75rem;
}

/* ========================================
   HIGHER GRID (acronym)
   ======================================== */
.higher-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 3rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.higher-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(160,127,86,0.1);
}

.higher-item.last {
  border-bottom: none;
}

.higher-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--chamoisee);
  line-height: 1;
  min-width: 32px;
}

.higher-item .body-text {
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ========================================
   VALUE STACK (Investment)
   ======================================== */
.value-stack {
  max-width: 650px;
  margin: 2rem auto;
  text-align: left;
}

.value-stack-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(160,127,86,0.12);
}

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

.value-stack-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--russet);
  margin-bottom: 0.5rem;
}

.value-stack-item p {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.75;
  color: #2e2e2e;
}

.anchor-compare {
  max-width: 600px;
  margin: 2.5rem auto;
  padding: 2rem;
  background: rgba(0,0,0,0.04);
  text-align: left;
}

/* ========================================
   INVESTMENT SECTION
   ======================================== */
.investment-section {
  text-align: center;
}

.investment-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--chamoisee);
  margin: 1.5rem 0;
}

/* ========================================
   QUALIFICATION LIST
   ======================================== */
.qual-list {
  list-style: none;
  padding: 0;
}

.qual-list li {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(160,127,86,0.12);
  font-size: 1.15rem;
  line-height: 1.8;
  position: relative;
  padding-left: 1.5rem;
}

.qual-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.65rem;
  width: 6px;
  height: 6px;
  background: var(--chamoisee);
  border-radius: 50%;
}

.not-for-you .qual-list li::before {
  background: var(--khaki);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(160,127,86,0.15);
  padding: 2.5rem;
}

.testimonial-card blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--linen);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author .name {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--chamoisee);
}

.testimonial-author .role {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  color: var(--linen);
  opacity: 0.75;
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
  text-align: center;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: url('images/firepit-night.jpg') center center / cover no-repeat;
  filter: brightness(0.25);
}

.final-cta .container {
  position: relative;
  z-index: 2;
}

/* ========================================
   APPLICATION FORM
   ======================================== */
.application-box {
  max-width: 640px;
  margin: 2.5rem auto 0;
  padding: 3rem 2.5rem;
  background: rgba(20,18,15,0.92);
  border: 1px solid rgba(160,127,86,0.3);
  backdrop-filter: blur(16px);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--linen);
  margin-bottom: 0.6rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.15rem;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.15rem;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(160,127,86,0.4);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-input:focus {
  border-color: var(--chamoisee);
  background: rgba(255,255,255,0.14);
  box-shadow: 0 0 0 2px rgba(160,127,86,0.15);
}

.form-input::placeholder {
  color: rgba(188,178,166,0.55);
  font-style: italic;
}

.form-input.error {
  border-color: #c0392b;
  background: rgba(192,57,43,0.08);
}

.form-error {
  display: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.76rem;
  color: #e74c3c;
  margin-top: 0.4rem;
  letter-spacing: 0.03em;
}

.form-error.visible {
  display: block;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.15rem;
  color: var(--linen);
  line-height: 1.6;
}

.checkbox-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid rgba(160,127,86,0.5);
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  position: relative;
  margin-top: 3px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.checkbox-item input[type="checkbox"]:hover {
  border-color: var(--chamoisee);
  background: rgba(255,255,255,0.12);
}

.checkbox-item input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--chamoisee);
  outline-offset: 2px;
}

.checkbox-item input[type="checkbox"]:checked {
  background: var(--chamoisee);
  border-color: var(--chamoisee);
}

.checkbox-item input[type="checkbox"]:checked::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid rgba(160,127,86,0.12);
  background: var(--black);
}

footer .footer-logo {
  width: 120px;
  margin: 0 auto 1.5rem;
  opacity: 0.6;
}

footer p {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--khaki);
  opacity: 0.6;
}

/* ========================================
   FOCUS STYLES (keyboard accessibility)
   ======================================== */
a:focus-visible,
.cta-button:focus-visible,
.nav-cta:focus-visible,
.form-input:focus-visible,
button:focus-visible {
  outline: 2px solid var(--chamoisee);
  outline-offset: 3px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE: Tablet
   ======================================== */
@media (max-width: 1024px) {
  .about-re { gap: 3rem; }
  .container-wide { padding: 0 1.5rem; }
  .testimonials-grid { gap: 1.5rem; }
  .experience-grid { gap: 1.5rem; }
  .outcome-grid { gap: 2rem; }
  .higher-grid { gap: 1rem 2rem; }
}

/* ========================================
   RESPONSIVE: Mobile
   ======================================== */
@media (max-width: 768px) {
  html { font-size: 16px; }
  section { padding: 3.5rem 0; }
  .container { padding: 0 1.5rem; }
  .container-wide { padding: 0 1.5rem; }

  .body-text { font-size: 1.05rem; line-height: 1.85; }

  nav { padding: 0.6rem 1.25rem; }
  nav.scrolled { padding: 0.5rem 1.25rem; }
  nav .logo img, nav .logo svg, .nav-logo-img { height: 24px; }
  .nav-logo-text { font-size: 0.95rem; }
  nav .nav-cta { padding: 0.5rem 1.2rem; font-size: 0.6rem; }

  .hero { min-height: 100svh; padding-top: 80px; padding-bottom: 1.5rem; }
  .hero-logo { width: 110px; margin-bottom: 0.8rem; }
  .hero-eyebrow { font-size: 0.8rem; letter-spacing: 0.25em; margin-bottom: 0.8rem; }
  .hero h1 { font-size: clamp(1.4rem, 5.5vw, 2rem); margin-bottom: 0.6rem; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 0.8rem; }
  .hero .tagline { font-size: 0.72rem; letter-spacing: 0.2em; margin-bottom: 0.8rem; }
  .hero-details { font-size: 0.95rem; margin-bottom: 0.8rem; }
  .hero-details span { display: block; margin: 0.3rem 0; color: transparent; }
  .cta-button { padding: 0.9rem 1.8rem; font-size: 0.75rem; letter-spacing: 0.15em; }

  .letter .salutation { font-size: 1.5rem; }
  .letter-emphasis { font-size: 1.2rem; padding-left: 1.2rem; }
  .letter-buildline { font-size: 1.35rem; }

  .stat-inline { padding: 1.2rem 0 1.2rem 1.2rem; }
  .stat-num { font-size: 1.4rem; }

  .full-image-break { height: 35vh; min-height: 250px; }

  .about-re {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-re-image::after { display: none; }
  .about-re-image img { aspect-ratio: 4/5; }

  .experience-grid { grid-template-columns: 1fr; }
  .experience-card-img { height: 180px; }
  .experience-card-body { padding: 1.5rem; }

  .outcome-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .outcome-card { padding: 1.5rem 1rem; }

  .higher-grid { grid-template-columns: 1fr; gap: 0.25rem; }
  .higher-item { padding: 0.8rem 0; }

  .qual-list li { font-size: 1.05rem; padding-left: 1.3rem; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 2rem 1.5rem; }
  .testimonial-card blockquote { font-size: 1.05rem; }

  .investment-amount { font-size: clamp(2.5rem, 10vw, 4rem); }
  .value-stack-item p { font-size: 1rem; }
  .anchor-compare { padding: 1.5rem; margin: 2rem auto; }
  .anchor-compare .body-text { font-size: 0.95rem; }

  .application-box { padding: 2rem 1.25rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  .form-label { font-size: 0.78rem; }
  .form-input { font-size: 1.05rem; padding: 0.9rem 1rem; }
  .checkbox-item { font-size: 1.05rem; }

  .final-cta { padding: 5rem 0; }
  .final-cta h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

  .hero { padding-bottom: env(safe-area-inset-bottom, 0px); }
}

/* ========================================
   RESPONSIVE: Small Phones
   ======================================== */
@media (max-width: 400px) {
  html { font-size: 16px; }
  .container { padding: 0 1.25rem; }
  .hero-content { padding: 1rem; }
  .hero-logo { width: 100px; }
  .hero h1 { font-size: 1.3rem; }
  .body-text { font-size: 1rem; }
  nav .nav-cta { padding: 0.5rem 1rem; font-size: 0.6rem; }
  .testimonial-card { padding: 1.5rem 1.25rem; }
  .application-box { padding: 1.5rem 1rem; }
  .cta-button { padding: 0.9rem 1.5rem; }
}

/* ========================================
   HOVER: touch device overrides
   ======================================== */
@media (hover: none) {
  .cta-button:hover { background: transparent; color: var(--chamoisee); }
  .cta-button-solid:hover { background: var(--chamoisee); color: var(--black); }
  nav .nav-cta:hover { background: transparent; color: var(--chamoisee); }
  .experience-card:hover { border-color: rgba(160,127,86,0.12); }
  .experience-card:hover .experience-card-img img { transform: none; }
}

/* ========================================
   ACCESSIBILITY: Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ========================================
   PRINT
   ======================================== */
@media print {
  nav, .cta-button, #application-form, .full-image-break, footer { display: none; }
  body { color: #000; background: #fff; }
  section { padding: 1rem 0; }
  .body-text, .body-text-white { color: #333; }
  .section-dark { background: #fff; }
  .section-linen { background: #fff; }
}