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

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

:root {
  --linen: #f7f2eb;
  --cream: #fdf9f4;
  --stone: #e8e0d4;
  --dust: #d4c9b8;
  --tiffany: #0abab5;
  --tiffany-deep: #088a86;
  --tiffany-pale: #d4f0ee;
  --bark: #7a6a58;
  --earth: #4a3d30;
  --ink: #2c2318;
  --venmo: #3396cd;
  --venmo-deep: #1f6fa0;
}

html { scroll-behavior: smooth; }

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

/* NAV */
nav {
  background: var(--cream);
  border-bottom: 1px solid var(--dust);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 70px;
  position: sticky; top: 0; z-index: 100;
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 500; font-style: italic;
  color: var(--tiffany); letter-spacing: 0.04em; text-decoration: none;
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bark); text-decoration: none; font-weight: 400; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--tiffany); }
.nav-cart {
  background: none; border: 1px solid var(--dust); border-radius: 2px;
  padding: 8px 20px; color: var(--bark); cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 400; transition: all 0.2s; text-decoration: none;
}
.nav-cart:hover { border-color: var(--tiffany); color: var(--tiffany); }

/* BUTTONS */
.btn-filled {
  background: var(--tiffany); color: var(--cream);
  border: 1px solid var(--tiffany); border-radius: 2px;
  padding: 13px 32px; font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 400; cursor: pointer; text-decoration: none;
  transition: all 0.2s; display: inline-block;
}
.btn-filled:hover { background: var(--tiffany-deep); border-color: var(--tiffany-deep); }
.btn-ghost {
  background: transparent; color: var(--tiffany);
  border: 1px solid var(--tiffany); border-radius: 2px;
  padding: 13px 32px; font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 400; cursor: pointer; text-decoration: none;
  transition: all 0.2s; display: inline-block;
}
.btn-ghost:hover { background: var(--tiffany-pale); }

/* SHARED TYPOGRAPHY */
.eyebrow {
  font-size: 10px; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--tiffany); margin-bottom: 0.8rem; font-weight: 400; display: block;
}
.section-label {
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--tiffany); margin-bottom: 0.5rem; font-weight: 400; display: block;
}
h1, h2 { font-family: 'Cormorant Garamond', serif; color: var(--tiffany); font-weight: 500; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1.12; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.2; }
h1 em, h2 em { color: var(--tiffany-deep); font-style: italic; }

.divider {
  display: flex; align-items: center; gap: 1.2rem;
  margin: 1.5rem 0 3rem; color: var(--tiffany); font-size: 0.9rem; opacity: 0.45;
}
.divider::before, .divider::after {
  content: ''; flex: 0 0 50px; height: 1px; background: var(--tiffany); opacity: 0.3;
}

/* FOOTER */
footer {
  background: var(--linen); border-top: 1px solid var(--dust);
  padding: 3rem 2rem 2rem; text-align: center;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
  color: var(--tiffany); font-style: italic; margin-bottom: 0.4rem;
}
.footer-tagline { font-size: 0.85rem; color: var(--bark); margin-bottom: 1.5rem; }
.footer-links { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-links a {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bark); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--tiffany); }
.footer-copy { font-size: 0.8rem; color: var(--dust); }
