@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;1,400&display=swap");

:root {
	--bg: #f7f4ef;
	--surface: #eeeae3;
	--border: #ccc5b8;
	--divider: #e0dbd3; /* structural hr/section borders — lighter */
	--input-border: #a8a29a; /* form input borders — darker, clearly interactive */
	--text: #1e1c1a;
	--text-dim: #7a7268;
	--text-label: #5c5752; /* labels — more readable than text-dim */
	--font: "EB Garamond", Georgia, serif;
	--space-sm: 0.75rem;
	--space-md: 1.5rem;
	--space-lg: 2.5rem;
	--space-xl: 4rem;
}

@view-transition {
	navigation: auto;
}

::view-transition-old(root) {
	animation: 0.2s ease both vt-fade-out;
}

::view-transition-new(root) {
	animation: 0.3s ease both vt-fade-in;
}

@keyframes vt-fade-out {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes vt-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	::view-transition-old(*),
	::view-transition-new(*) {
		animation: none !important;
	}

	.hero__logo,
	.hero__names,
	.hero__date,
	.hero__rule,
	.hero__intro,
	.hero__links,
	.hero__content::before,
	.hero__content::after {
		animation: none !important;
	}
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	height: 100%;
}

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--text);
	-webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 0;
}

@media (min-width: 701px) {
	.hero {
		align-items: flex-start;
		justify-content: flex-end;
		padding: 1.2rem calc(var(--space-xl) * 0.6) 0 0;
	}

	.hero__links {
		left: var(--space-lg);
		right: auto;
		width: 28rem;
	}

	.hero__content::before {
		inset: -20vh -18vw -50px -80px;
		filter: blur(40px);
		background: radial-gradient(ellipse at 88% 12%, rgba(225, 227, 222, 0.96) 0%, rgba(225, 227, 222, 0.65) 35%, rgba(225, 227, 222, 0) 70%);
	}

	.hero__content::after {
		background: radial-gradient(ellipse at center, rgba(210, 205, 192, 0.92) 0%, rgba(210, 205, 192, 0.75) 45%, rgba(210, 205, 192, 0) 100%);
	}
}

.hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-md);
	text-align: center;
	max-width: 520px;
	padding: var(--space-sm) var(--space-md) var(--space-lg);
}

.hero__content::before,
.hero__content::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	filter: blur(52px);
	z-index: -1;
	pointer-events: none;
}

.hero__content::before {
	inset: -30px -40px;
	background: radial-gradient(ellipse at center, rgba(225, 227, 222, 0.92) 0%, rgba(225, 227, 222, 0) 100%);
	animation: blob-a 42s ease-in-out infinite;
}

.hero__content::after {
	inset: -15px -25px;
	background: radial-gradient(ellipse at center, rgba(210, 205, 192, 0.82) 0%, rgba(210, 205, 192, 0) 100%);
	animation: blob-b 30s ease-in-out infinite;
}

@keyframes blob-a {
	0%   { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; transform: translate(0, 0)       scale(1);    }
	18%  { border-radius: 36% 64% 72% 28% / 60% 40% 62% 38%; transform: translate(-18px, 12px)  scale(1.05); }
	36%  { border-radius: 68% 32% 28% 72% / 38% 68% 34% 66%; transform: translate(14px, -16px)  scale(0.94); }
	54%  { border-radius: 28% 72% 64% 36% / 68% 32% 66% 34%; transform: translate(-12px, -12px) scale(1.03); }
	72%  { border-radius: 70% 30% 42% 58% / 34% 70% 30% 70%; transform: translate(16px, 10px)   scale(0.96); }
	88%  { border-radius: 42% 58% 58% 42% / 62% 38% 62% 38%; transform: translate(-9px, 15px)   scale(1.04); }
	100% { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; transform: translate(0, 0)       scale(1);    }
}

@keyframes blob-b {
	0%   { border-radius: 62% 38% 48% 52% / 42% 62% 38% 58%; transform: translate(12px, -8px)   scale(0.96); }
	28%  { border-radius: 34% 66% 62% 38% / 66% 34% 68% 32%; transform: translate(-16px, 16px)  scale(1.07); }
	55%  { border-radius: 56% 44% 34% 66% / 44% 58% 42% 58%; transform: translate(18px, -14px)  scale(0.92); }
	80%  { border-radius: 40% 60% 68% 32% / 58% 42% 56% 44%; transform: translate(-10px, -18px) scale(1.08); }
	100% { border-radius: 62% 38% 48% 52% / 42% 62% 38% 58%; transform: translate(12px, -8px)   scale(0.96); }
}

