/*
Theme Name: Evocative Travel
Theme URI: https://evocativetravel.com
Description: Custom theme for Evocative Travel
Version: 1.0
Author: Evocative Travel
*/

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --smoked-slate: #333333;
  --graphite:     #3A3A3A;
  --flint:        #424242;
  --brass:        #9A7A32;
  --cashmere:     #F4F1ED;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 12px;
  background: var(--smoked-slate);
  color: var(--cashmere);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
}

h1 { font-size: clamp(44px, 5.5vw, 68px); }
h2 { font-size: clamp(32px, 3.5vw, 44px); }
h3 { font-size: clamp(18px, 1.8vw, 22px); }

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 16px;
}

.body-text {
  font-size: 11px;
  line-height: 2;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--brass);
  color: var(--cashmere);
  border: 0.5px solid var(--brass);
  padding: 14px 32px;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary:hover { opacity: 0.85; }

.btn-ghost {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  color: var(--cashmere);
  border: 0.5px solid var(--cashmere);
  padding: 14px 32px;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-ghost:hover { opacity: 0.7; }

.btn-brass-ghost {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  color: var(--brass);
  border: 0.5px solid var(--brass);
  padding: 14px 32px;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-brass-ghost:hover { opacity: 0.7; }

.btn-inverted {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--cashmere);
  color: var(--brass);
  border: 0.5px solid var(--cashmere);
  padding: 14px 32px;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-inverted:hover { opacity: 0.85; }

.text-link {
  font-size: 11px;
  color: var(--cashmere);
  border-bottom: 0.5px solid var(--brass);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.text-link:hover { opacity: 0.7; }

.text-link-dark {
  font-size: 11px;
  color: var(--smoked-slate);
  border-bottom: 0.5px solid var(--brass);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.text-link-dark:hover { opacity: 0.6; }

/* --- Layout Utilities --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.centered-col {
  max-width: 660px;
  margin: 0 auto;
  text-align: left;
}

.centered-col-narrow {
  max-width: 680px;
  margin: 0 auto;
}

/* --- Section Backgrounds --- */
.bg-slate    { background: var(--smoked-slate); }
.bg-graphite { background: var(--graphite); }
.bg-flint    { background: var(--flint); }
.bg-brass    { background: var(--brass); }
.bg-cashmere { background: var(--cashmere); color: var(--smoked-slate); }

/* --- Thin Rule --- */
.thin-rule-section {
  padding: 0 40px;
}

.thin-rule {
  border: none;
  border-top: 0.5px solid rgba(154, 122, 50, 0.25);
  margin: 0;
}

/* ============================================
   NAVIGATION
============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  background: var(--smoked-slate);
  border-bottom: 0.5px solid rgba(244, 241, 237, 0.08);
}

.site-nav.nav-transparent {
  background: transparent;
  border-bottom: none;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--cashmere);
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.3;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 241, 237, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--cashmere); }

.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  border: 0.5px solid var(--brass);
  padding: 10px 22px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.75; }

/* ============================================
   HOME PAGE
============================================ */

/* Section 1 — Video Hero */
.hero-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 40px;
}

.hero-content h1 {
  margin-bottom: 28px;
  color: var(--cashmere);
}

.hero-subheading {
  font-size: 11px;
  color: rgba(244, 241, 237, 0.6);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 2;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}

.scroll-indicator {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(244, 241, 237, 0.25);
  text-transform: uppercase;
}

/* Section 3 — The Difference */
.difference-section {
  padding: 100px 0;
}

.difference-text {
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.difference-text h2 {
  color: var(--smoked-slate);
  margin-bottom: 16px;
}

.difference-tagline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
  display: block;
}

.difference-text .body-text {
  color: var(--smoked-slate);
  margin-bottom: 32px;
}

.difference-photo {
  position: relative;
  min-height: 600px;
}

/* Section 4 — How We Work */
.how-we-work-section {
  padding: 100px 40px;
}

.how-we-work-header {
  text-align: center;
  margin-bottom: 60px;
}

.how-we-work-header h2 {
  color: var(--cashmere);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--brass);
}

.card {
  background: var(--graphite);
  display: flex;
  flex-direction: column;
}

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

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 32px;
  flex: 1;
}

.card-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 72px;
  color: rgba(154, 122, 50, 0.2);
  line-height: 1;
  margin-bottom: 8px;
}

