/* ============ TOKENS ============ */
:root {
  /* Colors pulled from the logo: sky blue + grass green */
  --green-950: #0b2239;   /* deep navy (dark sections, footer) */
  --green-900: #0f2f4d;
  --green-700: #1a4a75;
  --green-500: #2a7d2a;   /* grass green for small text on light */
  --lime: #7ccf4f;        /* bright grass green accent */
  --lime-dark: #66b83b;
  --blue: #1672c4;        /* logo blue */
  --blue-dark: #115da1;
  --cream: #f6f8f5;
  --tint: #eaf2ea;
  --ink: #13202c;
  --muted: #53606b;
  --line: #d6dfd8;
  --white: #ffffff;

  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(11, 34, 57, 0.08);
  --max: 1120px;
}

/* ============ BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.1; margin: 0 0 0.5em; }
h1, h2 { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  font: 600 1rem/1 var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.btn-small { padding: 10px 18px; font-size: 0.92rem; }
.btn-lime { background: var(--lime); color: var(--green-950); }
.btn-lime:hover { background: var(--lime-dark); }
.btn-dark { background: var(--green-900); color: var(--white); }
.btn-dark:hover { background: var(--green-700); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.6); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }
.btn-ghost-light { border-color: rgba(255, 255, 255, 0.5); color: var(--white); }
.btn-ghost-light:hover { border-color: var(--lime); color: var(--lime); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  color: var(--green-950);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { height: 50px; width: auto; flex-shrink: 0; }
.logo-text { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: -0.01em; margin: 0; }
.logo-text em { font-style: normal; color: var(--green-500); }
.logo-text { white-space: nowrap; }
@media (max-width: 480px) {
  .logo { gap: 8px; }
  .logo-mark { height: 36px; }
  .header-inner .logo-text { font-size: 0.95rem; }
}
.site-footer .logo-text em { color: var(--lime); }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a:not(.btn) { text-decoration: none; font-weight: 500; font-size: 0.95rem; opacity: 0.85; }
.site-nav a:not(.btn):hover { opacity: 1; color: var(--blue); }
.site-nav .btn { background: var(--blue); color: var(--white); }
.site-nav .btn:hover { background: var(--blue-dark); }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--green-950); transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 20px 20px;
    background: var(--white);
    box-shadow: 0 12px 24px rgba(11, 34, 57, 0.12);
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .site-nav .btn { margin-top: 16px; }
}

/* ============ HERO ============ */
.hero {
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(11, 34, 57, 0.9) 0%, rgba(11, 34, 57, 0.62) 50%, rgba(11, 34, 57, 0.15) 100%),
    url("images/hero.jpg") center 65% / cover no-repeat,
    repeating-linear-gradient(90deg, #2c6b3d 0 90px, #357a47 90px 180px);
  padding: clamp(80px, 12vw, 150px) 0 clamp(70px, 10vw, 120px);
}
.hero-inner { max-width: var(--max); }
.hero h1 { max-width: 14ch; }
.hero-sub { font-size: 1.2rem; max-width: 34em; opacity: 0.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 0; }
.hero-badges { list-style: none; padding: 0; margin: 36px 0 0; display: flex; flex-wrap: wrap; gap: 10px 24px; font-weight: 600; font-size: 0.95rem; }
.hero-badges li::before { content: "✓"; color: var(--lime); margin-right: 8px; }

.eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-500); margin-bottom: 12px;
}
.hero .eyebrow, .eyebrow-lime { color: var(--lime); }

/* ============ SECTIONS ============ */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-tint { background: var(--tint); }
.section-dark { background: var(--green-900); color: var(--white); }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head p:last-child { color: var(--muted); font-size: 1.1rem; }

/* ============ STANDARD SERVICE ============ */
.standard {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.standard-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.standard-list li { padding: 32px 28px; border-right: 1px solid var(--line); }
.standard-list li:last-child { border-right: 0; }
.standard-list p { color: var(--muted); margin: 0; font-size: 0.98rem; }
.step-num { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--lime-dark); margin-bottom: 12px; }
.standard-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 22px 28px; background: var(--green-950); color: var(--white);
}
.standard-cta p { margin: 0; opacity: 0.85; }
.standard-cta .btn-dark { background: var(--lime); color: var(--green-950); }
.standard-cta .btn-dark:hover { background: var(--lime-dark); }

@media (max-width: 860px) {
  .standard-list { grid-template-columns: repeat(2, 1fr); }
  .standard-list li:nth-child(2) { border-right: 0; }
  .standard-list li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 520px) {
  .standard-list { grid-template-columns: 1fr; }
  .standard-list li { border-right: 0; border-bottom: 1px solid var(--line); }
  .standard-list li:last-child { border-bottom: 0; }
}

