/* =====================================================================
   SALTMARSH · components
   ===================================================================== */

/* ---------------------------------------------------------------------
   Header — a thin brass rail over the photograph
   ------------------------------------------------------------------ */

.site-head {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	transition: background 420ms var(--ease), border-color 420ms var(--ease);
	border-bottom: 1px solid transparent;
}
.site-head.solid {
	background: color-mix(in srgb, var(--paper) 92%, transparent);
	backdrop-filter: blur(12px) saturate(1.3);
	-webkit-backdrop-filter: blur(12px) saturate(1.3);
	border-bottom-color: var(--rule-2);
}

.hd {
	display: flex;
	align-items: center;
	gap: clamp(16px, 3vw, 44px);
	height: 78px;
}

.mark {
	font-family: var(--ff-disp);
	font-size: 1.42rem;
	letter-spacing: 0.01em;
	line-height: 1;
	margin-right: auto;
	display: inline-flex;
	align-items: baseline;
	gap: 0.55em;
	white-space: nowrap;
}
.mark small {
	font-family: var(--ff-body);
	font-size: 0.6rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--ink-3);
	font-weight: 600;
}
@media (max-width: 700px) { .mark small { display: none; } }

.nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 34px); list-style: none; margin: 0; padding: 0; }
.nav a {
	font-size: var(--t-s);
	letter-spacing: 0.05em;
	position: relative;
	padding-block: 6px;
}
.nav a::after {
	content: "";
	position: absolute; left: 0; bottom: 2px;
	width: 100%; height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 380ms var(--slow);
}
.nav a:hover::after,
.nav .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }
@media (max-width: 1020px) { .nav { display: none; } }

/* Over the hero photograph the rail is light; once past it, ink. */
.site-head:not(.solid) { color: var(--on-dark); }
.site-head:not(.solid) .mark small { color: rgba(242, 238, 228, 0.6); }
.site-head:not(.solid) .btn--book { border-color: rgba(242, 238, 228, 0.45); color: var(--on-dark); }

.btn--book {
	padding: 0.68em 1.15em;
	font-size: var(--t-xs);
	background: transparent;
	color: var(--ink);
	border: 1px solid var(--rule);
}
.btn--book:hover { color: var(--on-dark); }

