/* ===============================
   SECTION RESPONSIVE STYLES
   
   Common responsive patterns for content
   sections across all NaturRo pages.
================================ */

/* ===============================
   CONTENT BLOCKS
================================ */

/* Two-column content blocks - stack on mobile */
.content-block,
.team-member-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.content-block-text {
  padding: var(--content-padding);
}

.content-block-text h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  color: currentColor;
  font-weight: 700;
}

.content-block-text h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  color: currentColor;
  font-weight: 700;
}

.content-block-text h3:first-of-type {
  margin-top: 0;
}

.content-block-text p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: currentColor;
  opacity: 0.95;
}

.content-block-text p:last-child {
  margin-bottom: 0;
}

.content-block-text p strong {
  font-weight: 600;
  color: currentColor;
}

.content-block-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.content-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .content-block,
  .team-member-block {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .content-block.reverse,
  .team-member-block.reverse {
    direction: ltr;
  }
}

/* ===============================
   SECTION PADDING
================================ */

/* Standard section padding - responsive scale */
/* Exclude hero and video-hero from default padding (they use their own) */
section:not(.hero):not(.video-hero-section) {
  padding: var(--section-padding-y) var(--section-padding-x);
}

@media (max-width: 900px) {
  section:not(.hero):not(.video-hero-section) {
    padding: var(--section-padding-y-tablet) var(--section-padding-x-tablet);
  }
}

@media (max-width: 500px) {
  section:not(.hero):not(.video-hero-section) {
    padding: var(--section-padding-y-mobile) var(--section-padding-x-mobile);
  }
}

/* Large section padding for hero-adjacent sections */
.section-large-padding {
  padding: 8rem var(--section-padding-x);
}

@media (max-width: 900px) {
  .section-large-padding {
    padding: 5rem var(--section-padding-x-tablet);
  }
}

@media (max-width: 500px) {
  .section-large-padding {
    padding: 4rem var(--section-padding-x-mobile);
  }
}

/* ===============================
   SECTION HEADINGS
================================ */

section h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  margin-bottom: 1rem;
}

@media (max-width: 500px) {
  section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
  }
}

section h3 {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

@media (max-width: 500px) {
  section h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
}

/* ===============================
   SECTION INTRO TEXT
================================ */

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--section-header-margin-bottom);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .section-intro {
    margin-bottom: var(--spacing-md);
  }
}

@media (max-width: 500px) {
  .section-intro {
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
  }
}

/* ===============================
   GRID SECTIONS
================================ */

/* Trip cards grid - responsive (vandreophold + front page) */
.trips-grid,
.bento-grid {
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: var(--spacing-lg);
}

@media (max-width: 768px) {
  .trips-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

/* Values grid - responsive */
.values-grid,
.concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .values-grid,
  .concept-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* FAQ grid - responsive */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===============================
   BENTO GRID (TRIPS SECTION)
================================ */

/* Section header - unified across ture-section (front page) and trips-section (vandreophold) */
.ture-section .section-header,
.trips-section .section-header,
.section-header {
  text-align: center;
  margin-bottom: var(--section-header-margin-bottom);
  padding: 0 var(--spacing-sm);
}

.ture-section .section-header h2,
.trips-section .section-header h2,
.section-header h2 {
  margin-bottom: var(--section-title-margin-bottom);
  color: currentColor;
}

.ture-section .section-header p,
.trips-section .section-header p,
.section-header p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-nature-text-secondary);
  max-width: var(--section-subtitle-max-width);
  margin: 0 auto;
  line-height: 1.6;
}

/* Bento grid layout - responsive 2-column grid (front page trips) */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

/* Values section (for Om NaturRo page) */
.values-section,
.concept-section {
  padding: var(--section-padding-y) var(--section-padding-x) 8rem;
}

.values-section[data-theme="yellow"],
.concept-section[data-theme="yellow"] {
  background: var(--color-yellow);
  color: var(--color-green);
}

/* Om NaturRo: tighter concept section padding for better proportion */
.concept-section {
  padding: var(--section-padding-y-tablet) var(--section-padding-x) var(--section-padding-y-tablet);
}

/* Values section intro (for Om NaturRo page) */
.values-section-intro,
.concept-section-intro {
  max-width: var(--content-max-width);
  margin: 0 auto var(--section-header-margin-bottom);
  text-align: center;
  padding: 0 var(--section-padding-x);
}

.values-section-intro h2,
.concept-section-intro h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  color: var(--color-green);
  font-weight: 700;
}

.values-section-intro h3,
.concept-section-intro h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2rem;
  color: var(--color-green);
  font-weight: 600;
}

.values-section-intro p,
.concept-section-intro p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--color-green);
}

