/* Loft Learn shared site styles
   Purpose: centralise typography and component styling so font sizes stay consistent across pages. */

:root {
  --deep-navy: #002B49;
  --modern-teal: #26A69A;
  --vibrant-orange: #F59E0B;
  --soft-mint: #B2DFDB;
  --white: #FFFFFF;
  --light-grey: #F5F5F5;
  --mid-grey: #E0E0E0;
  --dark-text: #1A1A1A;
  --body-text: #333333;

  --font-heading: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;

  --text-xs: 0.78rem;
  --text-sm: 0.85rem;
  --text-meta: 0.9rem;
  --text-body-sm: 0.95rem;
  --text-base: 1rem;
  --text-lead: 1.1rem;
  --text-hero-lead: 1.15rem;
  --text-h3: 1.25rem;
  --text-h2: 1.75rem;
  --text-h1: 2.25rem;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-text);
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--deep-navy);
  line-height: 1.3;
}

h1 { font-size: var(--text-h1); margin-bottom: 1rem; }
h2 { font-size: var(--text-h2); margin-bottom: 0.75rem; }
h3 { font-size: var(--text-h3); margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--modern-teal); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  background: var(--deep-navy);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.logo span { color: var(--modern-teal); }
.logo img { width: 180px; height: auto; display: block; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--white);
  font-size: var(--text-body-sm);
  font-weight: 600;
  text-decoration: none;
  opacity: 0.9;
}

.main-nav a:hover,
.main-nav a.active {
  opacity: 1;
  text-decoration: underline;
}

.lang-select {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  cursor: pointer;
}

.lang-select option { color: var(--dark-text); background: var(--white); }

.btn-primary,
.btn-submit {
  display: inline-block;
  background: var(--vibrant-orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  padding: 0.85rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover,
.btn-submit:hover {
  background: #e08e0a;
  text-decoration: none;
}

.btn-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--modern-teal);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  padding: 0.85rem 2rem;
  border-radius: 6px;
  border: 2px solid var(--modern-teal);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: var(--modern-teal);
  color: var(--white);
  text-decoration: none;
}

.btn-whatsapp {
  display: inline-block;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  padding: 0.85rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  margin-left: 1rem;
  transition: background 0.2s;
}

.btn-whatsapp:hover { background: #1ebe5d; text-decoration: none; }
.btn-line { background: #06C755; }
.btn-line:hover { background: #05b34c; text-decoration: none; }

.section { padding: 4rem 0; }
.section-alt { background: var(--light-grey); }
.section-heading { text-align: center; }
.section-intro {
  text-align: center;
  max-width: 680px;
  margin: 0.75rem auto 0;
  font-size: 1.05rem;
}

.hero {
  background: var(--deep-navy);
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 1rem;
}

.hero p,
.page-hero p,
.final-cta p {
  color: rgba(255,255,255,0.85);
}

.hero p {
  font-size: var(--text-hero-lead);
  max-width: 620px;
  margin: 0 auto 2rem;
}

.page-hero {
  background: var(--deep-navy);
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero h1:last-child { margin-bottom: 0; }

.page-hero p {
  font-size: var(--text-lead);
  max-width: 620px;
  margin: 0 auto;
}

.page-hero .breadcrumb {
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
  margin-bottom: 0.75rem;
}

.page-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb a:hover { color: var(--white); }

.site-footer {
  background: var(--deep-navy);
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 0 1.5rem;
  font-size: var(--text-meta);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--white); }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-legal p + p { margin-top: 0.4rem; }

/* Homepage */
.pillars-grid,
.values-grid,
.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.pillars-grid { margin-top: 2.5rem; }

.pillar {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-grey);
  border-radius: 8px;
  border-top: 3px solid var(--modern-teal);
}

.pillar-icon,
.differentiator-icon {
  display: block;
  margin-bottom: 0.75rem;
}

.pillar-icon { font-size: 2.5rem; }
.differentiator-icon { font-size: 2.25rem; }

.destination-card {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  border-top: 3px solid var(--modern-teal);
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.destination-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }

.destination-card h3 {
  font-size: var(--text-h3);
  margin-bottom: 0.5rem;
  color: var(--deep-navy);
}

.destination-card p {
  font-size: var(--text-body-sm);
  color: var(--body-text);
  margin-bottom: 1.25rem;
  line-height: 1.5;
  flex-grow: 1;
}

.destination-card a,
.destination-card a.card-link {
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--modern-teal);
  display: inline-block;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.home-page .destinations-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.home-page .destination-card {
  padding: 1.5rem 1rem;
  text-align: center;
}

.home-page .destination-card h3 {
  font-size: 1.1rem;
}

.home-page .destination-card p,
.home-page .destination-card a {
  font-size: var(--text-meta);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.step { text-align: center; }
.step-number {
  width: 48px;
  height: 48px;
  background: var(--modern-teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-h3);
  margin: 0 auto 1rem;
}

.about-teaser,
.founder-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}

.founder-grid { align-items: start; }
.about-teaser img { width: 160px; border-radius: 8px; display: block; }
.founder-grid img { width: 300px; border-radius: 8px; display: block; }
.about-teaser-text h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.about-teaser-text p { margin-bottom: 1.25rem; }
.about-teaser-text a { font-weight: 600; }

.final-cta {
  background: var(--deep-navy);
  padding: 4rem 0;
  text-align: center;
}

.hero ~ .final-cta { padding: 6rem 0; }
.final-cta h2 { color: var(--white); margin-bottom: 0.75rem; }
.final-cta p { font-size: var(--text-lead); margin-bottom: 2rem; }

/* About */
.mid-cta-strip {
  background: var(--soft-mint);
  padding: 2rem 0;
  text-align: center;
}

.mid-cta-strip p {
  font-size: var(--text-lead);
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 1.25rem;
}

.founder-bio blockquote {
  border-left: 4px solid var(--modern-teal);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--body-text);
  background: var(--light-grey);
  border-radius: 0 4px 4px 0;
}

.value-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.75rem;
  border-top: 3px solid var(--modern-teal);
}
.value-card h3 { margin-bottom: 0.75rem; }

