@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,500;1,8..60,300;1,8..60,400&family=DM+Mono:wght@400;500&display=swap');

:root {
  --green-deep:    #183d2a;
  --green-mid:     #235c3e;
  --green-accent:  #2e7d52;
  --green-light:   #e4f0e9;
  --green-pale:    #f2f8f4;
  --amber:         #c97318;
  --amber-bright:  #e8891f;
  --amber-pale:    #fdf3e7;
  --cream:         #faf8f4;
  --cream-dark:    #f0ede6;
  --ink:           #1a1f1c;
  --ink-mid:       #3d4a42;
  --ink-soft:      #6b7a71;
  --rule:          #d1ddd5;
  --white:         #ffffff;
}

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

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

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.mono { font-family: 'DM Mono', monospace; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--green-accent); border-radius: 3px; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,125,82,0.3); }
  50%       { box-shadow: 0 0 0 10px rgba(46,125,82,0); }
}

.animate-fade-up  { animation: fadeUp 0.7s ease both; }
.animate-fade-in  { animation: fadeIn 0.6s ease both; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  border-bottom-color: var(--rule);
  box-shadow: 0 2px 20px rgba(24,61,42,0.06);
}

/* ── Logo ── */
.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--green-deep);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-bright);
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s;
}
.logo-mark:hover .logo-icon { background: var(--green-accent); }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--green-deep);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
}

/* ── Nav ── */
nav a {
  font-family: 'Source Serif 4', serif;
  font-size: 0.92rem;
  color: var(--ink-mid);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: var(--green-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
nav a:hover { color: var(--green-accent); }
nav a:hover::after,
nav a.active::after { transform: scaleX(1); }
nav a.active { color: var(--green-deep); font-weight: 500; }

/* ── Mobile menu ── */
.burger {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px; padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
  background: var(--cream);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  padding: 14px 24px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}

/* ── Hero ── */
.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(160deg, var(--green-pale) 0%, var(--cream) 55%, var(--amber-pale) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(46,125,82,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,115,24,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
  box-shadow: 0 2px 8px rgba(24,61,42,0.08);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green-accent);
  border-radius: 50%;
  animation: pulseGreen 2s ease infinite;
  flex-shrink: 0;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1.1;
}
.hero-title em {
  font-style: italic;
  color: var(--amber);
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--ink-mid);
  max-width: 540px;
  font-weight: 300;
  line-height: 1.75;
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-deep);
  color: var(--white);
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(24,61,42,0.2);
}
.hero-cta-primary:hover {
  background: var(--green-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24,61,42,0.3);
}
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-mid);
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid var(--green-accent);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-cta-secondary:hover { color: var(--green-deep); }

.hero-float-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 8px 40px rgba(24,61,42,0.1), 0 2px 8px rgba(24,61,42,0.06);
  border: 1px solid var(--rule);
  animation: float 5s ease-in-out infinite;
}
.stat-item .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}
.stat-item .stat-suffix { color: var(--amber); }
.stat-item .stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ── Stats bar ── */
.stats-bar {
  background: var(--green-deep);
  padding: 28px 0;
}
.stats-bar .stat-num { color: var(--amber-bright); }
.stats-bar .stat-label { color: rgba(255,255,255,0.55); }
.stats-bar .stat-text {
  font-family: 'Source Serif 4', serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
}

