:root {
  --color-main: #9EEFE5;
  --color-secondary: #758E4F;
  --color-third: #EF6B37;
  --color-gold: #B7990D;
  --color-dark: #3C474B;

  --color-bg: #F6F4E8;
  --color-surface: #FFFFFF;
  --color-main-tint: #E1F9F5;
  --color-orange-tint: #FDE4D8;
  --color-green-tint: #E4EBDA;
  --color-gold-tint: #F5EBCB;

  --font-heading: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 12px 30px rgba(60, 71, 75, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-bg);
  line-height: 1.6;
}

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

.custom-cursor {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background: url('assets/cursor-white.png') no-repeat center / contain;
  filter: drop-shadow(0 0 2px rgba(60, 71, 75, 0.6));
  pointer-events: none;
  z-index: 9999;
  transform: translate(-4px, -2px) rotate(0deg);
  opacity: 1;
  transition: transform 0.35s ease, opacity 0.15s ease;
  will-change: transform;
}

.custom-cursor.is-hover { transform: translate(-4px, -2px) rotate(180deg); }
.custom-cursor.is-hidden { opacity: 0; }

@media (pointer: fine) {
  *, a, button { cursor: none !important; }
  .custom-cursor { display: block; }
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0 0 16px;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--color-third);
  color: #fff;
  box-shadow: 0 10px 24px rgba(239, 107, 55, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(239, 107, 55, 0.45); }

.btn-ghost {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
}
.btn-ghost:hover { background: var(--color-dark); color: #fff; }

.btn-large { padding: 18px 36px; font-size: 1.1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #83C4BC;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(60, 71, 75, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 40px;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: #fff;
}

.primary-nav a { padding: 6px 2px; }
.primary-nav a:not(.btn):hover { color: var(--color-third); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 81px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(60, 71, 75, 0.55) 0%, rgba(60, 71, 75, 0.35) 40%, rgba(60, 71, 75, 0.8) 100%),
    url('assets/landing-page-image.jpg') center 30% / cover no-repeat;
  color: #fff;
}

.hero-inner { max-width: 720px; }

.hero-copy { max-width: 640px; }

.eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.hero .eyebrow { color: var(--color-main); }
.services .eyebrow { color: var(--color-main); }

.eyebrow-center { text-align: center; }

.hero-copy h1 {
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 46ch;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.92);
}

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

.hero .btn-ghost {
  border-color: #fff;
  color: #fff;
}
.hero .btn-ghost:hover { background: #fff; color: var(--color-dark); }

/* Services */
.services {
  padding: 100px 0;
  background: var(--color-main-tint);
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  max-width: 32ch;
  margin: 0 auto 48px;
  color: var(--color-dark);
}

.services-list {
  max-width: 760px;
  margin: 0 auto;
}

.service-item {
  border-bottom: 1px solid rgba(60, 71, 75, 0.15);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.service-item:first-child { border-top: 1px solid rgba(60, 71, 75, 0.15); }

.service-item.in-view { opacity: 1; transform: translateY(0); }

.service-item:nth-child(1) { transition-delay: 0ms; }
.service-item:nth-child(2) { transition-delay: 120ms; }
.service-item:nth-child(3) { transition-delay: 240ms; }
.service-item:nth-child(4) { transition-delay: 360ms; }

.service-header {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  background: none;
  border: none;
  padding: 26px 4px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
}

.service-number {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.service-title {
  flex: 1;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 700;
  color: var(--color-dark);
  transition: color 0.2s ease;
}

.service-header:hover .service-title { color: var(--color-third); }

.service-chevron {
  flex-shrink: 0;
  position: relative;
  width: 20px;
  height: 20px;
}
.service-chevron::before,
.service-chevron::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-dark);
  transition: transform 0.3s ease;
}
.service-chevron::before {
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.service-chevron::after {
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
}
.service-header[aria-expanded="true"] .service-chevron::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.service-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.service-panel ul {
  margin: 0;
  padding: 0 4px 28px 62px;
  list-style: none;
}

.service-panel li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.service-panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
}

.item-orange .service-number { background: var(--color-third); }
.item-green .service-number { background: var(--color-secondary); }
.item-teal .service-number { background: var(--color-main); color: var(--color-dark); }
.item-gold .service-number { background: var(--color-gold); }

/* About */
.about {
  padding: 70px 0;
  background: var(--color-secondary);
  color: #fff;
}

.about-inner { text-align: center; }

.about-copy { max-width: 68ch; margin: 0 auto; }

.about .eyebrow { color: var(--color-main); }
.about .section-title { color: #fff; }

.about-copy p { font-size: 1.05rem; }

/* CTA banner */
.cta-banner {
  padding: 90px 0;
  text-align: center;
  background: var(--color-third);
  color: #fff;
}

.cta-banner h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: #fff;
}

.cta-banner p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--color-third);
  box-shadow: 0 10px 24px rgba(60, 71, 75, 0.25);
}
.cta-banner .btn-primary:hover { box-shadow: 0 14px 30px rgba(60, 71, 75, 0.32); }

/* Footer */
.site-footer {
  background: var(--color-dark);
  color: #fff;
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 16px;
}

.footer-logo {
  height: 36px;
  flex-shrink: 0;
}

.footer-inner p { margin: 0; white-space: nowrap; }
.footer-inner a { flex-shrink: 0; }

.footer-inner a:hover { color: var(--color-main); }

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.footer-links a { color: rgba(255, 255, 255, 0.75); font-size: 0.9rem; }

/* Legal notice page */
.legal-page {
  padding: 64px 0 90px;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}

.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin: 32px 0 8px;
}

.legal-page p { margin: 0 0 8px; }

.legal-page a { color: var(--color-secondary); }

/* Responsive */
@media (max-width: 760px) {
  .nav-toggle { display: flex; }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    color: var(--color-dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-soft);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a { width: 100%; padding: 10px 0; color: var(--color-dark); }
  .primary-nav a:not(.btn):hover { color: var(--color-third); }
}

@media (max-width: 560px) {
  .hero-actions { flex-direction: column; }
  .btn { text-align: center; }

  .service-header { gap: 14px; padding: 20px 2px; }
  .service-number { width: 34px; height: 34px; font-size: 0.8rem; }
  .service-panel ul { padding-left: 48px; }

  .footer-inner {
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
    gap: 8px;
    font-size: 0.72rem;
  }

  .footer-inner p { white-space: normal; }

  .footer-logo { height: 24px; }
}
