/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --cream-100: #f8f5f0;
  --cream-200: #f0ebe3;
  --cream-300: #e8e0d4;
  --cream-50:  #fdfcfa;
  --text-dark:  #1a1a1a;
  --text-mid:   #3d3d3d;
  --text-light: #6b6b6b;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

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

/* ── Typography ───────────────────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--emerald-900);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-full { width: 100%; }

.btn-accent {
  background: var(--emerald-700);
  color: #fff;
  border: 2px solid var(--emerald-700);
}
.btn-accent:hover {
  background: var(--emerald-800);
  border-color: var(--emerald-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-cream {
  background: var(--cream-200);
  color: var(--emerald-900);
  border: 2px solid var(--cream-200);
}
.btn-cream:hover {
  background: var(--cream-300);
  border-color: var(--cream-300);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

/* ── Header ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253,252,250,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--emerald-900);
}

.logo em { font-style: italic; font-weight: 400; opacity: .7; }

.logo-icon { color: var(--emerald-700); flex-shrink: 0; }

/* ── Navigation ───────────────────────────────────────── */
.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-list a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
}

.nav-list a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald-600);
  transition: var(--transition);
}

.nav-list a:not(.btn):hover { color: var(--emerald-700); }
.nav-list a:not(.btn):hover::after { width: 100%; }

/* ── Hamburger ────────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 101;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
}

.hamburger::before { transform: translateY(-7px); }
.hamburger::after  { transform: translateY(7px); }

.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after  { transform: rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      #047857 0%,
      #065f46 25%,
      #064e3b 50%,
      #047857 75%,
      #059669 100%
    );
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(16,185,129,.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(6,114,87,.3) 0%, transparent 60%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(217,249,157,.8);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: #d9f99d;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}

.trust-item svg { color: #d9f99d; }

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 2;
  color: var(--cream-50);
  line-height: 0;
}

.hero-wave svg { width: 100%; height: 80px; }

/* ── Services ─────────────────────────────────────────── */
.services {
  padding: 100px 0 80px;
  background: var(--cream-50);
}

.services .section-label,
.services .section-title,
.services .section-sub { text-align: center; }
.services .section-sub { margin: 0 auto 56px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald-500);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(6,78,59,.08), rgba(16,185,129,.12));
  color: var(--emerald-700);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--emerald-900);
  margin-bottom: 12px;
}

.service-card p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── About ────────────────────────────────────────────── */
.about {
  padding: 80px 0 100px;
  background: var(--cream-100);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--emerald-900);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: baseline;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

.badge-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #d9f99d;
}

.badge-label {
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .85;
}

.about-content .section-title { margin-top: 4px; }

.about-content p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.about-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='%23059669'/%3E%3Cpath d='M6 10l3 3 5-6' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── Why Us ───────────────────────────────────────────── */
.why-us {
  padding: 100px 0;
  background: var(--cream-50);
}

.why-us .section-label,
.why-us .section-title { text-align: center; }
.why-us .section-title { margin-bottom: 56px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.why-card {
  background: #fff;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--emerald-500);
  box-shadow: var(--shadow-md);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-700), var(--emerald-500));
  opacity: 0;
  transition: var(--transition);
}

.why-card:hover::before { opacity: 1; }

.why-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--cream-200);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition);
}

.why-card:hover .why-number { color: rgba(6,78,59,.1); }

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--emerald-900);
  margin-bottom: 12px;
}

.why-card p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── Brands ───────────────────────────────────────────── */
.brands {
  padding: 60px 0;
  background: var(--cream-100);
  border-top: 1px solid var(--cream-300);
  border-bottom: 1px solid var(--cream-300);
}

.brands-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 24px;
}

.brands-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.brand-tag {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-mid);
  background: #fff;
  border: 1px solid var(--cream-300);
  transition: var(--transition);
}

.brand-tag:hover {
  border-color: var(--emerald-500);
  color: var(--emerald-700);
  background: rgba(6,78,59,.04);
}

/* ── CTA / Contact ────────────────────────────────────── */
.cta {
  padding: 100px 0;
  background: var(--cream-50);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.cta-content .section-title { margin-top: 4px; }
.cta-content > p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--text-mid);
}

.contact-item svg {
  flex-shrink: 0;
  color: var(--emerald-600);
}

.contact-item a {
  color: var(--emerald-700);
  font-weight: 500;
  transition: var(--transition);
}

.contact-item a:hover { color: var(--emerald-500); text-decoration: underline; }

/* ── Form ─────────────────────────────────────────────── */
.cta-form-wrap {
  background: #fff;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--emerald-900);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--cream-50);
  transition: var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--emerald-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(16,185,129,.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--cream-300);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: .8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 16px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(6,78,59,.06);
  border: 1px solid rgba(6,78,59,.15);
  border-radius: var(--radius-sm);
  color: var(--emerald-800);
  font-size: .92rem;
  font-weight: 500;
  margin-top: 20px;
}

.form-success svg { flex-shrink: 0; color: var(--emerald-600); }

/* ── Footer ───────────────────────────────────────────── */
.site-footer {
  background: var(--emerald-900);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: .9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-brand .logo { color: #fff; }
.footer-brand .logo em { color: rgba(255,255,255,.6); }
.footer-brand .logo-icon { color: #d9f99d; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}

.footer-links a:hover { color: #d9f91d; color: #d9f99d; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .9rem;
}

.footer-contact a {
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}

.footer-contact a:hover { color: #d9f99d; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ── Scroll Animations ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
  .cta-grid { gap: 40px; }
}

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

  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--cream-50);
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 32px 32px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 99;
  }

  .nav-list.open { transform: translateX(0); }

  .nav-list a:not(.btn) { font-size: 1.05rem; }
  .nav-list .btn { width: 100%; justify-content: center; }

  .hero { padding: 100px 20px 60px; min-height: 100svh; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
  .hero-trust { gap: 20px; }

  .services { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }

  .about { padding: 60px 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap img { height: 280px; }

  .why-us { padding: 60px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 28px 24px; }

  .cta { padding: 60px 0; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-form-wrap { padding: 28px 20px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
}

/* Overlay for mobile menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}
