/* ============================================================
   Travel with the Bolwells — Stylesheet
   Brand colours: teal #3a868f | pink #e4afb0 | beige #e1ddd5
   ============================================================ */

/* ── Self-hosted fonts ───────────────────────────────────── */
@font-face {
  font-family: 'Bebas Neue';
  src: url('fonts/bebas-neue-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-latin.woff2') format('woff2');
  font-weight: 300 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --teal:       #3a868f;
  --teal-dark:  #2c6b73;
  --teal-light: #eef6f7;
  --pink:       #e4afb0;
  --pink-light: #faf3f3;
  --beige:      #e1ddd5;
  --beige-dark: #d0cac0;
  --dark:       #1e2a2b;
  --mid:        #5c6b6d;
  --muted:      #8fa4a6;
  --white:      #ffffff;
  --light:      #f9f7f5;

  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  24px;

  --shadow:     0 4px 28px rgba(58, 134, 143, 0.10);
  --shadow-lg:  0 12px 48px rgba(58, 134, 143, 0.16);

  --transition: 0.24s ease;
}

/* ── Accessibility ────────────────────────────────────────── */

/* Skip link — visually hidden until focused */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--teal-dark);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--pink);
  outline-offset: 2px;
}

/* Visible focus ring for all interactive elements */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline: 3px solid var(--teal-dark);
  outline-offset: 3px;
}

/* Inline body links — underlined and teal-dark for contrast */
.about-text a,
.contact-copy a,
.t-read-more {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.about-text a:hover,
.contact-copy a:hover { color: var(--teal); }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero-img-frame:hover .hero-img { transform: none; }
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Layout helpers ───────────────────────────────────────── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Typography helpers ───────────────────────────────────── */
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 12px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.section-sub {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.7;
  margin-top: 8px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(58, 134, 143, 0.30);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ── Promo banner ─────────────────────────────────────────── */
.promo-banner {
  background: linear-gradient(90deg, var(--teal-dark) 0%, var(--teal) 60%, #4a9ea8 100%);
  padding: 7px 28px;
  margin-top: 68px;
}
.promo-banner-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}
.promo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}
.promo-banner p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.92);
  margin: 0;
}
.promo-banner strong { color: var(--white); }
.promo-banner a {
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  white-space: nowrap;
  transition: opacity var(--transition);
}
.promo-banner a:hover { opacity: 0.75; }

/* ── Trust / accreditation strip ─────────────────────────── */
.trust-strip {
  background: var(--light);
  border-top: 1px solid var(--beige);
  padding: 36px 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
}

/* Base badge */
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px 18px;
  min-width: 100px;
  text-align: center;
  line-height: 1.2;
}
.tb-top {
  display: block;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.tb-bot {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
  opacity: 0.85;
}


/* Combined EIN / ABTA / ATOL accreditation image */
.trust-accreditation-img {
  height: auto;
  max-height: 80px;
  max-width: 180px;
  width: auto;
  display: block;
  object-fit: contain;
}
.trust-accreditation-img--large {
  max-height: 92px;
  max-width: 220px;
}
.trust-logos { flex-wrap: wrap; }

@media (max-width: 560px) {
  .trust-strip-inner { flex-direction: column; text-align: center; gap: 20px; }
  .trust-logos { flex-direction: column; align-items: center; gap: 16px; }
  .trust-accreditation-img { max-height: 56px; max-width: 140px; }
  .trust-accreditation-img--large { max-height: 64px; max-width: 160px; }
}

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(225, 221, 213, 0.6);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-accreditation {
  max-height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav-accreditation--right {
  max-height: 26px;
}

/* Logo still used in footer as .logo-img */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-img {
  max-height: 44px;
  width: auto;
  display: block;
}
.footer-logo-img {
  max-height: 48px;
  width: auto;
  display: block;
}

/* ── Centred page logo (index.html only) ──────────────────── */
.page-logo-top {
  padding-top: 16px;
  padding-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
}
.page-logo-img {
  max-width: 200px;
  width: 60%;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--mid);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--teal); }

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(58, 134, 143, 0.28);
}

.nav-ig {
  display: flex;
  align-items: center;
  color: var(--mid);
  transition: color var(--transition), transform var(--transition);
}
.nav-ig:hover {
  color: var(--teal);
  transform: scale(1.12);
}

.nav-brand {
  display: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--teal);
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  text-transform: uppercase;
}
.nav-brand:visited,
.nav-brand:link {
  color: var(--teal);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: var(--teal);
  border-radius: 8px;
  padding: 10px !important;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 28px 40px;
}

