/* ==========================================================================
   Residence Villa Awaji Vista — Design System
   ========================================================================== */

:root {
	--ink: #0e0d0f;
	--ink-soft: #17161a;
	--ink-card: #1d1c20;
	--paper: #f6f2ea;
	--paper-dim: #ece6d9;
	--brass: #b6903f;
	--brass-light: #d9bc7c;
	--mist: #b9b4ac;
	--mist-dark: #85807a;
	--line: rgba(246, 242, 234, 0.14);
	--line-dark: rgba(14, 13, 15, 0.1);
	--serif-jp: "Shippori Mincho", "游明朝", "Yu Mincho", serif;
	--serif-en: "Cormorant Garamond", "Shippori Mincho", serif;
	--ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--ink);
	color: var(--paper);
	font-family: var(--serif-jp);
	font-weight: 400;
	line-height: 1.9;
	letter-spacing: .04em;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; }

.container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 6vw;
}

/* ==========================================================================
   Media spot: image OR Smart Slider, filling whatever positioned container
   it sits in (hero-media / break / page-head / split-media / pet-media / teaser-media)
   ========================================================================== */

img.media-fill {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}
.media-fill-wrap {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	overflow: hidden;
}
/* Force Smart Slider's own wrapper to fill this box regardless of the slider's configured size */
.media-fill-wrap > div,
.media-fill-wrap .n2-ss-slider,
.media-fill-wrap .n2-section-smartslider,
.media-fill-wrap .n2-ss-align,
.media-fill-wrap .n2-padding {
	width: 100% !important;
	height: 100% !important;
}

/* Vimeo background video — always full container width at a 16:9 ratio,
   letterboxed (not cropped) if the container is taller than that. Uses the
   classic padding-top aspect-ratio trick (not the `aspect-ratio` property)
   for reliable full-width sizing inside an absolutely-positioned parent. */
.media-fill-wrap.is-video { display: block; }
.media-fill-video-box {
	position: absolute;
	top: 50%; left: 0;
	width: 100%;
	padding-top: 56.25%;
	transform: translateY(-50%);
}
.media-fill-video-box iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

.eyebrow {
	font-family: var(--serif-en);
	font-style: italic;
	font-size: 15px;
	letter-spacing: .32em;
	text-transform: uppercase;
	color: var(--brass-light);
	display: inline-block;
	margin-bottom: 22px;
}

.section-title {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 600;
	letter-spacing: .08em;
	line-height: 1.6;
	color: var(--paper);
}

.section-title.dark { color: var(--ink); }

.lede {
	font-size: clamp(15px, 1.6vw, 17px);
	line-height: 2.15;
	color: var(--mist);
	max-width: 640px;
}
.lede.dark { color: #4a463f; }

.fade-up {
	opacity: 0;
	transform: translateY(36px);
	transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: .12s; }
.fade-up.delay-2 { transition-delay: .24s; }

/* ==========================================================================
   Nav
   ========================================================================== */

.site-nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 500;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 26px 5vw;
	transition: background .5s var(--ease), padding .5s var(--ease), border-color .5s var(--ease);
	border-bottom: 1px solid transparent;
}
/* Sit below the logged-in WordPress admin bar instead of overlapping it. */
body.admin-bar .site-nav { top: 32px; }
@media (max-width: 782px) {
	body.admin-bar .site-nav { top: 46px; }
}
.site-nav.is-scrolled {
	background: rgba(14, 13, 15, .88);
	backdrop-filter: blur(10px);
	padding: 14px 5vw;
	border-color: var(--line);
}
.site-nav .brand {
	font-family: var(--serif-en);
	font-size: 19px;
	letter-spacing: .12em;
	color: var(--paper);
}
.site-nav .brand span { color: var(--brass-light); }

.nav-links {
	display: flex;
	gap: 34px;
	list-style: none;
	margin: 0; padding: 0;
}
.nav-links a {
	font-size: 12.5px;
	letter-spacing: .18em;
	color: var(--mist);
	position: relative;
	padding-bottom: 4px;
}
.nav-links a:hover { color: var(--brass-light); }

.nav-book {
	border: 1px solid var(--brass);
	color: var(--brass-light);
	font-size: 12px;
	letter-spacing: .2em;
	padding: 11px 22px;
	white-space: nowrap;
	transition: background .35s, color .35s;
}
.nav-book:hover { background: var(--brass); color: var(--ink); }

