:root {
	--bg: #f5f3ee;
	--paper: #fffcf6;
	--ink: #171717;
	--muted: #69645c;
	--line: rgba(23, 23, 23, 0.14);
	--green: #1f6d5c;
	--blue: #245a7a;
	--clay: #b25f3b;
	--gold: #d99e3f;
	--soft-green: #e7f1ec;
	--soft-blue: #e4eef4;
	--soft-clay: #f4e5db;
	--shadow: 0 24px 70px rgba(28, 30, 28, 0.13);
	--radius: 8px;
	--max: 1160px;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--ink);
	background: var(--bg);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	background:
		linear-gradient(120deg, rgba(31, 109, 92, 0.09), transparent 36%),
		linear-gradient(240deg, rgba(36, 90, 122, 0.11), transparent 42%),
		var(--bg);
}

body,
button,
input,
textarea {
	font: inherit;
}

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

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

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px clamp(18px, 4vw, 52px);
	background: rgba(245, 243, 238, 0.88);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(16px);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	letter-spacing: 0;
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	color: #fff;
	background: var(--green);
	font-size: 0.78rem;
}

nav {
	display: flex;
	align-items: center;
	gap: clamp(10px, 2vw, 24px);
	font-size: 0.94rem;
	font-weight: 700;
	color: var(--muted);
}

nav a:hover,
.text-link:hover {
	color: var(--green);
}

main {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 clamp(18px, 4vw, 42px) 56px;
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
	gap: clamp(28px, 5vw, 58px);
	align-items: center;
	min-height: calc(100vh - 67px);
	padding: clamp(38px, 8vh, 78px) 0;
}

.overview-hero {
	grid-template-columns: 1fr;
	min-height: auto;
	padding-bottom: 42px;
}

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

.kicker {
	margin-bottom: 12px;
	color: var(--clay);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

h1,
h2,
h3 {
	margin: 0;
	letter-spacing: 0;
	line-height: 1.02;
}

h1 {
	font-size: clamp(3.1rem, 9vw, 6.8rem);
	max-width: 860px;
}

.rotating-place {
	display: inline-block;
	min-width: 0;
	color: var(--green);
	transition:
		opacity 0.24s ease,
		transform 0.24s ease;
}

.rotating-place.is-changing {
	opacity: 0;
	transform: translateY(0.12em);
}

h2 {
	font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
	font-size: 1.2rem;
	line-height: 1.16;
}

.lead {
	max-width: 610px;
	margin-top: 24px;
	font-size: clamp(1.05rem, 2vw, 1.32rem);
	line-height: 1.55;
	color: #4d4942;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	border-radius: var(--radius);
	font-weight: 800;
	border: 1px solid var(--line);
}

.button.primary {
	color: #fff;
	background: var(--green);
	border-color: var(--green);
}

.button.secondary {
	background: rgba(255, 255, 255, 0.52);
}

.hero-media {
	position: relative;
	min-height: 620px;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	background: var(--paper);
}

.hero-media img {
	width: 100%;
	height: 100%;
	min-height: 620px;
	object-fit: cover;
}

.hero-note {
	position: absolute;
	right: 18px;
	bottom: 18px;
	left: 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px;
	border-radius: var(--radius);
	color: #fff;
	background: rgba(20, 22, 20, 0.72);
	backdrop-filter: blur(14px);
}

.hero-note span {
	color: rgba(255, 255, 255, 0.82);
}

.info-panel {
	margin-top: clamp(34px, 5vw, 54px);
}

.info-panel h2 {
	font-size: clamp(1.8rem, 4vw, 3.2rem);
	margin-bottom: 28px;
}

.info-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	overflow: hidden;
}

.info-list div {
	display: grid;
	align-content: start;
	gap: 8px;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.62);
}

.info-list span {
	color: var(--muted);
	line-height: 1.5;
}

.trust-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	margin: -18px 0 92px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--line);
}

.trust-strip div {
	padding: 22px;
	background: rgba(255, 252, 246, 0.74);
}

.trust-strip strong,
.trust-strip span {
	display: block;
}

.trust-strip span {
	margin-top: 4px;
	color: var(--muted);
	font-size: 0.92rem;
}

.section {
	margin: 104px 0;
}

.section-head {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.55fr);
	gap: 44px;
	align-items: end;
	margin-bottom: 34px;
}

.section-head.compact {
	display: block;
	max-width: 770px;
}

.section-head p:not(.kicker) {
	font-size: 1.08rem;
	line-height: 1.6;
}

.retrospective {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.7fr);
	gap: 24px;
	align-items: stretch;
}

.image-card,
.learning-grid article,
.workation-card,
.values,
.form-shell,
.legal-note {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 252, 246, 0.78);
	box-shadow: 0 14px 44px rgba(28, 30, 28, 0.08);
}

