/* ===== Butbutt — coastal, clean, trustworthy ===== */
:root {
  --ocean: #0e6ba8;
  --ocean-deep: #0a4f7d;
  --ocean-dark: #083a5c;
  --sky: #7fc6e8;
  --sand: #f4e9d3;
  --sand-deep: #e3cfa4;
  --ink: #1c2b36;
  --muted: #55707f;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(8, 58, 92, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
.container { width: min(1120px, 92%); margin: 0 auto; }

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.15rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ocean); color: var(--white); box-shadow: 0 6px 18px rgba(14, 107, 168, 0.35); }
.btn-primary:hover { background: var(--ocean-deep); }
.btn-outline { border-color: var(--white); color: var(--white); background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(3px); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.2); }
.btn-sand { background: var(--sand); color: var(--ocean-dark); }
.btn-sand:hover { background: var(--sand-deep); }
.btn-small { padding: 0.5rem 1.2rem; font-size: 0.92rem; }
.btn-block { width: 100%; text-align: center; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(14, 107, 168, 0.12);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0; }
.brand {
  display: flex; align-items: center; gap: 0.55rem;
  font-weight: 800; font-size: 1.3rem; color: var(--ocean-dark);
  text-decoration: none; letter-spacing: -0.02em;
}
.brand-mark { display: inline-flex; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav-links a:not(.btn) { text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.98rem; }
.nav-links a:not(.btn):hover { color: var(--ocean); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--ocean-dark); margin: 5px 0; border-radius: 2px; transition: 0.2s; }

/* ---- Hero ---- */
.hero { position: relative; color: var(--white); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 58, 92, 0.55) 0%, rgba(8, 58, 92, 0.35) 45%, rgba(8, 58, 92, 0.75) 100%);
}
.hero-content { position: relative; padding: 7rem 0 5rem; max-width: 720px; }
.hero-kicker {
  display: inline-block; background: rgba(244, 233, 211, 0.18);
  border: 1px solid rgba(244, 233, 211, 0.45);
  padding: 0.3rem 0.9rem; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.hero-sub { margin: 1.2rem 0 1.8rem; font-size: 1.15rem; max-width: 58ch; color: #eaf4fb; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap; list-style: none;
  margin-top: 3rem; padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.5rem; letter-spacing: -0.02em; }
.hero-stats span { font-size: 0.88rem; color: #cfe6f5; max-width: 20ch; }

/* ---- Sections ---- */
.section { padding: 5rem 0; }
.kicker {
  color: var(--ocean); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 0.82rem; margin-bottom: 0.5rem;
}
.section-head { max-width: 680px; margin-bottom: 2.8rem; }
.section-head .lead { margin-top: 0.9rem; color: var(--muted); font-size: 1.08rem; }

/* ---- Problem ---- */
.problem { background: var(--sand); }
.problem .kicker { color: var(--ocean-deep); }
.problem-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; align-items: start; }
.problem-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
.problem-photo img { width: 100%; height: 380px; object-fit: cover; }
.problem-photo figcaption { padding: 0.9rem 1.1rem; font-size: 0.9rem; color: var(--muted); }
.problem-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.4rem; box-shadow: 0 4px 14px rgba(8, 58, 92, 0.07);
}
.card-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.card h3 { margin-bottom: 0.45rem; color: var(--ocean-dark); }
.card p { font-size: 0.94rem; color: var(--muted); }
.problem-cta {
  margin-top: 2.6rem; background: var(--white); border-radius: var(--radius);
  padding: 1.6rem 2rem; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; box-shadow: 0 4px 14px rgba(8, 58, 92, 0.07);
}
.problem-cta p { font-weight: 600; color: var(--ocean-dark); max-width: 52ch; }

