/* ═══════════════════════════════════════════════════════════════════
   bij METTE – Linschoten | Demo site stylesheet
   Palet: crème #F5F0E8 · donkerbruin #2C2416 · goud #C4A882 · salie #4A6741
   ═══════════════════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --creme:      #F5F0E8;
  --brown:      #2C2416;
  --brown-mid:  #5A4A36;
  --gold:       #C4A882;
  --gold-dark:  #A8865E;
  --sage:       #4A6741;
  --text:       #2C2416;
  --text-light: #6B5A45;
  --white:      #FFFFFF;

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

  --radius:   6px;
  --radius-lg: 12px;
  --shadow:   0 4px 24px rgba(44,36,22,.10);
  --shadow-lg: 0 12px 48px rgba(44,36,22,.16);

  --max-w:    1160px;
  --section-gap: clamp(4rem, 8vw, 7rem);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--creme);
  overflow-x: hidden;
}

/* Prevent body scroll when mobile menu open */
body.menu-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

address { font-style: normal; }

/* ─── MEDIA / IMG-FILL SAFEGUARD ───────────────────────────────── */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.card__media img, .hero__img, .chef__photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ─── CONTAINER ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2.5rem);
}
.container--narrow { max-width: 720px; }

/* ─── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  min-height: 48px;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--gold);
  color: var(--brown);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn--hero {
  padding: 1.1rem 2.8rem;
  font-size: 1rem;
  background: #C4A882 !important;
  color: #2C2416 !important;
  border-color: #C4A882 !important;
  box-shadow: 0 6px 28px rgba(196,168,130,.5);
}

.btn--large {
  padding: 1.1rem 2.8rem;
  font-size: 1rem;
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover { background: var(--gold); color: var(--brown); }

.btn--ghost {
  background: transparent;
  color: var(--creme);
  border-color: rgba(245,240,232,.5);
}
.btn--ghost:hover { background: rgba(245,240,232,.1); border-color: var(--creme); }

.btn--nav {
  padding: .55rem 1.3rem;
  font-size: .8rem;
  min-height: 40px;
}

.btn--full { width: 100%; }

/* ─── SECTION CHROME ────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--brown);
  margin: .75rem 0 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.intro__ornament {
  display: flex;
  justify-content: center;
  margin-bottom: .6rem;
}

/* ─── TAGS ──────────────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .9rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--brown-mid);
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(44,36,22,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,168,130,.18);
  transition: background .3s;
}

.site-nav.scrolled {
  background: rgba(44,36,22,.97);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--creme);
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--creme);
  letter-spacing: .04em;
}
.logo-text em { font-style: italic; color: var(--gold); }
.logo-text--light { color: var(--creme); }

.logo-cross { color: var(--gold); display: flex; align-items: center; }
.logo-cross--light { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(245,240,232,.85);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .2s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--gold); }

/* ─── HAMBURGER ─────────────────────────────────────────────────── */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: .5rem;
}

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

/* ════════════════════════════════════════════════════════════════
   MOBILE MENU OVERLAY
════════════════════════════════════════════════════════════════ */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--brown);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  /* Must cover 100dvh — hero must NOT be visible */
  height: 100dvh;
  height: 100svh;
  overflow-y: auto;
}

.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
}

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem 2rem;
  min-height: 100%;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0 2rem;
  border-bottom: 1px solid rgba(196,168,130,.2);
  margin-bottom: 2rem;
}

.mobile-menu__header .logo-text { color: var(--creme); }

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--creme);
}

.mobile-menu__list {
  list-style: none;
  flex: 1;
}

.mobile-menu__item {
  display: block;
  padding: 1.1rem 0;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--creme);
  border-bottom: 1px solid rgba(196,168,130,.12);
  transition: color .2s;
  text-decoration: none;
}
.mobile-menu__item:hover { color: var(--gold); }

.mobile-menu__cta {
  margin-top: 2.5rem;
}

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