.image-card {
	overflow: hidden;
}

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

.learning-grid {
	display: grid;
	gap: 16px;
}

.learning-grid article {
	padding: 24px;
}

.learning-grid span {
	display: inline-flex;
	margin-bottom: 22px;
	color: var(--green);
	font-weight: 900;
}

.learning-grid p,
.value-grid p,
.card-body p,
.legal-note p,
.apply-copy p {
	margin-top: 12px;
	line-height: 1.62;
}

.workation-list {
	display: grid;
	gap: 24px;
}

.upcoming-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.upcoming-card,
.detail-grid article {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 252, 246, 0.78);
	box-shadow: 0 14px 44px rgba(28, 30, 28, 0.08);
}

.upcoming-card {
	display: grid;
	color: inherit;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.upcoming-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 56px rgba(28, 30, 28, 0.12);
}

.upcoming-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.upcoming-card div,
.detail-grid article {
	padding: 24px;
}

.upcoming-card h3 {
	margin-top: 18px;
}

.upcoming-card p,
.detail-grid p {
	margin-top: 10px;
	line-height: 1.6;
}

.extra-interest {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 24px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 252, 246, 0.78);
}

.extra-interest h3 {
	margin-bottom: 8px;
}

.extra-interest p {
	max-width: 680px;
	line-height: 1.6;
}

.extra-interest .button {
	flex: 0 0 auto;
}

.photo-strip {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 6px;
	padding: 0;
	aspect-ratio: 16 / 10;
	min-height: 360px;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--line);
}

.photo-strip img {
	width: 100%;
	height: 100%;
	min-width: 0;
	min-height: 0;
	aspect-ratio: auto;
	object-fit: cover;
}

.photo-strip img:first-child {
	grid-row: 1 / span 2;
	min-height: 0;
}

.collage-denmark img:first-child {
	object-position: 78% 55%;
}

.collage-denmark img:nth-child(2) {
	object-position: 52% 52%;
}

.collage-denmark img:nth-child(3) {
	object-position: 54% 45%;
}

.collage-mimizan img:first-child {
	object-position: 54% 54%;
}

.collage-mimizan img:nth-child(2) {
	object-position: 58% 50%;
}

.collage-mimizan img:nth-child(3) {
	object-position: 52% 50%;
}

.collage-bali img:first-child {
	object-position: 50% 56%;
}

.collage-bali img:nth-child(2) {
	object-position: 56% 48%;
}

.collage-bali img:nth-child(3) {
	object-position: 50% 58%;
}

.past-stories {
	display: grid;
	gap: clamp(22px, 5vw, 42px);
}

.past-story {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
	gap: clamp(22px, 4vw, 42px);
	align-items: center;
	padding: clamp(14px, 2vw, 18px);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 252, 246, 0.78);
	box-shadow: 0 14px 44px rgba(28, 30, 28, 0.08);
}

.past-story.reverse {
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.08fr);
}

.past-story.reverse .photo-strip {
	order: 2;
}

.story-copy {
	padding: clamp(18px, 3vw, 30px);
}

.story-copy h3 {
	font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.story-copy p {
	margin-top: 14px;
	font-size: 1.05rem;
	line-height: 1.7;
}

.story-meta {
	display: inline-flex;
	margin-bottom: 12px;
	color: var(--clay);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.faq-section {
	max-width: 880px;
}

.faq-list {
	display: grid;
	gap: 10px;
}

.faq-list details {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 252, 246, 0.78);
	box-shadow: 0 10px 32px rgba(28, 30, 28, 0.06);
}

.faq-list summary {
	cursor: pointer;
	padding: 20px 22px;
	font-weight: 800;
	list-style: none;
}

.faq-list summary::-webkit-details-marker {
	display: none;
}

.faq-list summary::after {
	content: "+";
	float: right;
	color: var(--green);
	font-weight: 900;
}

.faq-list details[open] summary::after {
	content: "-";
}

.faq-list p {
	padding: 0 22px 20px;
	line-height: 1.62;
}

.about-section {
	display: grid;
	grid-template-columns: minmax(260px, 0.54fr) minmax(0, 0.86fr);
	gap: 34px;
	align-items: start;
	margin-bottom: 64px;
	padding: clamp(26px, 4vw, 38px);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 252, 246, 0.78);
}

.about-copy {
	display: grid;
	gap: 16px;
}

.about-copy p {
	line-height: 1.68;
}

.detail-hero {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.8fr);
	gap: clamp(28px, 5vw, 54px);
	align-items: center;
	padding: clamp(34px, 7vw, 72px) 0 40px;
}

.detail-hero img {
	width: 100%;
	min-height: 520px;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.back-link {
	display: inline-flex;
	margin-bottom: 20px;
	color: var(--muted);
	font-weight: 800;
}

.back-link:hover {
	color: var(--green);
}

.detail-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.workation-card {
	display: grid;
	grid-template-columns: minmax(280px, 0.62fr) minmax(0, 0.78fr);
	overflow: hidden;
}

.workation-card.featured {
	background: #fffaf0;
}

.workation-card img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
}

