/*
Theme Name: KlinikDesign
Theme URI: https://klinikdesign.dk
Author: KlinikDesign
Author URI: https://klinikdesign.dk
Description: Strategisk rådgiver for tandklinikker — med arkitektur som værktøj.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: klinikdesign
*/

/* ===== BRAND TOKENS ===== */
:root {
  --bg:        #F7F3EE;
  --white:     #FFFFFF;
  --green:     #4A5A4C;
  --green-l:   #5C7060;
  --green-d:   #2e3a30;
  --green-p:   #EEF2EF;
  --copper:    #B87333;
  --copper-l:  #9C6B3F;
  --copper-p:  #F5EAD8;
  --stone:     #BEB8B1;
  --ink:       #2A2A2A;
  --ink-mid:   #4A4A4A;
  --ink-soft:  #767676;
  --ink-faint: #A8A49C;
  --rule:      #E2DDD7;
  --rule-l:    #EDE9E3;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --max-w: 1160px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--bg); color: var(--ink); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.section--white   { background: var(--white); }
.section--green-p { background: var(--green-p); }
.section--dark    { background: var(--green-d); color: var(--bg); }
.section--bg      { background: var(--bg); }

/* ===== TYPOGRAPHY ===== */
.eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper); display: block; margin-bottom: 14px; }
.eyebrow--light { color: #D4A97A; }
.eyebrow--green { color: var(--green); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; }
.display-xl { font-size: clamp(36px, 4.5vw, 62px); font-weight: 300; letter-spacing: -0.01em; }
.display-lg { font-size: clamp(28px, 3.5vw, 48px); font-weight: 300; letter-spacing: -0.01em; }
.display-md { font-size: clamp(22px, 2.5vw, 34px); font-weight: 400; }

p.lead     { font-size: 16px; font-weight: 300; line-height: 1.75; color: var(--ink-soft); max-width: 620px; }
p.body-txt { font-size: 15px; font-weight: 300; line-height: 1.8;  color: var(--ink-soft); }

.rule-line { width: 32px; height: 1px; background: var(--copper); margin: 24px 0; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 13px 28px; font-family: var(--font-body); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; border: none; transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94); }
.btn--primary       { background: var(--green);  color: var(--white); }
.btn--primary:hover { background: var(--green-l); }
.btn--copper        { background: var(--copper); color: var(--white); }
.btn--copper:hover  { background: var(--copper-l); }
.btn--outline       { background: transparent; color: var(--green); border: 1px solid var(--green); }
.btn--outline:hover { background: var(--green); color: var(--white); }
.btn--outline-light { background: transparent; color: rgba(247,243,238,0.8); border: 1px solid rgba(247,243,238,0.3); }
.btn--outline-light:hover { background: rgba(247,243,238,0.1); }

/* ===== FADE IN ===== */
.fi {
  opacity: 0;
  transform: translateY(24px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: opacity 0.75s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94);
}
.fi.vis { opacity: 1; transform: translateY(0); }
.fi-d1 { transition-delay: 0.12s; }
.fi-d2 { transition-delay: 0.24s; }
.fi-d3 { transition-delay: 0.36s; }
.fi-d4 { transition-delay: 0.48s; }

/* ===== PARALLAX ===== */
[data-parallax] { 
  will-change: transform; 
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0,0,0);
}

/* ===== NAVIGATION ===== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 22px 40px; display: flex; align-items: center; justify-content: space-between; background: transparent; transition: background 0.3s, padding 0.3s, box-shadow 0.3s; }
.site-header.scrolled { background: rgba(247,243,238,0.97); backdrop-filter: blur(12px); padding: 14px 40px; box-shadow: 0 1px 0 var(--rule); }
.site-header.solid { background: rgba(247,243,238,0.97); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--rule); }
.nav-logo img, .nav-logo .custom-logo-link img, .custom-logo-link img, .site-header img { height: 38px !important; width: auto !important; max-width: 180px !important; max-height: 38px !important; }
.nav-logo .text-logo { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 12px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); transition: color 0.2s; }
.nav-links a:hover, .nav-links .current-menu-item > a { color: var(--green); }
.nav-cta { padding: 10px 22px !important; border: 1px solid var(--copper) !important; color: var(--copper) !important; }
.nav-cta:hover { background: var(--copper) !important; color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--bg); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 32px; font-weight: 300; color: var(--ink); }
.mobile-menu .mobile-cta { color: var(--copper) !important; }
.mobile-close { position: absolute; top: 24px; right: 40px; font-size: 26px; cursor: pointer; color: var(--ink-soft); background: none; border: none; }

/* ===== PAGE HERO ===== */
.page-hero { padding: 160px 0 80px; background: var(--bg); border-bottom: 1px solid var(--rule); }

