/* ================================================================
   The Lake-Inn — Nieuwkoop — Demo Site Stylesheet
   Palette: terracotta #C0392B | sage #4A7C59 | cream #F5F0E8 | dark #2C2C2C
================================================================ */

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

:root {
  --clr-terra:    #C0392B;
  --clr-terra-dk: #A02E22;
  --clr-sage:     #4A7C59;
  --clr-sage-lt:  #D6E8DC;
  --clr-cream:    #F5F0E8;
  --clr-cream-dk: #EDE6D8;
  --clr-dark:     #2C2C2C;
  --clr-mid:      #5C5040;
  --clr-light:    #8B7D6B;

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Lato', system-ui, sans-serif;

  --nav-h: 72px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-dark);
  background: var(--clr-cream);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

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

ul { list-style: none; }

address { font-style: normal; }

.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

/* ------ IMAGE FILL UTILITY ------ */
.media,
.img-fill,
figure.photo {
  position: relative;
  overflow: hidden;
}
.media > img,
.img-fill > img,
figure.photo > img,
.gallery img,
.card img,
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ------ BUTTONS ------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: 4px;
  font-family: var(--ff-sans);
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  border: 2px solid transparent;
  min-height: 48px;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--terracotta {
  background: var(--clr-terra);
  color: #fff;
  border-color: var(--clr-terra);
}
.btn--terracotta:hover {
  background: var(--clr-terra-dk);
  border-color: var(--clr-terra-dk);
  box-shadow: 0 6px 20px rgba(192,57,43,.35);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.75);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

.btn--outline-dark {
  background: transparent;
  color: var(--clr-dark);
  border-color: var(--clr-dark);
}
.btn--outline-dark:hover {
  background: var(--clr-dark);
  color: #fff;
}

.btn--pill { border-radius: 999px; }
.btn--lg { padding: .9rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ------ SCREEN-READER TEXT ------ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ------ LABEL TAG ------ */
.label-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-sage);
  margin-bottom: .75rem;
}
.label-tag--center { display: block; text-align: center; }
.label-tag--light { color: var(--clr-sage-lt); }

/* ------ SECTION TITLES ------ */
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--clr-dark);
  margin-bottom: 1.25rem;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--clr-terra);
}
.section-title--center { text-align: center; }
.section-title--light { color: #fff; }
.section-title--light em { color: var(--clr-cream-dk); }

.section-intro {
  max-width: 60ch;
  margin-inline: auto;
  text-align: center;
  color: var(--clr-mid);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ================================================================
   HEADER / NAV
================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: var(--clr-cream);
  box-shadow: 0 2px 20px rgba(44,44,44,.12);
}
.site-header.scrolled .nav-link { color: var(--clr-dark); }
.site-header.scrolled .nav-logo__text { color: var(--clr-dark); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--nav-h);
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
  margin-right: auto;
}
.nav-logo__text {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  transition: color .3s;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
}
.nav-link {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  transition: color .2s;
  white-space: nowrap;
}
.nav-link:hover { color: #fff; }
.site-header.scrolled .nav-link:hover { color: var(--clr-terra); }

.nav-cta { flex-shrink: 0; }

.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  flex-shrink: 0;
  color: #fff;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.site-header.scrolled .mobile-menu__trigger { color: var(--clr-dark); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}

/* ================================================================
   MOBILE MENU OVERLAY (.mobile-menu__overlay)
================================================================ */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--clr-cream);
  display: flex;
  flex-direction: column;
  height: 100dvh;
  min-height: 100svh;
  overflow-y: auto;
  /* hidden state */
  transform: translateX(100%);
  transition: transform .3s var(--ease-out);
  pointer-events: none;
}
.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: none; }
}

.mobile-menu__panel { width: 100%; }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--clr-cream-dk);
}
.mobile-menu__brand {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-dark);
}
.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: var(--clr-dark);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.mobile-menu__close:hover { background: var(--clr-cream-dk); }

