@import url('https://fonts.googleapis.com/css2?family=Bayon&family=Geist:wght@400;600&family=Inter:wght@300;400;500;600&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --teal:       #195756;
  --teal-dark:  #1d4542;
  --cream:      #E7E4DB;
  --gold:       #b8962e;
  --text:       #2a2a2a;
  --text-muted: #7a736a;
  --text-light: #e8e4dc;
}

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

html {
  scroll-behavior: smooth;
  background: #4C050C;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── NAV ─────────────────────────────────────────────────── */

nav {
  background: #4C050C;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 3.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 3.5rem;
  right: 3.5rem;
  height: 1px;
  background: #C19092;
  transition: opacity 0.35s ease;
}

nav.scrolled::after {
  opacity: 0;
}

.nav-logo {
  display: block;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav-logo img {
  height: 5rem;
  width: 5rem;
  object-fit: contain;
  display: block;
  transition: height 0.35s ease, width 0.35s ease;
}

.nav-logo.visible {
  opacity: 1;
  pointer-events: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
}

/* Default: show mint logo, hide burgundy logo */
.nav-logo .logo-teal     { display: none; }
.nav-logo .logo-burgundy { display: none; }

/* ─── NAV SCROLLED (index — triggers once hero leaves viewport) ── */

nav.scrolled {
  background: #E7E4DB;
  box-shadow: 0 1px 0 0 #333333;
}


nav.scrolled .nav-logo .logo-mint     { display: none; }
nav.scrolled .nav-logo .logo-burgundy { display: block; }

nav.scrolled .nav-links a {
  color: rgba(76, 5, 12, 0.65);
}

nav.scrolled .nav-links a:hover,
nav.scrolled .nav-links a.active {
  color: #4C050C;
}

/* ─── NAV LIGHT (inner pages — cream bg, burgundy links) ─── */

nav.nav-light {
  background: #E7E4DB;
}

nav.nav-light .nav-logo img {
  height: 5rem;
  width: 5rem;
}

nav.nav-light .nav-logo {
  opacity: 1;
  pointer-events: auto;
}

nav.nav-light .nav-links a {
  color: rgba(76, 5, 12, 0.65);
}

nav.nav-light .nav-links a:hover,
nav.nav-light .nav-links a.active {
  color: #4C050C;
}

/* ─── HOME HERO ───────────────────────────────────────────── */

.hero {
  background: #4C050C;
  padding: 5rem 3.5rem 6rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1.5px solid #333333;
}

.hero-text {
  font-size: 128px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-line1 {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1em;
  color: #E7E5DB;
  line-height: 1.18;
  display: block;
}

/* Cycling text */
.cycling-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 0.05em;
  /* Height driven by .cycling-sizer — no JS measurement needed */
}

/* Invisible in-flow clone of the active phrase.
   Because it lives in normal flow, it naturally sizes the wrapper to
   the current phrase's rendered height at any viewport width — no
   offsetHeight polling, no font-timing race conditions. */
.cycling-sizer {
  display: block;
  visibility: hidden;
  pointer-events: none;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.18;
}

.cycling-item {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.18;
  color: #AD9E89;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(105%);
  transition: none;
  will-change: transform, opacity;
}

.cycling-item.active {
  opacity: 1;
  transform: translateY(0);
  /* Slide up 0.7s; quick 0.2s fade-in so text is opaque once in view */
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.2s ease;
}

.cycling-item.leaving {
  opacity: 0;
  transform: translateY(-105%);
  /* Fast 0.2s fade-out ensures any geometric overlap with the incoming
     phrase is invisible long before the slide animation completes */
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.2s ease;
}

/* ─── PAGE HERO (inner pages) ─────────────────────────────── */

.page-hero {
  background: var(--teal);
  padding: 4.5rem 3.5rem 5rem;
}

.page-hero-label {
  font-family: 'Bayon', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.1rem;
}

.page-hero-title {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: white;
  line-height: 1.2;
  max-width: 640px;
}

/* ─── CONTENT SECTIONS ────────────────────────────────────── */

.section {
  padding: 5.5rem 3.5rem;
}

/* ─── SPLIT SECTION (image left, text right) ─────────────── */

.section-split {
  display: flex;
  padding: 0; /* image bleeds to edges; text column has its own padding */
  align-items: stretch;
}

.section-split-image {
  flex: 1;
  background: #E7E4DB;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.section-split-image img {
  width: 100%;
  height: auto;
  display: block;
}

.section-split-content {
  flex: 1;
  padding: 5.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  font-family: 'Bayon', sans-serif;
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  display: block;
}

.section-heading {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  line-height: 1.22;
  margin-bottom: 1.6rem;
}

.section-body {
  font-size: 0.875rem;
  line-height: 1.85;
  max-width: 520px;
  margin: 0 auto;
}

/* Cream variant */
.section-cream {
  background: var(--cream);
}

.section-cream .section-label { color: var(--teal); }
.section-cream .section-heading { color: var(--gold); }
.section-cream .section-body { color: var(--text-muted); }

/* Story as Strategy section overrides */
.section-story-strategy {
  background: #E7E4DB;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-story-strategy .section-split-image {
  padding: 4rem 3rem;
}

.section-story-strategy .section-split-image img {
  width: 66%;
  height: auto;
}

.section-story-strategy .section-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #AD9E89;
}

.section-story-strategy.section-cream.section-split .section-heading {
  color: #4C050C;
}

.section-story-strategy .section-body {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  color: #56483B;
}

/* Split section overrides */
.section-cream.section-split .section-heading {
  color: #8B5A38; /* warm brown — distinct from gold used in other sections */
}

.section-split-content .section-body {
  margin-left: 0;   /* flush left with the label and heading above */
  margin-right: 0;
  max-width: none;
}

/* Dark variant */
.section-dark {
  background: var(--teal-dark);
}

.section-dark .section-label { color: rgba(232, 228, 220, 0.5); }
.section-dark .section-heading { color: var(--text-light); }
.section-dark .section-body { color: rgba(232, 228, 220, 0.7); }

/* Alternate dark variant — warm charcoal, distinct from hero teal */
.section-alt-dark {
  background: #2e2b28;
}

.section-alt-dark .section-label { color: rgba(232, 228, 220, 0.45); }
.section-alt-dark .section-heading { color: var(--text-light); }
.section-alt-dark .section-body { color: rgba(232, 228, 220, 0.65); }

/* Who Is This For — warm brown full-width section */
.section-who-for {
  background: #56483B;
  border-top: 1px solid #333333;
}

.section-who-for .section-inner {
  text-align: left;
  max-width: 900px;
}

.section-who-for .section-body {
  max-width: none;
  margin: 0 0 1.75rem 0;
}

.section-who-for .section-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #AD9E89;
}