.hero__logo {
	width: 100%;
	max-width: 420px;
	height: auto;
	animation: hero-rise 3.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__names {
	color: var(--text);
	font-size: clamp(1.2rem, 3vw, 1.6rem);
	font-style: italic;
	letter-spacing: 0.09em;
	animation: hero-rise 3.2s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

.hero__date {
	color: var(--text);
	font-size: 0.78rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	animation: hero-rise 3.2s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
}

.hero__rule {
	width: 100%;
	border: none;
	border-top: 1px solid var(--divider);
	margin: 0;
	animation: hero-rise 3.2s cubic-bezier(0.16, 1, 0.3, 1) 0.44s both;
}

.hero__intro {
	font-size: 1.3rem;
	color: var(--text);
	line-height: 1.8;
	animation: hero-rise 3.2s cubic-bezier(0.16, 1, 0.3, 1) 0.48s both;
}

.hero__btn {
	display: block;
	flex: 1;
	padding: 0.85rem 2.5rem;
	color: var(--text);
	text-decoration: none;
	font-family: var(--font);
	font-size: 1.05rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-align: center;
	background: var(--bg);
	border: 1px solid var(--text);
	outline: 1px solid var(--text);
	outline-offset: 3px;
	transition: opacity 0.2s;
}

.hero__btn:hover {
	opacity: 0.8;
}

@keyframes hero-rise {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ============================================================
   OSA page
   ============================================================ */

body.page-osa,
body.page-info {
	padding-top: var(--space-xl);
}

body.page-osa {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: var(--space-xl) var(--space-md) calc(var(--space-xl) * 2);
}

.osa-back {
	align-self: flex-start;
	font-size: 0.9rem;
	color: var(--text-dim);
	text-decoration: none;
	letter-spacing: 0.05em;
	margin-bottom: var(--space-lg);
}

.osa-back:hover {
	color: var(--text);
}

.osa-wrap {
	width: 100%;
	max-width: 520px;
	margin: 0 auto;
	padding-bottom: calc(var(--space-xl) * 2);
}

.site-header {
	text-align: center;
	margin-bottom: var(--space-lg);
}

.site-logo {
	display: block;
	width: 100%;
	max-width: 360px;
	height: auto;
	margin: 0 auto;
	margin-bottom: 0.45em;
}

.site-header__date {
	color: var(--text-dim);
	font-style: italic;
	font-size: 1.25rem;
	margin-bottom: 0.4rem;
}

.site-header__contact {
	display: inline-block;
	margin-top: 0.45rem;
	margin-bottom: 0.45rem;
	font-size: 1.1rem;
	letter-spacing: 0.04em;
	color: var(--text-dim);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.site-header p {
	font-style: italic;
	color: var(--text-dim);
	font-size: 1.2rem;
	line-height: 1.7;
}

.page-subtitle {
	text-align: center;
	font-size: 1.4rem;
	font-style: italic;
	font-weight: 400;
	color: var(--text-dim);
	margin-bottom: var(--space-md);
}

.osa-form {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.divider {
	display: block;
	width: 100%;
	color: var(--input-border);
	margin: var(--space-lg) 0;
}

.osa-section {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.section-title {
	font-size: 1.3rem;
	font-weight: 500;
	color: var(--text);
	line-height: 1.4;
}

.osa-section__question {
	font-size: 1rem;
	color: var(--text);
}

.field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

label {
	font-size: 0.88rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-label);
}

.note {
	font-size: 1.2rem;
	color: var(--text-label);
	line-height: 1.75;
}

.note a,
.accordion__body a {
	color: var(--text);
	text-underline-offset: 3px;
}

input[type="tel"],
input[type="email"] {
	font-family: var(--font);
	font-size: 1rem;
	color: var(--text);
	background: rgba(30, 28, 26, 0.025);
	border: 1px solid var(--input-border);
	border-radius: 0;
	outline: none;
	padding: 0.55rem 0.75rem;
	width: 100%;
	transition:
		border-color 0.15s,
		background 0.15s;
}

input:focus {
	border-color: var(--text);
	background: rgba(30, 28, 26, 0.04);
}
input::placeholder {
	color: var(--border);
	font-style: italic;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
	-webkit-box-shadow: 0 0 0 1000px var(--bg) inset;
	-webkit-text-fill-color: var(--text);
}

textarea {
	font-family: var(--font);
	font-size: 1rem;
	color: var(--text);
	background: rgba(30, 28, 26, 0.025);
	border: 1px solid var(--input-border);
	border-radius: 0;
	outline: none;
	padding: 0.55rem 0.75rem;
	width: 100%;
	line-height: 1.8;
	resize: none;
	overflow: hidden;
	min-height: 4.7rem;
	transition:
		border-color 0.15s,
		background 0.15s;
}

textarea::placeholder {
	color: var(--border);
	font-style: italic;
}
textarea:focus {
	border-color: var(--text);
	background: rgba(30, 28, 26, 0.04);
}

/* Attendance buttons */
.attendance {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.btn-choice {
	font-family: var(--font);
	font-size: 1rem;
	letter-spacing: 0.03em;
	border: 1px solid transparent;
	padding: 0.85rem 1.25rem;
	cursor: pointer;
	width: 100%;
	text-align: left;
	transition:
		opacity 0.15s,
		outline 0.1s;
	opacity: 0.88;
}

.btn-choice:hover:not(:disabled) {
	opacity: 1;
}

.btn-choice:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.btn-decline {
	background: #7a2020;
	color: #f5ede8;
}
.btn-attend {
	background: #2a5c38;
	color: #e8f0ea;
}

.btn-choice.is-selected {
	opacity: 1;
	outline: 2px solid var(--text);
	outline-offset: 2px;
}

/* Day checkboxes */
.day-choices {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.day-choice {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.75rem;
	border: 1px solid var(--border);
	background: rgba(238, 234, 227, 0.45);
	cursor: pointer;
	transition:
		border-color 0.15s,
		background 0.15s;
}

.day-choice:hover {
	border-color: var(--text-dim);
	background: var(--surface);
}

.day-choice input[type="checkbox"],
.day-choice input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	width: 1rem;
	height: 1rem;
	min-width: 1rem;
	border: 1px solid var(--border);
	background: transparent;
	cursor: pointer;
	position: relative;
	top: 0.2em;
	transition:
		border-color 0.15s,
		background 0.15s;
}

.day-choice input[type="checkbox"]:checked,
.day-choice input[type="radio"]:checked {
	background: var(--text);
	border-color: var(--text);
}

.day-choice input[type="checkbox"]:checked::after,
.day-choice input[type="radio"]:checked::after {
	content: "";
	display: block;
	width: 0.3rem;
	height: 0.55rem;
	border: 2px solid var(--bg);
	border-top: none;
	border-left: none;
	transform: rotate(45deg) translate(1px, -1px);
	position: absolute;
	inset: 0;
	margin: auto;
}

.day-choice:has(input:checked) {
	border-color: var(--text);
	background: var(--surface);
}

.day-choice__body {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.day-choice__body strong {
	font-size: 1rem;
	font-weight: 500;
}

.day-choice__body span {
	font-size: 0.88rem;
	color: var(--text-dim);
	font-style: italic;
	line-height: 1.5;
}

/* Radio choices */
.radio-choices {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.radio-choice {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem;
	border: 1px solid var(--border);
	background: rgba(238, 234, 227, 0.45);
	cursor: pointer;
	font-size: 1rem;
	transition:
		border-color 0.15s,
		background 0.15s;
}

.radio-choice:hover {
	border-color: var(--text-dim);
	background: var(--surface);
}

.radio-choice input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	width: 1rem;
	height: 1rem;
	min-width: 1rem;
	border: 1px solid var(--border);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	position: relative;
	transition:
		border-color 0.15s,
		background 0.15s;
}

.radio-choice input[type="radio"]:checked {
	background: var(--text);
	border-color: var(--text);
}

.radio-choice input[type="radio"]:checked::after {
	content: "";
	display: block;
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 50%;
	background: var(--bg);
	position: absolute;
	inset: 0;
	margin: auto;
}

.radio-choice:has(input:checked) {
	border-color: var(--text);
	background: var(--surface);
}

/* Revealed form sections */
.form-reveal {
	display: none;
	flex-direction: column;
	gap: 0.75rem;
}

.form-reveal.is-visible {
	display: flex;
}

button[type="submit"] {
	font-family: var(--font);
	font-size: 1rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--bg);
	background: var(--text);
	border: 1px solid var(--text);
	outline: 1px solid var(--text);
	outline-offset: 4px;
	padding: 1.2rem;
	cursor: pointer;
	width: 100%;
	transition: opacity 0.2s;
	margin-top: var(--space-sm);
}

button[type="submit"]:hover {
	opacity: 0.8;
}

/* ============================================================
   Accordion
   ============================================================ */

.accordion {
	border: 1px solid var(--divider);
	border-radius: 8px;
	background: rgba(238, 234, 227, 0.5);
	box-shadow: 2px 2px 0 rgba(30, 28, 26, 0.07);
	margin: 0 var(--space-md) var(--space-md);
}

.accordion summary {
	list-style: none;
	cursor: pointer;
	padding: 0.6rem var(--space-md);
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-dim);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
	user-select: none;
	transition: color 0.15s;
}

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

.accordion summary::before {
	content: "i";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.1rem;
	height: 1.1rem;
	border-radius: 50%;
	border: 1px solid var(--border);
	font-size: 0.72rem;
	font-style: italic;
	font-family: Georgia, serif;
	letter-spacing: 0;
	text-transform: none;
	color: var(--text-dim);
	flex-shrink: 0;
}

.accordion summary::after {
	content: "";
	display: block;
	width: 1.1rem;
	height: 0.55rem;
	flex-shrink: 0;
	background-color: var(--border);
	-webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 16 8' xmlns='http://www.w3.org/2000/svg'><path d='M2,2 Q8,8 14,2' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round'/><circle cx='8' cy='5' r='1.2' fill='black'/></svg>");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-image: url("data:image/svg+xml,<svg viewBox='0 0 16 8' xmlns='http://www.w3.org/2000/svg'><path d='M2,2 Q8,8 14,2' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round'/><circle cx='8' cy='5' r='1.2' fill='black'/></svg>");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	transform: rotate(-90deg);
}

.accordion[open] summary::after {
	transform: rotate(0deg);
}

.accordion summary:hover {
	color: var(--text);
}

.accordion__body {
	padding: var(--space-sm) var(--space-md) var(--space-md);
	border-top: 1px solid var(--divider);
	font-size: 1.1rem;
	line-height: 1.75;
}

.accordion__body p,
.accordion__body ul,
.accordion__body dl {
	margin-top: 0;
}

/* ============================================================
   Hero — two buttons
   ============================================================ */

.hero__links {
	position: absolute;
	bottom: var(--space-lg);
	left: var(--space-md);
	right: var(--space-md);
	z-index: 1;
	display: flex;
	flex-direction: row;
	gap: var(--space-sm);
	animation: hero-rise 3.2s cubic-bezier(0.16, 1, 0.3, 1) 0.62s both;
}

/* ============================================================
   Info page nav
   ============================================================ */

/* Desktop: fixed right, vertical TOC */
.info-nav {
	position: fixed;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.7rem;
	z-index: 100;
}

.info-nav a {
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--text-dim);
	transition: color 0.15s;
}

.info-nav a:hover,
.info-nav a.active {
	color: var(--text);
}

.info-nav__rule {
	width: 100%;
	border: none;
	border-top: 1px solid var(--divider);
	margin: 0.3rem 0;
}

.info-nav-toggle {
	display: none;
}

.info-nav-backdrop {
	display: none;
}

/* Mobile */
@media (max-width: 700px) {
	.info-nav-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		position: fixed;
		top: 1rem;
		right: 1rem;
		z-index: 200;
		width: 2.4rem;
		height: 2.4rem;
		background: rgba(247, 244, 239, 0.92);
		border: none;
		cursor: pointer;
		padding: 0.4rem;
		color: var(--text);
	}

	.nav-icon {
		width: 100%;
		height: 100%;
	}

	.nav-close {
		display: none;
	}
	.info-nav-toggle.is-open .nav-hamburger {
		display: none;
	}
	.info-nav-toggle.is-open .nav-close {
		display: block;
	}

	.info-nav {
		position: fixed;
		top: 0;
		right: -100%;
		height: 100%;
		width: 200px;
		background: var(--bg);
		border-left: 1px solid var(--divider);
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 1.4rem;
		padding: 2rem;
		transform: none;
		transition: right 0.25s ease;
		z-index: 150;
	}

	.info-nav.is-open {
		right: 0;
	}

	.info-nav a {
		font-size: 0.95rem;
	}

	.info-nav__rule {
		width: 2rem;
		margin: 0.2rem 0;
	}

	.info-nav-backdrop {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(30, 28, 26, 0.3);
		z-index: 140;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.25s;
	}

	.info-nav-backdrop.is-visible {
		opacity: 1;
		pointer-events: auto;
	}
}

/* ============================================================
   OSA page nav
   ============================================================ */

.osa-nav {
	position: fixed;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.7rem;
	z-index: 100;
}

.osa-nav a {
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--text-dim);
	transition: color 0.15s;
}

.osa-nav a:hover {
	color: var(--text);
}

.osa-nav a[data-section] {
	display: none;
}

.osa-nav a[data-section].is-visible {
	display: block;
}

@media (max-width: 700px) {
	.osa-nav {
		position: fixed;
		top: 0;
		right: -100%;
		height: 100%;
		width: 200px;
		background: var(--bg);
		border-left: 1px solid var(--divider);
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 1.4rem;
		padding: 2rem;
		transform: none;
		transition: right 0.25s ease;
		z-index: 150;
	}

	.osa-nav.is-open {
		right: 0;
	}

	.osa-nav a {
		font-size: 0.95rem;
	}

	.osa-nav a[data-section] {
		display: none;
	}

	.osa-nav a[data-section].is-visible {
		display: block;
	}
}

/* ============================================================
   Warning strip
   ============================================================ */

.warning-strip {
	margin-bottom: var(--space-lg);
}

.warning-accordion {
	margin: 0;
	border-radius: 0;
	border: 1px solid var(--border);
	box-shadow: none;
	background: repeating-linear-gradient(-45deg, var(--bg), var(--bg) 14px, var(--surface) 14px, var(--surface) 28px);
}

.warning-accordion summary {
	font-weight: 600;
}

.warning-accordion .accordion__body {
	background: var(--bg);
}

/* ============================================================
   Tack page
   ============================================================ */

.tack-wrap {
	text-align: center;
	padding-top: var(--space-xl);
}

.tack-body {
	display: flex;
	flex-direction: column;
	gap: var(--space-lg);
	align-items: center;
	text-align: center;
}

.tack-rose {
	width: 160px;
	height: auto;
	opacity: 0.75;
}

.tack-title {
	font-size: clamp(1.4rem, 4vw, 2rem);
	font-weight: 400;
	letter-spacing: 0.04em;
}

.tack-text {
	font-style: italic;
	color: var(--text-dim);
	font-size: 1.1rem;
	line-height: 1.8;
}

.tack-links {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	width: 100%;
}

.tack-links a {
	display: block;
	font-size: 1rem;
	color: var(--text);
	text-decoration: none;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 1px solid var(--border);
	padding: 0.85rem 1.25rem;
	transition:
		border-color 0.15s,
		background 0.15s;
}

.tack-links a:hover {
	border-color: var(--text);
	background: var(--surface);
}

/* ============================================================
   Info page
   ============================================================ */

.info {
	max-width: 640px;
	margin: 0 auto;
	padding: 0 var(--space-md) calc(var(--space-xl) * 2);
}

@media (max-width: 700px) {
	body.page-info {
		padding-top: calc(var(--space-xl) + 1rem);
	}
}

.info-section {
	margin-bottom: var(--space-lg);
	padding-bottom: var(--space-lg);
	border-bottom: 1px solid var(--divider);
}

.info-section:last-child {
	border-bottom: none;
}

.info-section h2 {
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	color: var(--text);
	margin-bottom: var(--space-sm);
}

.info-section p {
	font-size: 1.05rem;
	line-height: 1.75;
}

.info-address {
	margin-top: var(--space-sm);
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	font-size: 1.05rem;
	line-height: 1.7;
}

.info-address a {
	margin-top: 0.4rem;
	color: var(--text);
	font-size: 0.85rem;
	letter-spacing: 0.06em;
}

.info-list {
	list-style: none;
	margin-top: var(--space-sm);
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	font-size: 1.05rem;
	line-height: 1.75;
}

.info-list a {
	color: var(--text);
}

.info-dl {
	margin-top: var(--space-sm);
	display: grid;
	grid-template-columns: 8rem 1fr;
	gap: 0.5rem 1rem;
	font-size: 1.05rem;
	line-height: 1.7;
}

.info-dl dt {
	color: var(--text-dim);
	font-style: italic;
}

.info-image {
	margin: var(--space-lg) 0;
}

.info-image img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	object-position: center;
	display: block;
}

@media (max-width: 700px) {
	.info-dl {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.info-dl dt {
		margin-top: 0.75rem;
	}
}
