:root {
  --bg: #f4efe7;
  --bg-2: #efe7dc;
  --surface: rgba(255, 250, 244, 0.82);
  --text: #2f2a26;
  --muted: #6a625b;
  --line: rgba(47, 42, 38, 0.1);
  --brand: #2f2a26;
  --accent: #b9966b;
  --accent-soft: #f3e7d7;
  --shadow: 0 22px 60px rgba(73, 57, 40, 0.1);
  --radius-xl: 28px;
  --max: 1200px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(185, 150, 107, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(216, 194, 166, 0.22),
      transparent 20%
    ),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}
.section {
  padding: 58px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
  backdrop-filter: blur(10px);
}
.eyebrow::before {
  content: "🐾";
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}
h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h1,
h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
}
h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}
h3 {
  font-size: 1.35rem;
  font-weight: 700;
}
p {
  margin: 0 0 16px;
  color: var(--muted);
}
.lead {
  font-size: 1.1rem;
  color: #3d3934;
  max-width: 62ch;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  white-space: nowrap;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
  color: var(--text);
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255);
  border-bottom: 1px solid rgba(29, 29, 27, 0.06);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand-logo {
  height: 58px;
  width: auto;
  display: block;
}
.brand-text {
  display: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}
.hero {
  position: relative;
  padding: 42px 0 74px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}
.hero-card,
.card,
.feature,
.price-card,
.story-card,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.hero-copy {
  padding: 42px;
  min-height: 640px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(255, 250, 244, 0.9),
    rgba(255, 248, 240, 0.84)
  );
}
.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -20% -22% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(185, 150, 107, 0.2),
    transparent 65%
  );
}
.hero-copy::before {
  content: "🐾";
  position: absolute;
  top: 28px;
  right: 30px;
  font-size: 2.2rem;
  opacity: 0.08;
  transform: rotate(-12deg);
}
.hero::after {
  content: "🐾";
  position: absolute;
  left: 7%;
  top: 12%;
  font-size: 2rem;
  opacity: 0.05;
  transform: rotate(-18deg);
}
.hero::before {
  content: "🌿";
  position: absolute;
  right: 9%;
  top: 18%;
  font-size: 2rem;
  opacity: 0.05;
  transform: rotate(14deg);
}
.hero-sub {
  font-family: Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 2rem);
  margin-bottom: 18px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.stat {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}
.stat strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 640px;
}
.hero-visual img,
.retail-image img,
.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.floating-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.16);
}
.split,
.price-wrap,
.story-grid,
.retail-grid {
  display: grid;
  gap: 28px;
}
.split {
  grid-template-columns: 1fr 1fr;
}
.price-wrap {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}
.story-grid {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
}
.retail-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.card,
.price-card,
.story-copy,
.contact-card {
  padding: 34px;
}
.price-card {
  position: sticky;
  top: 110px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.feature {
  padding: 24px;
}
.feature .icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--accent-soft), #f8f0e6);
  margin-bottom: 16px;
  font-size: 1.3rem;
}
.gallery {
  width: min(calc(100% - 32px), var(--max));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
  align-items: stretch;
}

.gallery > *,
.gallery-stack {
  min-width: 0;
  min-height: 0;
}

.gallery > * {
  overflow: hidden;
}

.gallery > img:first-child {
  grid-row: span 2;
  height: 100%;
}

.gallery-stack {
  grid-row: span 2;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  height: 100%;
}

.gallery img {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.45);
}

.gallery-stack img {
  height: 100%;
  min-height: 0;
}

/* Justera fokus för sista bilden (gallery-5) */
.gallery-stack:last-child img:last-child {
  object-position: center 10%;
}
.price-list,
.check-list,
.detail-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.price-item,
.check-item,
.detail-item {
  display: flex;
  align-items: start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}
.price-item {
  justify-content: space-between;
}
.check-item::before,
.detail-item::before {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--brand);
  font-size: 0.9rem;
  flex: 0 0 auto;
  margin-top: 1px;
}
.policy-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fcf5ec;
  border: 1px solid rgba(185, 150, 107, 0.24);
  color: #5d4b39;
  font-size: 0.95rem;
}
.story-card {
  overflow: hidden;
}
.story-card img {
  min-height: 560px;
}
.story-columns {
  columns: 2;
  column-gap: 24px;
}
.story-columns p {
  break-inside: avoid;
}
.retail-image {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  min-height: 430px;
  height: 100%;
}
.contact-grid {
  max-width: 820px;
  margin: 0 auto;
}
.contact-card h2 {
  max-width: 28ch;
  margin-bottom: 20px;
}
.contact-card p {
  max-width: 60ch;
  margin-bottom: 0;
}
.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin-top: 32px;
}
.contact-row {
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-row.full {
  grid-column: 1 / -1;
  max-width: 360px;
}
.contact-row small {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-row strong {
  font-size: 1.05rem;
  line-height: 1.25;
}
.section-decor {
  position: relative;
}

.footer {
  padding: 28px 0 54px;
  color: var(--muted);
  font-size: 0.95rem;
}
.footer-card {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 250, 244, 0.76);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .price-wrap,
  .story-grid,
  .retail-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .gallery {
    grid-template-rows: none;
    grid-auto-rows: 260px;
  }
  .story-columns {
    columns: 1;
  }
  .price-card {
    position: static;
  }
  .hero-copy,
  .hero-visual {
    min-height: auto;
  }
}
@media (max-width: 760px) {
  .section {
    padding: 30px 0;
  }
  .nav-links {
    display: none;
  }
  .brand-logo {
    height: 48px;
  }
  .hero-copy,
  .card,
  .price-card,
  .story-copy,
  .contact-card {
    padding: 24px;
  }
  .feature-grid,
  .stats,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery > img:first-child {
    grid-row: span 1;
    height: auto;
  }

  .gallery-stack {
    grid-row: span 1;
    grid-template-rows: none;
    height: auto;
  }

  .gallery img,
  .gallery-stack img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .contact-row.full {
    max-width: none;
  }
  .contact-card h2 {
    max-width: none;
  }
  .floating-note {
    position: static;
    margin: 18px;
  }
}
