/* ============================================
   EVERNORTH PROPERTIES — Main Stylesheet
   ============================================
   Table of Contents:
   1.  CSS Variables & Reset
   2.  Base / Body
   3.  Navigation
   4.  Hero Section
   5.  Shared / Utility
   6.  Listing Types Section
   7.  Destinations Section
   8.  Why Evernorth Section
   9.  Renters Hub Section
   10. About Section
   11. Contact Section
   12. Footer
   13. Scroll Reveal Animations
   14. Responsive Breakpoints
   ============================================ */

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

:root {
  --cream:       #fdf8f2;
  --warm-white:  #fff9f3;
  --sand:        #f0e8da;
  --terra:       #c97d4e;
  --terra-light: #e0a070;
  --terra-dark:  #a85e30;
  --sage:        #7a8c6e;
  --sage-light:  #a8b89a;
  --bark:        #5c4033;
  --bark-light:  #8a6a5a;
  --ink:         #2d2218;
  --mist:        #e8e0d6;
}

/* ── 2. BASE ─── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── 3. NAVIGATION ─── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  padding: 20px 52px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(253,248,242,0.96);
  backdrop-filter: blur(16px);
  padding: 13px 52px;
  box-shadow: 0 1px 0 rgba(92,64,51,0.1);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img {
  width: 130px;
  height: 50px;
  object-fit: cover;
  object-position: 50% 50%;
  mix-blend-mode: multiply;
  flex-shrink: 0;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 500;
  color: var(--bark); letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terra); display: block;
}
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  color: rgba(92,64,51,0.7); text-decoration: none;
  font-size: 13px; font-weight: 500; transition: color 0.3s;
}
.nav-links a:hover { color: var(--terra); }
.nav-cta {
  background: var(--terra); color: white;
  padding: 10px 24px; border-radius: 28px;
  font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(201,125,78,0.3);
}
.nav-cta:hover { background: var(--terra-dark); transform: translateY(-1px); }

/* ── 4. HERO ─── */
#hero {
  min-height: 100vh; background: var(--sand);
  position: relative; display: flex; align-items: center; overflow: hidden;
}
.hero-glow-1 {
  position: absolute; right: -100px; top: -80px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,125,78,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; left: -80px; bottom: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,140,110,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
  width: 100%;
  padding: 80px 80px 60px;
}
.hero-visual {
  display: flex; align-items: center; justify-content: center;
}
.hero-logo-img {
  width: 90%;
  mix-blend-mode: multiply;
  opacity: 0.9;
}
.hero-text { animation: fup 1s ease both; }
@keyframes fup {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,125,78,0.11); color: var(--terra-dark);
  padding: 6px 16px; border-radius: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  margin-bottom: 22px; animation: fup 1s 0.1s ease both;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terra); display: block;
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 400; line-height: 1.14;
  color: var(--bark); margin-bottom: 18px;
  animation: fup 1s 0.2s ease both;
}
.hero-h1 em { font-style: italic; color: var(--terra); }
.hero-p {
  font-size: 15px; font-weight: 300; line-height: 1.85;
  color: var(--bark-light); max-width: 460px;
  margin-bottom: 34px; animation: fup 1s 0.35s ease both;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; animation: fup 1s 0.5s ease both; }
.btn-warm {
  background: var(--terra); color: white;
  padding: 14px 30px; border-radius: 30px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(201,125,78,0.35);
}
.btn-warm:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,125,78,0.4); }
.btn-soft {
  background: white; color: var(--bark);
  padding: 14px 30px; border-radius: 30px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
}
.btn-soft:hover { background: var(--cream); transform: translateY(-2px); }