/* ============ À LA CARTE ============ */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.service-card:hover { border-color: var(--green-500); transform: translateY(-2px); }
.service-card p { color: var(--muted); margin: 0; font-size: 0.98rem; }
.service-card h3::before {
  content: ""; display: block; width: 28px; height: 4px; border-radius: 2px;
  background: var(--lime); margin-bottom: 16px;
}
.service-card-wide { grid-column: span 1; background: var(--green-900); border-color: var(--green-900); color: var(--white); }
.service-card-wide p { color: rgba(255, 255, 255, 0.8); }
.tag-list { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list li { background: rgba(182, 224, 74, 0.16); color: var(--lime); border-radius: 999px; padding: 4px 12px; font-size: 0.85rem; font-weight: 600; }

.delivery {
  margin-top: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 28px;
  border-radius: var(--radius);
  border: 2px dashed var(--green-500);
}
.delivery h3 { margin-bottom: 4px; }
.delivery p { margin: 0; color: var(--muted); }

@media (max-width: 860px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .service-grid { grid-template-columns: 1fr; } }

/* ============ BOOKING ============ */
.book-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.book-copy > p { font-size: 1.1rem; opacity: 0.88; max-width: 32em; }
.how-list { counter-reset: how; list-style: none; padding: 0; margin: 28px 0 0; }
.how-list li { counter-increment: how; position: relative; padding: 10px 0 10px 44px; opacity: 0.92; }
.how-list li::before {
  content: counter(how);
  position: absolute; left: 0; top: 8px;
  width: 30px; height: 30px; border-radius: 50%;
  display: inline-grid; place-items: center;
  background: var(--lime); color: var(--green-950);
  font-weight: 700; font-size: 0.9rem;
}
.qr-card {
  justify-self: center;
  width: 100%; max-width: 340px;
  background: var(--white); color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.qr-code { width: 220px; height: 220px; margin: 0 auto; display: grid; place-items: center; }
.qr-code img, .qr-code canvas { width: 220px !important; height: 220px !important; }
.qr-caption { font-weight: 600; margin: 18px 0 14px; }
.qr-note { color: var(--muted); font-size: 0.92rem; margin: 0; }
.qr-code:empty {
  border: 2px dashed var(--line); border-radius: var(--radius);
}

@media (max-width: 860px) { .book-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ============ PAY ============ */
.pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pay-group {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex; flex-direction: column;
}
.pay-group h3 { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-500); margin-bottom: 16px; }
.pay-group .btn { margin-top: auto; align-self: flex-start; }
.pay-list { list-style: none; padding: 0; margin: 0 0 20px; }
.pay-list li { padding: 9px 0; border-bottom: 1px solid var(--line); font-weight: 600; }
.pay-list li:last-child { border-bottom: 0; }
.pay-list-handles li { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.pay-list-handles code { font-family: var(--font-body); font-weight: 500; color: var(--muted); font-size: 0.92rem; }
.pay-group-trade { background: var(--lime); border-color: var(--lime); }
.pay-group-trade h3 { color: var(--green-950); }
.pay-group-trade p { margin: 0; font-weight: 500; }

@media (max-width: 960px) { .pay-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pay-grid { grid-template-columns: 1fr; } }

/* ============ GALLERY ============ */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.placeholder {
  display: grid; place-items: center;
  color: var(--muted); font-weight: 600; font-size: 0.95rem;
  background: repeating-linear-gradient(90deg, #e2e8d4 0 40px, #e8edda 40px 80px);
  border: 1px solid var(--line);
}
@media (max-width: 720px) { .gallery { grid-template-columns: 1fr; } }

/* ============ CONTACT ============ */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-inner > div p:last-child { color: var(--muted); font-size: 1.1rem; }
.contact-list { list-style: none; padding: 0; margin: 0; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact-list li { display: flex; flex-direction: column; padding: 20px 28px; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 0; }
.contact-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-500); }
.contact-list a, .contact-list li > span:last-child { font-size: 1.15rem; font-weight: 600; text-decoration: none; }
.contact-list a:hover { color: var(--green-500); }
@media (max-width: 860px) { .contact-inner { grid-template-columns: 1fr; gap: 32px; } }

/* ============ FOOTER ============ */
.site-footer { background: var(--green-950); color: rgba(255, 255, 255, 0.75); padding: 36px 0; font-size: 0.92rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-inner p { margin: 0; }
.site-footer .logo-text { color: var(--white); }