.card h3 {
  color: var(--cashmere);
  margin-bottom: 12px;
}

.card .body-text {
  color: rgba(244, 241, 237, 0.7);
}

/* Section 5 — Pullquote */
.pullquote-section {
  padding: 100px 40px;
  text-align: center;
}

.pullquote-section blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 34px);
  color: var(--cashmere);
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.4;
}

.pullquote-attribution {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 241, 237, 0.6);
}

/* Section 6 — About Teaser */
.about-teaser-section {
  padding: 100px 0;
}

.about-teaser-photo {
  min-height: 580px;
  position: relative;
}

.about-teaser-text {
  padding: 80px 80px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-teaser-text h2 {
  color: var(--smoked-slate);
  margin-bottom: 20px;
}

.about-teaser-text .body-text {
  color: var(--smoked-slate);
  margin-bottom: 32px;
}

/* ============================================
   ABOUT PAGE
============================================ */
.about-hero {
  min-height: 500px;
  margin-top: 81px;
}

.about-hero-photo {
  position: relative;
  min-height: 500px;
}

.about-hero-text {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--smoked-slate);
}

.about-hero-text h1 {
  margin-bottom: 24px;
}

.story-section {
  padding: 100px 40px;
}

.story-section .eyebrow { margin-bottom: 24px; }

.story-section h2 {
  color: var(--smoked-slate);
  margin-bottom: 40px;
}

.story-section p {
  color: var(--smoked-slate);
  font-size: 12px;
  line-height: 2;
  margin-bottom: 24px;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.story-section p strong {
  font-weight: 500;
}

.photo-break {
  width: 100%;
  height: 380px;
  overflow: hidden;
}

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

/* How I Work */
.how-i-work-section {
  padding: 100px 40px;
}

.how-i-work-header {
  text-align: center;
  margin-bottom: 60px;
}

.how-i-work-header h2 { color: var(--cashmere); }

.questions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5px;
  background: rgba(154, 122, 50, 0.2);
  max-width: 900px;
  margin: 0 auto;
}

.question-card {
  background: var(--graphite);
  padding: 48px;
}

.question-card p.question {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
  color: var(--cashmere);
  margin-bottom: 12px;
  line-height: 1.3;
}

.question-card p.answer {
  font-size: 11px;
  color: rgba(244, 241, 237, 0.6);
  line-height: 1.8;
}

/* Credentials */
.credentials-section {
  padding: 100px 40px;
}

.credentials-text h2 {
  color: var(--smoked-slate);
  margin-bottom: 20px;
}

.credentials-text .body-text {
  color: var(--smoked-slate);
}

.credentials-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.credentials-list li {
  font-size: 11px;
  color: var(--smoked-slate);
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(51, 51, 51, 0.15);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.credentials-list li::before {
  content: '—';
  color: var(--brass);
  position: absolute;
  left: 0;
}

/* About CTA */
.about-cta-section {
  padding: 100px 40px;
  text-align: center;
}

.about-cta-section h2 {
  margin-bottom: 20px;
}

.about-cta-section p {
  font-size: 11px;
  color: rgba(244, 241, 237, 0.7);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 2;
}

/* ============================================
   EXPERIENCES PAGE
============================================ */
.page-hero-section {
  padding: 180px 40px 100px;
  text-align: center;
  background: var(--smoked-slate);
}

.page-hero-section h1 { margin-bottom: 24px; }

.page-hero-section .body-text {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(244, 241, 237, 0.7);
}

.experience-section {
  padding: 100px 0;
}

.experience-text {
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-text.right {
  padding: 80px 80px 80px 60px;
}

.experience-text h2 { margin-bottom: 20px; }

.experience-text .body-text { margin-bottom: 32px; }

.experience-photo {
  min-height: 520px;
  position: relative;
}

.pricing-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 0.5px solid var(--brass);
  margin-bottom: 32px;
}

.pricing-item {
  padding: 20px 24px;
  border-right: 0.5px solid var(--brass);
  text-align: center;
}

.pricing-item:last-child { border-right: none; }

.pricing-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 241, 237, 0.5);
  display: block;
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--cashmere);
}