.values-section-intro > div,
.concept-section-intro > div {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.values-section-intro > div p,
.concept-section-intro > div p {
  margin-bottom: 1.5rem;
}

.values-section-intro > div p:last-child,
.concept-section-intro > div p:last-child {
  margin-bottom: 0;
}

/* Values container - 3 column grid (for front page) */
.values-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  max-width: var(--content-max-width);
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .values-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-container {
    grid-template-columns: 1fr;
  }
}

/* Values grid - 2 column grid (for Om NaturRo page) */
.values-grid,
.concept-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

.value-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .values-grid,
  .concept-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .values-section,
  .concept-section {
    padding: var(--section-padding-y-tablet) var(--section-padding-x-tablet);
  }
}

/* ===============================
   FOOTER
================================ */

footer,
.site-footer {
  padding: var(--section-padding-y-tablet) var(--section-padding-x);
  font-size: 1rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
}

.site-footer__inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.site-footer__brand {
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.site-footer__brand strong {
  font-weight: 600;
  display: block;
  font-size: 1.1rem;
}

.site-footer__tagline {
  margin: 0.5rem 0 0;
  font-weight: 400;
  opacity: 0.9;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  text-align: left;
}

.site-footer__heading {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem;
  text-transform: none;
  letter-spacing: 0;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__list li {
  margin-bottom: 0.6rem;
}

.site-footer__list li:last-child {
  margin-bottom: 0;
}

.site-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.site-footer__link:hover {
  opacity: 0.8;
}

.site-footer__link--text {
  cursor: default;
}

.site-footer__link i,
.site-footer__link .fas,
.site-footer__link .fab {
  flex-shrink: 0;
  width: 1em;
  text-align: center;
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid currentColor;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.site-footer__social-link:hover {
  opacity: 0.85;
  background-color: rgba(255, 255, 255, 0.15);
}

.site-footer__payment {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Footer responsive */
@media (max-width: 900px) {
  footer,
  .site-footer {
    padding: var(--section-padding-y-mobile) var(--section-padding-x-tablet);
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer__brand {
    margin-bottom: 2rem;
  }
}

@media (max-width: 500px) {
  footer,
  .site-footer {
    padding: var(--spacing-md) var(--section-padding-x-mobile);
  }
}

/* ===============================
   FOUNDERS / TEAM (Om NaturRo)
   Calm card grid: neutral section, green accents, multiple founders together
================================ */

.om-naturro-team-section {
  background: var(--color-yellow);
  color: var(--color-green);
  padding: var(--section-padding-y-tablet) var(--section-padding-x) var(--section-padding-y-tablet);
}

.om-naturro-team-section .team-section-heading {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 var(--section-padding-x) var(--spacing-lg);
  color: var(--color-green);
}

/* Grid: two founders side-by-side on desktop, one per screen avoided */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

.founder-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.founder-card-image {
  position: relative;
  aspect-ratio: 4/3;
  max-height: 300px;
  overflow: hidden;
}

.founder-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-card-body {
  padding: var(--spacing-md) var(--content-padding);
  flex: 1;
}

.founder-card-body h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--color-green);
}

.founder-card-body p {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  line-height: 1.6;
  color: var(--color-nature-text-secondary);
  font-style: italic;
  margin: 0;
}

/* Legacy full-width blocks (e.g. if only one founder or fallback) */
.team-blocks-section {
  padding: var(--section-padding-y-tablet) var(--section-padding-x);
}

.team-blocks-section[data-theme="yellow"] {
  background: var(--color-yellow);
  color: var(--color-green);
}

.team-blocks-section[data-theme="green"] {
  background: var(--color-green);
  color: var(--color-yellow);
}

.team-member-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  align-items: center;
  margin-bottom: var(--spacing-lg);
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
}

.team-member-block:last-child {
  margin-bottom: 0;
}

.team-member-block.reverse {
  direction: rtl;
}

.team-member-block.reverse > * {
  direction: ltr;
}

.team-member-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 320px;
  box-shadow: var(--shadow-md);
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-text {
  padding: var(--spacing-md) var(--content-padding);
}

.team-member-text h3 {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
  color: currentColor;
}

.team-member-text p {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  color: currentColor;
  opacity: 0.95;
  font-style: italic;
}

@media (max-width: 700px) {
  .om-naturro-team-section {
    padding: var(--section-padding-y-mobile) var(--section-padding-x-mobile);
  }

  .om-naturro-team-section .team-section-heading {
    margin-bottom: var(--spacing-md);
  }

  .founders-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    padding: 0 var(--section-padding-x-mobile);
  }

  .founder-card-image {
    max-height: 260px;
  }

  .team-blocks-section {
    padding: var(--section-padding-y-mobile) var(--section-padding-x-mobile);
  }

  .team-member-block {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
  }

  .team-member-image {
    max-height: 260px;
    margin: 0 auto;
    width: 100%;
    max-width: 280px;
  }

  .team-member-block img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ===============================
   PAGE HEADER (Overlaid on video)
================================ */

.page-header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 100%;
  padding: 0 var(--section-padding-x);
  pointer-events: none;
}

/* Readable but less oversized than front-page hero */
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-white);
  margin-bottom: 0;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