/* ===== HERO (forside) ===== */
.hero { min-height: 100vh; background: var(--bg); display: flex; flex-direction: column; justify-content: flex-end; padding: 0 40px 80px; position: relative; overflow: hidden; }
.hero-decor { position: absolute; top: 80px; right: 80px; width: 280px; height: 280px; border-radius: 50%; border: 1px solid rgba(74,90,76,0.08); pointer-events: none; }
.hero-decor::after { content: ''; position: absolute; inset: 24px; border-radius: 50%; border: 1px solid rgba(184,115,51,0.1); }
.hero-content { position: relative; max-width: var(--max-w); margin: 0 auto; width: 100%; }
.hero h1 em { font-style: italic; color: var(--green); }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 56px; gap: 40px; }
.hero-sub { font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--ink-soft); max-width: 400px; }
.hero-actions { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }

/* ===== STATS STRIP ===== */
.stats-strip { background: var(--green-d); padding: 36px 0; border-top: 1px solid rgba(184,115,51,0.2); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 0 36px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 46px; font-weight: 300; color: #D4A97A; line-height: 1; }
.stat-lbl { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,243,238,0.4); margin-top: 6px; }

/* ===== BEREGNER ===== */
.beregner-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 48px; }
.beregner-note { font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--ink-soft); border-left: 2px solid var(--rule); padding-left: 16px; }
.widget-wrapper { border: 1px solid var(--rule); }

/* ===== TEASER BÅND ===== */
.teaser-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--rule); }
.teaser-card { background: var(--white); padding: 40px 36px; display: flex; flex-direction: column; justify-content: space-between; transition: background 0.2s; }
.teaser-card:hover { background: var(--green-p); }
.teaser-num { font-family: var(--font-display); font-size: 48px; font-weight: 300; color: rgba(74,90,76,0.12); line-height: 1; margin-bottom: 16px; }
.teaser-title { font-family: var(--font-display); font-size: 22px; color: var(--ink); margin-bottom: 12px; }
.teaser-text { font-size: 14px; font-weight: 300; color: var(--ink-soft); line-height: 1.7; margin-bottom: 28px; flex-grow: 1; }
.teaser-link { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.teaser-card:hover .teaser-link { gap: 10px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--rule); margin-top: 56px; }
.testimonial { background: var(--white); padding: 36px 32px; position: relative; }
.testimonial::before { content: '\201C'; font-family: var(--font-display); font-size: 72px; color: var(--green); opacity: 0.18; position: absolute; top: 16px; left: 28px; line-height: 1; }
.testimonial-text { font-family: var(--font-display); font-size: 17px; font-weight: 300; font-style: italic; line-height: 1.65; color: var(--ink); margin-bottom: 28px; padding-top: 16px; }
.testimonial-author { font-size: 12px; color: var(--ink-soft); }
.testimonial-author strong { display: block; color: var(--ink); font-weight: 500; margin-bottom: 2px; }

