:root {
  --bg: #f6f0e8;
  --dark: #101214;
  --text: #232323;
  --muted: #666;
  --white: #ffffff;
  --accent: #e8751a;
  --accent-dark: #b95711;
  --soft: #f1e7dc;
  --border: rgba(0, 0, 0, 0.1);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

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

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

.narrow {
  max-width: 820px;
}

.center {
  text-align: center;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  color: var(--white);
  background: transparent;
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.logo::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  background: var(--accent);
  margin-top: 9px;
  border-radius: 10px;
}

.nav {
  display: flex;
  gap: 30px;
  font-size: 0.95rem;
  font-weight: 800;
}

.nav a {
  opacity: 0.9;
}

.nav a:hover {
  color: var(--accent);
  opacity: 1;
}

.language-switch {
  display: flex;
  gap: 10px;
  align-items: center;
}

.language-switch a {
  min-width: 54px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
}

.language-switch a.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Hero */

.hero-premium {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,10,12,0.95) 0%, rgba(8,10,12,0.78) 34%, rgba(8,10,12,0.22) 68%, rgba(8,10,12,0.15) 100%),
    radial-gradient(circle at 50% 40%, rgba(232,117,26,0.42), transparent 34%),
    url("../img/hero.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.02) 42%, rgba(246,240,232,1) 100%),
    radial-gradient(circle at 88% 52%, rgba(232,117,26,0.22), transparent 28%);
}

.hero-premium-inner {
  position: relative;
  z-index: 2;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 110px;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow,
.section-label {
  display: inline-block;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  line-height: 1.12;
}

h1 {
  font-size: clamp(3.1rem, 6.3vw, 5.9rem);
  max-width: 820px;
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.3rem;
}

.title-underline {
  width: 230px;
  height: 12px;
  margin: 10px 0 28px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 999px;
  transform: skewX(-18deg);
}

.lead {
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  max-width: 680px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 800;
}

.hero-text {
  max-width: 650px;
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.2s ease;
  border: 0;
  cursor: pointer;
  font-size: 0.98rem;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 15px 32px rgba(232,117,26,0.28);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
}

.full {
  width: 100%;
}

.hero-person {
  position: relative;
  align-self: end;
  min-height: 660px;
}

.hero-ronny {
  position: absolute;
  right: -60px;
  bottom: -110px;
  width: min(650px, 48vw);
  max-width: none;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45));
}

.hero-signature {
  position: absolute;
  right: 0;
  bottom: 58px;
  text-align: right;
  color: #fff;
}

.hero-signature strong {
  display: block;
  font-size: 2.1rem;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 8px;
}

.hero-signature span {
  display: block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.glass-card {
  background: rgba(12, 14, 16, 0.64);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 65px rgba(0,0,0,0.26);
}

.hero-stats {
  position: absolute;
  right: 24px;
  bottom: 44px;
  width: min(640px, 48vw);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 24px;
  overflow: hidden;
}

.hero-stat {
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.14);
}

.hero-stat:last-child {
  border-right: 0;
}

.stat-icon {
  display: block;
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 10px;
}

.hero-stat strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-stat small {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
}

/* Intro Premium */

.section {
  padding: 110px 0;
}

.intro-premium {
  position: relative;
  background: linear-gradient(180deg, #fff, var(--bg));
  padding-top: 80px;
}

.intro-premium-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 28px;
  align-items: stretch;
}

.quote-box {
  padding: 34px 36px;
  border-left: 3px solid var(--accent);
}

.quote-box span {
  color: var(--accent);
  font-size: 4rem;
  line-height: 0.7;
  font-family: Georgia, serif;
}

.quote-box p {
  margin: 10px 0 0;
  font-size: 1.45rem;
  line-height: 1.45;
  font-style: italic;
  font-weight: 800;
}

.intro-card {
  text-align: center;
  padding: 30px 22px;
  border-left: 1px solid var(--border);
}

.intro-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: #faeadc;
  border-radius: 50%;
  font-size: 1.6rem;
}

.intro-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.intro-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* General sections */

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.text-block p,
.profile-content p {
  font-size: 1.06rem;
  color: var(--muted);
}

.profile-section {
  background: var(--white);
}

.profile-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.profile-image-wrap {
  background: var(--bg);
  border-radius: 32px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.profile-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.stats-grid div {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
}

.stats-grid strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.stats-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-dark h2 {
  max-width: 720px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 46px;
}

.card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 28px;
}

.card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 24px;
}

.card p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 0;
}

/* Timeline */

.timeline-section {
  background: #fff;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 140px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
}

.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
}

.timeline-year {
  min-width: 120px;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent);
  text-align: right;
}

.timeline-content {
  position: relative;
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  flex: 1;
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -31px;
  top: 28px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid #fff;
}

.timeline-content h3 {
  margin-bottom: 10px;
}

.timeline-content p {
  margin: 0;
  color: var(--muted);
}

