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

:root {
  --linen: #F0EAE1;
  --terracotta: #C07B6B;
  --terra-dark: #A36558;
  --ink: #211C18;
  --ink-soft: #4A3F38;
  --white: #FFFFFF;
  --cream: #FAF7F4;
  --border: rgba(33,28,24,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--linen);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2.5rem;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

nav.scrolled {
  background: rgba(240,234,225,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

nav.scrolled .nav-brand { color: var(--ink); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s;
}

nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav-links a:hover { color: var(--terracotta); }
.nav-links a.active { color: var(--terracotta); }

/* When nav is on a light page from the start */
nav.light .nav-brand { color: var(--ink); }
nav.light .nav-links a { color: var(--ink-soft); }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 2.2rem;
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-terra {
  background: var(--terracotta);
  color: var(--white);
}

.btn-terra:hover {
  background: var(--terra-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

/* MARQUEE */
.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  padding: 1.2rem 0;
}

.marquee-inner {
  display: inline-block;
  animation: marquee 22s linear infinite;
}

.marquee-inner span {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  font-style: italic;
  padding-right: 3rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* FOOTER */
footer {
  background: var(--ink);
  color: var(--white);
  padding: 3rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

footer .footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
}

footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

footer a:hover { color: var(--terracotta); }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { gap: 1.2rem; }
  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .nav-links a { font-size: 0.68rem; letter-spacing: 0.08em; }
}