.nav-toggle { display: none; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
	position: relative;
	height: 100svh;
	min-height: 620px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}
.hero-media {
	position: absolute; inset: 0;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	animation: heroZoom 26s ease-in-out infinite alternate;
}
@keyframes heroZoom {
	0% { transform: scale(1); }
	100% { transform: scale(1.09); }
}
.hero::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(10,9,10,.35) 0%, rgba(10,9,10,.15) 38%, rgba(10,9,10,.85) 100%);
}
.hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 0 6vw 76px;
	text-align: center;
}
.hero-kicker {
	font-family: var(--serif-en);
	font-style: italic;
	font-size: 14px;
	letter-spacing: .5em;
	text-transform: uppercase;
	color: var(--brass-light);
	margin-bottom: 26px;
}
.hero-title {
	font-size: clamp(34px, 6.4vw, 78px);
	line-height: 1.35;
	font-weight: 700;
	letter-spacing: .06em;
	color: var(--paper);
	text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.hero-title small {
	display: block;
	font-family: var(--serif-en);
	font-style: italic;
	font-weight: 500;
	font-size: .42em;
	letter-spacing: .3em;
	color: var(--brass-light);
	margin-top: 14px;
}
.hero-sub {
	margin: 30px auto 0;
	max-width: 560px;
	color: var(--mist);
	font-size: 14.5px;
	line-height: 2.1;
}
.scroll-cue {
	position: absolute;
	bottom: 26px; left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	width: 1px; height: 60px;
	background: linear-gradient(180deg, var(--brass-light), transparent);
}
.scroll-cue::after {
	content: "";
	position: absolute; top: 0; left: -3px;
	width: 7px; height: 7px; border-radius: 50%;
	background: var(--brass-light);
	animation: scrollDrip 2.2s var(--ease) infinite;
}
@keyframes scrollDrip {
	0% { top: 0; opacity: 1; }
	80% { opacity: 1; }
	100% { top: 56px; opacity: 0; }
}

/* ==========================================================================
   Intro / statement
   ========================================================================== */

.statement {
	padding: 150px 0 130px;
	text-align: center;
}
.statement .mark {
	font-family: var(--serif-en);
	font-style: italic;
	color: var(--brass);
	font-size: 46px;
	margin-bottom: 30px;
}
.statement p {
	max-width: 1200px;
	margin: 0 auto;
	font-size: clamp(17px, 2.1vw, 22px);
	line-height: 2.35;
	color: var(--paper-dim);
}
.statement p + p { margin-top: 28px; }
.statement .signature {
	margin-top: 46px;
	font-family: var(--serif-en);
	font-style: italic;
	letter-spacing: .18em;
	color: var(--mist-dark);
	font-size: 14px;
}

/* ==========================================================================
   Split feature (image + text)
   ========================================================================== */

.split {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	align-items: stretch;
}
.split.reverse .split-media { order: 2; }
.split.reverse .split-text { order: 1; }

.split-media {
	position: relative;
	min-height: 560px;
	max-height: 640px;
	align-self: center;
	overflow: hidden;
}
.split-media img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1.4s var(--ease);
}
.split-media:hover img { transform: scale(1.055); }

.split-text {
	background: var(--ink-soft);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px 7vw;
}
.split-text .num {
	font-family: var(--serif-en);
	font-style: italic;
	font-size: 15px;
	color: var(--brass);
	letter-spacing: .3em;
	margin-bottom: 18px;
}
.split-text h3 {
	font-size: clamp(22px, 2.6vw, 30px);
	line-height: 1.7;
	font-weight: 600;
	color: var(--paper);
	margin-bottom: 26px;
}
.split-text p {
	color: var(--mist);
	font-size: 15px;
	line-height: 2.15;
}
.time-mark {
	color: var(--brass-light);
	font-family: var(--serif-en);
	font-style: italic;
	font-weight: 600;
	letter-spacing: .03em;
	margin-right: 8px;
}
/* Itinerary-style body text (many time-stamped lines) reads better compact —
   tighter than normal prose so it doesn't tower over its paired photo/slider. */
