/* ─────────────────────────────────────────────────────────────
   Ciparis — site styles
   Brand palette sampled from the logo:
     teal   #1898A5   leaf green #21B14C   olive #41691E
   ───────────────────────────────────────────────────────────── */

:root {
  --teal:        #1898a5;
  --teal-dark:   #137b86;
  --green:       #21b14c;
  --green-dark:  #1a9740;
  --olive:       #41691e;
  --olive-dark:  #324f17;

  --ink:         #1c2418;   /* near-black text, warm */
  --ink-soft:    #51604a;   /* muted body text */
  --bg:          #ffffff;
  --bg-alt:      #f4f7f2;   /* faint green-tinted panel */
  --border:      #e3e9df;

  --maxw: 1080px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(28, 36, 24, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

a { color: inherit; text-decoration: none; }

/* ── Header / nav ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand-logo { height: 34px; width: auto; display: block; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--olive); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: #fff;
  box-shadow: 0 8px 20px rgba(33, 177, 76, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(33, 177, 76, 0.36); }
.btn-ghost {
  border: 1.5px solid var(--border);
  color: var(--olive);
  background: #fff;
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-dark); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 96px 0 88px;
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(24, 152, 165, 0.10), transparent 60%),
    radial-gradient(800px 420px at 0% 110%, rgba(33, 177, 76, 0.10), transparent 60%);
}
.hero-inner { max-width: 760px; }
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero-sub {
  margin-top: 20px;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 620px;
}
.hero-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Sections ──────────────────────────────────────────────── */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.section-lead {
  margin-top: 18px;
  max-width: 640px;
  font-size: 1.12rem;
  color: var(--ink-soft);
}

/* ── Name origin figure ────────────────────────────────────── */
.name-figure { margin: 36px 0 0; }
.name-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.name-figure figcaption {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.name-figure figcaption a {
  color: var(--teal-dark);
  text-decoration: underline;
}
.name-figure figcaption a:hover { color: var(--green-dark); }

/* ── Service cards ─────────────────────────────────────────── */
.cards {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(28, 36, 24, 0.12); }
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.card-mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--green) 60%, var(--olive));
}
.card h3 { font-size: 1.2rem; font-weight: 700; }
.card p { margin-top: 10px; color: var(--ink-soft); }
.card-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  color: var(--teal-dark);
  transition: color 0.2s;
}
.card-link:hover { color: var(--green-dark); }

/* Status pills */
.pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.pill-live {
  color: var(--green-dark);
  background: rgba(33, 177, 76, 0.12);
}
.pill-soon {
  color: var(--olive);
  background: rgba(65, 105, 30, 0.12);
}

/* ── Contact ───────────────────────────────────────────────── */
.contact-inner { text-align: center; }
.contact-inner .section-lead { margin-inline: auto; }
.contact-inner .btn { margin-top: 28px; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}
.footer-mark { height: 30px; width: auto; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 640px) {
  .nav-links { gap: 18px; font-size: 0.95rem; }
  .hero { padding: 64px 0 56px; }
  .section { padding: 60px 0; }
}
