/* ELENI Hydra Support — mobile-first stylesheet */

:root {
  --bg: #f7f3ea;
  --paper: #fffdf8;
  --ink: #1f2528;
  --muted: #66706f;
  --line: rgba(31, 37, 40, 0.14);
  --accent: #244a59;
  --accent-soft: #e7efeF;
  --warm: #b57842;
  --shadow: 0 14px 40px rgba(31, 37, 40, 0.08);
  --radius: 2px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  font-size: 18px;
}

a {
  color: var(--accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 42vh auto;
  background: var(--paper);
}

.hero-image {
  background:
    linear-gradient(rgba(31,37,40,0.05), rgba(31,37,40,0.35)),
    url("images/cover.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  padding: 28px 22px 92px;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 14vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  max-width: 9ch;
}

.subtitle {
  margin: 20px 0 0;
  font-size: clamp(1.18rem, 6vw, 2rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
  max-width: 18ch;
}

.date {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  border: 1px solid var(--accent);
}

.button.primary {
  background: var(--accent);
  color: white;
}

.button.secondary {
  color: var(--accent);
  background: transparent;
}

.button.wide {
  width: 100%;
  margin-top: 12px;
}

main {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 18px 14px 78px;
}

.card {
  background: var(--paper);
  margin: 14px 0;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card h2 {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 8vw, 3.15rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.15;
}

.card p {
  margin: 0 0 14px;
}

.card p:last-child {
  margin-bottom: 0;
}

.urgent {
  border-color: rgba(181, 120, 66, 0.32);
}

.contact-box {
  margin-top: 20px;
  padding: 18px;
  border-radius: 8px;
  background: var(--accent-soft);
  border: 1px solid var(--line);
}

.small-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.three-points {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.three-points article {
  padding: 16px;
  background: rgba(36, 74, 89, 0.065);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.three-points p {
  font-size: 0.98rem;
}

.image-break {
  padding: 14px 0;
}

.image-placeholder {
  min-height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(36, 74, 89, 0.12), rgba(36, 74, 89, 0.22)),
    url("images/eleni-01.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.clean-list {
  padding-left: 1.1em;
  margin: 0;
}

.clean-list li {
  margin: 0 0 12px;
}

.tier {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.tier span {
  color: var(--accent);
  font-size: 1.55rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.tier p {
  margin: 0;
}

.partners {
  margin: 0;
}

.partners dt {
  margin-top: 18px;
  font-weight: 850;
  color: var(--accent);
}

.partners dt:first-child {
  margin-top: 0;
}

.partners dd {
  margin: 6px 0 0;
  color: var(--ink);
}

.final-call {
  background: #fbf8f1;
}

footer {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 28px 20px 100px;
  color: var(--muted);
  font-size: 0.95rem;
}

footer p {
  margin: 0 0 8px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(31, 37, 40, 0.22);
  font-weight: 800;
}

@media (min-width: 760px) {
  body {
    font-size: 19px;
  }

  .hero {
    grid-template-columns: 48% 52%;
    grid-template-rows: minmax(620px, 100vh);
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
  }

  .hero-actions {
    grid-template-columns: max-content max-content;
  }

  main {
    padding-top: 36px;
  }

  .card {
    padding: 38px;
    margin: 22px 0;
  }

  .three-points {
    grid-template-columns: repeat(3, 1fr);
  }

  .image-placeholder {
    min-height: 420px;
  }

  .tier {
    grid-template-columns: 150px 1fr;
    align-items: baseline;
  }
}

@media print {
  .sticky-cta,
  .hero-actions {
    display: none;
  }

  body {
    background: white;
    font-size: 12pt;
  }

  .hero {
    min-height: auto;
    display: block;
  }

  .hero-image {
    min-height: 180px;
  }

  main,
  footer {
    width: 100%;
  }

  .card {
    box-shadow: none;
    break-inside: avoid;
  }
}
