/* ===== Logomedo — landing styles ===== */
:root {
  --teal: #3a7d8c;
  --teal-dark: #2c5f6b;
  --coral: #ff8a6b;
  --cream: #fdf7f0;
  --sand: #f3ece2;
  --ink: #2b2b33;
  --muted: #6c6c78;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(44, 95, 107, 0.12);
  --radius: 18px;
  --maxw: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-name { font-family: "Quicksand", sans-serif; }

h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

img { max-width: 100%; }

.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--coral);
  margin: 0 0 .6rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 0 6px 16px rgba(255, 138, 107, 0.35);
}
.btn:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 10px 22px rgba(255, 138, 107, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--teal-dark);
  box-shadow: none;
  border: 2px solid var(--teal);
}
.btn-ghost:hover { background: var(--teal); color: #fff; box-shadow: none; }
.btn-sm { padding: .5rem 1rem; font-size: .9rem; }
.btn-block { width: 100%; }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 247, 240, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(44, 95, 107, 0.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: .9rem 0; }
.brand { display: inline-flex; align-items: center; gap: .5rem; font-weight: 800; }
.brand-mark { font-size: 1.6rem; }
.brand-name { font-size: 1.35rem; color: var(--teal-dark); }
.nav-links { list-style: none; display: flex; align-items: center; gap: 1.4rem; margin: 0; padding: 0; }
.nav-links a { font-weight: 600; color: var(--ink); }
.nav-links a:hover { color: var(--teal); }
.nav-links .btn { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--teal-dark); border-radius: 2px; transition: .25s; }

/* ===== Hero ===== */
.hero { padding: clamp(2.5rem, 6vw, 5rem) 0; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.5rem; align-items: center; }
.hero h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); color: var(--teal-dark); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 38ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.6rem 0 1.4rem; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; padding: 0; margin: 0; color: var(--teal-dark); font-weight: 600; font-size: .95rem; }

.hero-art { position: relative; display: grid; place-items: center; min-height: 280px; }
.blob {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 30% 30%, #bfe3e0, var(--teal));
  border-radius: 42% 58% 63% 37% / 42% 45% 55% 58%;
  animation: morph 9s ease-in-out infinite;
  opacity: .85;
}
.hero-emoji { position: relative; font-size: clamp(5rem, 12vw, 8rem); filter: drop-shadow(0 12px 18px rgba(0,0,0,.15)); }
@keyframes morph {
  0%, 100% { border-radius: 42% 58% 63% 37% / 42% 45% 55% 58%; }
  50% { border-radius: 58% 42% 37% 63% / 55% 58% 42% 45%; }
}

/* ===== Sections ===== */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--sand); }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 2.6rem; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: var(--teal-dark); }
.section-sub { color: var(--muted); margin: 0; }

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.4rem; }
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  transition: transform .18s ease;
}
.card:hover { transform: translateY(-4px); }
.card-icon { font-size: 2.2rem; margin-bottom: .6rem; }
.card h3 { font-size: 1.2rem; color: var(--teal-dark); }
.card p { margin: 0; color: var(--muted); }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.5rem; align-items: center; }
.about-art { display: grid; place-items: center; }
.about-emoji {
  font-size: clamp(4rem, 10vw, 7rem);
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow);
}
.about-text h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: var(--teal-dark); }
.about-text p { color: var(--muted); }
.stats { list-style: none; display: flex; flex-wrap: wrap; gap: 2rem; padding: 0; margin: 1.6rem 0 0; }
.stats strong { display: block; font-family: "Quicksand", sans-serif; font-size: 1.8rem; color: var(--coral); }
.stats span { color: var(--muted); font-size: .9rem; }

/* ===== Steps ===== */
.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  position: relative;
}
.step-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: .8rem;
}
.step h3 { font-size: 1.15rem; color: var(--teal-dark); }
.step p { margin: 0; color: var(--muted); }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.contact-info h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: var(--teal-dark); }
.contact-info p { color: var(--muted); }
.contact-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .8rem; }
.contact-list li { display: flex; align-items: center; gap: .7rem; font-weight: 600; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 700; margin-bottom: .35rem; font-size: .95rem; }
.field input, .field textarea {
  width: 100%;
  padding: .75rem .9rem;
  border: 2px solid var(--sand);
  border-radius: 12px;
  font: inherit;
  background: var(--cream);
  transition: border-color .15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal); }
.form-note { margin: .9rem 0 0; font-weight: 600; min-height: 1.2em; }
.form-note.ok { color: var(--teal-dark); }
.form-note.err { color: #c0392b; }

/* ===== Footer ===== */
.site-footer { background: var(--teal-dark); color: #e9f3f4; padding: 2.5rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 1.4rem 2rem; align-items: center; }
.brand-footer { color: #fff; font-size: 1.2rem; }
.footer-tag { margin: .3rem 0 0; color: #bcd8db; font-size: .9rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-nav a { color: #e9f3f4; font-weight: 600; }
.footer-nav a:hover { color: #fff; }
.copyright { grid-column: 1 / -1; margin: .6rem 0 0; color: #9fc2c6; font-size: .85rem; }

/* ===== Responsive ===== */
@media (max-width: 820px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; min-height: 200px; }
  .about-art { order: -1; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: .4rem;
    background: var(--cream);
    padding: 1rem 1.25rem 1.4rem;
    border-bottom: 1px solid rgba(44,95,107,.1);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links .btn { margin-top: .4rem; }
}

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