/* =====================================================
   Misty Bridge Home Stay — styles.css
   Mobile-first, earthy misty-hill palette
   ===================================================== */

:root {
  /* Palette: soft greens, warm browns, cream, misty blue-grey */
  --green-deep: #2f4a3a;
  --green: #4a6b52;
  --green-soft: #7d9b82;
  --brown: #6b4f3a;
  --brown-warm: #8a6a4f;
  --cream: #faf6ef;
  --cream-deep: #f1e9dc;
  --mist: #8fa3ad;
  --mist-light: #dde6ea;
  --ink: #2b2f2c;
  --ink-soft: #55605a;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", -apple-system, Segoe UI, sans-serif;

  --radius: 14px;
  --shadow: 0 8px 30px rgba(43, 47, 44, 0.10);
  --shadow-lift: 0 14px 40px rgba(43, 47, 44, 0.16);
  --container: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-deep); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--green-deep);
}

h2 { font-size: clamp(1.75rem, 4vw, 2.6rem); margin-bottom: 0.6em; }
h3 { font-size: 1.25rem; }

.section { padding: clamp(64px, 9vw, 110px) 0; }
.section--tint { background: var(--cream-deep); }
.section--dark { background: var(--green-deep); }
.section--dark h2 { color: var(--cream); }

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brown-warm);
  margin-bottom: 10px;
}
.section__eyebrow--light { color: var(--mist-light); }

.section__lead {
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 1.06rem;
  margin-bottom: 40px;
}
.section__lead--light { color: var(--mist-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.97rem;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--primary { background: var(--brown); color: var(--cream); }
.btn--primary:hover { background: var(--brown-warm); color: var(--white); }

.btn--whatsapp { background: var(--whatsapp); color: var(--white); }
.btn--whatsapp:hover { background: var(--whatsapp-dark); color: var(--white); }

.btn--ghost {
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid var(--green-soft);
}
.btn--ghost:hover { background: var(--green-deep); color: var(--cream); }

.btn--small { padding: 10px 20px; font-size: 0.88rem; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 14px 0;
}
.nav.is-scrolled {
  background: rgba(250, 246, 239, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 18px rgba(43, 47, 44, 0.10);
  padding: 8px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__brand-mark {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.03em;
}
.nav__brand-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  transition: color 0.3s ease;
}
.nav__brand-text small {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}
.nav.is-scrolled .nav__brand-text { color: var(--green-deep); }

.nav__links {
  display: none;
  align-items: center;
  gap: 26px;
}
.nav__links a:not(.btn) {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.94rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.nav__links a:not(.btn):hover { opacity: 0.75; }
.nav.is-scrolled .nav__links a:not(.btn) { color: var(--ink); }
.nav.is-scrolled .nav__links a:not(.btn):hover { color: var(--green); opacity: 1; }

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: rgba(43, 47, 44, 0.28);
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav.is-scrolled .nav__toggle { background: var(--green-deep); }

/* Mobile menu open state */
.nav.menu-open .nav__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--cream);
  padding: 22px 24px 26px;
  box-shadow: 0 18px 30px rgba(43, 47, 44, 0.18);
  gap: 18px;
}
.nav.menu-open .nav__links a:not(.btn) { color: var(--ink); font-size: 1.05rem; }
.nav.menu-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-bg.jpeg");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroDrift 24s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.05) translateY(0); }
  to   { transform: scale(1.12) translateY(-14px); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(30, 42, 35, 0.55) 0%,
    rgba(30, 42, 35, 0.35) 45%,
    rgba(30, 42, 35, 0.72) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 80px;
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--mist-light);
  margin-bottom: 14px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 6vw, 3.9rem);
  max-width: 800px;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: italic;
  color: var(--cream-deep);
  font-size: 0.72em;
}
.hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 620px;
  color: var(--mist-light);
  margin-bottom: 30px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__badges span {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(250, 246, 239, 0.14);
  border: 1px solid rgba(250, 246, 239, 0.30);
  backdrop-filter: blur(4px);
}
.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(250, 246, 239, 0.6);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.hero__scroll span {
  width: 4px; height: 8px;
  background: var(--cream);
  border-radius: 2px;
  animation: scrollNudge 1.8s ease-in-out infinite;
}
@keyframes scrollNudge {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0.2; }
}