/* ===== 5-TRINS MODEL ===== */
.model-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--rule); background: var(--rule); margin-top: 56px; }
.model-step { background: var(--white); padding: 36px 28px; position: relative; }
.model-step::before { content: ''; position: absolute; top: 0; left: 28px; width: 20px; height: 2px; background: var(--copper); opacity: 0.7; }
.model-step-num { font-family: var(--font-display); font-size: 56px; font-weight: 300; color: rgba(74,90,76,0.07); line-height: 1; margin-bottom: 20px; }
.model-step-title { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--ink); margin-bottom: 10px; line-height: 1.25; }
.model-step-text { font-size: 13px; color: var(--ink-soft); line-height: 1.65; font-weight: 300; }
.model-tagline { margin-top: 48px; display: flex; align-items: center; gap: 16px; }
.model-tagline-text { font-family: var(--font-display); font-size: 22px; font-weight: 300; color: var(--ink-soft); font-style: italic; }
.model-tagline-text strong { color: var(--green); font-style: normal; font-weight: 400; }

/* ===== DIFFERENTIERING ===== */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--rule); margin-top: 56px; }
.diff-card { background: var(--white); padding: 40px 36px; transition: background 0.2s; }
.diff-card:hover { background: var(--green-p); }
.diff-num { font-family: var(--font-display); font-size: 13px; color: var(--copper); margin-bottom: 20px; }
.diff-title { font-family: var(--font-display); font-size: 22px; color: var(--ink); margin-bottom: 12px; }
.diff-text { font-size: 14px; font-weight: 300; color: var(--ink-soft); line-height: 1.7; }

/* ===== PROJEKTER ===== */
.projekt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--rule); margin-top: 56px; }
.projekt-card { background: var(--bg); overflow: hidden; }
.projekt-img { background: linear-gradient(135deg, #c8d4ca 0%, #b0c0b3 100%); position: relative; overflow: hidden; transition: transform 0.6s ease; }
.projekt-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.projekt-card:hover .projekt-img img { transform: scale(1.03); }
.projekt-img-landscape { aspect-ratio: 16/9; }
.projekt-img-portrait  { aspect-ratio: 3/4; }
.projekt-card--featured { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
.projekt-card--featured .projekt-img { aspect-ratio: auto; min-height: 400px; }
.projekt-body { padding: 28px 32px; background: var(--white); }
.projekt-eyebrow { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--copper); margin-bottom: 8px; }
.projekt-name { font-family: var(--font-display); font-size: 26px; color: var(--ink); margin-bottom: 12px; }
.projekt-desc { font-size: 14px; font-weight: 300; color: var(--ink-soft); line-height: 1.7; margin-bottom: 20px; }
.projekt-facts { display: flex; gap: 24px; flex-wrap: wrap; border-top: 1px solid var(--rule); padding-top: 16px; }
.projekt-fact-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 3px; }
.projekt-fact-val { font-size: 13px; color: var(--ink-mid); }

/* ===== OM OS ===== */
.omos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.feature-list { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.feature-item { display: flex; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--rule); align-items: flex-start; }
.feature-item:first-child { border-top: 1px solid var(--rule); }
.feature-num { font-family: var(--font-display); font-size: 13px; color: var(--copper); flex-shrink: 0; }
.feature-txt { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }
.feature-txt strong { color: var(--ink); font-weight: 500; display: block; margin-bottom: 3px; }

/* ===== KONTAKT ===== */
.kontakt-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.kontakt-details { margin-top: 40px; }
.kontakt-item { display: flex; gap: 20px; padding: 16px 0; border-bottom: 1px solid rgba(247,243,238,0.07); align-items: flex-start; }
.kontakt-item:first-child { border-top: 1px solid rgba(247,243,238,0.07); }
.kontakt-item-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: #D4A97A; flex-shrink: 0; width: 72px; }
.kontakt-item-val { font-size: 14px; color: rgba(247,243,238,0.7); }
.wpcf7-form { display: flex; flex-direction: column; gap: 0; }
.wpcf7-form p { margin-bottom: 20px; }
.wpcf7-form label { display: block; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(247,243,238,0.35); margin-bottom: 7px; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--bg); padding: 12px 16px; font-family: var(--font-body); font-size: 14px; outline: none; transition: border-color 0.2s; border-radius: 0; appearance: none; }
.wpcf7-form input:focus, .wpcf7-form textarea:focus { border-color: var(--copper); }
.wpcf7-form textarea { height: 120px; resize: vertical; }
.wpcf7-form .wpcf7-submit { background: var(--copper); color: var(--white); border: none; padding: 15px 32px; font-family: var(--font-body); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; width: 100%; }
.wpcf7-form .wpcf7-submit:hover { background: var(--copper-l); }
.booking-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--rule); margin-top: 56px; }
.booking-option { background: var(--white); padding: 32px 28px; }
.booking-option-num { font-family: var(--font-display); font-size: 40px; font-weight: 300; color: rgba(74,90,76,0.1); margin-bottom: 12px; }
.booking-option-title { font-family: var(--font-display); font-size: 20px; color: var(--ink); margin-bottom: 10px; }
.booking-option-text { font-size: 13px; color: var(--ink-soft); line-height: 1.65; font-weight: 300; margin-bottom: 20px; }