.section-who-for .section-heading {
  color: #E7E4DB;
}

.section-who-for .section-body {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  color: rgba(231, 228, 219, 0.8);
}

/* ─── ABOUT JAMIE ─────────────────────────────────────────── */

.section-about-jamie {
  background: #E7E4DB;
  display: flex;
  align-items: stretch;
  padding: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid #333333;
}

.about-jamie-text {
  flex: 1;
  padding: 5.5rem 3.5rem 5.5rem 7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-jamie-text .section-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #AD9E89;
  text-align: left;
}

.about-jamie-text .section-heading {
  color: #4C050C;
  text-align: left;
}

.about-jamie-text .section-body {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  color: #56483B;
  max-width: none;
  margin: 0 0 1.25rem 0;
  text-align: left;
}

.about-jamie-link {
  display: inline-block;
  align-self: flex-start;
  margin-top: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4C050C;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-jamie-image {
  flex: 1;
  min-height: 520px;
  background: #E7E4DB;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem;
}

.about-jamie-image img {
  width: auto;
  height: 100%;
  max-height: 500px;
  display: block;
  border: 1px solid #56483B;
}

/* ─── OFFERINGS SECTION ───────────────────────────────────── */

.offerings-section {
  border-top: 1px solid #333333;
  background-image: url('thesea.jpg');
  background-size: cover;
  background-position: center;
  padding: 5rem 3.5rem;
}

.offerings-eyebrow {
  display: block;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4C050C;
  margin-bottom: 3rem;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.offering-card {
  background: #E7E4DB;
  border: 1px solid #333333;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.offering-card-body {
  text-align: left;
}

.offering-card-heading {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.3;
  color: #56483B;
  margin-bottom: 1rem;
}

.offering-card-para {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #56483B;
}

.offering-card-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}

.offering-cta {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #56483B;
  text-decoration: none;
  border: 1px solid #333333;
  padding: 0.5rem 1.1rem;
  transition: background 0.2s, color 0.2s;
}

.offering-cta:hover {
  background: #56483B;
  color: #E7E4DB;
}

/* ─── IMAGE DIVIDER ───────────────────────────────────────── */

.image-divider {
  width: 100%;
  height: 55vh;
  overflow: hidden;
}

.image-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ─── SERVICES SECTION (home) ─────────────────────────────── */

.services-section {
  background: var(--cream);
  padding: 5.5rem 3.5rem;
}

.services-eyebrow {
  text-align: center;
  font-family: 'Bayon', sans-serif;
  font-size: 24px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 3rem;
}

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

.service-card {
  background: var(--teal);
  color: white;
  padding: 2.2rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  transition: transform 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card:nth-child(2) {
  background: var(--gold);
}

.service-card-title {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-card-link {
  display: inline-block;
  font-family: 'Bayon', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 0.45rem 0.9rem;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}

.service-card-link:hover {
  background: white;
  color: var(--teal);
}

.service-card:nth-child(2) .service-card-link:hover {
  color: var(--gold);
}

/* ─── SERVICES PAGE ───────────────────────────────────────── */

.service-detail {
  padding: 5.5rem 3.5rem;
}

.service-detail-inner {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.service-detail-label {
  font-family: 'Bayon', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-detail-title {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.service-detail-body {
  font-size: 0.875rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.service-detail-body + .service-detail-body {
  margin-top: -0.5rem;
}

.service-detail.cream { background: var(--cream); }
.service-detail.cream .service-detail-label { color: var(--teal); }
.service-detail.cream .service-detail-title { color: var(--gold); }
.service-detail.cream .service-detail-body { color: var(--text-muted); }

.service-detail.dark { background: var(--teal-dark); }
.service-detail.dark .service-detail-label { color: rgba(232,228,220,0.5); }
.service-detail.dark .service-detail-title { color: var(--text-light); }
.service-detail.dark .service-detail-body { color: rgba(232,228,220,0.7); }

/* ─── CONTACT FORM ────────────────────────────────────────── */

.contact-section {
  background: var(--cream);
  padding: 5.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.contact-deco {
  position: absolute;
  width: clamp(380px, 26vw, 580px);
  opacity: 0.9;
  pointer-events: none;
  display: none;
}

@media (min-width: 1200px) {
  .contact-deco {
    display: block;
  }
}

.contact-deco-moth {
  top: 8%;
  left: calc(clamp(380px, 26vw, 580px) / -3);
}

.contact-deco-raven {
  bottom: 8%;
  right: calc(clamp(380px, 26vw, 580px) / -3);
}

.contact-inner {
  max-width: 620px;
  margin: 0 auto;
}

.contact-intro-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #AD9E89;
  margin-bottom: 1rem;
}

.contact-intro-heading {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #4C050C;
  line-height: 1.22;
  margin-bottom: 1rem;
}

.contact-intro-body {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: #56483B;
  margin-bottom: 3rem;
}

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

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

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #AD9E89;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid rgba(42, 42, 42, 0.2);
  background: transparent;
  padding: 0.6rem 0;
  font-family: 'Geist', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(42, 42, 42, 0.4);
  pointer-events: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--teal);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #56483B;
  background: transparent;
  border: 1px solid #333333;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: #56483B;
  color: #E7E4DB;
}

.form-success {
  display: none;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: #AD9E89;
  margin-top: 2rem;
}

/* ─── ABOUT PAGE ──────────────────────────────────────────── */

.about-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding-top: 4rem;
  padding-bottom: 1rem;
}

.about-intro-inner {
  max-width: 420px;
  text-align: left;
  margin: 0;
}

.about-intro-image {
  flex: 0 0 390px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-intro-image img {
  width: 100%;
  max-width: 390px;
  opacity: 0.6;
  mix-blend-mode: multiply;
}

@media (max-width: 768px) {
  .about-intro {
    flex-direction: column;
    gap: 2rem;
  }
  .about-intro-image {
    flex: none;
  }
}

.about-intro .section-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #56483B;
}

.about-intro .section-heading {
  color: #AD9E89;
}

.about-intro .section-body {
  max-width: none;
  margin: 0;
  color: #56483B;
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
}

.about-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 5.5rem;
}

.about-divider {
  width: 280px;
  mix-blend-mode: multiply;
  opacity: 0.75;
}

.about-cta-heading {
  color: #4C050C;
  margin: 0;
}

.about-cta-btn {
  text-decoration: none;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 860px;
  margin: 3rem auto 0;
  text-align: left;
}

.value-item-label {
  font-family: 'Bayon', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232,228,220,0.5);
  margin-bottom: 0.6rem;
}

.value-item-title {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.value-item-body {
  font-size: 0.8rem;
  line-height: 1.75;
  color: rgba(232,228,220,0.65);
}

/* ─── FOOTER ──────────────────────────────────────────────── */

footer {
  background: #4C050C;
  margin-top: auto;
  padding: 0.8rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #000000;
}

.footer-logo {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: var(--text-light);
  font-size: 1.15rem;
  text-decoration: none;
}

.footer-logo img {
  height: 4rem;
  width: 4rem;
  object-fit: contain;
  display: block;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-family: 'Bayon', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 228, 220, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(232, 228, 220, 0.85);
}

.footer-copy {
  font-size: 0.62rem;
  color: rgba(232, 228, 220, 0.35);
  letter-spacing: 0.05em;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .hero,
  .page-hero,
  .section,
  .services-section,
  .contact-section,
  .service-detail {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero {
    padding-top: 3.5rem;
    padding-bottom: 5rem;
    min-height: 40vh;
  }

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

  .service-detail-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  footer {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .footer-links {
    gap: 1.25rem;
  }

  .section-split {
    flex-direction: column;
  }

  .section-split-image {
    min-height: 0;
  }

  .section-story-strategy .section-split-image {
    padding: 3rem 2rem 1.5rem;
  }

  .section-story-strategy .section-split-image img {
    width: 55%;
    margin: 0 auto;
  }

  .section-split-content {
    padding: 1.5rem 2rem 3rem;
  }

  .section-about-jamie {
    flex-direction: column-reverse;
  }

  .about-jamie-text {
    padding: 3rem 2rem;
  }

  .about-jamie-image {
    min-height: 0;
    padding: 3rem 2rem 0;
  }

  .about-jamie-image img {
    width: 100%;
    height: auto;
  }

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