.hero-content { flex: 1 1 480px; text-align: center; order: 1; }
.hero-visual { order: 2; }
.hero-logo {
  display: block;
  max-width: 260px;
  width: 70%;
  height: auto;
  margin-bottom: 24px;
  margin-inline: auto;
  background: var(--light);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--dark);
  text-align: center;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--mid);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.72;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual {
  flex: 1 1 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.hero-img-frame {
  width: 440px;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(58, 134, 143, 0.22), 0 4px 16px rgba(0,0,0,0.10);
  position: relative;
  border: 5px solid var(--white);
  outline: 3px solid var(--pink);
}
.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── About ────────────────────────────────────────────────── */
.about {
  padding: 80px 0;
  background: var(--beige);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}

.about-text p {
  font-size: 16px;
  color: var(--mid);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text a { color: var(--teal-dark); font-weight: 500; }
.about-text a:hover { text-decoration: underline; }

.about-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-family-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 5px solid var(--white);
  outline: 3px solid var(--pink);
  display: block;
}

.about-quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 220px;
}
.about-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  line-height: 0.6;
  color: var(--pink);
  margin-bottom: 20px;
  display: block;
}
.about-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--dark);
  line-height: 1.5;
  margin: 0;
}

.about-accent {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accent-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.accent-card--top { align-self: flex-start; width: 85%; }
.accent-card--bot { align-self: flex-end; width: 85%; }

.accent-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.accent-label {
  font-size: 14px;
  color: var(--mid);
  font-weight: 500;
}

/* ── Offers ───────────────────────────────────────────────── */
.offers {
  padding: 80px 0;
  background: var(--light);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--beige);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.offer-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.offer-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.offer-icon svg { width: 22px; height: 22px; }

.offer-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.offer-card p { font-size: 15px; color: var(--mid); line-height: 1.72; }

/* ── Why Choose Us ───────────────────────────────────────── */
.why-us {
  padding: 80px 0;
  background: var(--white);
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.why-us-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.why-us-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
}
.why-us-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.why-us-card p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
}
.why-us-card--contrast {
  background: var(--teal-light);
  border: 1.5px solid rgba(58, 134, 143, 0.2);
}

.why-us-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 720px;
  margin-inline: auto;
}
.why-us-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(58, 134, 143, 0.15);
  font-size: 16px;
  color: var(--mid);
  line-height: 1.7;
}
.why-us-list li:last-child {
  border-bottom: none;
}
.why-us-list li strong {
  color: var(--dark);
  font-weight: 600;
}

/* ── Instagram CTA ────────────────────────────────────────── */
.insta-section {
  padding: 80px 0;
  background: var(--beige);
}
.insta-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.insta-cta-text {
  flex: 1;
}
.insta-cta-text p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}
.insta-cta-text .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.insta-cta-icon {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  color: var(--teal);
  opacity: 0.15;
}
@media (max-width: 820px) {
  .insta-cta { flex-direction: column; text-align: center; }
  .insta-cta-icon { display: none; }
  .insta-cta-text p { margin-inline: auto; }
}

.ig-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 80px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--pink);
  text-align: center;
}

.ig-icon {
  width: 52px;
  height: 52px;
  color: var(--teal);
}

.ig-placeholder p {
  font-size: 16px;
  color: var(--mid);
  font-weight: 500;
}
.ig-hint {
  font-size: 13px !important;
  color: var(--muted) !important;
  font-weight: 400 !important;
  margin-top: -8px;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-section {
  padding: 80px 0;
  background: var(--light);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-copy h2 { margin-bottom: 16px; }
.contact-copy > p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-meta li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.meta-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.meta-icon svg { width: 18px; height: 18px; }
.contact-meta a { color: var(--teal-dark); font-weight: 500; }
.contact-meta a:hover { text-decoration: underline; }

/* Form */
.contact-form {
  background: var(--light);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--beige);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 22px; }
.form-optional {
  font-weight: 400;
  color: var(--mid);
  font-size: 12px;
  margin-left: 4px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--beige);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--beige-dark); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(58, 134, 143, 0.10);
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235c6b6d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group textarea { resize: vertical; line-height: 1.6; }
.form-group:last-of-type { margin-bottom: 28px; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding-top: 60px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 48px;
}


.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.38); margin-top: 6px; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--pink); }

.footer-ig {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pink);
  transition: opacity var(--transition);
}
.footer-ig:hover { opacity: 0.72; }
.footer-ig svg { width: 20px; height: 20px; }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 28px;
  text-align: center;
}
.footer-bar p { font-size: 12px; color: rgba(255,255,255,0.28); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 820px) {
  .hero {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 60px;
  }
  .hero h1 { font-size: clamp(38px, 8vw, 56px); }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-visual { min-height: auto; order: unset; }
  .hero-content { order: unset; }
  .hero-img-frame { width: 90%; max-width: 324px; height: auto; }
  .hero-logo { margin-inline: auto; }

  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { justify-content: center; }
  .about-family-img { max-width: 100%; }

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

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-nav { flex-wrap: wrap; gap: 12px 20px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 24px 28px;
    gap: 20px;
    border-bottom: 1px solid var(--beige);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links { top: 80px; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-inner { height: 80px; }
  .nav-brand { display: block; }
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .offers-grid { grid-template-columns: 1fr; }
  .why-us-list { padding: 0 4px; }
  .insta-cta { text-align: center; }
  .insta-cta-text p { margin-inline: auto; }
  .section-header { text-align: center; }
  .about-quote { padding: 28px 20px; }
  .about-quote p { font-size: 18px; }
  .footer-nav { flex-direction: column; gap: 10px; }
}
