/* ═══════════════════════════════════════
   Lucré Maria Consultancy — Global Styles
   ═══════════════════════════════════════ */

:root {
  --sand: #F5F0EB;
  --cream: #FFFDF9;
  --warm-white: #FAFAF7;
  --clay: #C4A882;
  --clay-dark: #A8896A;
  --terracotta: #C97B5A;
  --terracotta-light: #D4926F;
  --deep-brown: #3D2E1F;
  --charcoal: #2C2C2C;
  --soft-gray: #8A8279;
  --mist: #E8E3DC;
  --blush: #EDE0D4;
  --sage: #B5BFA1;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 1.1rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.4s ease;
  background: rgba(255,253,249,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--mist);
}
nav.scrolled { padding: 0.85rem 3rem; box-shadow: 0 2px 20px rgba(61,46,31,0.06); }
.nav-logo { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; color: var(--deep-brown); }
.nav-logo span { font-style: italic; font-weight: 300; color: var(--clay-dark); }
.nav-links { display: flex; gap: 1.75rem; align-items: center; list-style: none; }
.nav-links a {
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--charcoal);
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--terracotta); transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--terracotta); }
.nav-cta {
  background: var(--deep-brown) !important; color: var(--cream) !important;
  padding: 0.6rem 1.4rem !important; border-radius: 50px !important;
  font-size: 0.78rem !important; letter-spacing: 0.06em !important;
  transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--terracotta) !important; }
.nav-cta::after { display: none !important; }

/* HAMBURGER */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--deep-brown);
  transition: all 0.3s; border-radius: 2px;
}

/* BUTTONS */
.btn-primary {
  display: inline-block; background: var(--deep-brown); color: var(--cream);
  padding: 0.85rem 1.9rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; transition: all 0.3s;
  font-family: var(--font-body); border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--terracotta); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,123,90,0.2); }
.btn-outline {
  display: inline-block; color: var(--deep-brown);
  padding: 0.85rem 1.9rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; border: 1.5px solid var(--mist); transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--clay); color: var(--terracotta); }

/* SHARED SECTIONS */
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 500; margin-bottom: 0.9rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 300; color: var(--deep-brown);
  line-height: 1.2; margin-bottom: 1.1rem;
}
.section-desc {
  font-size: 0.95rem; line-height: 1.75;
  color: var(--soft-gray); max-width: 560px;
}

/* PAGE HERO */
.page-hero {
  padding: 9rem 3rem 4.5rem; background: var(--warm-white);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -30%; right: -15%;
  width: 50vw; height: 50vw; border-radius: 50%;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  opacity: 0.5; pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 300; color: var(--deep-brown);
  line-height: 1.15; margin-bottom: 1.25rem;
  position: relative; z-index: 1;
}
.page-hero h1 em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.page-hero p {
  font-size: 1rem; line-height: 1.7; color: var(--soft-gray);
  max-width: 520px; margin: 0 auto; position: relative; z-index: 1;
}

/* TESTIMONIAL BAND */
.testimonial-band {
  background: var(--deep-brown); color: var(--cream);
  text-align: center; padding: 5rem 3rem;
}
.testimonial-band-inner { max-width: 680px; margin: 0 auto; }
.quote-mark {
  font-family: var(--font-display); font-size: 4.5rem;
  color: var(--terracotta); line-height: 1; opacity: 0.7;
}
.testimonial-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 300; font-style: italic; line-height: 1.6;
  color: var(--sand); margin-bottom: 1.5rem;
}
.testimonial-band .author {
  font-size: 0.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--clay);
}

/* CTA BAND */
.cta-band { background: var(--cream); text-align: center; padding: 6rem 3rem; }
.cta-band-inner { max-width: 560px; margin: 0 auto; }
.cta-band-inner .section-heading { margin-bottom: 0.9rem; }
.cta-band-inner .section-desc { margin: 0 auto 2.25rem; text-align: center; }

/* FOOTER */
footer { background: var(--warm-white); padding: 3rem 3rem 1.5rem; border-top: 1px solid var(--mist); }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
}
.footer-brand p { font-size: 0.8rem; color: var(--soft-gray); max-width: 260px; line-height: 1.6; margin-top: 0.5rem; }
.footer-links { display: flex; gap: 3rem; }
.footer-col h5 {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--deep-brown); margin-bottom: 0.75rem; font-weight: 600;
}
.footer-col a { display: block; font-size: 0.82rem; color: var(--soft-gray); margin-bottom: 0.45rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--terracotta); }
.footer-bottom {
  max-width: 1100px; margin: 2rem auto 0; padding-top: 1.25rem;
  border-top: 1px solid var(--mist); text-align: center;
  font-size: 0.72rem; color: var(--soft-gray);
}

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.75rem 1.5rem; }
  .nav-links {
    display: none; flex-direction: column; position: fixed;
    top: 0; right: 0; width: 280px; height: 100vh;
    background: var(--cream); padding: 5rem 2rem 2rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1); gap: 1.25rem;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .page-hero { padding: 7.5rem 1.5rem 3.5rem; }
  .section-inner { padding: 0 1.5rem; }
  .testimonial-band { padding: 3.5rem 1.5rem; }
  .cta-band { padding: 4rem 1.5rem; }
  footer { padding: 2rem 1.5rem 1rem; }
  .footer-links { gap: 2rem; }
}

@media (max-width: 640px) {
  section [style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr !important; }
  section [style*="grid-template-columns: repeat(4"] { grid-template-columns: 1fr 1fr !important; }
}
