@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #050c18;
  --bg-2: #091428;
  --bg-card: #0d1f3c;
  --blue: #3B82F6;
  --blue-light: #60A5FA;
  --text: #fff;
  --text-2: rgba(255,255,255,0.68);
  --text-3: rgba(255,255,255,0.4);
  --border: rgba(255,255,255,0.08);
  --nav-h: 72px;
  --r: 10px;
  --max: 1200px;
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* Container */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 6px; font-weight: 600; font-size: 15px; cursor: pointer; transition: all .2s; border: none; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-light); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--blue-light); color: var(--blue-light); }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.14); }
.btn-lg { padding: 15px 36px; font-size: 16px; }

/* Text gradient */
.grad-text { background: linear-gradient(135deg, #60A5FA, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Nav */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); background: rgba(5,12,24,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: background .3s; }
.nav.scrolled { background: rgba(5,12,24,0.98); }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; gap: 40px; }
.nav-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; margin-right: auto; }
.nav-logo-name { font-size: 22px; font-weight: 900; letter-spacing: -0.03em; color: #fff; }
.nav-logo-tag { font-size: 10px; color: var(--blue-light); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--text-2); padding: 8px 12px; border-radius: 6px; transition: color .2s, background .2s; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,0.06); }
.nav-item { position: relative; }
.nav-item:hover .nav-sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-sub { position: absolute; top: calc(100% + 10px); left: 0; background: #0d1f3c; border: 1px solid var(--border); border-radius: 8px; padding: 8px; min-width: 210px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .2s; box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.nav-sub li a { display: block; padding: 9px 14px; font-size: 14px; color: var(--text-2); border-radius: 5px; transition: background .15s, color .15s; }
.nav-sub li a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-tel { font-size: 14px; font-weight: 600; color: var(--text-2); transition: color .2s; }
.nav-tel:hover { color: #fff; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav { position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; z-index: 99; background: #050c18; padding: 24px; display: flex; flex-direction: column; gap: 4px; transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-link { font-size: 18px; font-weight: 600; color: var(--text-2); padding: 14px 0; border-bottom: 1px solid var(--border); }
.mobile-nav-link:hover { color: #fff; }
.mobile-nav-tel { font-size: 15px; font-weight: 600; color: var(--blue-light); padding: 14px 0; margin-top: 8px; }

/* Scroll animations */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* Video hero (lin-section) */
.lin-section { padding-top: var(--nav-h); }
.lin-video-wrap { position: relative; height: calc(100vh - var(--nav-h)); min-height: 500px; overflow: hidden; }
.lin-video-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lin-video-overlay { position: absolute; inset: 0; z-index: 1; background: rgba(0,0,0,0.45); }
.lin-hero-text { position: absolute; inset: 0; z-index: 3; display: flex; align-items: flex-end; padding-bottom: 80px; padding-left: clamp(24px, 6vw, 100px); }
.lin-h1 { font-size: clamp(28px, 3.8vw, 54px); font-weight: 900; color: #fff; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 20px; }
.lin-sub { font-size: clamp(15px, 1.6vw, 18px); color: rgba(255,255,255,0.8); max-width: 500px; margin-bottom: 32px; line-height: 1.6; }
.lin-video-gradient { position: absolute; bottom: 0; left: 0; right: 0; height: 220px; z-index: 2; background: linear-gradient(to bottom, transparent, #091428); }
.lin-text { background: var(--bg-2); padding: 80px 0; text-align: center; }
.lin-eye { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 16px; }
.lin-title { font-size: clamp(26px, 3.5vw, 46px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 24px; }
.lin-desc { font-size: 16px; color: var(--text-2); max-width: 680px; margin: 0 auto 28px; line-height: 1.8; }
.lin-highlight { font-size: 13px; color: rgba(255,255,255,0.82); max-width: 620px; margin: 0 auto; line-height: 1.75; }

/* Welcome section */
.section { padding: 100px 0; }
.welcome-section { background: var(--bg); }
.section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 14px; }
.welcome-h2 { font-size: clamp(28px, 4vw, 52px); font-weight: 900; letter-spacing: -0.04em; margin-bottom: 24px; }
.welcome-p { font-size: 17px; color: var(--text-2); max-width: 700px; line-height: 1.8; margin-bottom: 16px; }
.offers-heading { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-light); margin-top: 64px; margin-bottom: 14px; }
.offers-h { font-size: clamp(22px, 3vw, 38px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 36px; }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.offer-card { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; display: block; text-decoration: none; }
.offer-card::after { content: ''; position: absolute; inset: 0; background: rgba(30, 100, 220, 0.22); opacity: 0; transition: opacity .35s ease; pointer-events: none; }
.offer-card:hover::after { opacity: 1; }
.offer-card:hover .offer-img { transform: scale(1.05); }
.offer-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.offer-body { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; }
.offer-name { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.offer-more { font-size: 13px; font-weight: 600; color: var(--blue-light); }

/* Price CTA */
.price-cta { background: var(--bg-2); padding: 100px 0; text-align: center; }
.price-cta-h { font-size: clamp(28px, 4vw, 52px); font-weight: 900; letter-spacing: -0.04em; margin-bottom: 20px; }
.price-cta-p { font-size: 17px; color: var(--text-2); max-width: 560px; margin: 0 auto 14px; line-height: 1.7; }
.price-cta-btns { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); cursor: pointer; }
.faq-q { padding: 20px 0; font-size: 17px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q::after { content: '+'; font-size: 22px; font-weight: 400; color: var(--blue-light); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { font-size: 16px; color: var(--text-2); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* Footer */
.footer { background: #020810; padding: 72px 0 32px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-logo { font-size: 26px; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 14px; display: block; }
.footer-tagline { font-size: 14px; color: var(--text-3); line-height: 1.8; margin-bottom: 24px; max-width: 300px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-2); transition: color .2s; }
.footer-contact a:hover { color: #fff; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-col-h { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 14px; color: var(--text-2); transition: color .2s; }
.footer-link:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: var(--text-3); }
.footer-social { display: flex; gap: 10px; }
.soc-link { width: 36px; height: 36px; border-radius: 6px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: var(--text-2); transition: background .2s, color .2s; }
.soc-link:hover { background: var(--blue); color: #fff; }
.soc-link svg { width: 16px; height: 16px; }

/* Losninger page specific */
/* Hero tabs */
.sol-hero { position: relative; height: 90vh; min-height: 560px; overflow: hidden; display: flex; align-items: flex-end; padding-bottom: 80px; padding-top: var(--nav-h); }
.sol-hero-bg { position: absolute; inset: 0; }
.sol-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.sol-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,12,24,1) 0%, rgba(5,12,24,0.6) 40%, rgba(5,12,24,0.2) 100%); }
.sol-hero-content { position: relative; z-index: 2; width: 100%; }
.sol-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 16px; }
.sol-h1 { font-size: clamp(32px, 5vw, 68px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 40px; }
.sol-tabs { display: flex; gap: 12px; flex-wrap: wrap; }
.sol-tab { padding: 13px 28px; border-radius: 6px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all .2s; border: 1.5px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.06); }
.sol-tab:hover, .sol-tab.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* Tab content panels */
.sol-panel { display: block; }

/* Vi leverer section */
.vi-leverer { padding: 100px 0; background: var(--bg); }
.vi-leverer-intro { max-width: 700px; margin-bottom: 64px; }
.vi-leverer-intro h2 { font-size: clamp(26px, 3.5vw, 46px); font-weight: 900; letter-spacing: -0.04em; margin-bottom: 18px; }
.vi-leverer-intro p { font-size: 17px; color: var(--text-2); line-height: 1.8; }

/* Scene type cards */
.type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.type-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: border-color .2s; text-decoration: none; color: inherit; }
.type-card:hover { border-color: var(--blue); }
.type-card-img { aspect-ratio: 16/9; overflow: hidden; }
.type-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.type-card:hover .type-card-img img { transform: scale(1.05); }
.type-card-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.type-card-title { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.type-card-desc { font-size: 15px; color: var(--text-2); line-height: 1.7; flex: 1; margin-bottom: 20px; }
.type-card-link { font-size: 14px; font-weight: 600; color: var(--blue-light); display: flex; align-items: center; gap: 6px; }
.type-card-link::after { content: '→'; }

/* Scener page */
.page-hero { position: relative; min-height: 580px; display: flex; align-items: flex-end; padding-bottom: 72px; padding-top: var(--nav-h); overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,12,24,0.88) 0%, rgba(5,12,24,0.35) 50%, rgba(5,12,24,0.08) 100%); }
.page-hero-content { position: relative; z-index: 2; width: 100%; }
.page-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 12px; }
.page-h1 { font-size: clamp(32px, 5vw, 64px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 16px; }
.page-sub { font-size: 18px; color: var(--text-2); max-width: 580px; line-height: 1.7; }
.scener-section { padding: 80px 0; }
.scener-section + .scener-section { border-top: 1px solid var(--border); }
.scene-card { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.scene-card.reverse { direction: rtl; }
.scene-card.reverse > * { direction: ltr; }
.scene-card-img { border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; }
.scene-card-img img { width: 100%; height: 100%; object-fit: cover; }
.scene-card-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 12px; }
.scene-card-h { font-size: clamp(22px, 3vw, 36px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 14px; }
.scene-card-p { font-size: 16px; color: var(--text-2); line-height: 1.8; margin-bottom: 24px; }

/* Light in nature – full-height immersive hero */
.lin-page-hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; overflow: hidden; padding-top: var(--nav-h); }
.lin-page-hero-bg { position: absolute; inset: 0; }
.lin-page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.lin-page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,12,24,0.55) 0%, rgba(5,12,24,0.05) 35%, rgba(5,12,24,0.05) 55%, rgba(5,12,24,0.75) 100%); }
.lin-page-hero-content { position: relative; z-index: 2; width: 100%; text-align: center; }
.lin-page-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 20px; }
.lin-page-h1 { font-size: clamp(36px, 5.5vw, 72px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.0; margin-bottom: 28px; }
.lin-page-sub { font-size: clamp(15px, 1.5vw, 17px); color: rgba(255,255,255,0.72); max-width: 460px; margin: 0 auto 40px; line-height: 1.65; }
.lin-page-scroll { display: flex; flex-direction: column; align-items: center; gap: 8px; position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; }
.lin-page-scroll span { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.lin-page-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); }