.split-text p.itinerary,
.pet-text p.itinerary {
	font-size: 13px;
	line-height: 1.7;
}
.split-text p + p { margin-top: 20px; }
.split-text p strong, .statement p strong, .pet-text p strong { color: var(--brass-light); font-weight: 600; }
.split-text .tags {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.split-text .tags span {
	font-size: 11.5px;
	letter-spacing: .1em;
	color: var(--brass-light);
	border: 1px solid var(--line);
	padding: 7px 14px;
}

/* ==========================================================================
   Full-bleed break with quote
   ========================================================================== */

.break {
	position: relative;
	overflow: hidden;
	min-height: 74vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	text-align: center;
	padding: 100px 6vw;
}
.break::after {
	content: "";
	position: absolute; inset: 0;
	background: rgba(10,9,10,.46);
}
.break-content { position: relative; z-index: 2; max-width: 720px; }
.break-content .eyebrow { color: var(--brass-light); }
.break-content p {
	font-size: clamp(19px, 2.6vw, 28px);
	line-height: 1.95;
	color: var(--paper);
	font-weight: 500;
}
.break-content .break-desc {
	margin-top: 18px;
	max-width: 480px;
}
.break-content .break-desc p {
	font-size: 14.5px;
	line-height: 1.9;
	color: var(--mist);
	font-weight: 400;
}

@media (max-width: 780px) {
	.break { background-attachment: scroll; }
}

/* ==========================================================================
   Triptych (3-temperature circuit)
   ========================================================================== */

.triptych-head { text-align: center; padding: 130px 0 60px; }
.triptych-head .eyebrow { display: block; }
.triptych-head p { max-width: 620px; margin: 24px auto 0; color: var(--mist); font-size: 15px; line-height: 2.1; }

.triptych {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--line);
	margin-bottom: 150px;
}
.triptych-item {
	background: var(--ink);
	padding: 56px 40px;
	text-align: center;
}
.triptych-item .index {
	font-family: var(--serif-en);
	font-style: italic;
	color: var(--brass);
	font-size: 34px;
	margin-bottom: 22px;
}
.triptych-item h4 {
	font-size: 18px;
	letter-spacing: .1em;
	color: var(--paper);
	margin-bottom: 18px;
	line-height: 1.8;
}
.triptych-item p {
	font-size: 13.8px;
	color: var(--mist);
	line-height: 2;
}

