/* ═══════════════════════════════════════════════════════════
   JERRY CREEK RANCH — STYLESHEET
   Palette: Burgundy (#7B2D3B / #9C3A4A) + Blush (#F4C2C2 / #FDEAEA)
   Fonts: Playfair Display (headings) + Inter (body)
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --burgundy:    #7B2D3B;
  --burgundy-d:  #5C1F2B;
  --burgundy-l:  #9C3A4A;
  --blush:       #F4C2C2;
  --blush-l:     #FDEAEA;
  --blush-ll:    #FFF5F5;
  --cream:       #FFFAF8;
  --charcoal:    #1E1517;
  --slate:       #3D2B2F;
  --stone:       #6B5559;
  --sand:        #A8898D;
  --white:       #FFFFFF;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --shadow-sm:   0 2px 8px rgba(123,45,59,0.08);
  --shadow-md:   0 8px 30px rgba(123,45,59,0.12);
  --shadow-lg:   0 16px 50px rgba(123,45,59,0.16);
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }

em { font-style: italic; }

a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 780px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}
.btn--primary:hover {
  background: var(--burgundy-d);
  border-color: var(--burgundy-d);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--burgundy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn--outline:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 18px 38px; font-size: 1.05rem; }
.btn--nav { padding: 10px 22px; font-size: 0.88rem; }

/* ── SECTION TAGS ── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--blush);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag--light {
  color: var(--white);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}

/* ── SECTION HEADERS ── */
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--charcoal); margin-bottom: 18px; }
.section-title em { color: var(--burgundy); }
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--blush); }
.section-subtitle { font-size: 1.1rem; color: var(--stone); line-height: 1.7; }
.section-subtitle--light { color: rgba(255,255,255,0.8); }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,250,248,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123,45,59,0.08);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255,250,248,0.97);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--burgundy);
}
.nav-logo-icon { width: 32px; height: 32px; color: var(--burgundy); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  transition: var(--transition);
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  transition: var(--transition);
}
.nav-links a:not(.btn):hover { color: var(--burgundy); }
.nav-links a:not(.btn):hover::after { width: 100%; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,250,248,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid rgba(123,45,59,0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,21,23,0.82) 0%,
    rgba(123,45,59,0.65) 50%,
    rgba(30,21,23,0.78) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 80px;
}
.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blush);
  background: rgba(244,194,194,0.15);
  border: 1px solid rgba(244,194,194,0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
  font-weight: 700;
}
.hero-title em {
  color: var(--blush);
  font-style: italic;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--blush);
  flex-shrink: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  animation: heroBounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 28px; height: 28px; }

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

/* Geometric accents */
.hero-geo {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.hero-geo--tl {
  top: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: var(--blush);
  border-radius: 50%;
  opacity: 0.12;
}
.hero-geo--br {
  bottom: -80px;
  right: -80px;
  width: 340px;
  height: 340px;
  background: var(--burgundy);
  border-radius: 50%;
  opacity: 0.15;
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-trust { gap: 16px; }
}

/* ── GEO ACCENT SHAPES ── */
.geo-accent {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.geo-accent--blush {
  width: 400px;
  height: 400px;
  background: var(--blush);
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(80px);
}
.geo-accent--blush { bottom: -100px; left: -100px; }
.geo-accent--tr {
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--blush);
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(60px);
}
.geo-accent--burgundy {
  width: 350px;
  height: 350px;
  background: var(--burgundy);
  border-radius: 50%;
  opacity: 0.07;
  filter: blur(80px);
  top: -80px;
  right: -80px;
}

/* ── ROOMS ── */
.section--rooms { background: var(--cream); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.room-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--burgundy);
  padding: 6px 14px;
  border-radius: 50px;
}
.room-badge--blush {
  background: var(--burgundy-l);
}
.room-card-body { padding: 28px; }
.room-name {
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.room-desc {
  font-size: 0.95rem;
  color: var(--stone);
  line-height: 1.65;
  margin-bottom: 20px;
}
.room-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.room-features li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  color: var(--slate);
  font-weight: 500;
}
.room-features li svg {
  width: 15px;
  height: 15px;
  color: var(--burgundy);
  flex-shrink: 0;
}