/* ── Section helpers ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px; height: 1.5px;
  background: var(--green-accent);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 16px;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--ink-mid);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.75;
}

/* ── Service cards ── */
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--rule);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-accent), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(24,61,42,0.12);
  border-color: var(--green-light);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--green-accent);
  margin-bottom: 20px;
  transition: background 0.3s, color 0.3s;
}
.service-card:hover .service-icon {
  background: var(--green-accent);
  color: var(--white);
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ── Safety section ── */
.safety-section {
  background: linear-gradient(135deg, var(--green-deep) 0%, #0f2b1c 100%);
  position: relative;
  overflow: hidden;
}
.safety-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(201,115,24,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.safety-section .section-tag { color: var(--amber-bright); }
.safety-section .section-tag::before { background: var(--amber-bright); }
.safety-section .section-title { color: var(--white); }
.safety-section .section-lead { color: rgba(255,255,255,0.75); }

.risk-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.risk-item:last-child { border-bottom: none; }
.risk-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-top: 4px;
  flex-shrink: 0;
  width: 28px;
}
.risk-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.risk-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ── Advantages ── */
.adv-section { background: var(--green-pale); }
.adv-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid var(--rule);
  transition: box-shadow 0.3s;
}
.adv-card:hover { box-shadow: 0 8px 32px rgba(24,61,42,0.09); }
.adv-icon {
  width: 44px; height: 44px;
  background: var(--amber-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--amber);
  margin-bottom: 16px;
}
.adv-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.adv-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── About ── */
.about-section { background: var(--cream); }
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  border: 1px solid rgba(46,125,82,0.25);
  border-radius: 6px;
  padding: 5px 12px;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--green-mid);
}
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--green-light) 0%, var(--cream-dark) 100%);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  color: var(--green-accent);
  border: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
}
.about-image-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* ── Process ── */
.process-section { background: var(--amber-pale); }
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(201,115,24,0.15);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 40px; height: 40px;
  background: var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ── Equipment ── */
.equipment-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--rule);
  transition: transform 0.3s, box-shadow 0.3s;
}
.equipment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(24,61,42,0.1);
}
.equipment-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, var(--green-light) 0%, var(--cream-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--green-accent);
  position: relative;
  overflow: hidden;
}
.equipment-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.equipment-body { padding: 20px 22px; }
.equipment-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.equipment-body p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(120deg, var(--green-mid) 0%, var(--green-deep) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute;
  right: -100px; bottom: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(201,115,24,0.1);
  pointer-events: none;
}

/* ── Contact Form ── */
.form-section { background: var(--cream); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green-accent);
  box-shadow: 0 0 0 3px rgba(46,125,82,0.1);
}
.form-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 6px;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; cursor: pointer; }
.form-submit {
  background: var(--green-deep);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(24,61,42,0.2);
}
.form-submit:hover {
  background: var(--green-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24,61,42,0.3);
}

/* ── Map ── */
.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 0 4px 24px rgba(24,61,42,0.08);
}
.map-wrapper iframe { display: block; }

/* ── Footer ── */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.75);
}
.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
}
.footer-logo-sub {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
}
.footer-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--amber-bright); }
.footer-heading {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.footer-contact-item i {
  color: var(--amber);
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 480px;
  width: calc(100% - 48px);
  box-shadow: 0 8px 40px rgba(24,61,42,0.15);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cookie-banner.hidden { display: none; }
.cookie-text {
  font-size: 0.88rem;
  color: var(--ink-mid);
  line-height: 1.55;
  flex: 1;
}
.cookie-text a { color: var(--green-accent); }
.cookie-btn-accept {
  background: var(--green-deep);
  color: var(--white);
  border: none;
  border-radius: 7px;
  padding: 8px 16px;
  font-family: 'Source Serif 4', serif;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.cookie-btn-accept:hover { background: var(--green-accent); }
.cookie-btn-decline {
  background: none;
  color: var(--ink-soft);
  border: 1px solid var(--rule);
  border-radius: 7px;
  padding: 8px 14px;
  font-family: 'Source Serif 4', serif;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s;
}
.cookie-btn-decline:hover { border-color: var(--ink-soft); }

/* ── Policy pages ── */
.policy-content h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-deep);
  margin: 32px 0 12px;
}
.policy-content p {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 12px;
}
.policy-content ul {
  margin: 0 0 16px 20px;
  color: var(--ink-mid);
  font-size: 0.95rem;
  line-height: 1.8;
}
.policy-content a { color: var(--green-accent); }

/* ── Divider ── */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 12px 0;
}
.ornament-divider::before,
.ornament-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.ornament-divider i { color: var(--green-accent); font-size: 0.7rem; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-py { padding: 96px 0; }
.section-py-sm { padding: 64px 0; }

@media (max-width: 768px) {
  .section-py { padding: 64px 0; }
  .section-py-sm { padding: 40px 0; }
  .hero-float-card { display: none; }
}
