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

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

:root {
  --dark:    #2C1A0E;
  --umber:   #5C3A28;
  --terra:   #B87355;
  --sand:    #D4A882;
  --cream:   #F8F2EC;
  --blush:   #F0E0D0;
  --soft:    #C8B5A8;
  --mid:     #9A7060;
  --line:    #DDD0C4;
  --deep:    #3C2010;
  --card:    #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: #ffffff;
  color: var(--umber);
  font-size: 15px;
  line-height: 1.8;
}

/* ── NAV ── */
nav {
  background: var(--dark);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--blush);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--soft);
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 2px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blush); border-bottom: 1px solid var(--terra); }

/* ── LAYOUT ── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 48px; }
.section { padding: 80px 48px; max-width: 1080px; margin: 0 auto; }
.section-alt { background: var(--cream); }
.section-alt .section { background: transparent; }
.full-alt { background: var(--cream); position: relative; }
.full-alt::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(251, 246, 238, 0.70));
  pointer-events: none;
}

/* ── TYPOGRAPHY ── */
.sec-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 10px;
  display: block;
}
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--deep);
  line-height: 1.15;
  margin-bottom: 20px;
}
.divider {
  width: 40px;
  height: 1px;
  background: var(--sand);
  margin: 20px 0 24px;
}
.body-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 18px;
  max-width: 560px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--terra);
  color: var(--cream);
  border: none;
  padding: 13px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--umber); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--umber);
  border: 1px solid var(--umber);
  padding: 13px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--terra); color: var(--blush); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--blush);
  text-decoration: none;
}
.footer-tagline {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terra);
  margin-top: 4px;
}
.footer-right {
  font-size: 11px;
  color: rgba(90,48,32,0.6);
  text-align: right;
  line-height: 1.8;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 14px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .nav-logo { font-size: 20px; }
  .nav-links { gap: 16px; flex-wrap: wrap; }
  .nav-links a { letter-spacing: 1.5px; font-size: 10px; }
  .section { padding: 52px 24px; }
  .sec-title { font-size: 30px; }
  footer { padding: 24px; flex-direction: column; gap: 16px; text-align: center; }
  .footer-right { text-align: center; }
}