/* ---- Store ---- */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.product {
  background: var(--white); border: 1px solid rgba(14, 107, 168, 0.14);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-img { position: relative; background: #f6fafc; }
.product-img img { width: 100%; height: 240px; object-fit: cover; }
.product-img-flat { display: flex; align-items: center; justify-content: center; height: 240px; background: linear-gradient(135deg, #eaf4fb, var(--sand)); }
.badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--ocean); color: var(--white);
  font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.7rem; border-radius: 999px;
}
.badge-sand { background: var(--sand-deep); color: var(--ocean-dark); }
.product-body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { color: var(--ocean-dark); margin-bottom: 0.5rem; }
.product-body p { font-size: 0.93rem; color: var(--muted); flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1.1rem; }
.price { font-size: 1.25rem; font-weight: 800; color: var(--ocean-dark); }

/* ---- Order panel ---- */
.order-panel {
  margin-top: 3rem; background: var(--sand);
  border-radius: var(--radius); padding: 2.2rem;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.4rem;
  scroll-margin-top: 90px;
}
.order-info h3 { font-size: 1.5rem; color: var(--ocean-dark); margin-bottom: 0.7rem; }
.order-info p { color: var(--muted); }
.order-perks { list-style: none; margin-top: 1.2rem; }
.order-perks li { padding-left: 1.7rem; position: relative; margin-bottom: 0.6rem; font-weight: 600; color: var(--ocean-dark); }
.order-perks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--ocean); font-weight: 800;
}

/* ---- Forms ---- */
.form { display: flex; flex-direction: column; gap: 1rem; }
.form label { display: flex; flex-direction: column; gap: 0.35rem; font-weight: 600; font-size: 0.92rem; color: var(--ocean-dark); }
.form input, .form select, .form textarea {
  font: inherit; padding: 0.7rem 0.9rem;
  border: 1.5px solid rgba(14, 107, 168, 0.25); border-radius: 10px;
  background: var(--white); color: var(--ink);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(14, 107, 168, 0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.82rem; color: var(--muted); text-align: center; }
.optional { font-weight: 400; color: var(--muted); }

/* ---- Petition ---- */
.petition { background: linear-gradient(180deg, var(--ocean-deep), var(--ocean-dark)); color: var(--white); }
.petition .kicker { color: var(--sky); }
.section-head-light .lead { color: #c9e2f2; }
.petition-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.4rem; align-items: start; }
.petition-photo { border-radius: var(--radius); width: 100%; height: 300px; object-fit: cover; box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3); }
.demands { margin-top: 1.6rem; }
.demands h3 { font-size: 1.25rem; margin-bottom: 0.8rem; color: var(--sand); }
.demands ol { padding-left: 1.3rem; display: flex; flex-direction: column; gap: 0.7rem; color: #dcecf7; }
.demands strong { color: var(--white); }
.petition-form-wrap {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius); padding: 1.8rem;
}
.petition-counter { text-align: center; margin-bottom: 1.4rem; }
.petition-counter strong { display: block; font-size: 2.4rem; letter-spacing: -0.02em; color: var(--sand); }
.petition-counter span { color: #c9e2f2; font-size: 0.95rem; }
.form-light label { color: #eaf4fb; }
.form-light input, .form-light textarea {
  background: rgba(255, 255, 255, 0.95); border-color: transparent;
}
.form-light .form-note { color: #a9cde3; }

/* ---- Footer ---- */
.footer { background: var(--ink); color: #b9cdd9; padding: 2.6rem 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; align-items: center; }
.brand-footer { color: var(--sand); font-size: 1.15rem; }
.footer-tag { font-size: 0.9rem; margin-top: 0.6rem; max-width: 34ch; }
.footer-nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-nav a { color: #dcecf7; text-decoration: none; font-weight: 600; font-size: 0.93rem; }
.footer-nav a:hover { color: var(--white); }
.footer-copy { font-size: 0.85rem; justify-self: end; }

/* ---- Sections anchor offset ---- */
section[id] { scroll-margin-top: 70px; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .problem-grid, .petition-grid, .order-panel { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-copy { justify-self: start; }
}
@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--white); border-bottom: 1px solid rgba(14, 107, 168, 0.15);
    padding: 0.5rem 4%;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a:not(.btn) { display: block; padding: 0.8rem 0; }
  .nav-links .btn { margin: 0.6rem 0 1rem; }
  .products { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { padding: 5rem 0 3.5rem; }
  .hero-stats { gap: 1.4rem; }
  .problem-photo img { height: 260px; }
  .section { padding: 3.6rem 0; }
}