/* ── EXPERIENCE ── */
.section--experience {
  background: var(--burgundy);
  color: var(--white);
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}
.exp-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.exp-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.exp-card-visual {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.exp-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.exp-card:hover .exp-card-visual img { transform: scale(1.06); }
.exp-card-body { padding: 24px; }
.exp-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blush);
  border-radius: var(--radius-sm);
  color: var(--burgundy);
  margin-bottom: 16px;
  margin-top: -42px;
  position: relative;
  z-index: 1;
  margin-left: 24px;
}
.exp-card-body h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}
.exp-card-body p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

/* ── LOCATION ── */
.section--location { background: var(--cream); padding-bottom: 80px; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.location-text .section-title { text-align: left; }
.location-text .section-subtitle,
.location-desc { text-align: left; }
.location-desc {
  font-size: 1.05rem;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 28px;
}
.location-address {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--slate);
  margin-bottom: 24px;
  font-weight: 500;
}
.location-address svg { width: 18px; height: 18px; color: var(--burgundy); flex-shrink: 0; }
.location-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--burgundy);
  font-weight: 500;
  transition: var(--transition);
}
.contact-link:hover { color: var(--burgundy-d); text-decoration: underline; }
.contact-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.geo-map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.geo-map-placeholder img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 12/7; }
.map-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(30,21,23,0.7));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}
.location-visual {
  position: relative;
}
.geo-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.geo-shape--1 {
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: var(--blush);
  opacity: 0.5;
}
.geo-shape--2 {
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: var(--burgundy);
  opacity: 0.15;
}
.location-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 7/9;
  object-fit: cover;
}
.location-stats {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 90%;
  max-width: 400px;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 20px 12px;
  border-right: 1px solid var(--blush-l);
}
.stat:last-child { border-right: none; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burgundy);
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; gap: 48px; }
  .location-visual { order: -1; max-width: 500px; margin: 0 auto; }
  .location-text .section-title,
  .location-text .section-subtitle,
  .location-desc { text-align: center; }
  .location-address { justify-content: center; }
  .location-contacts { align-items: center; }
}

/* ── GALLERY ── */
.section--gallery { background: var(--blush-ll); padding: 80px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--wide { grid-column: span 6; }
.gallery-item:not(.gallery-item--wide) { grid-column: span 3; }

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item:not(.gallery-item--wide) { grid-column: span 1; }
  .gallery-item { aspect-ratio: 16/10; }
  .gallery-item--wide { aspect-ratio: 16/9; }
}

/* ── CTA ── */
.section--cta {
  position: relative;
  padding: 120px 0;
  background: var(--charcoal);
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.section--cta .container { position: relative; z-index: 2; text-align: center; }
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ── CONTACT ── */
.section--contact { background: var(--cream); padding-bottom: 60px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-info .section-title { text-align: left; }
.contact-desc {
  font-size: 1.02rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blush);
  border-radius: var(--radius-sm);
  color: var(--burgundy);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-detail strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
  margin-bottom: 4px;
}
.contact-detail span,
.contact-detail a {
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 500;
  transition: var(--transition);
}
.contact-detail a:hover { color: var(--burgundy); text-decoration: underline; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--blush);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--blush-ll);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(123,45,59,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--sand); }
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: var(--radius-sm);
  color: #2E7D32;
  font-size: 0.95rem;
}
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; color: #2E7D32; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info .section-title { text-align: center; }
  .contact-desc { text-align: center; }
  .contact-details { align-items: center; }
  .contact-detail { text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
}

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-logo-icon { width: 28px; height: 28px; color: var(--blush); }
.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}
.footer-links,
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong,
.footer-contact strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blush);
  margin-bottom: 4px;
}
.footer-links a,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--white); text-decoration: underline; }
.footer-contact span { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── SCROLL REVEAL (below-fold only, progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}
