/* =========================================================
   Webto tema — Forside (Lillebælt Naturistcamping)
   Loaded only on the front page.
   ========================================================= */

/* Image placeholders (used as a graceful fallback when an
   ACF image field is empty so the layout never collapses). */
.ph {
	position: relative;
	background-color: var(--marine);
	background-image:
		repeating-linear-gradient(135deg, rgba(255, 255, 255, .06) 0 2px, rgba(255, 255, 255, 0) 2px 13px),
		linear-gradient(160deg, var(--marine-soft), var(--marine-deep));
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}
.ph--sand {
	background-color: var(--bg-alt);
	background-image:
		repeating-linear-gradient(135deg, rgba(32, 64, 124, .05) 0 2px, rgba(32, 64, 124, 0) 2px 13px),
		linear-gradient(160deg, #e9e0cf, #d8cbb2);
}
.ph--sun {
	background-image:
		repeating-linear-gradient(135deg, rgba(255, 255, 255, .07) 0 2px, rgba(255, 255, 255, 0) 2px 13px),
		linear-gradient(160deg, #d99a3a, #b06a2c 60%, #3f4f6e);
}
.ph__label {
	position: relative;
	z-index: 2;
	font-family: var(--mono);
	font-size: 11.5px;
	letter-spacing: .04em;
	color: rgba(255, 255, 255, .92);
	background: rgba(16, 22, 36, .4);
	backdrop-filter: blur(3px);
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 100px;
	padding: 6px 13px;
	margin: 14px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.ph__label::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--sun); }
.ph--sand .ph__label { color: var(--marine-deep); background: rgba(255, 255, 255, .6); border-color: rgba(32, 64, 124, .2); }

/* Cover image helper */
.media-fill { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: flex-end;
	color: #fff;
	overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media .ph { width: 100%; height: 100%; }
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to bottom, rgba(18, 26, 42, .46) 0%, rgba(18, 26, 42, .05) 32%, rgba(18, 26, 42, .12) 60%, rgba(15, 22, 36, .72) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(48px, 8vh, 96px); padding-top: 150px; }
.hero__lockup { text-align: center; }
.hero h1 {
	font-size: clamp(40px, 7vw, 88px);
	font-weight: 500;
	letter-spacing: -.015em;
	max-width: 16ch;
	margin: 0 auto;
	color: #fff;
	text-shadow: 0 2px 30px rgba(10, 16, 28, .4);
}
.hero .kicker {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: var(--mono);
	font-size: 13px;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .92);
	margin-bottom: 26px;
}
.hero .kicker::before, .hero .kicker::after { content: ""; width: 30px; height: 1.5px; background: var(--sun); }
.hero .sub {
	margin: 14px auto 0;
	max-width: 50ch;
	font-size: clamp(16px, 1.8vw, 20px);
	color: rgba(255, 255, 255, .92);
	text-shadow: 0 1px 16px rgba(10, 16, 28, .4);
}
.hero__cta { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }

/* Quickbar */
.quickbar { position: relative; z-index: 5; margin-top: -20px; }
.quickbar__inner {
	background: var(--surface);
	box-shadow: var(--shadow);
	border-radius: var(--radius-lg);
	transform: none;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.quickbar__cell { display: flex; flex-direction: column; gap: 4px; padding: 14px 22px; border-right: 1px solid var(--line-soft); }
.quickbar__cell:last-child { border-right: 0; }
.quickbar__cell .k { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.quickbar__cell .v { font-weight: 600; font-size: 16px; color: var(--ink); }
.quickbar__cell .v small { font-weight: 500; color: var(--ink-2); }

/* =========================================================
   Icon strip
   ========================================================= */
.iconstrip { background: var(--surface); border-bottom: 1px solid var(--line-soft); }
.iconstrip__grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.iconstrip a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 11px;
	padding: 30px 12px;
	text-align: center;
	border-right: 1px solid var(--line-soft);
	transition: background .25s, transform .25s;
}
.iconstrip a:last-child { border-right: 0; }
.iconstrip a:hover { background: var(--bg); transform: translateY(-2px); }
.iconstrip .ic { width: 34px; height: 34px; color: var(--marine); stroke-width: 1.4; }
.iconstrip .lbl { font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); }

