:root {
  --bg: #faf8f2;
  --surface: #ffffff;
  --cream: #f4efe6;
  --ink: #1d2428;
  --muted: #5b6a6f;
  --brand: #5B9583;
  --brand-2: #24343c;
  --gold: #c6a756;
  --line: rgba(29, 36, 40, 0.12);
  --radius: 20px;
  --shadow: 0 16px 36px rgba(20, 31, 36, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 78% 2%, #efe7d8 0%, var(--bg) 42%, #f7f2e8 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

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

h1,
h2,
h3 {
  margin: 0 0 0.7rem;
  line-height: 1.15;
  font-family: "Cormorant Garamond", serif;
  color: var(--brand-2);
}

p { margin: 0 0 1rem; }

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
  background: var(--brand);
  color: #fff;
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  z-index: 120;
}


.hero {
  padding: 5.8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(17, 28, 31, 0.55), rgba(32, 48, 54, 0.2)),
    url("rsc/events-futs-bandeau.png") center/cover no-repeat;
  z-index: -1;
}

.hero--short {
  padding: 4.7rem 0 3.2rem;
}

.hero-content {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.8rem);
  max-width: 16ch;
}

.eyebrow {
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  font-size: 0.78rem;
  color: #f8dc9b;
}

.lede {
  max-width: 62ch;
  font-size: 1.08rem;
}

.section { padding: 4.6rem 0; }
.section--tight { padding: 3.4rem 0; }
.section--cream { background: var(--cream); }

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.quote-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1.2rem;
}

.stack-col {
  display: grid;
  gap: 1.2rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem 1.1rem;
  box-shadow: var(--shadow);
}

.card--result {
  border-top: 4px solid var(--brand);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.carton-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 0.5rem 0.7rem;
  align-items: center;
}

.carton-head {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 800;
}

.carton-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand-2);
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-2);
}

.check-list {
  display: grid;
  gap: 0.45rem;
}

.check-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.check-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
}

input,
select {
  width: 100%;
  border: 1px solid rgba(36, 52, 60, 0.18);
  border-radius: 12px;
  background: #fff;
  min-height: 42px;
  padding: 0.6rem 0.72rem;
  font: inherit;
  color: var(--ink);
}

textarea {
  width: 100%;
  border: 1px solid rgba(36, 52, 60, 0.18);
  border-radius: 12px;
  background: #fff;
  padding: 0.65rem 0.72rem;
  font: inherit;
  color: var(--ink);
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(91, 149, 131, 0.35);
  outline-offset: 1px;
  border-color: rgba(91, 149, 131, 0.55);
}

.hint,
.meta-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.suggestions {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.7rem;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem 0.85rem;
  background: linear-gradient(180deg, #fff, #fbf8f1);
}

.metric-label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 0.15rem;
}

.metric strong {
  font-size: 1.2rem;
  color: var(--brand-2);
}

.quote-lines {
  display: grid;
  gap: 0.48rem;
  margin-bottom: 1rem;
}

.quote-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px dashed rgba(36, 52, 60, 0.16);
  font-size: 0.94rem;
}

.quote-line .amount {
  font-weight: 700;
  color: var(--brand-2);
}

.quote-line--discount .amount {
  color: #2b7a5f;
}

.totals {
  display: grid;
  gap: 0.45rem;
}

.totals > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.98rem;
}

.totals .grand {
  margin-top: 0.3rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--line);
  font-size: 1.08rem;
  font-weight: 800;
}

.deposit {
  color: #2f6f5b;
}

.conditions {
  list-style: disc;
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.4rem;
}

.disclaimer {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.9rem;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
}

.btn--outline {
  border-color: var(--brand);
  color: var(--brand);
  background: #fff;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f6f2e9;
}

.footer-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .two-col,
  .quote-layout,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .carton-grid {
    grid-template-columns: 1fr;
  }

  .carton-head {
    display: none;
  }

  .carton-grid--bottles {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 0.65rem;
  }

  .carton-grid--bottles .carton-head {
    display: block;
    text-align: center;
  }

  .carton-grid--bottles .carton-head:first-child {
    display: none;
  }

  .carton-grid--bottles .carton-label {
    grid-column: 1 / -1;
    margin-top: 0.3rem;
  }

  .hero {
    padding: 4.6rem 0 3.5rem;
  }

  .hero h1 {
    max-width: 20ch;
  }
}

@media (max-width: 640px) {
  .card {
    padding: 1rem;
  }
}