.burger {
	display: none;
	width: 42px; height: 42px;
	align-items: center; justify-content: center;
	background: none; border: 0; color: currentColor; cursor: pointer;
}
@media (max-width: 1020px) { .burger { display: inline-flex; } }
.burger span { display: block; width: 20px; height: 1px; background: currentColor; position: relative; }
.burger span::before, .burger span::after {
	content: ""; position: absolute; left: 0; width: 20px; height: 1px; background: currentColor;
	transition: transform 300ms var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

.drawer {
	position: fixed;
	inset: 78px 0 0;
	z-index: 95;
	background: var(--paper);
	color: var(--ink);
	padding: clamp(28px, 6vw, 72px) var(--edge);
	display: grid;
	align-content: start;
	list-style: none;
	margin: 0;
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: opacity 320ms var(--ease), transform 320ms var(--ease), visibility 320ms;
}
.drawer.open { opacity: 1; visibility: visible; transform: none; }
.drawer a {
	display: block;
	font-family: var(--ff-disp);
	font-size: clamp(1.7rem, 8vw, 2.6rem);
	padding-block: 0.34em;
	border-bottom: 1px solid var(--rule-2);
}
body:has(.drawer.open) { overflow: hidden; }

/* ---------------------------------------------------------------------
   Hero — one photograph, printed
   ------------------------------------------------------------------ */

.hero {
	position: relative;
	min-height: min(94svh, 900px);
	display: grid;
	align-items: end;
	overflow: hidden;
	isolation: isolate;
	background: var(--ink);
}
.hero__plate { position: absolute; inset: 0; z-index: 0; }
.hero__plate img {
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center 58%;
}
/* The shader draws over the still, and is only revealed once it has a
   frame — so a machine without WebGL simply keeps the photograph. */
.hero__film {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	opacity: 0;
	transition: opacity 900ms var(--ease);
}
.hero__film.on { opacity: 1; }

.hero::after {
	content: "";
	position: absolute; inset: 0; z-index: 1;
	background:
		linear-gradient(to top, rgba(14, 20, 18, 0.82) 0%, rgba(14, 20, 18, 0.22) 42%, rgba(14, 20, 18, 0.34) 100%);
	pointer-events: none;
}

.hero__in {
	position: relative;
	z-index: 2;
	color: var(--on-dark);
	padding-block: clamp(48px, 9vw, 120px) clamp(120px, 14vw, 190px);
}
.hero h1 {
	font-size: var(--t-xl);
	line-height: 0.98;
	max-width: 14ch;
	margin-bottom: 0.5em;
}
.hero__sub {
	font-size: var(--t-sm);
	max-width: 40ch;
	color: rgba(242, 238, 228, 0.82);
	margin-bottom: 2em;
}
.hero .eyebrow { color: rgba(242, 238, 228, 0.62); }

/* Where the tide is, tonight. A real, small, useful line. */
.hero__strip {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	z-index: 3;
	border-top: 1px solid rgba(242, 238, 228, 0.18);
	background: rgba(14, 20, 18, 0.34);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	color: rgba(242, 238, 228, 0.86);
}
.hero__strip .wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 8px clamp(20px, 4vw, 56px);
	padding-block: 14px;
	font-size: var(--t-xs);
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.hero__strip b { font-weight: 600; color: var(--on-dark); }

/* ---------------------------------------------------------------------
   Booking bar
   ------------------------------------------------------------------ */

.bookbar {
	position: relative;
	z-index: 4;
	margin-top: -46px;
	margin-bottom: calc(var(--band) * -0.25);
}
.bookbar form {
	background: var(--shell);
	border: 1px solid var(--rule-2);
	box-shadow: var(--shadow);
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
	align-items: stretch;
}
@media (max-width: 860px) { .bookbar form { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .bookbar form { grid-template-columns: minmax(0, 1fr); } }

.bookbar label {
	display: grid;
	gap: 4px;
	padding: 16px clamp(16px, 2vw, 26px);
	border-right: 1px solid var(--rule-2);
}
@media (max-width: 520px) { .bookbar label { border-right: 0; border-bottom: 1px solid var(--rule-2); } }
.bookbar span {
	font-size: var(--t-xs);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-3);
	font-weight: 600;
}
.bookbar input,
.bookbar select {
	border: 0;
	background: transparent;
	font-family: var(--ff-body);
	font-size: var(--t-b);
	color: var(--ink);
	padding: 0;
	width: 100%;
}
.bookbar input:focus, .bookbar select:focus { outline: none; }
.bookbar .btn { border: 0; justify-content: center; padding-inline: clamp(20px, 3vw, 40px); }

/* ---------------------------------------------------------------------
   Rooms — editorial slabs, alternating
   ------------------------------------------------------------------ */

.rooms { display: grid; gap: clamp(56px, 8vw, 128px); }

.room {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 72px);
	align-items: center;
	position: relative;
}
.room:nth-child(even) .room__media { order: 2; }
@media (max-width: 900px) {
	.room { grid-template-columns: minmax(0, 1fr); }
	.room:nth-child(even) .room__media { order: 0; }
}

.room__media { position: relative; overflow: hidden; background: var(--sand); aspect-ratio: 4 / 3; }
.room__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1400ms var(--slow);
}
.room:hover .room__media img { transform: scale(1.035); }
.room__no {
	position: absolute; left: 0; top: 0; z-index: 2;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--ff-disp);
	font-size: 1.15rem;
	padding: 10px 16px;
}

.room__body { display: grid; gap: 1.1rem; align-content: center; }
.room__body h3 { font-size: var(--t-md); }
.room__body p { color: var(--ink-2); margin: 0; max-width: 44ch; }
.room__spec {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 22px;
	padding-top: 1rem;
	border-top: 1px solid var(--rule);
	font-size: var(--t-s);
	color: var(--ink-3);
}
.room__spec b { color: var(--ink); font-weight: 600; }
.room__from { font-family: var(--ff-disp); font-size: var(--t-sm); }
.room__from small { font-family: var(--ff-body); font-size: var(--t-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); display: block; }
.room__body .tl::after { content: ""; position: absolute; inset: 0; }

/* On a single room page the photograph carries its own transition name so
   the browser morphs it from the index instead of cross-fading the page. */
.room__media img { view-transition-name: var(--vt, none); }

