@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  /* Colors */
  --c-ivory: #FFFFF0;
  --c-beige: #F5F5DC;
  --c-gold: #DAA520;
  --c-champagne: #F7E7CE;
  --c-cream: #FFFDD0;
  --c-rosegold: #B76E79;
  --c-dark: #2A2A2A;
  /* For contrast text */
  --c-black-light: #1c1c1c;

  /* Fonts */
  --f-heading-1: 'Cormorant Garamond', serif;
  --f-heading-2: 'Playfair Display', serif;
  --f-body-1: 'Poppins', sans-serif;
  --f-body-2: 'Montserrat', sans-serif;

  /* Spaces */
  --s-sm: 1rem;
  --s-md: 2rem;
  --s-lg: 4rem;
  --s-xl: 8rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: auto;
  /* Handled by Lenis */
}

body {
  font-family: var(--f-body-1);
  background-color: var(--c-ivory);
  color: var(--c-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--f-heading-1);
  font-weight: 500;
  color: var(--c-dark);
}

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

ul {
  list-style: none;
}

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

/* Base Layouts */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--s-md);
}

.section {
  padding: var(--s-xl) 0;
}

/* Utilities */
.text-center {
  text-align: center;
}

.gold-text {
  color: var(--c-gold);
}

.rosegold-text {
  color: var(--c-rosegold);
}

/* Lenis */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Responsiveness */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 8rem;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-visual {
    width: 100%;
    justify-content: center;
  }

  .nav-links {
    display: none;
    /* simple mobile nav hide for now, would need a hamburger */
  }

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

  .stats-grid {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .masonry-grid {
    columns: 2;
  }
}