/* The Remedy — dark bg */
.remedy-text { color: var(--cashmere); }
.remedy-text h2 { color: var(--cashmere); }
.remedy-text .body-text { color: rgba(244, 241, 237, 0.75); }

/* The Standing Order — brass bg */
.standing-order-section {
  padding: 100px 0;
  background: var(--brass);
}

.standing-order-text {
  padding: 80px 80px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.standing-order-text h2 { color: var(--cashmere); margin-bottom: 20px; }
.standing-order-text .body-text { color: rgba(244, 241, 237, 0.85); margin-bottom: 32px; }

.availability-badge {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cashmere);
  border: 0.5px solid rgba(244, 241, 237, 0.4);
  padding: 8px 16px;
  display: inline-block;
  margin-bottom: 32px;
}

.price-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-style: italic;
  font-weight: 300;
  color: var(--cashmere);
  line-height: 1;
  margin-bottom: 8px;
}

.price-sublabel {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 241, 237, 0.6);
  margin-bottom: 32px;
  display: block;
}

/* Virtuoso footnote */
.virtuoso-section {
  padding: 60px 40px;
  text-align: center;
  background: var(--flint);
}

.virtuoso-section p {
  font-size: 11px;
  color: rgba(244, 241, 237, 0.7);
  margin-bottom: 12px;
}

/* ============================================
   CONTACT PAGE
============================================ */
.contact-hero {
  min-height: 600px;
  margin-top: 81px;
}

.contact-hero-photo {
  position: relative;
  min-height: 600px;
}

.contact-hero-text {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--smoked-slate);
}

.contact-hero-text h1 { margin-bottom: 24px; }

.contact-hero-text .body-text {
  color: rgba(244, 241, 237, 0.7);
  margin-bottom: 40px;
}

.contact-details {
  margin-bottom: 32px;
}

.contact-detail {
  font-size: 11px;
  color: rgba(244, 241, 237, 0.6);
  margin-bottom: 8px;
}

.contact-detail a {
  color: rgba(244, 241, 237, 0.6);
  transition: color 0.2s;
}

.contact-detail a:hover { color: var(--cashmere); }

.reply-note {
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 241, 237, 0.3);
  margin-top: 16px;
}

/* Featured Testimonial */
.featured-testimonial {
  padding: 100px 40px;
  text-align: center;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  line-height: 0.5;
  color: rgba(154, 122, 50, 0.2);
  margin-bottom: 40px;
  display: block;
}

.featured-testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--cashmere);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.testimonial-name {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}

/* Testimonial Grid */
.testimonial-grid-section {
  padding: 100px 40px;
}

.testimonial-grid-section .how-we-work-header { margin-bottom: 60px; }
.testimonial-grid-section .how-we-work-header h2 { color: var(--smoked-slate); }
.testimonial-grid-section .eyebrow { color: var(--brass); }

.testimonial-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(51, 51, 51, 0.1);
}

.testimonial-card {
  background: var(--cashmere);
  padding: 40px;
}

.stars {
  color: var(--brass);
  font-size: 13px;
  margin-bottom: 16px;
  display: block;
}

.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--smoked-slate);
  line-height: 1.5;
  margin-bottom: 20px;
}

.testimonial-card .testimonial-name {
  color: var(--smoked-slate);
}

/* ============================================
   JOURNAL PAGE
============================================ */
.featured-post-section {
  padding: 80px 40px;
}

.featured-post-section .two-col { min-height: 480px; }

.featured-post-photo {
  position: relative;
  min-height: 480px;
}