.mobile-menu__list {
  padding: 1rem 1.5rem;
}
.mobile-menu__list li {
  border-bottom: 1px solid var(--clr-cream-dk);
}
.mobile-menu__item {
  display: block;
  padding: 1rem .5rem;
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-dark);
  min-height: 56px;
  display: flex;
  align-items: center;
  transition: color .2s, padding-left .2s;
}
.mobile-menu__item:hover {
  color: var(--clr-terra);
  padding-left: 1rem;
}

.mobile-menu__cta-wrap {
  padding: 1.5rem;
}

.mobile-menu__footer-info {
  padding: 1rem 1.5rem 2rem;
  color: var(--clr-light);
  font-size: .875rem;
  text-align: center;
  line-height: 1.8;
}

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44,20,10,.65) 0%,
    rgba(44,20,10,.35) 60%,
    rgba(74,124,89,.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 820px;
}
.hero__eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: 1.25rem;
}
.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: #F9D5A7;
}
.hero__sub {
  font-size: clamp(.95rem, 2vw, 1.125rem);
  color: rgba(255,255,255,.85);
  max-width: 56ch;
  margin: 0 auto 2.25rem;
  line-height: 1.65;
}
.br-desktop { display: inline; }
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.65);
  animation: bounce 2.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ================================================================
   QUOTE STRIP
================================================================ */
.quote-strip {
  background: var(--clr-sage);
  padding: 3rem 1rem;
}
.quote-strip__quote {
  text-align: center;
  font-family: var(--ff-serif);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  max-width: 800px;
  margin-inline: auto;
}

/* ================================================================
   EDITORIAL SECTIONS (alternating image / text)
================================================================ */
.editorial-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.editorial-section--img-right { }
.editorial-section--img-left .editorial-section__media { order: -1; }

.editorial-section__media {
  overflow: hidden;
}
.editorial-section__media .img-fill {
  width: 100%;
  height: 100%;
  min-height: 400px;
}
.editorial-section__media .img-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.editorial-section__content {
  background: var(--clr-cream);
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.editorial-section--img-left .editorial-section__content {
  background: var(--clr-cream-dk);
}

.feature-list {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9375rem;
  color: var(--clr-mid);
}
.feature-list .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: .1rem;
  color: var(--clr-sage);
}

/* ================================================================
   SERVICES / CARD GRID
================================================================ */
.services-section {
  background: var(--clr-cream-dk);
  padding: 5rem 1rem;
}
.section-header {
  margin-bottom: 3rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(44,44,44,.08);
  transition: transform .25s var(--ease-out), box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(44,44,44,.14);
}

.card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease-out);
}
.card:hover .card__media img { transform: scale(1.04); }

/* Illustration fallback card media */
.card__media--teal {
  background: var(--clr-sage-lt);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__media-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__media-icon {
  width: 96px;
  height: 96px;
  opacity: .7;
}

.card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card__icon {
  width: 44px;
  height: 44px;
  background: var(--clr-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--clr-sage);
}
.card__title {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--clr-dark);
}
.card__text {
  font-size: .9rem;
  color: var(--clr-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--clr-terra);
  transition: gap .2s;
  margin-top: auto;
}
.card__link:hover { gap: .7rem; }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials {
  background: var(--clr-dark);
  padding: 5rem 1rem;
  color: #fff;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-left: 4px solid var(--clr-terra);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-card--accent {
  background: rgba(192,57,43,.12);
  border-color: rgba(255,255,255,.12);
  border-left-color: var(--clr-sage);
}
.testimonial-card__stars {
  display: flex;
  gap: .2rem;
}
.star {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.testimonial-card p {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255,255,255,.9);
}
.testimonial-card footer {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ================================================================
   CTA BAND
================================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 5rem 1rem;
  text-align: center;
  background: var(--clr-cream);
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(74,124,89,.12) 0%, transparent 70%),
    linear-gradient(135deg, var(--clr-cream) 0%, var(--clr-cream-dk) 100%);
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-inline: auto;
}
.cta-band__eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-sage);
  margin-bottom: .75rem;
}
.cta-band__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--clr-dark);
  margin-bottom: 1.25rem;
}
.cta-band__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--clr-terra);
}
.cta-band__sub {
  color: var(--clr-mid);
  font-size: 1.05rem;
  max-width: 52ch;
  margin: 0 auto 2.25rem;
}
.cta-band__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ================================================================
   CONTACT SECTION