/* ---------------------------------------------------------------------
   Availability calendar
   ------------------------------------------------------------------ */

.cal { display: grid; gap: clamp(20px, 3vw, 36px); }

.cal__top {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--rule);
}
.cal__month {
	font-family: var(--ff-disp);
	font-size: var(--t-sm);
	margin-right: auto;
	min-width: 12ch;
}
.cal__nav {
	width: 40px; height: 40px;
	display: grid; place-items: center;
	border: 1px solid var(--rule);
	background: transparent;
	color: var(--ink);
	cursor: pointer;
	font-size: 1rem;
	transition: border-color 240ms var(--ease), background 240ms var(--ease);
}
.cal__nav:hover:not(:disabled) { border-color: var(--brass); }
.cal__nav:disabled { opacity: 0.32; cursor: not-allowed; }
.cal__pick {
	font-family: var(--ff-body);
	font-size: var(--t-s);
	padding: 9px 12px;
	border: 1px solid var(--rule);
	background: var(--shell);
	color: var(--ink);
}

.cal__grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 1px; background: var(--rule-2); border: 1px solid var(--rule-2); }
.cal__dow {
	background: var(--paper-2);
	text-align: center;
	padding: 10px 4px;
	font-size: var(--t-xs);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-3);
	font-weight: 600;
}
.cal__cell {
	background: var(--shell);
	min-height: clamp(64px, 8vw, 92px);
	padding: 8px 10px;
	display: grid;
	align-content: space-between;
	gap: 4px;
	position: relative;
}
.cal__cell.pad { background: var(--paper-2); }
.cal__d { font-size: var(--t-s); color: var(--ink-3); }
.cal__r { font-size: var(--t-s); font-weight: 600; letter-spacing: -0.01em; }
.cal__cell.gone { background: repeating-linear-gradient(135deg, var(--paper-2) 0 6px, var(--sand) 6px 12px); color: var(--ink-3); }
.cal__cell.gone .cal__r { color: var(--ink-3); font-weight: 400; }
.cal__cell.today { box-shadow: inset 0 0 0 2px var(--brass); }
.cal__cell.min2::after {
	content: "2 nights";
	font-size: 0.62rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brass);
}
@media (max-width: 620px) {
	.cal__cell { min-height: 56px; padding: 6px; }
	.cal__cell.min2::after { content: "2n"; }
}

.cal__key { display: flex; flex-wrap: wrap; gap: 10px 24px; font-size: var(--t-s); color: var(--ink-3); }
.cal__key span { display: inline-flex; align-items: center; gap: 8px; }
.cal__key i { width: 18px; height: 12px; display: block; border: 1px solid var(--rule-2); }
.cal__key i.free { background: var(--shell); }
.cal__key i.gone { background: repeating-linear-gradient(135deg, var(--paper-2) 0 4px, var(--sand) 4px 8px); }
.cal__key i.brass { background: transparent; box-shadow: inset 0 0 0 2px var(--brass); }

/* ---------------------------------------------------------------------
   The dining room — a menu, set as a menu
   ------------------------------------------------------------------ */

.menu { display: grid; gap: clamp(28px, 4vw, 52px); }
.menu__course { display: grid; gap: 14px; }
.menu__course > h3 {
	font-family: var(--ff-body);
	font-size: var(--t-xs);
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--brass);
	font-weight: 600;
}
.menu__list { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.menu__item { display: grid; gap: 3px; padding-bottom: 14px; border-bottom: 1px solid var(--rule-2); }
.menu__item b { font-family: var(--ff-disp); font-weight: 400; font-size: var(--t-sm); }
.menu__item span { color: var(--ink-3); font-size: var(--t-s); }
.band--dark .menu__item { border-bottom-color: rgba(242, 238, 228, 0.14); }
.band--dark .menu__item span { color: rgba(242, 238, 228, 0.6); }
@media (min-width: 760px) { .menu__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 44px; } }

/* ---------------------------------------------------------------------
   Tariff table — subgrid so every column lines up down the page
   ------------------------------------------------------------------ */

