/* ==========================================================
   Eva Innsýn — stílblað
   Sami stíll og tilboðspósturinn: League Spartan + Inter,
   rautt (#BE3519) á hvítu, lavender-kort, pilluhnappar.
   ========================================================== */

:root {
  --red: #BE3519;
  --red-dark: #8B2510;
  --red-deep: #6E1C0C;
  --ink: #16130F;
  --ink-soft: #55504A;
  --muted: #8A837C;
  --paper: #FFFDFA;
  --white: #FFFFFF;
  --lilac: #F3F0F7;
  --lilac-line: #E2DBEA;
  --blush: #FBE9E3;
  --blush-line: #F1D3C9;

  --font-head: "League Spartan", "Arial Black", Arial, sans-serif;
  --font-body: "Inter", Arial, Helvetica, sans-serif;

  --radius: 16px;
  --radius-lg: 24px;
  --max: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 18px 50px rgba(139, 37, 16, .10);
  --shadow-sm: 0 8px 24px rgba(139, 37, 16, .10);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.05;
  color: var(--red-dark);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.5rem, 5.4vw, 4.3rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); letter-spacing: -.015em; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }
h1 em, h2 em { font-style: normal; color: var(--red); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .9rem;
}
.lead { font-size: 1.15rem; line-height: 1.7; color: var(--ink-soft); }
.small { font-size: .9rem; color: var(--muted); }
.container { width: min(var(--max), 100% - 2.5rem); margin-inline: auto; }
.narrow { max-width: 760px; margin-inline: auto; }
.center { text-align: center; }
.section { padding: 6rem 0; }
.section.tight { padding: 4rem 0; }
.section.lilac { background: var(--lilac); }
.section.blush { background: var(--blush); }
.section.white { background: var(--white); }
.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; }
.section-head .lead { margin-top: .4rem; }