@media (max-width: 860px) {
	.triptych { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Gallery grid (residence)
   ========================================================================== */

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-auto-rows: 190px;
	gap: 6px;
	margin: 60px 0 0;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid .g1 { grid-column: span 3; grid-row: span 2; }
.gallery-grid .g2 { grid-column: span 3; grid-row: span 1; }
.gallery-grid .g3 { grid-column: span 3; grid-row: span 1; }
.gallery-grid .g4 { grid-column: span 2; grid-row: span 1; }
.gallery-grid .g5 { grid-column: span 2; grid-row: span 1; }
.gallery-grid .g6 { grid-column: span 2; grid-row: span 1; }

@media (max-width: 860px) {
	.gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
	.gallery-grid .g1, .gallery-grid .g2, .gallery-grid .g3,
	.gallery-grid .g4, .gallery-grid .g5, .gallery-grid .g6 { grid-column: span 1; grid-row: span 1; }
}

/* ==========================================================================
   Teaser grid (front page highlights)
   ========================================================================== */

.teaser-head { text-align: center; padding: 130px 0 20px; }
.teaser-head p { max-width: 600px; margin: 24px auto 0; color: var(--mist); font-size: 15px; line-height: 2.1; }

.teaser-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: var(--line);
	margin: 60px 0 0;
}
.teaser-card {
	background: var(--ink);
	position: relative;
	display: block;
	overflow: hidden;
}
.teaser-media { position: relative; height: 300px; overflow: hidden; }
.teaser-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.teaser-card:hover .teaser-media img { transform: scale(1.06); }
.teaser-body { padding: 38px 40px 44px; }
.teaser-body .num { font-family: var(--serif-en); font-style: italic; color: var(--brass); font-size: 14px; letter-spacing: .2em; margin-bottom: 14px; }
.teaser-body h3 { font-size: 20px; letter-spacing: .06em; line-height: 1.7; color: var(--paper); margin-bottom: 14px; }
.teaser-body p { font-size: 13.8px; color: var(--mist); line-height: 1.95; }
.teaser-body .more { display: inline-block; margin-top: 20px; font-size: 12px; letter-spacing: .18em; color: var(--brass-light); border-bottom: 1px solid var(--brass); padding-bottom: 3px; }

@media (max-width: 860px) { .teaser-grid { grid-template-columns: 1fr; } }

/* Quick facts strip */
.quickfacts {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
	background: var(--ink-soft);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.quickfacts .fact {
	flex: 1 1 200px;
	text-align: center;
	padding: 40px 20px;
	border-left: 1px solid var(--line);
}
.quickfacts .fact:first-child { border-left: none; }
.quickfacts .fact .label { font-size: 11.5px; letter-spacing: .18em; color: var(--brass-light); margin-bottom: 10px; }
.quickfacts .fact .value { font-family: var(--serif-en); font-style: italic; font-size: 22px; color: var(--paper); }

/* ==========================================================================
   Page head (utility pages: FAQ / Access)
   ========================================================================== */

.page-head {
	position: relative;
	padding: 200px 6vw 90px;
	text-align: center;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
.page-head::after { content: ""; position: absolute; inset: 0; background: rgba(10,9,10,.62); }
.page-head-content { position: relative; z-index: 2; }
.page-head .eyebrow { color: var(--brass-light); }
.page-head h1 { font-size: clamp(30px, 5vw, 52px); color: var(--paper); letter-spacing: .08em; line-height: 1.6; margin-top: 14px; }
.page-head p { max-width: 560px; margin: 22px auto 0; color: var(--mist); font-size: 14.5px; line-height: 2; }

/* Room space list */
.space-label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	letter-spacing: .2em;
	color: var(--brass-light);
	margin-bottom: 18px;
}
.space-label::before { content: ""; width: 22px; height: 1px; background: var(--brass-light); }

/* Nearby list (access page) */
.nearby-list { margin-top: 60px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.nearby-item { background: var(--ink); padding: 32px 36px; }
.nearby-thumb { position: relative; aspect-ratio: 3/2; overflow: hidden; margin: -32px -36px 24px; background: var(--ink-soft); }
.nearby-item h5 { font-size: 15.5px; color: var(--paper); letter-spacing: .05em; margin-bottom: 10px; }
.nearby-item p { font-size: 13px; color: var(--mist); line-height: 1.9; }
@media (max-width: 860px) { .nearby-list { grid-template-columns: 1fr; } }

/* Spot grid (周辺観光 page) — compact cards, many visible without much scrolling */
.spot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.spot-card { background: var(--ink-soft); border: 1px solid var(--line); overflow: hidden; }
.spot-thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--ink-card); }
.spot-body { padding: 18px 20px 22px; }
.spot-body h5 { font-size: 14.5px; color: var(--paper); letter-spacing: .04em; margin-bottom: 8px; }
.spot-desc { font-size: 12.5px; color: var(--mist); line-height: 1.75; margin-bottom: 12px; }
.spot-facts { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 4px 10px; padding-top: 10px; border-top: 1px solid var(--line); }
.spot-facts dt { font-size: 10.5px; color: var(--brass-light); letter-spacing: .08em; white-space: nowrap; }
.spot-facts dd { margin: 0; font-size: 11.5px; color: var(--mist); line-height: 1.6; }
.spot-facts dd a { color: var(--brass-light); border-bottom: 1px solid var(--brass); }
@media (max-width: 980px) { .spot-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .spot-grid { grid-template-columns: 1fr; } }

.section-more-wrap { text-align: center; margin-top: 48px; }
.section-more-btn {
	display: inline-block;
	border: 1px solid var(--brass-light);
	background: none;
	color: var(--paper);
	padding: 15px 46px;
	font-family: var(--serif-jp);
	font-size: 12px;
	letter-spacing: .2em;
	cursor: pointer;
	transition: background .3s, color .3s;
}
.section-more-btn:hover { background: var(--brass-light); color: var(--ink); }

/* ==========================================================================
   Flexible gallery (unlimited images, admin-orderable, 6 + MORE)
   ========================================================================== */

.flex-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
}
.flex-gallery-item {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
.flex-gallery-item img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1.1s var(--ease);
}
.flex-gallery-item:hover img { transform: scale(1.06); }
.flex-gallery.collapsed .is-extra { display: none; }