.tariff {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--rule);
}
.tariff__row {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: subgrid;
	align-items: baseline;
	padding-block: 18px;
	border-bottom: 1px solid var(--rule-2);
	column-gap: 20px;
}
.tariff__row--h { border-bottom-color: var(--rule); }
.tariff__row--h > * {
	font-size: var(--t-xs);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink-3);
	font-weight: 600;
}
.tariff__name { font-family: var(--ff-disp); font-size: var(--t-sm); }
.tariff__row--h .tariff__name { font-family: var(--ff-body); font-size: var(--t-xs); }
.tariff__row span { font-variant-numeric: tabular-nums; }
@media (max-width: 700px) {
	.tariff { grid-template-columns: minmax(0, 1fr) repeat(3, auto); }
	.tariff__row { column-gap: 12px; font-size: var(--t-s); }
}

/* ---------------------------------------------------------------------
   The place — a stack of things within walking distance
   ------------------------------------------------------------------ */

.place { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1px; background: var(--rule-2); border: 1px solid var(--rule-2); }
.place__i {
	container-type: inline-size;
	background: var(--paper);
	padding: clamp(22px, 2.6vw, 34px);
	display: grid;
	gap: 8px;
	align-content: start;
	transition: background 320ms var(--ease);
}
.place__i:hover { background: var(--shell); }
.place__i h3 { font-size: var(--t-sm); }
.place__i p { color: var(--ink-2); font-size: var(--t-s); margin: 0; }
.place__d { font-size: var(--t-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); font-weight: 600; }
@container (min-width: 360px) {
	.place__i { grid-template-columns: auto minmax(0, 1fr); column-gap: 20px; }
	.place__d { grid-row: 1 / span 3; }
}

/* ---------------------------------------------------------------------
   Gallery strip
   ------------------------------------------------------------------ */