/* ===== BEREGNER STRIP ===== */
.beregner-strip { background: var(--green-p); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 40px 0; }
.beregner-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.beregner-strip-tekst h3 { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--ink); margin-bottom: 4px; }
.beregner-strip-tekst p { font-size: 14px; font-weight: 300; color: var(--ink-soft); }

/* ===== BOOKING BANNER ===== */
.booking-banner { background: var(--green-d); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.booking-banner::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(184,115,51,0.08) 0%, transparent 70%); pointer-events: none; }
.booking-banner h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 50px); font-weight: 300; color: var(--bg); margin-bottom: 12px; }
.booking-banner p  { font-size: 15px; color: rgba(247,243,238,0.55); margin-bottom: 36px; font-weight: 300; }

/* ===== FOOTER ===== */
.site-footer { background: #0e1f12; border-top: 1px solid rgba(184,115,51,0.15); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,243,238,0.25); transition: color 0.2s; }
.footer-nav a:hover { color: rgba(247,243,238,0.6); }
.footer-copy { font-size: 11px; color: rgba(247,243,238,0.2); }
.site-footer .custom-logo-link img { max-width: 120px; width: 100%; height: auto; display: block; }

/* ===== WORDPRESS ===== */
.wp-block-image { margin: 0; }
.aligncenter { text-align: center; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }

/* ===== BEREGNER CTA ===== */
.beregner-cta-wrap { display:grid; grid-template-columns:1fr 380px; gap:60px; align-items:center; }
.beregner-cta-boks { background:var(--white); border:1px solid var(--rule); box-shadow:0 4px 32px rgba(74,90,76,0.08); }
.beregner-cta-indhold { padding:36px 32px; }
.beregner-cta-ikon { width:56px;height:56px;background:var(--green-p);border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:16px; }
.beregner-cta-titel { font-family:var(--font-display);font-size:22px;font-weight:400;color:var(--ink);margin-bottom:10px; }
.beregner-cta-sub { font-size:14px;font-weight:300;color:var(--ink-soft);line-height:1.65;margin-bottom:20px; }
.beregner-cta-liste { list-style:none;padding:0;display:flex;flex-direction:column;gap:8px;margin-bottom:24px;border-top:1px solid var(--rule-l);padding-top:16px; }
.beregner-cta-liste li { display:flex;gap:10px;font-size:13px;font-weight:300;color:var(--ink-soft); }
.beregner-cta-liste li span { color:var(--green);font-weight:500;flex-shrink:0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .model-steps { grid-template-columns: repeat(3, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .beregner-cta-wrap { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 64px 0; }
  .site-header { padding: 18px 24px; }
  .site-header.scrolled, .site-header.solid { padding: 12px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 0 24px 60px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-wrap: wrap; }
  .hero-decor { display: none; }
  .page-hero { padding: 120px 0 60px; }
  .beregner-intro { grid-template-columns: 1fr; gap: 28px; }
  .model-steps { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .projekt-grid { grid-template-columns: 1fr; }
  .projekt-card--featured { grid-column: span 1; grid-template-columns: 1fr; }
  .projekt-card--featured .projekt-img { min-height: 260px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .omos-grid { grid-template-columns: 1fr; gap: 48px; }
  .kontakt-layout { grid-template-columns: 1fr; gap: 48px; }
  .booking-options { grid-template-columns: 1fr; }
  .teaser-band { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 20px; }
}




/* ===== BILLEDHOPPING FIX ===== */
.fs-billede.fs-roterende {
  position: relative !important;
  aspect-ratio: 3 / 2 !important;
  height: auto !important;
  min-height: unset !important;
  overflow: hidden !important;
}
.fs-rot-img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}














/* === RESPONSIVT LAYOUT === */
/* Desktop: omos-team-grid og omos intro → 2 kolonner (inline style) */
/* Mobil: 1 kolonne via !important */
@media (max-width: 768px) {
  :root { --max-w: 100% !important; }
  html, body { overflow-x: hidden !important; max-width: 100vw !important; }
  .container { width:100% !important; max-width:100% !important; padding-left:1.25rem !important; padding-right:1.25rem !important; }
  .section, .section--white, .section--bg, .section--beige { padding-top:3rem !important; padding-bottom:3rem !important; }
  .display-xl { font-size:clamp(2rem,9vw,3rem) !important; line-height:1.1 !important; }
  .display-lg { font-size:clamp(1.75rem,7vw,2.5rem) !important; }
  .display-md { font-size:clamp(1.4rem,6vw,2rem) !important; }
  .nav-links { display:none !important; }
  .hamburger { display:flex !important; }
  .site-header { padding:0 1.25rem !important; height:60px !important; }

  /* Medarbejder og omos-grid → 1 kolonne på mobil */
  .omos-team-grid { grid-template-columns:1fr !important; }
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns:1fr !important; }

  .model-steps { grid-template-columns:1fr !important; }
  .diff-grid { grid-template-columns:1fr !important; }
  .projekt-grid { grid-template-columns:1fr !important; }
  .kontakt-grid { grid-template-columns:1fr !important; }
  .booking-options { grid-template-columns:1fr !important; }
  .booking-option { border-left:none !important; border-top:1px solid #e0d9cc !important; padding:1.5rem 0 !important; }
  .booking-option:first-child { border-top:none !important; padding-top:0 !important; }
  .form-input { font-size:16px !important; }
  .footer-inner { flex-direction:column !important; align-items:center !important; gap:2rem !important; text-align:center !important; }
  .footer-nav { flex-direction:column !important; gap:0.75rem !important; align-items:center !important; }
  .beregner-strip-inner { flex-direction:column !important; gap:1.5rem !important; }
  .booking-banner { text-align:center !important; padding:3rem 1.25rem !important; }
  .btn--primary, .btn--copper { width:100% !important; justify-content:center !important; display:flex !important; }
}






/* ===== TEKST AFSNIT SPACING ===== */
/* Overstyrer global * { margin: 0 } reset */
.body-txt > div { margin-bottom: 1.1em !important; }
.body-txt > div:last-child { margin-bottom: 0 !important; }
.body-txt > div > p { margin-bottom: 0.8em !important; }
.body-txt > div > p:last-child { margin-bottom: 0 !important; }
.body-txt > p { margin-bottom: 1em !important; }
.body-txt > h2, .body-txt > h3 { margin-top: 1.2em !important; margin-bottom: 0.4em !important; font-weight: 600 !important; }

/* Lightbox projekt tekst */
.lbx-desc > p { margin-bottom: 1em !important; }
.lbx-desc > p:last-child { margin-bottom: 0 !important; }
.lbx-desc > h2, .lbx-desc > h3 { margin-top: 1.2em !important; margin-bottom: 0.4em !important; font-weight: 600 !important; }
.lbx-desc strong { display: block !important; margin-top: 1em !important; font-weight: 700 !important; }
.lbx-desc > p:first-child > strong:first-child,
.lbx-desc > p + p > strong:first-child { margin-top: 1.2em !important; }


/* ===== BEREGNER NAV-KNAP ===== */
.nav-beregner {
  color: #B87333 !important;
  border: 1px solid #B87333 !important;
  padding: 0.35rem 1rem !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s !important;
  white-space: nowrap !important;
}
.nav-beregner:hover {
  background: #B87333 !important;
  color: #fff !important;
}
@media (max-width: 768px) {
  .nav-beregner { display: none !important; }
}