.card-body {
	padding: clamp(26px, 5vw, 44px);
}

.card-topline {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 20px;
	color: var(--muted);
	font-size: 0.9rem;
	font-weight: 700;
}

.status {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	color: var(--blue);
	background: var(--soft-blue);
}

.status.open {
	color: var(--green);
	background: var(--soft-green);
}

ul {
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}

li {
	position: relative;
	padding-left: 18px;
	margin-top: 10px;
	color: #3f3b35;
}

li::before {
	content: "";
	position: absolute;
	top: 0.72em;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold);
}

.text-link {
	display: inline-flex;
	margin-top: 26px;
	color: var(--clay);
	font-weight: 900;
}

.inline-link {
	color: var(--green);
	font-weight: 800;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.inline-link:hover {
	color: var(--clay);
}

.values {
	display: grid;
	grid-template-columns: minmax(260px, 0.55fr) minmax(0, 0.8fr);
	gap: 34px;
	padding: clamp(28px, 5vw, 46px);
	background: var(--soft-green);
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.value-grid article {
	padding: 20px;
	border: 1px solid rgba(31, 109, 92, 0.18);
	border-radius: var(--radius);
	background: rgba(255, 252, 246, 0.66);
}

.apply-section {
	display: grid;
	grid-template-columns: minmax(260px, 0.52fr) minmax(0, 0.92fr);
	gap: 28px;
	align-items: start;
}

.apply-copy {
	position: sticky;
	top: 104px;
	padding: 4px 0;
}

.form-shell {
	min-height: 640px;
	padding: 12px;
	background: var(--paper);
}

.form-shell iframe {
	display: block;
	width: 100%;
	border: 0;
	border-radius: var(--radius);
	background: #fff;
}

code {
	padding: 2px 5px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.72);
}

.legal-note {
	margin: 40px 0 0;
	padding: 24px;
	background: #fff9ee;
}

.legal-note strong {
	display: block;
	margin-bottom: 8px;
}

.legal-page {
	max-width: 920px;
}

.legal-content {
	display: grid;
	gap: 18px;
}

.legal-content h1 {
	font-size: clamp(3rem, 8vw, 5.4rem);
}

.legal-content h2 {
	margin-top: 22px;
	font-size: clamp(1.4rem, 3vw, 2rem);
}

.legal-content p {
	line-height: 1.68;
}

.legal-date {
	margin-top: 24px;
	font-weight: 700;
}

.site-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	max-width: var(--max);
	margin: 0 auto;
	padding: 32px clamp(18px, 4vw, 42px) 46px;
	color: var(--muted);
	border-top: 1px solid var(--line);
}

.footer-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
}

.site-footer a {
	font-weight: 800;
	color: var(--green);
}

@media (max-width: 920px) {
	.hero,
	.overview-hero,
	.detail-hero,
	.section-head,
	.retrospective,
	.workation-card,
	.values,
	.about-section,
	.apply-section {
		grid-template-columns: 1fr;
	}

	.hero {
		min-height: auto;
	}

	.hero-media,
	.hero-media img {
		min-height: 440px;
	}

	.detail-hero img {
		min-height: 380px;
	}

	.trust-strip,
	.info-list,
	.value-grid,
	.upcoming-grid,
	.detail-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.past-story,
	.past-story.reverse {
		grid-template-columns: 1fr;
	}

	.past-story.reverse .photo-strip {
		order: 0;
	}

	.apply-copy {
		position: static;
	}
}

@media (max-width: 640px) {
	.site-header {
		position: static;
		align-items: flex-start;
		flex-direction: column;
	}

	nav {
		width: 100%;
		justify-content: space-between;
	}

	.hero {
		padding-top: 34px;
	}

	h1 {
		font-size: 3rem;
	}

	.hero-note,
	.extra-interest,
	.site-footer,
	.card-topline {
		align-items: flex-start;
		flex-direction: column;
	}

	.extra-interest .button {
		width: 100%;
	}

	.trust-strip,
	.info-list,
	.value-grid,
	.upcoming-grid,
	.detail-grid {
		grid-template-columns: 1fr;
	}

	.past-story {
		padding: 10px;
	}

	.photo-strip {
		grid-template-columns: 1fr 1fr;
		aspect-ratio: auto;
		min-height: 0;
	}

	.photo-strip img:first-child {
		grid-column: 1 / span 2;
		grid-row: auto;
		min-height: 230px;
	}

	.photo-strip img {
		min-height: 130px;
	}

	.workation-card img {
		min-height: 300px;
	}

	.section {
		margin: 72px 0;
	}
}