================================================================ */
.contact-section {
  background: var(--clr-cream-dk);
  padding: 5rem 1rem;
}
.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin: 1.5rem 0;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9375rem;
  color: var(--clr-mid);
}
.contact-details .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: .15rem;
  color: var(--clr-sage);
}
.contact-details a { color: var(--clr-terra); }
.contact-details a:hover { text-decoration: underline; }

.contact-opening {
  margin-top: 1.5rem;
}
.contact-opening h3 {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: var(--clr-dark);
}
.contact-opening ul {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.contact-opening li {
  display: flex;
  justify-content: space-between;
  max-width: 260px;
  font-size: .9rem;
  color: var(--clr-mid);
}

/* Contact form */
.contact-form {
  background: #fff;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(44,44,44,.1);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--clr-mid);
}
.form-group label span { color: var(--clr-terra); }
.form-group input,
.form-group textarea {
  font-family: var(--ff-sans);
  font-size: 1rem;
  color: var(--clr-dark);
  background: var(--clr-cream);
  border: 1.5px solid var(--clr-cream-dk);
  border-radius: 4px;
  padding: .75rem 1rem;
  min-height: 48px;
  width: 100%;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-sage);
  box-shadow: 0 0 0 3px rgba(74,124,89,.18);
}
.form-group textarea { min-height: 140px; }
.form-note {
  margin-top: 1rem;
  font-size: .8rem;
  color: var(--clr-light);
  text-align: center;
}

/* ================================================================
   FOOTER (.footer-kit)
================================================================ */
.footer-kit {
  background: var(--clr-dark);
  color: rgba(255,255,255,.8);
}
.footer-kit__top {
  padding: 4rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-kit__top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.footer-kit__logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}
.footer-kit__tagline {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.75);
  margin-bottom: .75rem;
  line-height: 1.4;
}
.footer-kit__desc {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}

.footer-kit__nav h4,
.footer-kit__contact h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}
.footer-kit__nav ul,
.footer-kit__contact address {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-kit__nav a,
.footer-kit__contact a {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.footer-kit__nav a:hover,
.footer-kit__contact a:hover { color: #fff; }
.footer-kit__contact p { font-size: .9rem; color: rgba(255,255,255,.65); }

.footer-kit__cta-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
.footer-kit__cta-text {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
}

.footer-kit__bottom {
  padding: 1.5rem 1rem;
}
.footer-kit__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-kit__bottom a {
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-kit__bottom a:hover { color: #fff; }

/* ================================================================
   RESPONSIVE — TABLET (≤ 900px)
================================================================ */
@media (max-width: 900px) {
  .editorial-section {
    grid-template-columns: 1fr;
  }
  .editorial-section--img-left .editorial-section__media { order: 0; }
  .editorial-section__media .img-fill { min-height: 300px; }

  .footer-kit__top-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-kit__brand { grid-column: 1 / -1; }
  .footer-kit__cta-col { grid-column: 1 / -1; flex-direction: row; align-items: center; flex-wrap: wrap; }

  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ================================================================
   RESPONSIVE — MOBILE (≤ 640px)
================================================================ */
@media (max-width: 640px) {
  .nav-links,
  .nav-cta { display: none; }

  .mobile-menu__trigger { display: flex; }

  .hero__title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .br-desktop { display: none; }

  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

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

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

  .cta-band__actions { flex-direction: column; align-items: center; }
  .cta-band__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .footer-kit__top-inner {
    grid-template-columns: 1fr;
  }
  .footer-kit__cta-col { flex-direction: column; align-items: flex-start; }
  .footer-kit__bottom-inner { flex-direction: column; text-align: center; }

  .contact-form { padding: 1.5rem; }

  .section-title { font-size: 2rem; }
}

/* ================================================================
   NO HORIZONTAL SCROLL GUARD (375px)
================================================================ */
@media (max-width: 400px) {
  body { overflow-x: hidden; }
  .editorial-section__content { padding: 2rem 1.25rem; }
  .testimonial-card { padding: 1.5rem; }
}
