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

:root {
  --cream:    #F5F0E8;
  --charcoal: #1F262E;
  --coral:    #E76F51;
  --sand:     #D9C9B0;
  --warm-mid: #A68B6A;
  --white:    #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* ─── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(245,240,232,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(166,139,106,0.2);
  transition: all 0.3s ease;
}
nav.scrolled {
  padding: 0.6rem 5%;
  background: rgba(245,240,232,0.97);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 51px;
  width: auto;
  transition: height 0.3s ease;
}
nav.scrolled .nav-logo img { height: 42px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
}
.nav-links a:hover { opacity: 1; color: var(--coral); }
.nav-links a.active { opacity: 1; color: var(--coral); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  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); }

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 70%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right 0.35s ease;
    box-shadow: -8px 0 30px rgba(31,38,46,0.15);
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }
}

/* ─── PAGE HERO (interior pages) ─────────────────── */
.page-hero {
  position: relative;
  padding: 9rem 5% 4.5rem;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, #34404b 55%, var(--coral) 140%);
  background-size: 200% 200%;
  animation: gradientDrift 14s ease infinite;
}
@keyframes gradientDrift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.page-hero-content { position: relative; color: #fff; }
.page-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
}
.page-title em { font-style: italic; color: #f5c9b5; }

/* ─── SECTIONS ────────────────────────────────────── */
section { padding: 5rem 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.8rem;
}
.section-title em { font-style: italic; color: var(--warm-mid); }
.section-divider {
  width: 48px;
  height: 2px;
  background: var(--coral);
  margin-bottom: 2rem;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: var(--coral);
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn:hover { background: #d45e3e; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: #fff; }

/* ─── TESTIMONIAL STRIP (reused every page) ──────── */
.testimonial-strip {
  background: var(--charcoal);
  padding: 4.5rem 5%;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.testimonial-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 4px;
  padding: 2rem 1.8rem;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(231,111,81,0.3);
}
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.testimonial-stars svg { color: var(--coral); width: 15px; height: 15px; }
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.2rem;
}
.testimonial-name {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
}

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.55);
  padding: 3rem 5% 2rem;
  font-size: 0.85rem;
}
.foot-credit {
  text-align: left;
  margin: 0 0 8px 0;
  padding-left: 24px;
  opacity: 0.55;
  font-size: 12px;
}
.foot-credit a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.foot-credit a:hover { color: var(--coral); }
@media (min-width: 701px) {
  footer { padding-left: 0; padding-right: 0; padding-top: 24px; }
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 0 5%;
}
.footer-brand { flex: 1 1 280px; max-width: 320px; }
.footer-brand img { height: 120px; width: auto; margin-bottom: 0.8rem; margin-left: -0.5rem; }
.footer-brand p { max-width: 260px; line-height: 1.6; opacity: 0.7; font-size: 0.82rem; }
.footer-col { padding-top: 0.4rem; }
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-col a, .footer-col span {
  display: block;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 5% 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
.footer-copyright { font-size: 0.75rem; opacity: 0.55; }

@media (max-width: 600px) {
  .footer-bottom { justify-content: center; text-align: center; }
  .foot-credit { text-align: center; padding-left: 0; }
  .footer-brand img { display: none; }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-brand { max-width: 100%; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
}

/* ─── FLOATING CALL BTN ───────────────────────────── */
.float-call {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 200;
  background: var(--coral);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(231,111,81,0.45);
  transition: transform 0.25s, box-shadow 0.25s;
}
.float-call:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(231,111,81,0.6); }
.float-call svg { width: 23px; height: 23px; }
.float-call-ring {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 199;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--coral);
  animation: ringPulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ─── REVEAL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