.featured-post-text {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-post-text .eyebrow { margin-bottom: 12px; }

.featured-post-text h2 { color: var(--smoked-slate); margin-bottom: 16px; }

.post-teaser {
  font-size: 12px;
  color: rgba(51, 51, 51, 0.75);
  margin-bottom: 16px;
  line-height: 1.8;
}

.post-meta {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(51, 51, 51, 0.45);
  margin-bottom: 24px;
}

.journal-grid-section {
  padding: 80px 40px;
}

.journal-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
}

.journal-card {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}

.journal-card-photo {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.journal-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--brass);
  color: var(--cashmere);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  z-index: 1;
}

.journal-card-body {
  padding: 28px;
}

.journal-card-body h3 {
  color: var(--cashmere);
  margin-bottom: 10px;
}

.bg-graphite .journal-card-body h3 { color: var(--cashmere); }
.bg-cashmere .journal-card-body h3 { color: var(--smoked-slate); }

.journal-card-teaser {
  font-size: 10px;
  color: rgba(244, 241, 237, 0.5);
  margin-bottom: 12px;
  line-height: 1.7;
}

.bg-cashmere .journal-card-teaser { color: rgba(51, 51, 51, 0.6); }

.read-time {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ============================================
   SINGLE POST
============================================ */
.single-post {
  padding-top: 81px;
}

.post-header {
  padding: 80px 40px 60px;
  text-align: center;
  background: var(--smoked-slate);
}

.post-header .eyebrow { margin-bottom: 20px; }

.post-header h1 {
  max-width: 680px;
  margin: 0 auto 20px;
  color: var(--cashmere);
}

.post-header .post-meta { color: rgba(244, 241, 237, 0.4); }

.post-hero-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.post-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 40px;
  color: var(--smoked-slate);
  background: var(--cashmere);
}

.post-content p {
  font-size: 12px;
  line-height: 2;
  margin-bottom: 24px;
}

.post-content strong { font-weight: 500; }

.post-content blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--smoked-slate);
  padding-left: 32px;
  margin: 40px 0;
  border-left: 0.5px solid var(--brass);
  line-height: 1.4;
}

.post-nav {
  border-top: 0.5px solid var(--brass);
  display: flex;
  justify-content: space-between;
  padding: 40px;
  background: var(--cashmere);
  max-width: 680px;
  margin: 0 auto;
}

.post-nav a {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--smoked-slate);
  transition: color 0.2s;
}

.post-nav a:hover { color: var(--brass); }

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: var(--smoked-slate);
  border-top: 0.5px solid rgba(244, 241, 237, 0.08);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 241, 237, 0.3);
  line-height: 1.8;
}

.footer-right {
  display: flex;
  gap: 28px;
}

.footer-right a {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 241, 237, 0.4);
  transition: color 0.2s;
}

.footer-right a:hover { color: var(--cashmere); }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 900px) {
  .two-col,
  .three-col,
  .cards-grid,
  .questions-grid,
  .testimonial-cards,
  .journal-cards,
  .pricing-strip { grid-template-columns: 1fr; }

  .site-nav { padding: 20px 24px; }
  .container { padding: 0 24px; }
  .hero-content { padding: 0 24px; }
  .hero-buttons { flex-direction: column; align-items: center; }

  .difference-text,
  .about-teaser-text,
  .experience-text,
  .standing-order-text,
  .contact-hero-text,
  .about-hero-text,
  .featured-post-text { padding: 48px 24px; }

  .difference-photo,
  .about-teaser-photo,
  .experience-photo,
  .contact-hero-photo,
  .about-hero-photo,
  .featured-post-photo { min-height: 320px; }

  .pullquote-section,
  .story-section,
  .how-i-work-section,
  .credentials-section,
  .how-we-work-section,
  .about-cta-section,
  .featured-testimonial,
  .testimonial-grid-section,
  .journal-grid-section,
  .featured-post-section { padding-left: 24px; padding-right: 24px; }

  .site-footer { flex-direction: column; gap: 24px; text-align: center; }
  .nav-links { display: none; }
  .post-content, .post-nav { padding-left: 24px; padding-right: 24px; }
  .question-card { padding: 32px 24px; }
}
