:root {
  --bg: #f5f0eb;
  --bg-strong: #efe6df;
  --panel: #ffffff;
  --panel-soft: #fbf7f3;
  --text: #1a1a1a;
  --muted: #6f6a65;
  --accent: #bd573d;
  --accent-strong: #a54730;
  --accent-soft: #f1ddd6;
  --border: #e6ddd6;
  --shadow: 0 18px 42px rgba(26, 26, 26, 0.08);
  --shadow-soft: 0 10px 22px rgba(26, 26, 26, 0.05);
  --radius: 18px;
  --radius-lg: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(189, 87, 61, 0.08), transparent 28%),
    linear-gradient(180deg, #f7f2ed 0%, var(--bg) 100%);
  line-height: 1.55;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(780px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(245, 240, 235, 0.9);
  border-bottom: 1px solid rgba(230, 221, 214, 0.9);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand,
.wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-dot {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 14px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.hero {
  padding: 76px 0 54px;
}

.hero-grid,
.highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.lead,
.page-intro,
.feature p,
.cta-panel p,
.content-card p,
.highlight-copy p,
.policy-card li {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 28px rgba(189, 87, 61, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--accent-strong);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--border);
  color: var(--text);
}

.hero-points {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.hero-point,
.feature,
.content-card,
.cta-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.hero-point {
  padding: 16px 18px;
  border-radius: var(--radius);
}

.hero-point strong {
  display: block;
  margin-bottom: 4px;
}

.hero-point span {
  color: var(--muted);
}

.hero-preview {
  display: flex;
  justify-content: center;
}

.device-frame {
  width: min(100%, 360px);
  padding: 22px;
  border-radius: 34px;
  background: linear-gradient(180deg, #fcfaf8 0%, #f1e8e1 100%);
  border: 1px solid rgba(230, 221, 214, 0.85);
  box-shadow: var(--shadow);
}

.device-header,
.offer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.device-icons {
  display: flex;
  gap: 10px;
}

.mini-icon {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent-soft);
}

.screen-card {
  border-radius: 18px;
  padding: 16px;
  background: var(--panel);
  border: 1px solid rgba(230, 221, 214, 0.9);
  margin-top: 14px;
}

.summary-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  background: #f7e9e4;
}

.summary-badge {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
}

.summary-card p,
.offer-card span,
.muted-card small {
  margin: 4px 0 0;
  color: var(--muted);
}

.offer-meta {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.offer-card strong,
.muted-card strong {
  display: block;
}

.store-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--panel-soft);
}

.store-min-koebmand {
  color: #69b341;
}

.store-superbrugsen {
  color: #e30613;
}

.offer-price {
  font-size: 1.05rem;
  font-weight: 800;
}

.muted-card {
  background: #f8f3ef;
}

.section {
  padding: 44px 0;
}

.section-highlight {
  padding-top: 12px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature {
  padding: 24px;
  border-radius: var(--radius);
}

.feature-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.highlight-copy {
  display: grid;
  gap: 12px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f2dfd8 0%, #fbf6f2 100%);
}

.app-store-panel {
  align-items: center;
  gap: 36px;
  background:
    radial-gradient(circle at top left, rgba(189, 87, 61, 0.10), transparent 38%),
    linear-gradient(135deg, #f7ebe5 0%, #fffdfa 100%);
}

.cta-copy {
  max-width: 760px;
}

.cta-copy h2 {
  max-width: 720px;
}

.cta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.cta-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.app-store-actions {
  display: grid;
  gap: 14px;
  justify-items: end;
  min-width: 210px;
}

.store-badge {
  display: grid;
  gap: 2px;
  width: 100%;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.store-badge small {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-badge strong {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.app-store-button {
  width: 100%;
  min-height: 58px;
  justify-content: center;
  border-radius: 18px;
  box-shadow: 0 16px 28px rgba(189, 87, 61, 0.24);
}

.page {
  padding: 56px 0 72px;
}

.content-card {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.contact-block {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.contact-block small {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-email {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

.policy-card h2 {
  font-size: 1.45rem;
  margin-top: 26px;
  margin-bottom: 10px;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card ul {
  padding-left: 20px;
  color: var(--muted);
}

.policy-card li + li {
  margin-top: 8px;
}

.site-footer {
  padding: 24px 0 40px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  border-top: 1px solid rgba(230, 221, 214, 0.9);
  padding-top: 20px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

@media (max-width: 920px) {
  .hero-grid,
  .highlight-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-store-actions {
    width: 100%;
    justify-items: stretch;
  }

  .device-frame {
    width: min(100%, 420px);
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: 2.6rem;
  }

  .content-card,
  .cta-panel,
  .feature {
    padding: 22px;
  }
}