.strip { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(230px, 26vw, 380px); gap: 12px; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.strip figure { margin: 0; scroll-snap-align: start; }
.strip img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.strip figcaption { font-size: var(--t-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-top: 10px; }

/* ---------------------------------------------------------------------
   Journal
   ------------------------------------------------------------------ */

.posts { display: grid; grid-template-columns: repeat(auto-fill, minmax(272px, 1fr)); gap: clamp(28px, 3.5vw, 52px); }
.post { display: grid; gap: 12px; align-content: start; position: relative; }
.post__media { overflow: hidden; aspect-ratio: 3 / 2; background: var(--sand); }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1200ms var(--slow); }
.post:hover .post__media img { transform: scale(1.04); }
.post time { font-size: var(--t-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.post h3 { font-size: var(--t-sm); }
.post h3 a::after { content: ""; position: absolute; inset: 0; }
.post p { font-size: var(--t-s); color: var(--ink-2); margin: 0; }

/* ---------------------------------------------------------------------
   Interior pages
   ------------------------------------------------------------------ */

.phead { padding-block: calc(78px + clamp(48px, 7vw, 110px)) clamp(30px, 4vw, 56px); }
.phead h1 { font-size: var(--t-lg); max-width: 18ch; }
.phead p { color: var(--ink-2); max-width: 52ch; margin-top: 1.1rem; }

.plate { position: relative; overflow: hidden; background: var(--sand); }
.plate img { width: 100%; }

.dl { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 26px; padding-block: 26px; border-block: 1px solid var(--rule); margin: 0; }
.dl div { display: grid; gap: 5px; }
.dl dt { font-size: var(--t-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.dl dd { margin: 0; font-size: var(--t-s); }

.pager { display: flex; justify-content: space-between; gap: 30px; padding-top: 28px; border-top: 1px solid var(--rule); margin-top: clamp(40px, 5vw, 72px); }
.pager a { display: grid; gap: 5px; max-width: 46%; }
.pager a:last-child { text-align: right; }
.pager small { font-size: var(--t-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.pager b { font-family: var(--ff-disp); font-weight: 400; font-size: var(--t-sm); line-height: 1.2; }

.pagination { display: flex; gap: 6px; flex-wrap: wrap; margin-top: clamp(40px, 5vw, 70px); }
.pagination .page-numbers {
	min-width: 42px; height: 42px;
	display: grid; place-items: center;
	padding-inline: 12px;
	border: 1px solid var(--rule);
	font-size: var(--t-s);
	transition: border-color 220ms var(--ease);
}
.pagination .page-numbers:hover { border-color: var(--brass); }
.pagination .current { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.searchform { display: flex; gap: 10px; max-width: 460px; }
.searchform input[type="search"] {
	flex: 1; min-width: 0;
	padding: 0.85em 1em;
	border: 1px solid var(--rule);
	background: var(--shell);
	color: var(--ink);
	font-family: inherit;
	font-size: var(--t-s);
}
.searchform input[type="search"]:focus { border-color: var(--brass); outline: none; }

/* ---------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------ */

.site-foot { background: var(--ink); color: rgba(242, 238, 228, 0.78); padding-block: clamp(56px, 7vw, 104px) 34px; }
.foot { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: clamp(28px, 4vw, 60px); }
@media (max-width: 900px) { .foot { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 500px) { .foot { grid-template-columns: minmax(0, 1fr); } }
.site-foot .mark { color: var(--on-dark); }
.site-foot .mark small { color: rgba(242, 238, 228, 0.5); }
.foot h4 { font-size: var(--t-xs); letter-spacing: 0.2em; text-transform: uppercase; color: rgba(242, 238, 228, 0.5); font-weight: 600; margin: 0 0 1.1em; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.foot a:hover { color: var(--brass-2); }
.foot__blurb { max-width: 32ch; margin-top: 1.2em; font-size: var(--t-s); }
.foot__bar {
	margin-top: clamp(40px, 5vw, 72px);
	padding-top: 24px;
	border-top: 1px solid rgba(242, 238, 228, 0.14);
	display: flex;
	flex-wrap: wrap;
	gap: 10px 28px;
	justify-content: space-between;
	font-size: var(--t-xs);
	letter-spacing: 0.1em;
	color: rgba(242, 238, 228, 0.5);
}

/* Cross-document transitions. The room photograph is named on both the
   index and the single, so the browser morphs one into the other. */
@view-transition { navigation: auto; }
@media (prefers-reduced-motion: no-preference) {
	::view-transition-old(root) { animation: vt-out 180ms var(--ease) both; }
	::view-transition-new(root) { animation: vt-in 420ms var(--slow) both; }
	@keyframes vt-out { to { opacity: 0; } }
	@keyframes vt-in { from { opacity: 0; } }
}

/* WordPress housekeeping */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { margin-inline: auto; display: block; }
.wp-caption-text { font-size: var(--t-s); color: var(--ink-3); }
.sticky, .gallery-caption, .bypostauthor { display: block; }

/* =====================================================================
   The moving pictures
   ---------------------------------------------------------------------
   Two silent loops, both cut from photographs already on this site. They
   are a slower version of the same picture, so if one never loads the
   page has lost nothing — which is exactly how they are treated below:
   the still is the design, the video is an upgrade that fades in over it
   and can fail at any point without leaving a hole.
   ================================================================== */

.loop {
	display: block;
	opacity: 0;
	transition: opacity 1400ms var(--slow);
	/* Its own layer: these are large surfaces and compositing them
	   alongside the fixed ambient plate is far cheaper than repainting. */
	will-change: opacity;
	background: var(--ink);
}
.loop.on { opacity: 1; }

/* ---------- Hero ---------- */
.hero__vid {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Matches the still's focal point: the water, not the sky. */
	object-position: 50% 42%;
	background: none;
}

/* Once the loop is running the halation shader has nothing left to do —
   the grade is baked into the file — so it is faded out rather than left
   compositing a still photograph underneath a moving one. */
.hero.playing .hero__film { opacity: 0; }

/* ---------- The coast ---------- */
.reel {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: var(--ink);
	min-height: min(72svh, 620px);
	display: grid;
	align-items: end;
}
.reel__vid {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: none;
}
/* The poster stands in until — or instead of — the video, so the band is
   never a black rectangle. */
.reel::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--reel-still, none) center 46% / cover no-repeat;
}
.reel::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top, rgba(14, 20, 18, 0.86) 0%, rgba(14, 20, 18, 0.10) 46%, rgba(14, 20, 18, 0.28) 100%);
}
.reel__cap {
	position: relative;
	z-index: 2;
	color: var(--on-dark);
	padding-block: clamp(3rem, 7vw, 6rem);
	max-width: 46rem;
}
.reel__cap .eyebrow { color: rgba(242, 238, 228, 0.72); }
.reel__cap p:last-child {
	font-family: var(--serif);
	font-size: var(--fs-3);
	line-height: 1.34;
	text-wrap: balance;
	margin-top: 0.6rem;
}