.gallery-more-wrap { text-align: center; margin-top: 30px; }
.gallery-more-btn {
	border: 1px solid var(--brass-light);
	background: none;
	color: var(--paper);
	padding: 15px 46px;
	font-family: var(--serif-jp);
	font-size: 12px;
	letter-spacing: .24em;
	cursor: pointer;
	transition: background .35s, color .35s;
}
.gallery-more-btn:hover { background: var(--brass-light); color: var(--ink); }

@media (max-width: 780px) {
	.flex-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Light section (paper background)
   ========================================================================== */

.paper-section { background: var(--paper); color: var(--ink); padding: 130px 0; }
.paper-section .eyebrow { color: var(--brass); }

.season-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 34px;
	margin-top: 64px;
}
.season-grid .season {
	border-top: 1px solid var(--line-dark);
	padding-top: 22px;
}
.season-grid .season .jp {
	font-size: 12px;
	letter-spacing: .2em;
	color: var(--brass);
	margin-bottom: 10px;
}
.season-grid .season h5 {
	font-family: var(--serif-en);
	font-style: italic;
	font-size: 22px;
	color: var(--ink);
	margin-bottom: 16px;
}
.season-grid .season p {
	font-size: 13.5px;
	color: #4a463f;
	line-height: 1.95;
}

@media (max-width: 860px) {
	.season-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Pet section
   ========================================================================== */

.pet-section {
	display: grid;
	grid-template-columns: .95fr 1.05fr;
	background: var(--ink-card);
}
.pet-media { position: relative; min-height: 520px; max-height: 600px; align-self: center; overflow: hidden; }
.pet-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pet-text { padding: 90px 7vw; display: flex; flex-direction: column; justify-content: center; }
.pet-text h3 { font-size: clamp(22px, 2.6vw, 30px); color: var(--paper); line-height: 1.7; margin-bottom: 24px; }
.pet-text p { color: var(--mist); font-size: 15px; line-height: 2.15; }
.pet-text p + p { margin-top: 18px; }
.pet-list { margin-top: 22px; list-style: none; padding: 0; display: grid; gap: 7px; }
.pet-list li {
	font-size: 13.5px;
	line-height: 1.4;
	color: var(--brass-light);
	letter-spacing: .04em;
	padding-left: 22px;
	position: relative;
}
.pet-list li::before {
	content: "";
	position: absolute; left: 0; top: 50%;
	transform: translateY(-50%);
	width: 10px; height: 1px; background: var(--brass-light);
}

@media (max-width: 860px) {
	.pet-section, .split { grid-template-columns: 1fr; }
	.split-media, .pet-media { min-height: 340px; }
}

/* ==========================================================================
   Spec / info
   ========================================================================== */

.info-section { padding: 130px 0; }
.info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	margin-top: 60px;
}
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table th, .spec-table td {
	text-align: left;
	padding: 20px 10px;
	font-size: 14px;
	font-weight: 400;
	vertical-align: top;
}
.spec-table th {
	width: 34%;
	color: var(--brass-light);
	letter-spacing: .1em;
	font-size: 12.5px;
}
.spec-table td { color: var(--mist); line-height: 1.9; }

.map-frame {
	border: 1px solid var(--line);
	padding: 34px;
	background: var(--ink-soft);
}
.map-frame h4 { color: var(--paper); font-size: 17px; letter-spacing: .08em; margin-bottom: 16px; }
.map-frame p { color: var(--mist); font-size: 13.8px; line-height: 2; }
.map-frame .route { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.map-embed { position: relative; margin-top: 24px; aspect-ratio: 16/10; overflow: hidden; filter: grayscale(.15); }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-section { padding: 0 0 130px; }
.faq-list { max-width: 820px; margin: 60px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
	width: 100%;
	background: none;
	border: none;
	color: var(--paper);
	text-align: left;
	padding: 26px 0;
	font-family: var(--serif-jp);
	font-size: 15.5px;
	letter-spacing: .04em;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	gap: 20px;
}
.faq-q .q-mark { color: var(--brass); font-family: var(--serif-en); font-style: italic; margin-right: 14px; }
.faq-q .plus {
	font-size: 20px;
	color: var(--brass-light);
	transition: transform .35s var(--ease);
	flex-shrink: 0;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .5s var(--ease);
}
.faq-a p {
	color: var(--mist);
	font-size: 14px;
	line-height: 2.1;
	padding-bottom: 26px;
	max-width: 700px;
}

/* ==========================================================================
   Series / related
   ========================================================================== */

.series-section { background: var(--ink-soft); padding: 110px 0; text-align: center; }
.series-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1px;
	background: var(--line);
	margin-top: 56px;
}
.series-item {
	background: var(--ink);
	transition: background .4s;
}
.series-item.current { background: var(--ink-card); }
.series-media { position: relative; height: 190px; overflow: hidden; }
.series-media img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1.1s var(--ease);
}
.series-item:hover .series-media img { transform: scale(1.06); }
.series-body { padding: 34px 30px 40px; }
.series-item .tag { font-size: 11px; letter-spacing: .2em; color: var(--brass); margin-bottom: 14px; }
.series-item h5 { font-size: 17px; color: var(--paper); letter-spacing: .06em; line-height: 1.7; margin-bottom: 12px; }
.series-item p { font-size: 12.5px; color: var(--mist-dark); }
.series-item a.link { display: inline-block; margin-top: 18px; font-size: 12px; letter-spacing: .12em; color: var(--brass-light); border-bottom: 1px solid var(--brass); padding-bottom: 3px; }