/* =========================================================
   Intro
   ========================================================= */
.intro__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 96px); align-items: stretch; }
.intro__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.intro__media .ph { position: absolute; inset: 0; }
.intro__badge {
	position: absolute;
	z-index: 3;
	right: 18px;
	bottom: 18px;
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 16px 20px;
	box-shadow: var(--shadow);
	text-align: center;
}
.intro__badge .suns { font-size: 18px; letter-spacing: 2px; color: var(--sun); }
.intro__badge .t { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); margin-top: 4px; }
.intro__body p { font-size: 18px; color: var(--ink-2); }
.intro__body .first { font-size: clamp(20px, 2.2vw, 25px); color: var(--ink); font-family: var(--serif); line-height: 1.4; }
.facts { margin: 30px 0 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.facts div { background: var(--bg); padding: 12px 18px; }
.facts .n { font-family: var(--serif); font-size: 26px; color: var(--marine); line-height: 1; margin-bottom: -15px; }
.facts .l { font-size: 13.5px; color: var(--ink-2); margin-top: 0; line-height: 1.3; }

/* =========================================================
   Feature cards
   ========================================================= */
.cardgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 54px; }
.fcard { background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.fcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.fcard__media { position: relative; aspect-ratio: 1 / 1; }
.fcard__media .ph { width: 100%; height: 100%; }
.fcard__body { padding: 22px 22px 26px; }
.fcard__body h3 { font-size: 22px; margin-bottom: 8px; }
.fcard__body p { font-size: 15px; color: var(--ink-2); margin-bottom: 16px; }

/* =========================================================
   Overnatning (marine)
   ========================================================= */
.section--marine {
	background: var(--marine);
	background-image: radial-gradient(120% 90% at 50% -10%, var(--marine-soft) 0%, var(--marine) 42%, var(--marine-deep) 100%);
	color: #fff;
}
.section--marine .section-head h2 { color: #fff; }
.section--marine .section-head .lead { color: rgba(255, 255, 255, .82); }
.section--marine .eyebrow { color: rgba(255, 255, 255, .82); }
.stays { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.stay { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--radius-lg); overflow: hidden; transition: transform .3s var(--ease), background .3s; }
.stay:hover { transform: translateY(-6px); background: rgba(255, 255, 255, .1); }
.stay__media { position: relative; aspect-ratio: 16 / 11; }
.stay__media .ph { width: 100%; height: 100%; }
.stay__body { padding: 24px 24px 28px; }
.stay__price { display: block; font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--sun-soft); margin-bottom: 12px; }
.stay__body h3 { color: #fff; font-size: 24px; margin-bottom: 10px; }
.stay__body p { color: rgba(255, 255, 255, .78); font-size: 15px; margin-bottom: 18px; }

/* =========================================================
   Mood band
   ========================================================= */
.band { position: relative; min-height: 78vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.band__media { position: absolute; inset: 0; z-index: 0; }
.band__media .ph { width: 100%; height: 120%; }
.band__media .media-fill { height: 120%; }
.band::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(14, 22, 38, .78) 0%, rgba(14, 22, 38, .5) 45%, rgba(14, 22, 38, .15) 100%); }
.band__inner { position: relative; z-index: 2; max-width: 560px; }
.band h2 { font-size: clamp(30px, 4.4vw, 52px); color: #fff; }
.band p { margin-top: 20px; font-size: 19px; color: rgba(255, 255, 255, .9); }
.band .eyebrow { color: rgba(255, 255, 255, .85); }

/* =========================================================
   Priser
   ========================================================= */
.price-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; margin-top: 46px; }
.ptable { background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.ptable__row { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 18px 26px; border-bottom: 1px solid var(--line-soft); }
.ptable__row:last-child { border-bottom: 0; }
.ptable__row .name { font-weight: 600; font-size: 16px; }
.ptable__row .name small { display: block; font-weight: 500; font-size: 13.5px; color: var(--muted); }
.ptable__row .price { font-family: var(--serif); font-size: 22px; color: var(--marine); white-space: nowrap; }
.price-note { background: var(--bg-alt); border-radius: var(--radius-lg); padding: 28px 30px; align-self: stretch; }
.price-note h3 { font-size: 22px; margin-bottom: 14px; }
.price-note ul { margin: 0 0 22px; padding: 0; list-style: none; }
.price-note li { position: relative; padding-left: 26px; margin-bottom: 11px; font-size: 15.5px; color: var(--ink-2); }
.price-note li::before { content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--sun); }
.price-note .footnote { font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--muted); margin: 0; }