/* ---------- Hnappar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  border: 1.5px solid var(--red);
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  white-space: nowrap;
  transition: transform .3s var(--ease), background .25s, color .25s, box-shadow .3s, border-color .25s;
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(190, 53, 25, .25); }
.btn.ghost { background: transparent; color: var(--red); }
.btn.ghost:hover { background: var(--red); color: var(--white); }
.btn.light { background: var(--white); border-color: var(--white); color: var(--red); }
.btn.light:hover { background: var(--blush); border-color: var(--blush); color: var(--red-dark); box-shadow: 0 12px 28px rgba(0, 0, 0, .15); }
.btn.sm { padding: .62rem 1.25rem; font-size: .88rem; }
.btn svg { width: 17px; height: 17px; transition: transform .3s; }
.btn:hover svg { transform: translateX(3px); }
.actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; margin-top: 1.8rem; }

/* ---------- Haus ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 250, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lilac-line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 6px 30px rgba(139, 37, 16, .08); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; color: var(--red-dark); }
.brand img { height: 46px; width: 46px; }
.brand span { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; letter-spacing: -.01em; padding-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: .93rem; font-weight: 500; color: var(--ink); }
.nav-links a:hover { color: var(--red); }
.nav-links .nav-cta { display: flex; gap: .6rem; margin-left: .6rem; }
.nav-links .nav-cta a { color: var(--red); }
.nav-links .nav-cta a.btn:not(.ghost) { color: var(--white); }
.nav-toggle { display: none; background: none; border: 0; padding: .5rem; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--red-dark); margin: 5px 0; transition: transform .3s, opacity .3s; }

/* ---------- Hetja ---------- */
.hero { padding: 4.5rem 0 5rem; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center; }
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 em { display: block; }
.hero .lead { max-width: 560px; }
.hero .punch { font-weight: 600; color: var(--red-dark); font-size: 1.1rem; margin-top: 1.2rem; }
.hero .note { display: flex; align-items: center; gap: .5rem; margin-top: 1.4rem; font-size: .9rem; color: var(--muted); }
.hero .note svg { width: 18px; height: 18px; color: var(--red); }
.hero-figure { position: relative; padding: 1.2rem 1.6rem 1.6rem 1.2rem; }
.hero-figure .photo { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; }
.hero-figure .photo img { width: 100%; height: 100%; object-fit: cover; }
.chip {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: .8rem 1rem .85rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--lilac-line);
  min-width: 210px;
  max-width: 260px;
  font-size: .84rem;
  line-height: 1.4;
  color: var(--ink-soft);
  animation: float 7s ease-in-out infinite;
}
.chip .tag { display: flex; align-items: center; gap: .4rem; font-family: var(--font-head); font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: .3rem; }
.chip .tag i { width: 16px; height: 16px; border-radius: 50%; background: var(--red); color: #fff; display: inline-grid; place-items: center; font-style: normal; font-size: .62rem; }
.chip strong { display: block; color: var(--ink); font-weight: 600; }
.chip.one { top: 0; left: -1.5rem; }
.chip.two { bottom: .6rem; right: -1rem; animation-delay: -3.5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---------- Eiginleikaröð ---------- */
.strip { background: var(--lilac); border-top: 1px solid var(--lilac-line); border-bottom: 1px solid var(--lilac-line); }
.strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding-top: 1.6rem; padding-bottom: 1.6rem; }
.feature { display: flex; align-items: center; gap: .9rem; font-weight: 500; font-size: .95rem; color: var(--red-dark); }
.feature .ico { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%; background: var(--white); display: grid; place-items: center; color: var(--red); box-shadow: 0 4px 12px rgba(139, 37, 16, .08); }
.feature .ico svg { width: 22px; height: 22px; }

/* ---------- Skref ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split.rev > :first-child { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split-media .stamp {
  position: absolute; right: -.8rem; bottom: -.8rem;
  background: var(--red); color: #fff; border-radius: 999px;
  padding: .55rem 1rem; font-family: var(--font-head); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(190, 53, 25, .3);
}
.steps { display: grid; gap: 1.6rem; margin-top: 2rem; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 1rem; align-items: start; }
.step .num { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; line-height: 1; color: var(--red); padding-top: .1rem; }
.step h3 { margin-bottom: .3rem; }
.step p { color: var(--ink-soft); font-size: .98rem; }
.steps.cols { grid-template-columns: repeat(3, 1fr); gap: 2.4rem; }
.steps.cols .step { grid-template-columns: 1fr; }

/* ---------- Kort ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; }
.card {
  background: var(--lilac);
  border-radius: var(--radius);
  padding: 2rem 2rem 2.1rem;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon { width: 50px; height: 50px; border-radius: 50%; background: var(--white); display: grid; place-items: center; color: var(--red); margin-bottom: 1.1rem; }
.card .icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.25rem; margin-bottom: .45rem; }
.card p { color: var(--ink-soft); font-size: .97rem; }
.card.white { background: var(--white); border: 1px solid var(--lilac-line); }

/* ---------- Morgunsamantekt ---------- */
.summary-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 2.2rem 2.2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--blush-line);
  max-width: 600px;
}
.summary-card .head { display: flex; align-items: center; gap: .7rem; padding-bottom: 1rem; margin-bottom: 1.2rem; border-bottom: 1px solid var(--lilac-line); }
.summary-card .head img { width: 30px; height: 30px; }
.summary-card .head strong { font-family: var(--font-head); font-weight: 700; color: var(--red-dark); font-size: 1.05rem; padding-top: 2px; }
.summary-card .head span { margin-left: auto; font-size: .78rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.summary-card p { font-size: .98rem; color: var(--ink); }
.summary-card ul { list-style: none; padding: 0; margin: 1rem 0; display: grid; gap: .55rem; }
.summary-card li { display: flex; gap: .6rem; font-size: .95rem; color: var(--ink-soft); }
.summary-card li::before { content: ""; flex: 0 0 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--red); margin-top: .5rem; }
.summary-card .tip { background: var(--lilac); border-radius: 12px; padding: 1rem 1.1rem; font-size: .93rem; }
.summary-card .tip b { display: block; font-family: var(--font-head); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: .3rem; }
.summary-card .demo { font-size: .74rem; color: var(--muted); margin-top: 1rem; text-align: right; }