@media (max-width: 900px) {
  .page-header {
    padding: 0 var(--section-padding-x-tablet);
    text-align: center !important;
  }
  
  .page-header h1 {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 500px) {
  .page-header {
    padding: 0 var(--spacing-sm);
  }
}

/* ===============================
   FAQ SECTION (Om NaturRo page)
================================ */

/* ===============================
   FAQ SECTION
================================ */

.faq-section {
  padding: var(--section-padding-y-tablet) var(--section-padding-x) var(--section-padding-y-tablet);
}

/* Slightly tighter last section so page doesn’t feel overly long */
.site-main .faq-section:last-of-type {
  padding-bottom: var(--section-padding-y-tablet);
}

@media (max-width: 900px) {
  .faq-section {
    padding: var(--section-padding-y-tablet) var(--section-padding-x-tablet);
  }
}

/* FAQ Container (without sidebar) */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

/* FAQ Grid (with sidebar) */
.faq-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-lg);
  max-width: var(--content-max-width);
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

/* FAQ Heading */
.faq-heading,
.faq-main h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  text-align: left;
  color: currentColor;
}

/* Human intro sentence below heading (e.g. Om NaturRo) */
.faq-intro {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.6;
  color: currentColor;
  opacity: 0.9;
  margin-bottom: var(--spacing-lg);
  max-width: 42em;
}

@media (max-width: 900px) {
  .faq-heading,
  .faq-main h2 {
    margin-bottom: var(--spacing-sm);
  }

  .faq-intro {
    margin-bottom: var(--spacing-md);
  }
}

/* FAQ Items List */
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .faq-items {
    gap: 2rem;
  }
}

/* FAQ Item */
.faq-item {
  text-align: left;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* FAQ Question */
.faq-question {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: currentColor;
  line-height: 1.4;
}

/* FAQ Answer */
.faq-answer {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: currentColor;
  opacity: 0.9;
}

.faq-answer p {
  margin-bottom: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  font-weight: 600;
  color: currentColor;
}

/* FAQ Sidebar */
.faq-sidebar {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 8px;
  text-align: left;
}

.faq-sidebar h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: currentColor;
}

.faq-sidebar p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: currentColor;
  opacity: 0.9;
}

.faq-cta-button {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background: currentColor;
  color: var(--color-white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.2s ease;
}

.faq-cta-button:hover {
  opacity: 0.9;
}

/* FAQ Main (when sidebar is shown) */
.faq-main {
  /* Styles for main content area when sidebar is present */
}

/* FAQ Section Theme Colors */
.faq-section[data-theme="yellow"] {
  background: var(--color-yellow);
  color: var(--color-green);
}

.faq-section[data-theme="green"] {
  background: var(--color-green);
  color: var(--color-white);
}

.faq-section[data-theme="coral"] {
  background: var(--color-coral);
  color: var(--color-green);
}

.faq-section[data-theme="blue"] {
  background: var(--color-blue);
  color: var(--color-white);
}

.faq-section[data-theme="teal"] {
  background: var(--color-teal);
  color: var(--color-white);
}

.faq-section[data-theme="red"] {
  background: var(--color-red);
  color: var(--color-white);
}

.faq-section[data-theme="orange-blue"] {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-blue) 100%);
  color: var(--color-white);
}

/* ===============================
   VIDEO HERO SECTION
================================ */

/* Om NaturRo: hero uses theme token (yellow/cream) – same system as rest of site */
.video-hero-section {
  min-height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: var(--hero-bg-image, none);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  /* Fallback when no video/image: use editorial yellow (theme system sets hero to transparent when media present) */
  background-color: var(--color-yellow);
  overflow: hidden;
  margin-top: 0;
  /* Own padding only (excluded from default section padding): top for navbar */
  padding: 70px 0 0 0;
}

.video-hero-section video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: transparent;
  display: block;
  min-height: 50vh;
}

.video-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

@media (max-width: 900px) {
  .video-hero-section {
    min-height: 45vh;
  }

  .video-hero-section video {
    min-height: 45vh;
  }
}

.video-hero-label {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  background: rgba(0,0,0,0.6);
  color: white;
  border-radius: 20px;
  z-index: 10;
}

@media (max-width: 900px) {
  .video-hero-label {
    top: 1rem;
    right: 1rem;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}

/* ===============================
   TEXT CONTENT RESPONSIVE
================================ */

/* Ensure readable text on mobile */
section p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
}