/* ---------- Story ---------- */
.story__grid { display: grid; gap: 44px; }
.story__text p { margin-bottom: 16px; color: var(--ink-soft); }
.story__text p strong { color: var(--ink); }
.story__points {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.story__points li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
}
.story__points li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--brown-warm);
}
.story__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}
.story__images img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.story__images img:first-child { grid-column: 1 / -1; height: 280px; }
.story__quote {
  grid-column: 1 / -1;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.story__quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.5;
}

/* ---------- Rooms ---------- */
.rooms__grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.room-card__img { position: relative; }
.room-card__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.room-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--brown);
  color: var(--cream);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.room-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.room-card__body p { color: var(--ink-soft); font-size: 0.96rem; }
.room-card__amenities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.room-card__amenities li {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-deep);
  background: var(--cream-deep);
  padding: 5px 12px;
  border-radius: 999px;
}
.room-card__cta {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.94rem;
}
.rooms__note {
  margin-top: 34px;
  text-align: center;
  color: var(--ink-soft);
}

/* ---------- Farm ---------- */
.farm {
  position: relative;
  color: var(--cream);
  overflow: hidden;
}
.farm__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(37, 55, 44, 0.90), rgba(37, 55, 44, 0.94)),
    url("https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?w=1600&q=60&auto=format&fit=crop") center/cover;
}
.farm .container { position: relative; z-index: 1; }
.farm__title { color: var(--cream); }
.farm__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
.farm__card {
  background: rgba(250, 246, 239, 0.06);
  border: 1px solid rgba(250, 246, 239, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(3px);
  transition: transform 0.25s ease, background 0.25s ease;
}
.farm__card:hover { transform: translateY(-5px); background: rgba(250, 246, 239, 0.11); }
.farm__card img {
  width: 100%;
  height: 175px;
  object-fit: cover;
}
.farm__card h3 { color: var(--cream); padding: 18px 20px 6px; }
.farm__card p {
  color: var(--mist-light);
  font-size: 0.94rem;
  padding: 0 20px 22px;
}

/* ---------- Gallery ---------- */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.chip {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--green-soft);
  background: transparent;
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.86rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.chip:hover { background: rgba(74, 107, 82, 0.12); }
.chip.is-active { background: var(--green-deep); border-color: var(--green-deep); color: var(--cream); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery__item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}
.gallery__item img,
.gallery__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery__item:hover img,
.gallery__item:hover video { transform: scale(1.06); }
.gallery__item.is-hidden { display: none; }

.gallery__item--video { position: relative; }
.gallery__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(43, 47, 44, 0.55);
  border: 2px solid rgba(250, 246, 239, 0.85);
  display: grid;
  place-items: center;
  padding-left: 4px;
  color: var(--white);
  font-size: 1.05rem;
  pointer-events: none;
  transition: background 0.2s ease;
}
.gallery__item--video:hover .gallery__play {
  background: rgba(43, 47, 44, 0.78);
}
.gallery__note {
  margin-top: 22px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* ---------- Experiences ---------- */
.experiences__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-bottom: 46px;
}
.exp-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.exp-card:hover { transform: translateY(-5px); }
.exp-card__icon { font-size: 1.9rem; display: block; margin-bottom: 12px; }
.exp-card h3 { margin-bottom: 8px; }
.exp-card p { color: var(--ink-soft); font-size: 0.94rem; }

