/* ==========================================================================
   Variables & Reset
   ========================================================================== */
:root {
  --color-bg: #faf8f5;
  --color-surface: #ffffff;
  --color-primary: #5b7f77;      /* calming sage green */
  --color-primary-dark: #45635c;
  --color-accent: #d9a37b;       /* warm terracotta accent */
  --color-text: #2f3437;
  --color-text-muted: #6b7278;
  --color-border: #e5e1da;

  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max-width: 1120px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(47, 52, 55, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
  color: var(--color-primary-dark);
}

.section-sub {
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: 40px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary-dark);
  border: 1.5px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  background: rgba(91, 127, 119, 0.06);
}

/* ==========================================================================
   Disclaimer Banner
   ========================================================================== */
.disclaimer-banner {
  background: #fff3cd;
  border-bottom: 1px solid #f0d999;
  color: #6b5300;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.9rem;
}

.disclaimer-banner p {
  max-width: var(--max-width);
  margin: 0 auto;
}

.disclaimer-banner strong {
  font-weight: 700;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-primary-dark);
}

.brand-mark {
  font-size: 1.3rem;
  color: var(--color-primary);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: var(--color-primary-dark);
}

.nav-cta {
  background: var(--color-primary);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--color-primary-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 72px 0 96px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.hero-text h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 20px;
  color: var(--color-text);
}

.hero-sub {
  color: var(--color-text-muted);
  max-width: 540px;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.hero-highlights li::before {
  content: "✓ ";
  color: var(--color-primary);
  font-weight: 700;
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  background: var(--color-surface);
}

/* ==========================================================================
   Client Success
   ========================================================================== */
.success {
  padding: 80px 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.success-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
}

.success-card .quote {
  font-size: 0.98rem;
  color: var(--color-text);
  margin-bottom: 16px;
}

.success-card .quote::before {
  content: "\201C";
}

.success-card .quote::after {
  content: "\201D";
}

.success-card .client {
  font-size: 0.85rem;
  color: var(--color-primary-dark);
  font-weight: 600;
}

/* ==========================================================================
   Booking
   ========================================================================== */
.booking {
  padding: 80px 0;
}

.calendly-inline-widget {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--color-surface);
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
  padding: 80px 0 100px;
  background: var(--color-primary-dark);
  color: #fff;
}

.contact .section-title,
.contact .section-sub {
  color: #fff;
}

.contact .section-sub {
  color: rgba(255, 255, 255, 0.75);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: background 0.15s ease;
}

a.contact-item:hover {
  background: rgba(255, 255, 255, 0.16);
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
}

.contact-value {
  font-weight: 600;
  font-size: 1.05rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding: 28px 0;
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-note {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
    max-width: 320px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .site-nav.open {
    max-height: 360px;
  }

  .site-nav .nav-link {
    width: 100%;
    padding: 16px 24px;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-cta {
    margin: 16px 24px;
    text-align: center;
    border-radius: 999px;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 48px 0 64px;
  }

  .success,
  .booking,
  .contact {
    padding: 56px 0;
  }
}
