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

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

:root {
  --sage-pale:   #ECF0E4;
  --sage-light:  #E0E8D4;
  --sage-mid:    #B8C9A0;
  --sage-deep:   #7A9B6E;
  --black:       #2C2C2A;
  --ink:         #333330;
  --ink-mid:     #555552;
  --ink-muted:   #787874;
  --gold:        #8C8880;
  --gold-light:  #A8A49E;
  --gold-dim:    rgba(140,136,128,0.12);
  --white:       #F5F5F2;
  --border:      rgba(44,44,42,0.1);
  --border-gold: rgba(140,136,128,0.22);
  --avocado-nav: #4A6741;
  --avocado-mid: #5E7F54;
  --avocado-deep:#3A5232;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--sage-pale); color: var(--black); line-height: 1.6; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
}
nav.scrolled {
  background: rgba(74,103,65,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .logo-main { font-family: 'Playfair Display', serif; font-size: 1.85rem; font-weight: 600; color: var(--black); letter-spacing: 0.04em; transition: color 0.3s; }
.nav-logo .logo-sub { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.28em; color: var(--avocado-mid); text-transform: uppercase; margin-top: 0.1rem; transition: color 0.3s; }
.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-links a { color: var(--black); text-decoration: none; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--avocado-mid); }
.nav-cta { background: var(--black) !important; color: #F5F5F2 !important; padding: 0.55rem 1.4rem; border-radius: 2px; font-weight: 600 !important; transition: background 0.2s, transform 0.2s !important; }
.nav-cta:hover { background: var(--avocado-nav) !important; transform: translateY(-1px); }
nav.scrolled .nav-logo .logo-main { color: #F5F5F2; }
nav.scrolled .nav-logo .logo-sub { color: #B8C9A0; }
nav.scrolled .nav-links a { color: rgba(245,245,242,0.75); }
nav.scrolled .nav-links a:hover { color: #F5F5F2; }
nav.scrolled .nav-cta { background: #F5F5F2 !important; color: var(--avocado-nav) !important; }
nav.scrolled .nav-cta:hover { background: #ffffff !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--black); display: block; transition: 0.3s; }
nav.scrolled .hamburger span { background: #F5F5F2; }

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative; overflow: hidden; padding: 7rem 2rem 4rem;
  flex-direction: column;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(140,136,128,0.06) 0%, transparent 58%),
    linear-gradient(135deg, #ECF0E4 0%, #E0E8D4 50%, #ECF0E4 100%);
}
.hero-grid-overlay { display: none !important; }
.hero-content { position: relative; z-index: 2; max-width: 1080px; width: 100%; margin-left: auto; margin-right: auto; text-align: center; padding-top: 0; }
.hero-label { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--avocado-mid); margin: 0 auto 1.5rem; font-weight: 500; font-family: 'DM Sans', sans-serif; max-width: 700px; }
.hero-label::before { content: '✦'; font-size: 0.55rem; color: var(--avocado-mid); }
h1.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.9rem, 5.2vw, 5rem); font-weight: 600; line-height: 1.08; color: var(--black); margin-bottom: 1.5rem; }
h1.hero-title em { color: var(--avocado-mid); font-style: italic; }
.hero-subtitle { font-family: 'EB Garamond', serif; font-size: 1.15rem; color: var(--ink-muted); max-width: 680px; margin: 0 auto 2.5rem; line-height: 1.85; font-weight: 400; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; align-items: stretch; }

/* Hero stat cards — unified bordered container */
.hero-right { display: flex; max-width: 860px; margin: 3rem auto 0; border: 1px solid rgba(44,44,42,0.12); background: var(--white); gap: 0; position: relative; z-index: 2; }
.hero-stat-card { flex: 1; padding: 1.75rem 1rem; text-align: center; border-right: 1px solid rgba(44,44,42,0.12); border-radius: 0; box-shadow: none; background: transparent; min-height: 110px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero-stat-card:last-child { border-right: none; }
.hero-stat-number { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; color: var(--avocado-mid); line-height: 1; margin-bottom: 0.3rem; }
.hero-stat-label { font-family: 'DM Sans', sans-serif; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); font-weight: 500; }

/* ── SCROLL CUE ── */
#hero::after { content: '↓'; font-size: 0.75rem; letter-spacing: 0.2em; color: var(--ink-muted); display: block; text-align: center; margin-top: 2.5rem; animation: bounce 2s infinite; position: relative; z-index: 2; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ── BUTTONS ── */
.btn-primary { background: var(--avocado-nav); color: #F5F5F2; padding: 0.95rem 2.2rem; border: 1px solid var(--avocado-nav); font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; border-radius: 2px; display: inline-flex; min-width: 260px; text-align: center; justify-content: center; align-items: center; }
.btn-primary:hover { background: var(--avocado-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,103,65,0.28); }
.btn-secondary { background: transparent; color: var(--black); padding: 0.95rem 2.2rem; border: 1px solid var(--black); font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s; border-radius: 2px; display: inline-flex; min-width: 260px; text-align: center; justify-content: center; align-items: center; }
.btn-secondary:hover { background: var(--black); color: #F5F5F2; transform: translateY(-2px); }

/* ── SECTION BASE ── */
section { padding: 6rem 4rem; }
.section-label { display: inline-flex; align-items: center; gap: 0.6rem; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--avocado-mid); margin-bottom: 1rem; font-weight: 500; }
.section-label::before { content: '✦'; font-size: 0.55rem; color: var(--avocado-mid); }
h2.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 600; color: var(--black); line-height: 1.1; margin-bottom: 1rem; }
h2.section-title em { color: var(--avocado-mid); font-style: italic; }
.section-desc { font-family: 'EB Garamond', serif; font-size: 1.1rem; color: var(--ink-muted); max-width: 540px; font-weight: 400; line-height: 1.85; margin-bottom: 3.5rem; }

/* ── STATS BAR ── */
#stats { background: var(--avocado-mid); padding: 3.5rem 4rem; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.stat-item { text-align: center; padding: 1.25rem 1rem; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.75rem; font-weight: 700; color: #F5F5F2; line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,245,242,0.6); font-weight: 500; }

/* ── SERVICES ── */
#services { padding: 6rem 4rem; background: var(--white); }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: var(--white); border: 1px solid var(--border); padding: 2.25rem; transition: border-color 0.3s, transform 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--avocado-mid); transition: height 0.3s; }
.service-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.service-card:hover::before { height: 100%; }
.service-icon { font-size: 1.85rem; margin-bottom: 1.1rem; display: block; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 600; color: var(--black); margin-bottom: 0.65rem; }
.service-card p { font-family: 'EB Garamond', serif; font-size: 1.1rem; color: var(--ink-muted); line-height: 1.75; font-weight: 400; }

/* ── SECURITY ── */
#security { background: var(--sage-pale); }
.security-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.compliance-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.badge { background: var(--gold-dim); border: 1px solid var(--border-gold); padding: 1.5rem; text-align: center; transition: background 0.3s, border-color 0.3s; cursor: default; }
.badge:hover { background: rgba(140,136,128,0.14); border-color: rgba(140,136,128,0.4); }
.badge-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--avocado-mid); margin-bottom: 0.25rem; }
.badge-desc { font-family: 'DM Sans', sans-serif; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); font-weight: 500; }
.security-features { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.security-feature { display: flex; gap: 1rem; align-items: flex-start; }
.security-feature .check { width: 20px; height: 20px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--avocado-mid); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; font-size: 0.62rem; color: var(--avocado-mid); }
.security-feature p { font-family: 'EB Garamond', serif; font-size: 1.1rem; color: var(--ink-muted); line-height: 1.65; font-weight: 400; }
.security-feature strong { color: var(--black); font-weight: 600; }

/* ── QUALITY ── */
#quality { background: var(--white); }
.quality-inner { max-width: 1100px; margin: 0 auto; }
.quality-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.quality-card { background: var(--white); border: 1px solid var(--border); padding: 2rem; transition: border-color 0.3s; }
.quality-card:hover { border-color: var(--border-gold); }
.quality-card h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: var(--black); margin-bottom: 0.65rem; }
.quality-card p { font-family: 'EB Garamond', serif; font-size: 1.1rem; color: var(--ink-muted); line-height: 1.75; font-weight: 400; }