@media (max-width: 860px) { .series-list { grid-template-columns: 1fr; } }

/* ==========================================================================
   Closing CTA
   ========================================================================== */

.cta {
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-size: cover;
	background-position: center;
	padding: 100px 6vw;
}
.cta::after { content: ""; position: absolute; inset: 0; background: rgba(10,9,10,.62); }
.cta-content { position: relative; z-index: 2; }
.cta-content .section-title { margin: 20px 0 34px; }
.cta-btn {
	display: inline-block;
	border: 1px solid var(--brass-light);
	color: var(--paper);
	padding: 17px 46px;
	font-size: 13px;
	letter-spacing: .28em;
	transition: background .4s, color .4s;
}
.cta-btn:hover { background: var(--brass-light); color: var(--ink); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { padding: 80px 0 40px; border-top: 1px solid var(--line); }
.footer-grid {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
	padding-bottom: 50px;
}
.footer-brand { font-family: var(--serif-en); font-size: 20px; letter-spacing: .1em; color: var(--paper); }
.footer-brand span { display: block; font-size: 12px; letter-spacing: .2em; color: var(--mist-dark); margin-top: 10px; }
.footer-nav { display: flex; gap: 30px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.footer-nav a { font-size: 12.5px; letter-spacing: .1em; color: var(--mist); }
.footer-nav a:hover { color: var(--brass-light); }
.footer-bottom {
	display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
	padding-top: 30px; border-top: 1px solid var(--line);
	font-size: 11.5px; letter-spacing: .05em; color: var(--mist-dark);
}

/* ==========================================================================
   Mobile nav
   ========================================================================== */

@media (max-width: 980px) {
	.nav-links { display: none; }
	.nav-toggle {
		display: block;
		width: 26px; height: 18px;
		position: relative;
		background: none; border: none; cursor: pointer;
	}
	.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
		content: ""; position: absolute; left: 0; width: 100%; height: 1px; background: var(--paper);
	}
	.nav-toggle span { top: 8px; }
	.nav-toggle::before { top: 0; }
	.nav-toggle::after { top: 16px; }
	.nav-book { display: none; }

	.nav-drawer {
		position: fixed; inset: 0;
		background: var(--ink);
		z-index: 600;
		display: flex; flex-direction: column;
		align-items: center; justify-content: center;
		gap: 30px;
		transform: translateY(-100%);
		transition: transform .5s var(--ease);
	}
	.nav-drawer.open { transform: translateY(0); }
	.nav-drawer a { font-size: 17px; letter-spacing: .12em; color: var(--paper); }
	.nav-drawer .close { position: absolute; top: 26px; right: 6vw; font-size: 26px; color: var(--paper); background: none; border: none; }
}

@media (max-width: 780px) {
	.split { grid-template-columns: 1fr; }
	.split-media { min-height: 320px; }
	.split-text { padding: 60px 7vw; }
	.info-grid { grid-template-columns: 1fr; gap: 40px; }
	.statement { padding: 100px 0 90px; }
	.triptych-head { padding: 90px 0 40px; }
}

.faq-category {
	font-family: var(--serif-en);
	font-style: italic;
	font-size: 13px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--brass-light);
	margin: 50px 0 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--brass);
}
.faq-category:first-child { margin-top: 0; }