/* ============================================
   MANOIR DE CHAMBORD — Design Tokens & Styles
   Art direction: Warm / Authentic / Normandy charm
   ============================================ */

/* --- Fonts --- */
@import url('https://api.fontshare.com/v2/css?f[]=zodiak@400,500,600&f[]=satoshi@300,400,500,700&display=swap');

/* --- Design Tokens --- */
:root {
  /* Typography */
  --font-display: 'Zodiak', 'Georgia', serif;
  --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;

  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing (4px base) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;
}

/* === LIGHT MODE (default) === */
/* Normandy palette: warm stone, forest green accent, earth tones */
:root, [data-theme="light"] {
  --color-bg:             #f5f2ec;
  --color-surface:        #faf8f4;
  --color-surface-2:      #ffffff;
  --color-surface-offset: #ece8e0;
  --color-surface-offset-2: #e5e0d6;
  --color-divider:        #d8d2c6;
  --color-border:         #cfc8ba;

  --color-text:           #2c2418;
  --color-text-muted:     #7a7060;
  --color-text-faint:     #b5ad9e;
  --color-text-inverse:   #faf8f4;

  /* Forest green accent — inspired by Norman hedgerows */
  --color-primary:        #3d6b4f;
  --color-primary-hover:  #2d5039;
  --color-primary-active: #1e3826;
  --color-primary-light:  #e8f0eb;

  /* Warm accent */
  --color-warm:           #a0704a;
  --color-warm-hover:     #8a5d3a;

  --shadow-sm: 0 1px 2px oklch(0.2 0.02 60 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.2 0.02 60 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.2 0.02 60 / 0.12);
}

/* === DARK MODE === */
[data-theme="dark"] {
  --color-bg:             #1a1815;
  --color-surface:        #211f1b;
  --color-surface-2:      #292622;
  --color-surface-offset: #1e1c18;
  --color-surface-offset-2: #252320;
  --color-divider:        #2e2c28;
  --color-border:         #3a3733;

  --color-text:           #d4cfc6;
  --color-text-muted:     #8a8479;
  --color-text-faint:     #5e5a53;
  --color-text-inverse:   #1a1815;

  --color-primary:        #6fa882;
  --color-primary-hover:  #5a9470;
  --color-primary-active: #4a7d5e;
  --color-primary-light:  #2a3a30;

  --color-warm:           #c49470;
  --color-warm-hover:     #b07e5a;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #1a1815;
    --color-surface:        #211f1b;
    --color-surface-2:      #292622;
    --color-surface-offset: #1e1c18;
    --color-surface-offset-2: #252320;
    --color-divider:        #2e2c28;
    --color-border:         #3a3733;
    --color-text:           #d4cfc6;
    --color-text-muted:     #8a8479;
    --color-text-faint:     #5e5a53;
    --color-text-inverse:   #1a1815;
    --color-primary:        #6fa882;
    --color-primary-hover:  #5a9470;
    --color-primary-active: #4a7d5e;
    --color-primary-light:  #2a3a30;
    --color-warm:           #c49470;
    --color-warm-hover:     #b07e5a;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
    --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
    --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
  }
}

/* ============================================
   COMPONENTS
   ============================================ */

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  z-index: 100;
  text-decoration: none;
}
.skip-link:focus { top: var(--space-4); }

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.3s ease;
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.06);
}
.header--scrolled {
  box-shadow: var(--shadow-sm);
}
.header__inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-4) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}
.logo__icon {
  width: 36px;
  height: 36px;
  color: var(--color-primary);
}
.logo__text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.logo__sub {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: -2px;
}

/* Nav */
.nav { display: flex; align-items: center; gap: var(--space-6); }
.nav__link {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
}
.nav__link:hover { color: var(--color-text); }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}
.nav__link:hover::after { width: 100%; }

/* CTA button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  line-height: 1.4;
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
}
.btn--primary:active {
  background: var(--color-primary-active);
}
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary-light);
}
.btn--large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
}
.theme-toggle:hover { color: var(--color-text); background: var(--color-surface-offset); }

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}
.mobile-menu-btn svg { width: 24px; height: 24px; }

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    padding: var(--space-6) var(--space-4);
    gap: var(--space-4);
    border-bottom: 1px solid var(--color-divider);
    box-shadow: var(--shadow-md);
  }
  .header__inner { padding: var(--space-3) var(--space-4); }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(0.15 0.02 60 / 0.85) 0%,
    oklch(0.15 0.02 60 / 0.4) 40%,
    oklch(0.15 0.02 60 / 0.15) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-16) var(--space-4) var(--space-12);
  width: 100%;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(0.9 0.02 60 / 0.8);
  margin-bottom: var(--space-6);
}
.hero__badge::before {
  content: '';
  width: 24px;
  height: 1px;
  background: oklch(0.9 0.02 60 / 0.5);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: #faf8f4;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin-bottom: var(--space-6);
}
.hero__desc {
  font-size: var(--text-base);
  color: oklch(0.88 0.01 60);
  max-width: 48ch;
  line-height: 1.7;
  margin-bottom: var(--space-8);
}
.hero__stats {
  display: flex;
  gap: var(--space-10);
  margin-top: var(--space-8);
}
.hero__stat-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: #faf8f4;
}
.hero__stat-label {
  font-size: var(--text-xs);
  color: oklch(0.8 0.01 60);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: var(--space-1);
}

@media (max-width: 768px) {
  .hero { min-height: 80vh; }
  .hero h1 { font-size: clamp(2rem, 1rem + 5vw, 3rem); }
  .hero__stats { gap: var(--space-6); flex-wrap: wrap; }
}

/* --- Section Utilities --- */
.section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-4);
}
.section--alt { background: var(--color-surface); }
.section--dark {
  background: var(--color-surface-offset-2);
}