/* =========================================================
   Arrangementer
   ========================================================= */
.events { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; margin-top: 50px; }
.event { background: var(--surface); padding: 30px 28px; display: flex; flex-direction: column; gap: 12px; transition: background .25s; }
.event:hover { background: var(--bg); }
.event .date { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--terra); }
.event h3 { font-size: 21px; }
.event p { font-size: 14.5px; color: var(--ink-2); }

/* =========================================================
   Anmeldelser
   ========================================================= */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.review { background: var(--surface); border-radius: var(--radius-lg); padding: 28px 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.review .suns { color: var(--sun); letter-spacing: 3px; font-size: 15px; margin-bottom: 14px; }
.review blockquote { margin: 0 0 20px; font-family: var(--serif); font-size: 19px; line-height: 1.5; color: var(--ink); }
.review .by { margin-top: auto; display: flex; align-items: center; gap: 11px; }
.review .by .av { width: 40px; height: 40px; border-radius: 50%; background: var(--marine); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.review .by .meta b { display: block; font-size: 14.5px; }
.review .by .meta span { font-size: 12.5px; color: var(--muted); font-family: var(--mono); letter-spacing: .04em; }

/* =========================================================
   Naturisme / values
   ========================================================= */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; }
.value { padding: 30px 28px; border-top: 2px solid var(--accent-line); background: var(--surface); border-radius: 0 0 var(--radius-lg) var(--radius-lg); box-shadow: var(--shadow-sm); }
.value h3 { font-size: 22px; margin-bottom: 10px; }
.value p { font-size: 15px; color: var(--ink-2); }
.values__cta { margin-top: 40px; }

/* =========================================================
   Kontakt + kort
   ========================================================= */
.contact { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: stretch; }
.contact__info { display: flex; flex-direction: column; }
.contact__list { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 20px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__list .ic { width: 22px; height: 22px; color: var(--marine); flex-shrink: 0; margin-top: 3px; }
.contact__list .k { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); display: block; }
.contact__list .v { font-size: 16px; font-weight: 500; }
.contact__list a.v:hover { color: var(--marine); text-decoration: underline; }
.contact__cta { margin-top: 34px; }
.contact__map { border-radius: var(--radius-lg); overflow: hidden; min-height: 420px; box-shadow: var(--shadow-sm); position: relative; background: var(--bg-alt); }
.contact__map .ph { position: absolute; inset: 0; }
.contact__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
	.cardgrid { grid-template-columns: repeat(2, 1fr); }
	.iconstrip__grid { grid-template-columns: repeat(3, 1fr); }
	.iconstrip a:nth-child(3n) { border-right: 0; }
}
@media (max-width: 860px) {
	.quickbar__inner { grid-template-columns: 1fr 1fr; }
	.quickbar__cell:nth-child(2) { border-right: 0; }
	.intro__grid { grid-template-columns: 1fr; }
	.intro__media { aspect-ratio: 16 / 11; max-height: 420px; }
	.stays { grid-template-columns: 1fr; }
	.events { grid-template-columns: 1fr; }
	.reviews { grid-template-columns: 1fr; }
	.values { grid-template-columns: 1fr; }
	.price-wrap { grid-template-columns: 1fr; }
	.contact { grid-template-columns: 1fr; }
	.hero { min-height: 86vh; }
}
@media (max-width: 560px) {
	.cardgrid { grid-template-columns: 1fr; }
	.iconstrip__grid { grid-template-columns: repeat(2, 1fr); }
	.iconstrip a:nth-child(3n) { border-right: 1px solid var(--line-soft); }
	.iconstrip a:nth-child(2n) { border-right: 0; }
	.quickbar__inner { grid-template-columns: 1fr; }
	.quickbar__cell { border-right: 0; border-bottom: 1px solid var(--line-soft); }
	.facts { grid-template-columns: 1fr; }
	.hero .kicker::before, .hero .kicker::after { width: 18px; }
}
