 /* MOBILE ONLY */
@media (max-width: 768px) {

  .meet-sean {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Make all rows stack */
 .meet-sean .row {
  display: flex;
  flex-direction: column;
}

  /* Explicit mobile order */
  .meet-header { order: 1; }
  .banner { order: 2; }

  .intro-text { order: 3; }
  .intro-video { order: 4; }

  .background-text { order: 5; }
  .image-19 { order: 6; }

  .lived-text { order: 7; }
  .image-20 { order: 8; }

  /* Ensure columns go full width */
  .meet-sean .column {
    width: 100%;
  }

  iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
  }
}
  @media (max-width: 768px) {

  .consequences-row {
    flex-direction: column;
  }

  .consequences-row .column {
  display: flex;
  flex-direction: column;
}

  .item-amelia { order: 1; }
  .item-img-kahu { order: 2; }
  .item-kahu { order: 3; }
  .item-img-amelia { order: 4; }
  .item-isla { order: 5; }
  .item-img-isla { order: 6; }
}
  /* Color palette using CSS variables */
  :root {
    --primary-bg: #F9F6F0;      /* overall page background */
    --section-bg: #E6F0E9;      /* soft complementary for sections */
    --column-bg: #FFF9F2;       /* slightly lighter for columns */
    --header-bg: #D9E9E2;       /* header background */
    --footer-bg: #C4A35A;       /* footer background or CTA area */
  }

  body {
    font-family: 'Merriweather', serif;
    background-color: #E9EEEC;
    margin: 0;
    padding: 0;
    color: #1B3B2F;
    line-height: 1.6;
  }

  header {
    background-color: var(--header-bg);
    padding: 26px 20px;
    max-width: 980px;
    margin: 20px auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  section {
    padding: 28px 22px;
    max-width: 980px;
    margin: 22px auto;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(27, 59, 47, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  section:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  }

  section + section {
    margin-top: 26px;
  }

  h1, h2, h3 {
    color: #1B3B2F;
    margin-bottom: 20px;
  }
  /* Section header accent colors */
section h2 {
  margin-bottom: 20px;
}
  .highlight-section {
    text-align: center;
    background-color: var(--section-bg);
    padding: 30px 20px;
    border-radius: 8px;
    margin: 40px 0;
  }

  .highlight-section .highlight-text {
    font-size: 1.4em;
    font-weight: bold;
    color: #1B3B2F;
    margin: 0;
  }

  iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 8px;
  }

  /* Small 4-image row */
  .four-image-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .four-image-row .img-col {
    flex: 0 0 25%;
  }

  .four-image-row img.small-image {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

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

  .logo {
    width: 180px;
  }

  .image {
    width: 100%;
    border-radius: 8px;
    margin: 20px 0;
  }

  .small-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin: 5px;
  }

  .cta {
    background-color: var(--footer-bg);
    padding: 12px 22px;
    display: inline-block;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 20px;
    cursor: pointer;
  }

  .instagram-toggle img {
    width: 40px;
    cursor: pointer;
  }

  .hidden {
    display: none;
  }

  .accent {
    color: #A35D3D;
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .column {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    background-color: var(--column-bg);
    padding: 20px;
    border-radius: 8px;
  }

  .column p {
    margin-bottom: 20px;
  }

  .column img {
    margin: 20px 0;
  }

  form input[type="email"] {
    padding: 10px;
    width: 250px;
    margin-right: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
  }

  /* Mobile readability */
  @media(max-width: 768px) {
    .row {
      flex-direction: column;
    }
    .column {
      min-width: 100%;
    }
  }

  .highlight-text {
    font-size: 1.3em;
    font-weight: bold;
  }

  .align-half {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  footer {
    background-color: var(--footer-bg);
    padding: 30px 20px;
    text-align: center;
    color: white;
    border-radius: 8px;
    margin-top: 30px;
  }

  .centered-cell {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .small-image {
    max-width: 160px;
    height: auto;
  }
  .section-title {
  background-color: #D4A373;   /* warm neutral panel */
  padding: 1.2rem 1.5rem;
  margin: 2.5rem 0 1.5rem;
  border-radius: 10px;
}
  .section-title--light {
  background-color: #FDF6EC;
}
/* Typography stays unchanged */
.section-title h1,
.section-title h2 {
  margin: 0;
  line-height: 1.3;
}
.header-top {
  display: flex;
  align-items: center;       /* vertical alignment */
  justify-content: space-between;  /* logo left, social icons right */
  gap: 20px;                 /* optional spacing between items */
}

.social-icons img {
  width: 34px;
  height: auto;
  max-width: none;
  margin: 0;
}

.social-icons a {
  display: inline-flex;
  align-items: flex-start;
}
  .social-icons img {
  width: 34px;
}
  .header-text {
  font-size: 1.5rem;       /* adjust as needed */
  font-weight: 700;
  color: #1B3B2F;          /* or whatever fits your palette */
  margin: 0;               /* remove default h1 margin */
  flex: 1;                 /* take up remaining space between logo and icons */
  text-align: center;      /* optional: center between logo & icons */
}
  .offer-header {
  text-align: center;
  margin-bottom: 20px;
}

.offer-header img {
  display: block;
  margin: 0 auto 12px;
}

.offer-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.offer-subtitle {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 6px;
  color: #1B3B2F;
}.main-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

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

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

html {
  scroll-behavior: smooth;
} 

section {
  scroll-margin-top: 120px;
} 
.main-nav a {
  text-decoration: none;
  color: #1B3B2F;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  transition: 0.3s;
}

.main-nav a:hover {
  background-color: #D4A373;
  color: rgb(207, 37, 37);
}.main-nav {
  position: sticky;
  top: 0;
  background-color: var(--header-bg);
  padding: 10px;
  z-index: 1000;
} 
  nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white; /* important so content doesn’t show through */
} body {
  padding-top: 80px;
}
  .main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--header-bg);
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 12px 10px;
  flex-wrap: wrap;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.main-nav a, .main-nav button {
  background: none;
  border: none;
  color: #1B3B2F;
  font: inherit;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.main-nav button:hover, .main-nav a:hover {
  background-color: #D4A373;
  color: white;
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  z-index: 2000;
}

.modal.hidden {
  display: none;
}

.modal-card {
  width: min(100%, 440px);
  background: white;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  position: relative;
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  border: none;
  background: none;
  font-size: 1.6rem;
  color: #1B3B2F;
  cursor: pointer;
}

.contact-modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-modal-form input[type="email"] {
  width: 100%;
  max-width: 100%;
  margin: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
#our-offer .row {
  display: flex;
  flex-wrap: wrap;
}

#our-offer .column {
  flex: 1;
  min-width: 300px;
}
  .cta-row {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