.container {
  max-width: var(--content-wide);
  margin-inline: auto;
}
.container--narrow {
  max-width: var(--content-default);
  margin-inline: auto;
}

.section__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}
.section__subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 56ch;
  line-height: 1.7;
}

/* --- Introduction Section --- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.intro__text { max-width: 520px; }
.intro__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.intro__gallery img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.intro__gallery img:first-child {
  grid-column: 1 / -1;
  height: 280px;
}

@media (max-width: 768px) {
  .intro { grid-template-columns: 1fr; gap: var(--space-8); }
  .intro__gallery img { height: 180px; }
  .intro__gallery img:first-child { height: 220px; }
}

/* --- Photo Gallery (full-bleed) --- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
  padding: 0 var(--space-2);
}
.gallery-strip img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
@media (max-width: 768px) {
  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-strip img { height: 180px; }
}

/* --- Spaces / Rooms --- */
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: var(--space-6);
}
.space-card {
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
}
.space-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.space-card__body {
  padding: var(--space-5) var(--space-5) var(--space-6);
}
.space-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-2);
}
.space-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}
.space-card__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-top: var(--space-3);
}

/* --- Amenities --- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: var(--space-4);
}
.amenity {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
}
.amenity__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  margin-top: 2px;
}
.amenity__text h3 {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-1);
}
.amenity__text p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --- Location / Two-column --- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}
.location__times {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.time-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.time-item__badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
}
.time-item__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.time-item__text strong {
  display: block;
  color: var(--color-text);
  font-weight: 600;
}
.location__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.location__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .location-grid { grid-template-columns: 1fr; }
  .location__image img { height: 300px; }
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  padding: clamp(var(--space-16), 10vw, var(--space-32)) var(--space-4);
  text-align: center;
  overflow: hidden;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: oklch(0.15 0.02 60 / 0.75);
  z-index: 1;
}
.cta-section__content {
  position: relative;
  z-index: 2;
  max-width: var(--content-narrow);
  margin-inline: auto;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: #faf8f4;
  margin-bottom: var(--space-4);
}
.cta-section p {
  color: oklch(0.85 0.01 60);
  font-size: var(--text-base);
  margin-bottom: var(--space-8);
  margin-inline: auto;
}
.cta-section .btn--primary {
  background: #faf8f4;
  color: var(--color-primary-active);
}
.cta-section .btn--primary:hover {
  background: #e5e0d6;
}

/* --- Footer --- */
.footer {
  background: var(--color-surface-offset);
  padding: var(--space-12) var(--space-4) var(--space-6);
  border-top: 1px solid var(--color-divider);
}
.footer__inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-8);
}
.footer__brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-3);
  max-width: 36ch;
  line-height: 1.6;
}
.footer__col h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer__col a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}
.footer__col a:hover { color: var(--color-text); }
.footer__bottom {
  max-width: var(--content-wide);
  margin-inline: auto;
  margin-top: var(--space-8);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer__bottom p, .footer__bottom a {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-decoration: none;
}
.footer__bottom a:hover { color: var(--color-text-muted); }

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; gap: var(--space-6); }
}

/* --- Garden Gallery --- */
.garden-gallery__hero {
  margin-bottom: var(--space-3);
}
.garden-gallery__hero img {
  width: 100%;
  height: clamp(300px, 40vw, 500px);
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.garden-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.garden-gallery__grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  cursor: zoom-in;
}
.garden-gallery__night {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.garden-gallery__night img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  cursor: zoom-in;
}

@media (max-width: 768px) {
  .garden-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .garden-gallery__grid img { height: 180px; }
  .garden-gallery__night { grid-template-columns: 1fr; }
  .garden-gallery__night img { height: 220px; }
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Image lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: oklch(0.1 0 0 / 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: var(--space-8);
}
.lightbox--open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #faf8f4;
  font-size: 24px;
  cursor: pointer;
}

/* --- Room gallery nav --- */
.room-gallery {
  position: relative;
}
.room-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: oklch(1 0 0 / 0.85);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: var(--shadow-md);
}
.room-gallery__nav--prev { left: var(--space-3); }
.room-gallery__nav--next { right: var(--space-3); }
.room-gallery__nav:hover { background: #fff; }
.room-gallery__dots {
  position: absolute;
  bottom: var(--space-3);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2);
  z-index: 5;
}
.room-gallery__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: oklch(1 0 0 / 0.5);
  cursor: pointer;
}
.room-gallery__dot--active { background: #fff; }

/* --- Language Switcher --- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-right: var(--space-2);
}
.lang-switch__link {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--color-text-muted);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.lang-switch__link:hover {
  color: var(--color-text);
  background: var(--color-surface-alt);
}
.lang-switch__link--active {
  color: var(--color-primary);
  font-weight: 700;
  pointer-events: none;
}
@media (max-width: 768px) {
  .lang-switch {
    margin: 0;
    justify-content: center;
    padding: var(--space-2) 0;
    border-top: 1px solid var(--color-border);
    margin-top: var(--space-2);
  }
}

/* --- Instagram Section --- */
.instagram-section {
  text-align: center;
}
.instagram-cta {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-10) var(--space-6);
  background: var(--color-surface-alt);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.instagram-cta__icon {
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.instagram-cta .section__label {
  margin-bottom: var(--space-2);
}
.instagram-cta .section__title {
  margin-bottom: var(--space-3);
}
.instagram-cta__text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: var(--space-6);
}
.instagram-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
}
.instagram-cta__btn svg {
  flex-shrink: 0;
}