/* ---------- Tveir staðir ---------- */
.places { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.place { background: var(--white); border: 1px solid var(--lilac-line); border-radius: var(--radius-lg); padding: 2.2rem; }
.place .icon { width: 54px; height: 54px; border-radius: 16px; background: var(--blush); color: var(--red); display: grid; place-items: center; margin-bottom: 1rem; }
.place .icon svg { width: 26px; height: 26px; }
.place h3 { font-size: 1.4rem; }
.place p { color: var(--ink-soft); }

/* ---------- Verð ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.plan {
  background: var(--white);
  border: 1px solid var(--lilac-line);
  border-radius: 20px;
  padding: 2.2rem 2.1rem 2.3rem;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan .kind { font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; }
.plan h3 { font-size: 1.7rem; margin-bottom: .2rem; text-transform: uppercase; letter-spacing: .02em; }
.plan .price { font-family: var(--font-head); font-weight: 800; font-size: 2.3rem; color: var(--red); line-height: 1; margin: .6rem 0 .3rem; letter-spacing: -.02em; }
.plan .price small { font-family: var(--font-body); font-weight: 500; font-size: .95rem; color: var(--muted); letter-spacing: 0; }
.plan .tagline { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.2rem; }
.plan ul { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: .55rem; flex: 1; }
.plan li { display: flex; gap: .6rem; font-size: .93rem; color: var(--ink-soft); line-height: 1.45; }
.plan li svg { flex: 0 0 18px; width: 18px; height: 18px; color: var(--red); margin-top: .1rem; }
.plan .btn { align-self: flex-start; }
.credits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.credit { background: var(--lilac); border-radius: var(--radius); padding: 1.6rem 1.7rem; }
.credit .price { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: var(--red-dark); line-height: 1; }
.credit p { font-size: .9rem; color: var(--ink-soft); margin-top: .5rem; }
.faq { display: grid; gap: 1rem; max-width: 780px; }
.faq details { background: var(--white); border: 1px solid var(--lilac-line); border-radius: 14px; padding: 1.1rem 1.4rem; }
.faq summary { cursor: pointer; font-weight: 600; color: var(--red-dark); list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-head); font-size: 1.4rem; line-height: 1; color: var(--red); }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: .8rem; color: var(--ink-soft); font-size: .96rem; }

/* ---------- Rauða bandið ---------- */
.cta-band { background: var(--red); color: var(--white); padding: 5.5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: auto -10% -60% auto; width: 520px; height: 520px; border-radius: 50%; background: rgba(255, 255, 255, .06); }
.cta-band::after { content: ""; position: absolute; left: -8%; top: -50%; width: 380px; height: 380px; border-radius: 50%; background: rgba(0, 0, 0, .06); }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); }
.cta-band .lead { color: #FBE9E3; max-width: 620px; margin-inline: auto; }
.cta-band .actions { justify-content: center; }
.cta-band .btn.ghost { color: var(--white); border-color: rgba(255, 255, 255, .7); }
.cta-band .btn.ghost:hover { background: var(--white); color: var(--red); border-color: var(--white); }
.cta-band .code { display: inline-block; margin-top: 1rem; padding: .5rem 1.4rem; border: 1px dashed #fff; border-radius: 10px; font-family: var(--font-head); font-weight: 700; letter-spacing: .3em; }

/* ---------- Form ---------- */
.form-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: start; }
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
form label { display: block; font-weight: 600; font-size: .86rem; margin-bottom: .35rem; color: var(--red-dark); }
form .field { margin-bottom: 1.1rem; }
form input, form textarea, form select {
  width: 100%;
  font: inherit;
  font-size: .98rem;
  padding: .85rem 1rem;
  border: 1.5px solid var(--lilac-line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
form input:focus, form textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(190, 53, 25, .12); }
form textarea { min-height: 150px; resize: vertical; }
form .hint { font-size: .82rem; color: var(--muted); margin-top: .35rem; }
.form-msg { margin-top: 1rem; font-size: .93rem; min-height: 1.4em; }
.form-msg.ok { color: #1A7A4A; }
.form-msg.err { color: var(--red); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.contact-info { background: var(--lilac); border-radius: var(--radius-lg); padding: 2.2rem; }
.contact-info h3 { margin-bottom: .8rem; }
.contact-info .line { display: flex; gap: .8rem; align-items: center; padding: .6rem 0; border-bottom: 1px solid var(--lilac-line); font-size: .98rem; }
.contact-info .line:last-of-type { border-bottom: 0; }
.contact-info .line svg { width: 20px; height: 20px; color: var(--red); flex: 0 0 20px; }
.contact-info .line a { color: var(--ink); font-weight: 500; }
.contact-info .line a:hover { color: var(--red); }

/* ---------- Síðuhaus á undirsíðum ---------- */
.page-hero { padding: 4.5rem 0 3.5rem; }
.page-hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); }
.page-hero .lead { max-width: 680px; }

/* ---------- Fótur ---------- */
.site-footer { background: var(--white); border-top: 1px solid var(--lilac-line); padding: 4rem 0 2rem; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
.foot-brand { display: flex; flex-direction: column; gap: .8rem; }
.foot-brand .row { display: flex; align-items: center; gap: .7rem; }
.foot-brand img.eye { width: 44px; height: 44px; }
.foot-brand strong { font-family: var(--font-head); font-size: 1.3rem; color: var(--red-dark); display: block; line-height: 1; padding-top: 3px; }
.foot-brand .row span { font-size: .85rem; color: var(--muted); }
.foot-brand .signature { width: 220px; margin-top: .6rem; opacity: .9; }
.foot-col h4 { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: .9rem; font-family: var(--font-body); font-weight: 600; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.foot-col a { color: var(--ink); font-size: .95rem; }
.foot-col a:hover { color: var(--red); }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid var(--lilac-line); font-size: .82rem; color: var(--muted); }

.foot-nl form { display: flex; gap: .5rem; align-items: stretch; }
.foot-nl form input { flex: 1; min-width: 0; padding: .6rem .8rem; font-size: .9rem; border: 1.5px solid var(--lilac-line); border-radius: 10px; }
.foot-nl form input:focus { outline: none; border-color: var(--red); }
.foot-nl .form-msg { flex-basis: 100%; margin-top: .3rem; font-size: .82rem; }
.foot-nl form { flex-wrap: wrap; }
form.nl { background: var(--lilac); border-radius: var(--radius-lg); padding: 2rem; }

.badge-soon { display: inline-block; align-self: flex-start; padding: .55rem 1rem; border-radius: 999px; background: var(--blush); color: var(--red-dark); font-weight: 700; font-size: .85rem; letter-spacing: .04em; }
.plan.soon { opacity: .92; }

.founder-photo { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }

/* ---------- Birting ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .chip { animation: none; }
}

/* ---------- Sími og spjaldtölva ---------- */
@media (max-width: 1000px) {
  .strip .container { grid-template-columns: repeat(2, 1fr); }
  .plans, .credits { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .section { padding: 4.2rem 0; }
  .hero { padding: 2.5rem 0 3.5rem; }
  .hero-grid, .split, .places, .form-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.rev > :first-child { order: 0; }
  .hero-figure { padding: 1rem 0 1rem 0; max-width: 460px; }
  .chip.one { left: -.4rem; }
  .chip.two { right: -.4rem; }
  .steps.cols { grid-template-columns: 1fr; }
  .plans, .credits { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: 80px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--lilac-line);
    padding: .6rem 1.25rem 1.2rem; display: none;
    box-shadow: 0 20px 40px rgba(139, 37, 16, .12);
  }
  .nav-links.open { display: flex; }
  .nav-links li a:not(.btn) { display: block; padding: .8rem 0; border-bottom: 1px solid var(--lilac-line); }
  .nav-links .nav-cta { margin: 1rem 0 0; flex-direction: column; }
  .nav-links .nav-cta .btn { justify-content: center; }
  form .row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .strip .container { grid-template-columns: 1fr; }
  .chip { min-width: 180px; font-size: .78rem; }
  .actions .btn { width: 100%; justify-content: center; }
}