.experiences__packages {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.package {
  border: 1.5px dashed var(--brown-warm);
  border-radius: var(--radius);
  padding: 20px 22px;
  background: var(--cream-deep);
}
.package h4 {
  font-size: 1.08rem;
  color: var(--brown);
  margin-bottom: 6px;
}
.package p { color: var(--ink-soft); font-size: 0.92rem; }
.experiences__note {
  margin-top: 26px;
  text-align: center;
  color: var(--ink-soft);
}

/* ---------- Testimonials ---------- */
.testimonials__slider { max-width: 780px; margin-inline: auto; }
.testimonials__track {
  display: flex;
  overflow: hidden;
}
.testimonial {
  min-width: 100%;
  padding: 10px 6px 0;
  transition: transform 0.45s ease;
  text-align: center;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 22px;
}
.testimonial figcaption strong {
  display: block;
  color: var(--white);
  letter-spacing: 0.04em;
}
.testimonial figcaption span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mist);
}
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.testimonials__controls button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(250, 246, 239, 0.4);
  background: transparent;
  color: var(--cream);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.testimonials__controls button:hover { background: rgba(250, 246, 239, 0.15); }
.testimonials__dots { display: flex; gap: 8px; }
.testimonials__dots button {
  width: 10px; height: 10px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(250, 246, 239, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.testimonials__dots button.is-active {
  background: var(--cream);
  transform: scale(1.25);
}

/* ---------- Location ---------- */
.location__grid { display: grid; gap: 40px; }
.location address {
  font-style: normal;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 22px;
  padding-left: 16px;
  border-left: 3px solid var(--brown-warm);
}
.location__steps {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}
.location__steps li {
  color: var(--ink-soft);
  padding-left: 26px;
  position: relative;
}
.location__steps li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--brown-warm);
  font-weight: 700;
}
.location__steps strong { color: var(--ink); }
.location__help { color: var(--ink-soft); margin-bottom: 24px; }
.location__map {
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ---------- Contact ---------- */
.contact__grid { display: grid; gap: 44px; }
.contact__intro > p { color: var(--ink-soft); max-width: 460px; }
.contact__channels {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.contact__channels li { display: grid; gap: 2px; }
.contact__channels span {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brown-warm);
}
.contact__channels a { font-weight: 700; }

.contact__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}
.form__row { display: grid; gap: 18px; }
.contact__form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--green-deep);
}
.contact__form input,
.contact__form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--cream-deep);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--green-soft);
}
.form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.form__hint { font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--mist-light);
  padding: 56px 0 26px;
}
.footer__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(250, 246, 239, 0.14);
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
}
.footer__brand span { color: var(--mist); font-size: 0.95rem; }
.footer__tagline { font-size: 0.92rem; margin-top: 8px; max-width: 300px; }
.footer h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}
.footer p { font-size: 0.94rem; }
.footer a { color: var(--mist-light); }
.footer a:hover { color: var(--white); }
.footer__social { display: flex; gap: 16px; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 22px;
  font-size: 0.84rem;
}

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 24, 21, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img,
.lightbox video {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(250, 246, 239, 0.12);
  border: 1px solid rgba(250, 246, 239, 0.3);
  color: var(--cream);
  cursor: pointer;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(250, 246, 239, 0.28); }
.lightbox__close {
  top: 18px; right: 18px;
  width: 46px; height: 46px;
  font-size: 1.6rem;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  font-size: 1.2rem;
}
.lightbox__nav--prev { left: 14px; }
.lightbox__nav--next { right: 14px; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg { animation: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================
   Responsive breakpoints
   ===================================================== */

@media (min-width: 640px) {
  .form__row { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .experiences__grid { grid-template-columns: repeat(2, 1fr); }
  .experiences__packages { grid-template-columns: repeat(3, 1fr); }
  .farm__grid { grid-template-columns: repeat(2, 1fr); }
  .rooms__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 960px) {
  .nav__links { display: flex; }
  .nav__toggle { display: none; }

  .story__grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
  .rooms__grid { grid-template-columns: repeat(3, 1fr); }
  .room-card__img img { height: 230px; }
  .farm__grid { grid-template-columns: repeat(4, 1fr); }
  .gallery__grid { grid-template-columns: repeat(4, 1fr); }
  .experiences__grid { grid-template-columns: repeat(3, 1fr); }
  .location__grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .contact__grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 0.8fr; }
}

@media (min-width: 1240px) {
  .rooms__grid { gap: 30px; }
}