.timeline-note {
  max-width: 720px;
  margin: 20px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Symptom */

.symptom-section {
  background: var(--bg);
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.symptom-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.symptom-card strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.symptom-card p {
  margin: 0;
  color: var(--muted);
}

/* Before after */

.before-after-section {
  background: var(--white);
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}

.before-card,
.after-card {
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.before-card {
  background: #fff5f2;
  border: 1px solid rgba(180, 80, 50, 0.18);
}

.after-card {
  background: #f4fbf6;
  border: 1px solid rgba(60, 140, 80, 0.18);
}

.before-card ul,
.after-card ul {
  margin: 0;
  padding-left: 20px;
}

.soft-bg {
  background: var(--soft);
}

.disclaimer {
  margin-top: 28px;
  padding: 22px;
  background: rgba(255,255,255,0.65);
  border-radius: 18px;
  font-size: 0.95rem;
  color: #555;
}

/* FAQ */

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  gap: 14px;
  margin-top: 40px;
}

.faq-grid details {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 24px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 1.05rem;
}

.faq-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

/* Contact */

.contact-section {
  background: var(--white);
}

.contact-card {
  background: var(--bg);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 117, 26, 0.13);
}

.contact-form textarea {
  resize: vertical;
}

/* Footer */

.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.72);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
}

/* Responsive */

@media (max-width: 1080px) {
  .nav {
    gap: 18px;
    font-size: 0.86rem;
  }

  .hero-ronny {
    right: -100px;
    width: 560px;
  }

  .hero-stats {
    width: min(580px, 55vw);
  }

  .intro-premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-box {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero-premium-inner {
    grid-template-columns: 1fr;
    padding-top: 120px;
    padding-bottom: 60px;
  }

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

  .hero-person {
    min-height: 420px;
    margin-top: 30px;
  }

  .hero-ronny {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(420px, 90vw);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-signature {
    display: none;
  }

  .hero-stats {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 24px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat:nth-child(2) {
    border-right: 0;
  }

  .hero-stat:nth-child(1),
  .hero-stat:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }

  .two-col,
  .profile-grid,
  .stats-grid,
  .cards,
  .symptom-grid,
  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .cards {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .timeline::before {
    left: 18px;
  }

  .timeline-item {
    flex-direction: column;
    padding-left: 45px;
    gap: 12px;
  }

  .timeline-year {
    text-align: left;
  }

  .timeline-content::before {
    left: -36px;
  }
}

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

  .header-inner {
    min-height: 68px;
  }

  .logo {
    font-size: 1.15rem;
  }

  .language-switch a {
    min-width: 42px;
    font-size: 0.72rem;
    padding: 7px 9px;
  }

  .hero-premium {
    min-height: auto;
  }

  .hero-premium-inner {
    min-height: auto;
    padding-top: 110px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .lead {
    font-size: 1.18rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-person {
    min-height: auto;
  }

  .hero-ronny {
    width: 100%;
    max-height: 430px;
    object-fit: contain;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }

  .hero-stat:last-child {
    border-bottom: 0;
  }

  .intro-premium-grid {
    grid-template-columns: 1fr;
  }

  .quote-box {
    grid-column: auto;
    padding: 24px 18px;
  }

  .quote-box p {
    font-size: 1.25rem;
  }

  .profile-image-wrap,
  .contact-card {
    padding: 22px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* === NY HERO-FIX: Ronny som full bakgrunn === */

.hero-premium {
  min-height: 100vh;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 7, 9, 0.96) 0%,
      rgba(5, 7, 9, 0.86) 31%,
      rgba(5, 7, 9, 0.48) 55%,
      rgba(5, 7, 9, 0.10) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 7, 9, 0.18) 0%,
      rgba(5, 7, 9, 0.02) 55%,
      rgba(246, 240, 232, 1) 100%
    ),
    url("../img/ronny-hero.png") center center / cover no-repeat;
  transform: none;
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 42%, rgba(232,117,26,0.18), transparent 32%),
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(246,240,232,1) 100%);
}

.hero-premium-inner {
  grid-template-columns: 1fr;
  min-height: 100vh;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 150px;
}

.hero-copy {
  max-width: 720px;
}

.hero-person {
  display: none;
}

.hero-stats {
  position: absolute;
  right: 7%;
  bottom: 48px;
  width: min(690px, 52vw);
}

/* Profilbilde lenger nede */
.profile-image {
  content: url("../img/ronny.png");
}

/* Litt mer premium header */
.site-header {
  background: linear-gradient(180deg, rgba(0,0,0,0.42), transparent);
}

.header-inner {
  min-height: 88px;
}

/* Mobil */
@media (max-width: 900px) {
  .hero-bg {
    background:
      linear-gradient(
        180deg,
        rgba(5,7,9,0.88) 0%,
        rgba(5,7,9,0.72) 42%,
        rgba(5,7,9,0.42) 70%,
        rgba(246,240,232,1) 100%
      ),
      url("../img/ronny-hero.png") center top / cover no-repeat;
  }

  .hero-premium-inner {
    padding-top: 115px;
    padding-bottom: 70px;
  }

  .hero-stats {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 38px;
  }
}

@media (max-width: 560px) {
  .hero-bg {
    background:
      linear-gradient(
        180deg,
        rgba(5,7,9,0.92) 0%,
        rgba(5,7,9,0.76) 48%,
        rgba(246,240,232,1) 100%
      ),
      url("../img/ronny-hero.png") center top / cover no-repeat;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}