/* Services */
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-item {
  background: var(--light-grey);
  border-radius: 8px;
  padding: 1.75rem;
  border-left: 4px solid var(--modern-teal);
}
.service-item h3 { margin-bottom: 0.5rem; }
.service-item.full-width { grid-column: 1 / -1; border-left-color: var(--vibrant-orange); }

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.who-box {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
}
.who-box h3 { margin-bottom: 0.75rem; color: var(--modern-teal); }
.who-box ul { list-style: none; padding: 0; }
.who-box ul li { padding: 0.3rem 0 0.3rem 1.25rem; position: relative; }
.who-box ul li::before { content: "→"; position: absolute; left: 0; color: var(--modern-teal); font-weight: 600; }

.differentiator { text-align: center; padding: 1.5rem; }
.free-badge {
  display: inline-block;
  background: var(--modern-teal);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Destinations hub and destination guides */
.not-sure-section {
  background: var(--soft-mint);
  border-radius: 8px;
  padding: 2rem 2.5rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.not-sure-section h3 { margin-bottom: 0.4rem; }
.not-sure-section p { margin-bottom: 0; color: var(--dark-text); }

.dest-content {
  max-width: 860px;
  margin: 0 auto;
}

.dest-content h2,
.policy-body h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--soft-mint);
}

.dest-content h2:first-child,
.policy-body h2:first-child { margin-top: 0; }

.dest-content ul,
.policy-body ul {
  margin: 0.5rem 0 1rem 1.5rem;
}
.dest-content ul li { margin-bottom: 0.4rem; }
.policy-body ul li { margin-bottom: 0.25rem; }

.dest-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--mid-grey);
}

.dest-nav a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--modern-teal);
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--modern-teal);
  border-radius: 20px;
}
.dest-nav a.current { background: var(--modern-teal); color: var(--white); }
.dest-nav a:hover { text-decoration: none; opacity: 0.85; }

.facts-panel {
  background: var(--light-grey);
  border-radius: 8px;
  padding: 1.75rem 2rem;
  margin: 2rem 0;
}

.facts-panel h3,
.faq-category-title {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--modern-teal);
  margin-bottom: 1.25rem;
}

.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
}
.fact-item { display: flex; flex-direction: column; gap: 0.2rem; }
.fact-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #777;
}
.fact-value { font-size: var(--text-body-sm); color: var(--dark-text); line-height: 1.5; }