@media (max-width: 500px) {
  section p {
    font-size: 1rem; /* Never below 16px */
    line-height: 1.8;
  }
}

/* ===============================
   DIAGONAL SECTION (Naturen som pauseknap)
================================ */

.diagonal-section {
  position: relative;
  padding: var(--section-large-padding-y) var(--section-padding-x);
  transform: skewY(-2deg);
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: var(--spacing-lg) 0;
}

.diagonal-section::before,
.diagonal-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  background: inherit;
  z-index: 0;
}

.diagonal-content {
  transform: skewY(2deg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  max-width: var(--content-max-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 0 var(--spacing-sm);
}

/* When no images are set: single column, centered text (no empty right side) */
.diagonal-content--text-only {
  grid-template-columns: 1fr;
  max-width: 800px;
  text-align: center;
}

.diagonal-content--text-only .diagonal-text-content {
  text-align: left;
}

.diagonal-text {
  position: relative;
  z-index: 1;
}

.diagonal-text h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  line-height: 1.1;
}

.diagonal-text p,
.diagonal-text .diagonal-text-content {
  font-size: 1.2rem;
  line-height: 1.9;
  opacity: 0.95;
  margin-bottom: var(--spacing-sm);
}

.diagonal-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.diagonal-image-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transform: skewY(0deg);
}

.diagonal-image-grid img:first-child {
  transform: translateY(-20px) skewY(0deg);
}

.diagonal-image-grid img:last-child {
  transform: translateY(20px) skewY(0deg);
}

@media (max-width: 900px) {
  .diagonal-section {
    transform: none;
    margin: var(--spacing-md) 0;
    padding: var(--section-padding-y-tablet) var(--section-padding-x-tablet);
  }
  .diagonal-content {
    transform: none;
    grid-template-columns: 1fr;
  }
  .diagonal-image-grid img:first-child,
  .diagonal-image-grid img:last-child {
    transform: none;
  }
}

/* ===============================
   HANDELSBETINGELSER PAGE
   Hero, intro (two columns), alternating sections – NaturRo tokens
================================ */

.handelsbetingelser-hero {
  position: relative;
}

.handelsbetingelser-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Overlay when hero has image so title is readable */
.handelsbetingelser-hero--has-image::after,
.handelsbetingelser-hero:has(.handelsbetingelser-hero-bg)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.handelsbetingelser-hero .page-header {
  position: relative;
  z-index: 2;
}

/* Intro: two columns */
.handelsbetingelser-intro {
  background: var(--color-white);
  color: var(--color-green);
  padding: var(--section-padding-y-tablet) var(--section-padding-x);
}

.handelsbetingelser-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  max-width: var(--content-max-width);
  margin: 0 auto;
  align-items: start;
}

.handelsbetingelser-intro-left h2,
.handelsbetingelser-intro-right h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--color-green);
}

.handelsbetingelser-intro-text {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  color: var(--color-nature-text-secondary);
}

.handelsbetingelser-afdelinger {
  list-style: none;
  margin: 0;
  padding: 0;
}

.handelsbetingelser-afdelinger li {
  margin-bottom: var(--spacing-xs);
}

.handelsbetingelser-afdelinger a {
  color: var(--color-green);
  text-decoration: none;
}

.handelsbetingelser-afdelinger a:hover {
  text-decoration: underline;
}

/* Content sections: alternating yellow / green (theme colors) */
.handelsbetingelser-section {
  padding: var(--section-padding-y-tablet) var(--section-padding-x);
}

.handelsbetingelser-section--yellow {
  background: var(--color-yellow);
  color: var(--color-green);
}

.handelsbetingelser-section--green {
  background: var(--color-green);
  color: var(--color-yellow);
}

.handelsbetingelser-section-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.handelsbetingelser-section-title {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid currentColor;
  color: inherit;
}

.handelsbetingelser-section-content {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.7;
}

.handelsbetingelser-section-content p {
  margin-bottom: 1rem;
}

.handelsbetingelser-section-content p:last-child {
  margin-bottom: 0;
}

.handelsbetingelser-section-content h3,
.handelsbetingelser-section-content h4 {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-xs);
  color: inherit;
}

@media (max-width: 900px) {
  .handelsbetingelser-intro-inner {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .handelsbetingelser-section {
    padding: var(--section-padding-y-tablet) var(--section-padding-x-tablet);
  }
}

@media (max-width: 500px) {
  .handelsbetingelser-intro,
  .handelsbetingelser-section {
    padding: var(--section-padding-y-mobile) var(--section-padding-x-mobile);
  }
}

/* ===============================
   CONTAINER MAX-WIDTHS
================================ */

/* Section content containers */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.section-container-narrow {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.section-container-wide {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