/* Light in nature page */
.lin-gallery { padding: 80px 0; background: var(--bg); }
.lin-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.lin-gallery-item { border-radius: 6px; overflow: hidden; aspect-ratio: 4/3; }
.lin-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.lin-gallery-item:hover img { transform: scale(1.04); }
.lin-gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }

/* Contact page */
.contact-section { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: clamp(26px, 3.5vw, 46px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 20px; }
.contact-info p { font-size: 17px; color: var(--text-2); line-height: 1.8; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail { display: flex; align-items: center; gap: 14px; font-size: 16px; color: var(--text-2); }
.contact-detail svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--blue-light); }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 6px; padding: 13px 16px; color: #fff; font-size: 15px; font-family: inherit; transition: border-color .2s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* Om os page */
.section-pad { padding: 88px 0; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-inner { border-radius: var(--r); overflow: hidden; aspect-ratio: 3/4; }
.about-img-inner img { width: 100%; height: 100%; object-fit: cover; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--blue); border-radius: var(--r); padding: 20px 24px; text-align: center; }
.about-badge-num { font-size: 28px; font-weight: 900; letter-spacing: -0.03em; color: #fff; line-height: 1; }
.about-badge-lbl { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.8); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }

.about-h2 { font-size: clamp(22px, 2.5vw, 34px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.2; margin: 14px 0 24px; }
.about-h2--center { text-align: center; margin-bottom: 40px; }
.about-p { font-size: 15px; color: var(--text-2); line-height: 1.85; margin-bottom: 14px; }

.about-stats-row { display: flex; gap: 12px; margin-top: 32px; }
.about-stat-box { flex: 1; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 20px 16px; text-align: center; }
.about-stat-num { font-size: 26px; font-weight: 800; letter-spacing: -0.03em; color: #fff; line-height: 1; margin-bottom: 6px; }
.about-stat-lbl { font-size: 12px; color: var(--text-2); }

.about-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.about-value-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 28px 24px; }
.about-value-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.about-value-desc { font-size: 14px; color: var(--text-2); line-height: 1.75; }

/* Lys og lyd page */
.lyd-intro { padding: 80px 0 40px; background: var(--bg); }
.lyd-intro-inner { max-width: 760px; }
.lyd-intro-inner h2 { font-size: clamp(26px, 3.5vw, 46px); font-weight: 900; letter-spacing: -0.04em; margin-bottom: 18px; }
.lyd-intro-inner p { font-size: 17px; color: var(--text-2); line-height: 1.8; margin-bottom: 16px; }

/* Lys & Lyd 3-column boxes */
.lyl-boxes { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 48px; }
.lyl-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 32px 28px; }
.lyl-box--visual { padding: 0; overflow: hidden; min-height: 320px; }
.lyl-box--visual img, .lyl-box--visual video { width: 100%; height: 100%; object-fit: cover; display: block; }
.lyl-box-title { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: #fff; margin-bottom: 14px; }
.lyl-box-desc { font-size: 14px; color: var(--text-2); line-height: 1.8; margin-bottom: 20px; }
.lyl-detail { border-top: 1px solid var(--border); }
.lyl-detail summary { list-style: none; display: flex; align-items: center; justify-content: space-between; padding: 14px 0; font-size: 15px; font-weight: 600; color: #fff; cursor: pointer; gap: 8px; }
.lyl-detail summary::-webkit-details-marker { display: none; }
.lyl-detail summary::after { content: '+'; font-size: 20px; font-weight: 300; color: var(--blue-light); flex-shrink: 0; transition: transform .2s; }
.lyl-detail[open] summary::after { transform: rotate(45deg); }
.lyl-detail-body { font-size: 14px; color: var(--text-2); line-height: 1.75; padding-bottom: 14px; }
.lyl-detail-body p { margin-bottom: 8px; }
.lyl-julemand { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; margin-top: 48px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.lyl-julemand-img { min-height: 320px; max-height: 420px; overflow: hidden; }
.lyl-julemand-img img, .lyl-julemand-img video { width: 100%; height: 120%; object-fit: cover; display: block; object-position: center; margin-top: -10%; }
.lyl-julemand-text { padding: 40px; }
.lyl-julemand-text h3 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; color: #fff; margin-bottom: 20px; }
.lyl-julemand-text p { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 12px; }

/* Responsive */
@media (max-width: 1024px) {
  .nav-links, .nav-tel { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .type-grid { grid-template-columns: 1fr; }
  .scene-card { grid-template-columns: 1fr; gap: 28px; }
  .scene-card.reverse { direction: ltr; }
  .lin-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-img-inner { aspect-ratio: 16/9; }
  .about-badge { bottom: -16px; right: 16px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .lyl-boxes { grid-template-columns: 1fr; }
  .lyl-box--visual { min-height: 220px; }
  .lyl-julemand { grid-template-columns: 1fr; }
  .lyl-julemand-text { padding: 28px; }
  .lyl-julemand-img { min-height: 240px; }
}
@media (max-width: 768px) {
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-tabs { flex-direction: column; }
  .sol-tab { width: 100%; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .lin-gallery-grid { grid-template-columns: 1fr 1fr; }
}