/* ── JAMAICA ── */
#jamaica { padding: 6rem 4rem; background: var(--sage-pale); }
.jamaica-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.jamaica-points { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.25rem; }
.jamaica-point { display: flex; gap: 1.25rem; align-items: flex-start; }
.point-number { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--avocado-mid); opacity: 0.45; line-height: 1; flex-shrink: 0; min-width: 2rem; }
.point-text h4 { font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--black); margin-bottom: 0.25rem; }
.point-text p { font-family: 'EB Garamond', serif; font-size: 1.1rem; color: var(--ink-muted); font-weight: 400; line-height: 1.65; }
.jamaica-visual { background: var(--white); border: 1px solid var(--border-gold); padding: 2.5rem; }
.jamaica-visual-title { font-family: 'DM Sans', sans-serif; font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--avocado-mid); font-weight: 600; margin-bottom: 1.5rem; }
.location-item { display: flex; gap: 1rem; align-items: center; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.location-item:last-child { border-bottom: none; padding-bottom: 0; }
.location-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--avocado-mid); flex-shrink: 0; }
.location-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: var(--black); }
.location-desc { font-family: 'EB Garamond', serif; font-size: 1rem; color: var(--ink-muted); font-weight: 400; }

/* ── PRICING ── */
#pricing { padding: 6rem 4rem; background: var(--white); }
.pricing-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; text-align: left; }
.pricing-card { background: var(--sage-pale); border: 1px solid var(--border); padding: 2.5rem; position: relative; transition: transform 0.3s; }
.pricing-card.featured { border-color: var(--avocado-mid); background: linear-gradient(135deg, rgba(94,127,84,0.06) 0%, var(--sage-pale) 100%); }
.pricing-card.featured::before { content: 'MOST POPULAR'; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--avocado-mid); color: #F5F5F2; font-family: 'DM Sans', sans-serif; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.22em; padding: 0.3rem 1.2rem; white-space: nowrap; }
.pricing-card:hover { transform: translateY(-4px); }
.pricing-tier { font-family: 'DM Sans', sans-serif; font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--avocado-mid); font-weight: 600; margin-bottom: 0.65rem; }
.pricing-card h3 { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 600; color: var(--black); margin-bottom: 1rem; }
.pricing-desc { font-family: 'EB Garamond', serif; font-size: 1.1rem; color: var(--ink-muted); line-height: 1.7; margin-bottom: 1.5rem; font-weight: 400; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.pricing-features li { display: flex; gap: 0.75rem; color: var(--ink-muted); font-size: 0.85rem; font-weight: 400; }
.pricing-features li::before { content: '✦'; color: var(--avocado-mid); font-size: 0.58rem; flex-shrink: 0; margin-top: 5px; }

/* ── CTA BAND ── */
#cta { background: var(--sage-light); border-top: 1px solid var(--sage-mid); border-bottom: 1px solid var(--sage-mid); text-align: center; padding: 5rem 4rem; }
.cta-inner { max-width: 620px; margin: 0 auto; }
.cta-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 600; color: var(--black); margin-bottom: 1rem; line-height: 1.1; }
.cta-inner p { font-family: 'EB Garamond', serif; font-size: 1.1rem; color: var(--ink-muted); margin-bottom: 2rem; font-weight: 400; line-height: 1.85; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--avocado-deep); padding: 4rem; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo-main { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600; color: #F5F5F2; letter-spacing: 0.04em; }
.footer-brand .logo-sub { font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: #B8C9A0; font-weight: 500; display: block; margin-bottom: 1rem; }
.footer-brand p { color: rgba(245,245,242,0.55); font-family: 'EB Garamond', serif; font-size: 1rem; line-height: 1.75; font-weight: 400; max-width: 280px; }
.footer-col h5 { font-family: 'DM Sans', sans-serif; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: #B8C9A0; font-weight: 600; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a { color: rgba(245,245,242,0.55); text-decoration: none; font-size: 0.83rem; font-weight: 400; transition: color 0.2s; }
.footer-col ul a:hover { color: #F5F5F2; }
.footer-bottom { max-width: 1200px; margin: 2rem auto 0; display: flex; justify-content: space-between; color: rgba(245,245,242,0.3); font-size: 0.72rem; font-weight: 400; }

/* ── MOBILE MENU ── */
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--avocado-nav); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 1.75rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 600; color: #F5F5F2; text-decoration: none; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--sage-mid); }
.mobile-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; color: #F5F5F2; font-size: 2rem; cursor: pointer; }

/* ── 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); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 1.25rem 2rem; }
  .hero-right { flex-wrap: wrap; }
  #hero { padding: 5rem 3rem; }
  section { padding: 5rem 2rem; }
  #stats { padding: 3rem 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .security-inner { grid-template-columns: 1fr; gap: 3rem; }
  .jamaica-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  /* Nav */
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo .logo-main { font-size: 1rem; }

  /* Hero */
  #hero { padding-top: 6rem; }
  .hero-label { font-size: 0.62rem; letter-spacing: 0.18em; max-width: 85vw; white-space: normal; text-align: center; line-height: 1.5; }
  .hero-label::before, .hero-label::after { display: none; }
  h1.hero-title { font-size: clamp(2.2rem, 8vw, 3rem); line-height: 1.1; }
  .hero-subtitle { font-size: 1rem; max-width: 100%; padding: 0 0.5rem; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 340px; text-align: center; min-width: unset; }
  .hero-right { flex-direction: column; max-width: 100%; margin-top: 2rem; border: 1px solid var(--border); gap: 0; }
  .hero-stat-card { border-right: none; border-bottom: 1px solid var(--border); padding: 1.25rem 1rem; }
  .hero-stat-card:last-child { border-bottom: none; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 2rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.75rem 1.5rem; }

  /* Security */
  .security-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .compliance-badges { grid-template-columns: repeat(3, 1fr); }
  .badge { padding: 1.1rem 0.75rem; }

  /* Quality */
  .quality-grid { grid-template-columns: 1fr; }

  /* Jamaica / Locations */
  .jamaica-inner { grid-template-columns: 1fr; gap: 2rem; }
  .jamaica-visual { position: static; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .pricing-card.featured::before { font-size: 0.52rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.4rem; }

  /* Global padding */
  section { padding: 3.5rem 1.25rem; }
  #stats, #cta, footer { padding-left: 1.25rem; padding-right: 1.25rem; }
}

@media (max-width: 480px) {
  #hero { padding: 6rem 1.25rem 3rem; }
  .hero-actions { flex-direction: column; }
}

@media (max-width: 400px) {
  .nav-logo .logo-sub { display: none; }
}

@media (max-width: 380px) {
  .hero-label { display: none; }
}