/* Hero property cards */
.hero-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; animation: fup 1s 0.3s ease both;
}
.hcard {
  background: white; border-radius: 20px; overflow: hidden;
  box-shadow: 0 6px 24px rgba(92,64,51,0.1);
  transition: transform 0.3s; cursor: pointer;
}
.hcard:hover { transform: translateY(-5px); }
.hcard-img { height: 130px; display: flex; align-items: center; justify-content: center; font-size: 44px; }
.hi-lake  { background: linear-gradient(140deg,#b8d8e8,#70a8c0,#8ab898); }
.hi-mtn   { background: linear-gradient(140deg,#c8d8e8,#90acd0,#e8f0f8); }
.hi-beach { background: linear-gradient(140deg,#f0e8b0,#a8d8e8,#60b8d0); }
.hi-home  { background: linear-gradient(140deg,#e8d4c0,#c8a888,#a87858); }
.hcard-body { padding: 11px 14px 14px; }
.hcard-title { font-size: 13px; font-weight: 600; color: var(--bark); }
.hcard-loc   { font-size: 11px; color: var(--bark-light); margin-top: 2px; }
.hcard-tag   { display: inline-block; margin-top: 6px; padding: 2px 9px; border-radius: 9px; font-size: 10px; font-weight: 600; }
.ht-str { background: rgba(201,125,78,0.12); color: var(--terra-dark); }
.ht-ltr { background: rgba(122,140,110,0.15); color: var(--sage); }

.hero-trust {
  display: flex; align-items: center; justify-content: space-between;
  background: white; border-radius: 14px; padding: 14px 20px;
  margin-top: 14px; box-shadow: 0 3px 14px rgba(92,64,51,0.08);
}
.ht-item { text-align: center; }
.ht-emoji { font-size: 22px; display: block; }
.ht-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bark-light); margin-top: 3px; }
.ht-div { width: 1px; height: 30px; background: var(--mist); }
.wave-divider { display: block; width: 100%; line-height: 0; }

/* ── 5. SHARED / UTILITY ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 52px; }
.section-tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 10px; display: block;
}
.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400; line-height: 1.2; color: var(--bark);
}
.section-h2 em { font-style: italic; color: var(--terra); }
.section-p {
  font-size: 15px; font-weight: 300; line-height: 1.85;
  color: var(--bark-light); max-width: 520px; margin-top: 12px;
}
/* Platform link pills (reused across sections) */
.pl {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 22px;
  font-size: 13px; font-weight: 600;
  text-decoration: none; border: 1.5px solid; transition: all 0.3s;
}
.pl-air  { border-color: #FF5A5F; color: #FF5A5F; } .pl-air:hover  { background: #FF5A5F; color: white; }
.pl-vrbo { border-color: #3D6BCC; color: #3D6BCC; } .pl-vrbo:hover { background: #3D6BCC; color: white; }
.pl-ff   { border-color: var(--sage); color: var(--sage); } .pl-ff:hover { background: var(--sage); color: white; }
.pl-dir  { border-color: var(--terra); color: var(--terra); } .pl-dir:hover { background: var(--terra); color: white; }

/* ── 6. LISTING TYPES ─── */
#listings { padding: 96px 0; background: var(--warm-white); }
.listings-head { text-align: center; margin-bottom: 54px; }
.listings-head .section-p { max-width: 560px; margin: 12px auto 0; }
.listings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.lcard {
  background: var(--cream); border-radius: 24px; padding: 44px 40px;
  position: relative; overflow: hidden;
  border: 1.5px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.lcard:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(92,64,51,0.12); border-color: rgba(201,125,78,0.2); }
.lcard-bg { position: absolute; bottom: -20px; right: -20px; font-size: 120px; opacity: 0.055; line-height: 1; pointer-events: none; }
.lcard-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 22px; }
.li-str { background: rgba(201,125,78,0.12); }
.li-ltr { background: rgba(122,140,110,0.14); }
.li-fur { background: rgba(212,164,0,0.1); }
.li-cor { background: rgba(100,160,200,0.13); }
.lcard-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 400; color: var(--bark); margin-bottom: 10px; }
.lcard-desc  { font-size: 14px; font-weight: 300; color: var(--bark-light); line-height: 1.8; margin-bottom: 26px; }
.lcard-links { display: flex; flex-wrap: wrap; gap: 9px; }

/* ── 7. DESTINATIONS ─── */
#destinations { padding: 96px 0; background: var(--sand); }
.dest-head { margin-bottom: 50px; }
.dest-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.dcard {
  background: white; border-radius: 22px; overflow: hidden;
  box-shadow: 0 5px 20px rgba(92,64,51,0.08);
  transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
}
.dcard:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(92,64,51,0.14); }
.dcard-img { height: 190px; display: flex; align-items: center; justify-content: center; font-size: 60px; position: relative; }
.di-oz { background: linear-gradient(150deg,#b8d8e8,#70a8c0,#8ab898); }
.di-br { background: linear-gradient(150deg,#c8d8e8,#90acd0,#ffffff); }
.di-gf { background: linear-gradient(150deg,#f0e8b0,#a8d8e8,#60b8d0); }
.di-om { background: linear-gradient(150deg,#e8d8c0,#c8a880,#a08060); }
.di-ln { background: linear-gradient(150deg,#d8e4c8,#a8c088,#78a048); }
.di-kc { background: linear-gradient(150deg,#e8d0b8,#d0a078,#a87048); }
.dcard-badge { position: absolute; bottom: 10px; left: 14px; background: rgba(255,255,255,0.9); color: var(--bark); font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 9px; border-radius: 7px; }
.dcard-body  { padding: 18px 20px 22px; }
.dcard-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 400; color: var(--bark); margin-bottom: 5px; }
.dcard-desc  { font-size: 13px; font-weight: 300; color: var(--bark-light); line-height: 1.7; margin-bottom: 12px; }
.dcard-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip    { padding: 3px 10px; border-radius: 9px; font-size: 11px; font-weight: 500; }
.ch-str  { background: rgba(201,125,78,0.1); color: var(--terra-dark); }
.ch-ltr  { background: rgba(122,140,110,0.12); color: var(--sage); }
.ch-fur  { background: rgba(92,64,51,0.08); color: var(--bark-light); }

/* ── 8. WHY EVERNORTH ─── */
#why { padding: 96px 0; background: var(--warm-white); }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.why-vis { position: relative; }
.why-bigcard { background: var(--bark); border-radius: 28px; padding: 48px 44px; position: relative; overflow: hidden; }
.why-bigcard::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at bottom right, rgba(201,125,78,0.28) 0%, transparent 65%); }
.why-bigcard-z { position: relative; z-index: 2; }
.why-quote { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 400; color: var(--cream); line-height: 1.45; margin-top: 18px; }
.why-quote em { font-style: italic; color: var(--terra-light); }
.why-float  { position: absolute; right: -18px; bottom: 44px; background: white; border-radius: 16px; padding: 16px 20px; box-shadow: 0 10px 32px rgba(0,0,0,0.13); text-align: center; }
.why-float-em  { font-size: 26px; display: block; margin-bottom: 5px; }
.why-float-txt { font-size: 11px; font-weight: 700; color: var(--bark); }
.why-floatb    { position: absolute; left: -18px; top: 44px; background: white; border-radius: 16px; padding: 14px 18px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 10px; }
.why-floatb-em  { font-size: 22px; }
.why-floatb-txt { font-size: 11px; font-weight: 700; color: var(--bark); line-height: 1.4; }
.why-item { display: flex; gap: 16px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--mist); }
.why-item:last-child { border-bottom: none; }
.wi-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.wi1 { background: rgba(201,125,78,0.1); }   .wi2 { background: rgba(122,140,110,0.12); }
.wi3 { background: rgba(212,164,0,0.1); }     .wi4 { background: rgba(100,160,200,0.12); }
.wi-title { font-size: 15px; font-weight: 600; color: var(--bark); margin-bottom: 4px; }
.wi-desc  { font-size: 13px; font-weight: 300; color: var(--bark-light); line-height: 1.7; }

/* ── 9. RENTERS HUB ─── */
#renters { padding: 96px 0; background: var(--sand); }
.renters-center { text-align: center; }
.renters-center .section-p { margin: 12px auto 44px; }
.r3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 44px; }
.rcard { background: white; border-radius: 22px; padding: 34px 26px; text-align: center; box-shadow: 0 4px 16px rgba(92,64,51,0.07); transition: transform 0.3s, box-shadow 0.3s; }
.rcard:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(92,64,51,0.12); }
.rcard-em    { font-size: 38px; margin-bottom: 14px; display: block; }
.rcard-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 400; color: var(--bark); margin-bottom: 8px; }
.rcard-desc  { font-size: 13px; font-weight: 300; color: var(--bark-light); line-height: 1.7; margin-bottom: 18px; }
.rcta   { display: inline-block; padding: 9px 20px; border-radius: 20px; font-size: 12px; font-weight: 600; text-decoration: none; transition: all 0.3s; }
.rcta-s { background: rgba(201,125,78,0.1); color: var(--terra-dark); } .rcta-s:hover { background: var(--terra); color: white; }
.rcta-l { background: rgba(122,140,110,0.12); color: var(--sage); }     .rcta-l:hover { background: var(--sage); color: white; }
.rcta-f { background: rgba(92,64,51,0.08); color: var(--bark-light); } .rcta-f:hover { background: var(--bark); color: white; }
.plat-label { font-size: 12px; font-weight: 500; color: var(--bark-light); letter-spacing: 0.08em; display: block; margin-bottom: 16px; }
.plat-row { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; }
.pb { display: flex; align-items: center; gap: 9px; background: white; padding: 11px 20px; border-radius: 14px; font-size: 14px; font-weight: 600; color: var(--bark); box-shadow: 0 3px 12px rgba(92,64,51,0.07); text-decoration: none; transition: all 0.3s; }
.pb:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(92,64,51,0.13); }
.pd { width: 10px; height: 10px; border-radius: 50%; }
.pd-air { background: #FF5A5F; } .pd-vrb { background: #3D6BCC; } .pd-ff { background: var(--sage); } .pd-dir { background: var(--terra); }

/* ── 10. ABOUT ─── */
#about { padding: 96px 0; background: var(--cream); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.about-vis { position: relative; }
.about-blob { width: 100%; aspect-ratio: 1; border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%; background: linear-gradient(145deg, var(--sand) 0%, var(--mist) 100%); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.about-blob::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 70%, rgba(201,125,78,0.14) 0%, transparent 55%); }
.about-blob-inner { position: relative; z-index: 2; text-align: center; padding: 36px; }
.about-blob-tag { font-family: 'Playfair Display', serif; font-size: 17px; font-style: italic; color: var(--bark); line-height: 1.55; margin-top: 14px; }
.about-sticker  { position: absolute; top: 18px; right: -14px; background: var(--terra); color: white; padding: 12px 16px; border-radius: 14px; font-size: 12px; font-weight: 700; box-shadow: 0 7px 22px rgba(201,125,78,0.4); text-align: center; line-height: 1.4; }
.about-sticker strong { display: block; font-size: 16px; }
.about-sticker2 { position: absolute; bottom: 22px; left: -14px; background: white; border-radius: 14px; padding: 13px 17px; box-shadow: 0 7px 22px rgba(92,64,51,0.11); display: flex; align-items: center; gap: 9px; }
.as2-em { font-size: 22px; } .as2-txt { font-size: 12px; font-weight: 700; color: var(--bark); line-height: 1.4; }
.about-story { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--bark-light); margin: 18px 0 32px; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tmember { background: var(--sand); border-radius: 14px; padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
.tav { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.ta1 { background: rgba(201,125,78,0.14); } .ta2 { background: rgba(122,140,110,0.14); }
.ta3 { background: rgba(92,64,51,0.09); }   .ta4 { background: rgba(100,160,200,0.14); }
.tname { font-size: 13px; font-weight: 600; color: var(--bark); display: block; }
.trole { font-size: 11px; color: var(--bark-light); }

/* ── 11. CONTACT ─── */
#contact { padding: 96px 0; background: var(--bark); position: relative; overflow: hidden; }
#contact::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 40%, rgba(201,125,78,0.22) 0%, transparent 60%); pointer-events: none; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: start; position: relative; z-index: 2; }
.contact-h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4vw, 46px); font-weight: 400; line-height: 1.2; color: var(--cream); }
.contact-h2 em { font-style: italic; color: var(--terra-light); }
.contact-p { font-size: 15px; font-weight: 300; color: rgba(245,232,218,0.7); line-height: 1.8; margin: 14px 0 32px; }
.cway { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 15px 18px; text-decoration: none; transition: all 0.3s; margin-bottom: 12px; }
.cway:hover { background: rgba(255,255,255,0.1); border-color: rgba(201,125,78,0.4); }
.cway-em  { font-size: 20px; }
.cway-lbl { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terra-light); display: block; }
.cway-val { font-size: 14px; font-weight: 400; color: var(--cream); margin-top: 2px; }
.cform-wrap  { background: var(--cream); border-radius: 26px; padding: 40px 36px; }
.cform-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; color: var(--bark); margin-bottom: 4px; }
.cform-sub   { font-size: 13px; color: var(--bark-light); margin-bottom: 26px; }
.cf     { display: flex; flex-direction: column; gap: 13px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.cfg    { display: flex; flex-direction: column; gap: 5px; }
.cflbl  { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bark-light); }
.cfin, .cfsel, .cfta { padding: 11px 14px; border-radius: 9px; border: 1.5px solid var(--mist); background: white; font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 300; color: var(--ink); outline: none; transition: border-color 0.3s; appearance: none; }
.cfin:focus, .cfsel:focus, .cfta:focus { border-color: var(--terra); }
.cfta  { resize: vertical; min-height: 95px; }
.cfsub { background: var(--terra); color: white; padding: 13px 30px; border: none; border-radius: 26px; font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.3s; box-shadow: 0 6px 20px rgba(201,125,78,0.35); align-self: flex-start; }
.cfsub:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201,125,78,0.42); }

/* ── 12. FOOTER ─── */
footer { background: var(--ink); padding: 44px 52px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.foot-brand { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 400; color: rgba(253,248,242,0.45); }
.foot-copy  { font-size: 12px; color: rgba(253,248,242,0.28); font-weight: 300; }
.foot-links { display: flex; gap: 22px; }
.foot-links a { font-size: 12px; color: rgba(253,248,242,0.38); text-decoration: none; transition: color 0.3s; }
.foot-links a:hover { color: var(--terra-light); }

/* ── 13. SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }

/* ── 14. RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 14px 22px; }
  nav.scrolled { padding: 10px 22px; }
  .nav-links { display: none; }
  .container { padding: 0 22px; }
  .hero-inner { grid-template-columns: 1fr; padding: 100px 22px 60px; }
  .hero-cards { display: none; }
  .hero-trust { display: none; }
  .listings-grid, .why-layout, .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .dest-grid, .r3 { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; text-align: center; }
  .foot-links { justify-content: center; }
}
@media (max-width: 560px) {
  .dest-grid, .r3 { grid-template-columns: 1fr; }
}