.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(
    to bottom,
    rgba(44,36,22,.25) 0%,
    rgba(44,36,22,.55) 60%,
    rgba(44,36,22,.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem clamp(1rem, 5vw, 3rem);
  max-width: 760px;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.hero__title-sub {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}

.hero__lead {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(245,240,232,.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(245,240,232,.6);
  animation: bounce 2s infinite;
  transition: color .2s;
}
.hero__scroll:hover { color: var(--gold); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ════════════════════════════════════════════════════════════════
   INTRO
════════════════════════════════════════════════════════════════ */
.intro {
  padding: var(--section-gap) 0;
  background: var(--creme);
}

.intro__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.intro__text {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.intro__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
}

/* ════════════════════════════════════════════════════════════════
   CARD GRID — keuken
════════════════════════════════════════════════════════════════ */
.keuken-section {
  padding: var(--section-gap) 0;
  background: #EDE7D9;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
}

.card {
  background: var(--creme);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

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

.card__body {
  padding: clamp(1.2rem, 3vw, 1.8rem);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(196,168,130,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}

.card__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.2;
}

.card__text {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}

/* ════════════════════════════════════════════════════════════════
   CHEF SECTION
════════════════════════════════════════════════════════════════ */
.chef-section {
  background: #3A2E1E;
  padding: var(--section-gap) 0;
}

.chef-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2.5rem);
}

.chef__photo {
  position: relative;
}

.chef__photo-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.chef__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chef__photo::before {
  content: '';
  position: absolute;
  inset: -1rem -1rem 1rem 1rem;
  border: 2px solid rgba(196,168,130,.3);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 0;
}

.chef__content {
  color: var(--creme);
}

.chef__overline {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}

.chef__content .section-title {
  color: var(--creme);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: .6rem 0 1.5rem;
}

.chef__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.chef__bio {
  font-size: .97rem;
  color: rgba(245,240,232,.75);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ════════════════════════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, #4A3824 0%, #2C2416 60%, #3A2E1E 100%);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,168,130,.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-band__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  color: var(--creme);
  margin: .75rem 0 1rem;
}

.cta-band__sub {
  font-size: 1.05rem;
  color: rgba(245,240,232,.7);
  margin-bottom: 2.5rem;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ════════════════════════════════════════════════════════════════
   LOCATIE
════════════════════════════════════════════════════════════════ */
.locatie-section {
  padding: var(--section-gap) 0;
  background: var(--creme);
}

.locatie__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.locatie__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  position: relative;
  min-height: 280px;
  background: #E8E0D0;
}

.locatie__map-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.locatie__map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.locatie__map-link:hover .locatie__map-img { transform: scale(1.02); }

.locatie__map-cta {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(44,36,22,.85);
  color: #F5F0E8;
  padding: .6rem 1.3rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  transition: background .2s;
}
.locatie__map-link:hover .locatie__map-cta {
  background: rgba(196,168,130,.9);
  color: #2C2416;
}

.locatie__info {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.info-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-block__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(196,168,130,.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}

.info-block strong {
  display: block;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brown);
  margin-bottom: .3rem;
}

.info-block address,
.info-block p {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.info-link {
  color: var(--gold-dark);
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.info-link:hover { color: var(--brown); }

/* Hours table */
.hours-table {
  border-collapse: collapse;
  font-size: .9rem;
  width: 100%;
}
.hours-table td {
  padding: .3rem 0;
  color: var(--text-light);
}
.hours-table td:first-child { padding-right: 1.5rem; font-weight: 500; color: var(--brown); }
.hours-table .closed td { color: #B0A090; font-style: italic; }

.hours-table--light td { color: rgba(245,240,232,.7); }
.hours-table--light td:first-child { color: var(--creme); }
.hours-table--light .closed td { color: rgba(245,240,232,.35); }

/* ════════════════════════════════════════════════════════════════
   CONTACT FORM
════════════════════════════════════════════════════════════════ */
.contact-section {
  padding: var(--section-gap) 0;
  background: #EDE7D9;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brown-mid);
}
.form-group label span { color: var(--gold-dark); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid rgba(196,168,130,.4);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0A090; }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,168,130,.2);
}

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

/* ════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
.footer-kit {
  background: var(--brown);
  color: rgba(245,240,232,.8);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.footer-kit__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2.5rem) clamp(2.5rem, 5vw, 4rem);
}

.footer-col--brand {
  padding-right: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .95rem;
  color: rgba(245,240,232,.55);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(196,168,130,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,240,232,.6);
  transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-heading {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-nav a {
  font-size: .9rem;
  color: rgba(245,240,232,.65);
  transition: color .2s;
  text-decoration: none;
}
.footer-nav a:hover { color: var(--gold); }

.footer-address p {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(245,240,232,.65);
  margin-bottom: .7rem;
  line-height: 1.5;
}
.footer-address svg { flex-shrink: 0; margin-top: 2px; opacity: .6; }
.footer-address a { color: rgba(245,240,232,.65); transition: color .2s; }
.footer-address a:hover { color: var(--gold); }

.footer-kit__bottom {
  border-top: 1px solid rgba(196,168,130,.12);
  text-align: center;
  padding: 1.3rem clamp(1rem, 5vw, 2.5rem);
  font-size: .78rem;
  color: rgba(245,240,232,.35);
}
.footer-kit__bottom a { color: rgba(245,240,232,.5); transition: color .2s; }
.footer-kit__bottom a:hover { color: var(--gold); }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .chef-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .chef__photo { max-width: 420px; margin: 0 auto; }

  .chef__photo::before { display: none; }

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

  .footer-kit__inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col--brand { grid-column: 1 / -1; }

  .nav-links { display: none; }
  .mobile-menu__trigger { display: flex; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
════════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-kit__inner {
    grid-template-columns: 1fr;
  }

  .cta-band__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
  }

  .intro__tags {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__title {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  /* Mobile cards: 2-up grid with wide image so they feel balanced */
  .card-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    gap: .8rem;
  }
  .card {
    flex-direction: column;
  }
  .card__media {
    aspect-ratio: 3/2;
    width: 100%;
  }
  .card__body {
    padding: .9rem;
    gap: .4rem;
  }
  .card__icon { width: 30px; height: 30px; }
  .card__title { font-size: 1.05rem; }
  .card__text { font-size: .82rem; line-height: 1.5; }
  /* Stagger last card if odd number */
  .card-grid .card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 280px;
    justify-self: center;
  }
}

/* ─── TABLET CARD GRID ──────────────────────────────────────────── */
@media (min-width: 601px) and (max-width: 900px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }
  .card-grid .card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    justify-self: center;
  }
}

/* ─── REDUCED MOTION ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
}
