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

:root {
  --cream: #F5F0E8;
  --warm-white: #FAF7F2;
  --sand: #E8DDD0;
  --clay: #C4A882;
  --terracotta: #B5714A;
  --bark: #7A5C3E;
  --deep-brown: #3D2B1F;
  --sage: #8A9E80;
  --moss: #5C7055;
  --charcoal: #2C2420;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── 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 4rem;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(196, 168, 130, 0.2);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--deep-brown);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-links {
  position: fixed;
  top: 0;
  right: 4rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  padding: 1.2rem 0;
  z-index: 101;
}

.nav-links a {
  text-decoration: none;
  color: var(--bark);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}

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

/* ─── HAMBURGER TOGGLE ─── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-brown);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 10% 80%, rgba(181,113,74,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 20%, rgba(140,158,128,0.08) 0%, transparent 50%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 400;
  margin-bottom: 1rem;
  display: block;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--deep-brown);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.page-title em {
  font-style: italic;
  color: var(--terracotta);
}

.page-intro {
  font-size: 1.05rem;
  color: var(--bark);
  max-width: 560px;
  line-height: 1.8;
}

/* ─── CONTAINER & SECTIONS ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4rem;
}

.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 4rem;
}

section { padding: 6rem 0; }

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 400;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--deep-brown);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; color: var(--terracotta); }

.divider {
  width: 60px;
  height: 1px;
  background: var(--clay);
  margin-bottom: 2.5rem;
}

p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--deep-brown);
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}

h3:first-child { margin-top: 0; }

/* ─── PULLQUOTE ─── */
.pullquote {
  border-left: 3px solid var(--terracotta);
  padding: 1rem 0 1rem 1.8rem;
  margin: 2.5rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--bark);
  line-height: 1.6;
}

/* ─── EXAMPLE BOX ─── */
.example-box {
  background: var(--cream);
  border-left: 3px solid var(--sage);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.example-box-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.8rem;
}

.example-box p { font-size: 0.93rem; color: var(--bark); }

/* ─── BULLETS ─── */
.bullets-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.bullets-list li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--bark);
}

.bullets-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-size: 0.8rem;
}

/* ─── QUALITIES LIST ─── */
.qualities-list {
  list-style: none;
  margin-top: 1.5rem;
}

.qualities-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--sand);
  font-size: 0.95rem;
  color: var(--bark);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.qualities-list li::before {
  content: '◦';
  color: var(--terracotta);
  font-size: 1.2rem;
  line-height: 1.5;
  flex-shrink: 0;
}

/* ─── CTA BOX ─── */
.cta-box {
  background: var(--cream);
  padding: 2.5rem;
  border: 1px solid var(--sand);
  border-top: 3px solid var(--terracotta);
}

.cta-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--deep-brown);
  margin-bottom: 0.4rem;
  margin-top: 0;
}

.rate {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--bark);
  margin-bottom: 1.5rem;
}

.cta-btn {
  display: block;
  background: var(--terracotta);
  color: white;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0.75rem;
  transition: all 0.3s;
  text-align: center;
}

.cta-btn:hover { background: var(--bark); }

.cta-btn-ghost {
  display: block;
  border: 1px solid var(--clay);
  color: var(--bark);
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s;
  text-align: center;
}

.cta-btn-ghost:hover { border-color: var(--terracotta); color: var(--terracotta); }

/* ─── TESTIMONIAL ─── */
.testimonial-card {
  background: var(--cream);
  padding: 2.5rem;
  border-top: 3px solid var(--clay);
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.85;
  color: var(--deep-brown);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 400;
}

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--sand);
  font-weight: 300;
}

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

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,221,208,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--clay); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(232,221,208,0.3);
  width: 100%;
  text-align: right;
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }
  nav.nav-open { z-index: 201; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--warm-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 200;
    padding: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; letter-spacing: 0.15em; }
  .container, .container-narrow { padding: 0 1.5rem; }
  section { padding: 4rem 0; }
  .page-hero { padding: 8rem 0 4rem; }
  footer { padding: 2rem 1.5rem; }
  .footer-copy { text-align: left; }
}