.warning-box,
.highlight-box {
  border-left: 4px solid var(--vibrant-orange);
  border-radius: 0 6px 6px 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: var(--text-meta);
  color: var(--dark-text);
}
.warning-box { background: #fff8e6; }
.highlight-box { background: var(--light-grey); border-left-color: var(--modern-teal); margin: 1rem 0; }

.mid-cta-inline {
  background: var(--soft-mint);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.mid-cta-inline p { margin: 0; font-weight: 600; color: var(--deep-navy); font-size: var(--text-base); }
.mid-cta-inline .btn-primary { flex-shrink: 0; }

.dest-disclaimer,
.mara-note {
  background: var(--light-grey);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 2.5rem 0 0;
  font-size: var(--text-sm);
  color: #555;
  border: 1px solid var(--mid-grey);
}

.mara-note {
  border-left: 3px solid var(--modern-teal);
  border-radius: 0 4px 4px 0;
  padding: 0.75rem 1rem;
  margin-top: 0.75rem;
  border-top: none;
  border-right: none;
  border-bottom: none;
}

.sources-section {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--mid-grey);
  font-size: var(--text-sm);
  color: #666;
}
.sources-section h2 {
  font-size: var(--text-body-sm);
  border-bottom: none;
  margin-top: 0;
  padding-bottom: 0;
  color: var(--body-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sources-section ul { margin: 0.5rem 0 0 1.5rem; }
.sources-section ul li { margin-bottom: 0.3rem; }

/* FAQ */
.faq-layout { max-width: 800px; margin: 0 auto; }
.faq-category { margin-bottom: 3rem; }
.faq-category-title {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--soft-mint);
}
details { border-bottom: 1px solid var(--mid-grey); }
details:first-of-type { border-top: 1px solid var(--mid-grey); }
summary {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-body-sm);
  color: var(--deep-navy);
  padding: 1rem 2.5rem 1rem 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  line-height: 1.4;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-h3);
  color: var(--modern-teal);
  font-weight: 400;
  transition: transform 0.2s;
}
details[open] summary::after { content: '−'; }
summary:hover { color: var(--modern-teal); }
.faq-answer {
  padding: 0.25rem 0 1.25rem 0;
  font-size: var(--text-body-sm);
  line-height: 1.7;
  color: var(--body-text);
}
.faq-answer p { margin-bottom: 0.75rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { margin: 0.5rem 0 0.75rem 1.5rem; }
.faq-answer ul li { margin-bottom: 0.3rem; }
.cost-table { width: 100%; border-collapse: collapse; margin: 0.75rem 0; font-size: var(--text-meta); }
.cost-table th {
  background: var(--deep-navy);
  color: var(--white);
  padding: 0.6rem 0.75rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.8rem;
}
.cost-table td { padding: 0.6rem 0.75rem; border-bottom: 1px solid var(--mid-grey); }
.cost-table tr:nth-child(even) td { background: var(--light-grey); }
.cost-table-note { font-size: 0.8rem; color: #666; margin-top: 0.5rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: var(--text-body-sm);
  margin-bottom: 0.35rem;
  color: var(--dark-text);
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--mid-grey);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--dark-text);
  background: var(--white);
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--modern-teal); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 0.35rem; }
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  font-size: var(--text-body-sm);
  cursor: pointer;
  margin-bottom: 0;
}
.checkbox-group input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--modern-teal); cursor: pointer; }
.contact-info { padding-top: 0.25rem; }
.contact-method { margin-bottom: 2rem; }
.contact-method h3 { margin-bottom: 0.5rem; }
.channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.channel-btn svg { flex-shrink: 0; }
.response-note {
  background: var(--soft-mint);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-top: 2rem;
  font-size: var(--text-body-sm);
  color: var(--dark-text);
}
.response-note strong { display: block; margin-bottom: 0.25rem; color: var(--deep-navy); }
.translation-note { font-size: var(--text-meta); color: var(--body-text); }

/* Policy pages */
.policy-body { max-width: 760px; margin: 0 auto; }
.policy-meta { font-size: var(--text-meta); color: #666; margin-bottom: 2.5rem; }

/* Floating contact button */
.chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.chat-fab-main {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--modern-teal);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.chat-fab-main:hover { background: #1e8e83; transform: scale(1.05); }
.chat-fab-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.2s ease;
}
.chat-fab-options.open { max-height: 140px; opacity: 1; }
.chat-fab-option {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s;
  text-decoration: none;
}
.chat-fab-option:hover { transform: scale(1.1); text-decoration: none; }
.chat-fab-whatsapp { background: #25D366; }
.chat-fab-whatsapp:hover { background: #1ebe5d; }
.chat-fab-line { background: #06C755; }
.chat-fab-line:hover { background: #05b34c; }

@media (max-width: 900px) {
  .home-page .destinations-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  .header-inner { flex-wrap: wrap; gap: 0.75rem; }
  .main-nav { gap: 1rem; }
  .section { padding: 2.5rem 0; }
  .hero { padding: 4rem 0; }
  .final-cta,
  .hero ~ .final-cta { padding: 4rem 0; }
  .pillars-grid,
  .values-grid,
  .differentiators-grid,
  .services-list,
  .who-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .service-item.full-width { grid-column: 1; }
  .destinations-grid,
  .home-page .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .about-teaser,
  .founder-grid { grid-template-columns: 1fr; }
  .about-teaser img { width: 140px; margin: 0 auto; }
  .founder-grid img { width: 200px; margin: 0 auto; }
  .not-sure-section { flex-direction: column; text-align: center; }
  .contact-grid { gap: 2.5rem; }
  .checkbox-group { grid-template-columns: 1fr; }
  .channel-btn { width: 100%; justify-content: center; }
  .chat-fab { bottom: 16px; right: 16px; }
  .chat-fab-main { width: 52px; height: 52px; }
}

@media (max-width: 600px) {
  .facts-grid { grid-template-columns: 1fr; }
  .facts-panel { padding: 1.25rem; }
}

@media (max-width: 480px) {
  .destinations-grid,
  .home-page .destinations-grid,
  .steps-grid { grid-template-columns: 1fr; }
  .btn-whatsapp { margin-left: 0; margin-top: 0.75rem; display: block; }
}
