:root {
	--paper: #f8f5ef;
	--paper-deep: #ede9df;
	--white: #fffefa;
	--ink: #1c2a30;
	--muted: #657077;
	--blue: #165b72;
	--blue-dark: #10465a;
	--brass: #b88942;
	--line: rgba(28, 42, 48, 0.18);
	--line-light: rgba(255, 255, 255, 0.28);
	--font-body: 'DM Sans', Arial, sans-serif;
	--font-display: 'Newsreader', Georgia, serif;
	--font-label: 'Oswald', Arial, sans-serif;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--gutter: clamp(22px, 5vw, 88px);
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	scroll-behavior: auto;
	scroll-padding-top: 114px;
	scrollbar-gutter: stable;
}
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
html.overlay-open {
	overflow: hidden;
	overscroll-behavior: none;
}
img,
video {
	display: block;
	max-width: 100%;
}
button,
a {
	touch-action: manipulation;
}
button {
	font: inherit;
}
a {
	color: inherit;
	text-decoration: none;
}
button {
	cursor: pointer;
}
::selection {
	background: #b9d6d5;
	color: var(--ink);
}
:focus-visible {
	outline: 2px solid var(--brass);
	outline-offset: 4px;
}
.skip-link {
	position: fixed;
	z-index: 1000;
	top: 12px;
	left: 12px;
	transform: translateY(-160%);
	background: var(--blue);
	color: #fff;
	padding: 12px 18px;
}
.skip-link:focus {
	transform: none;
}
.scroll-progress {
	position: fixed;
	z-index: 101;
	left: 0;
	top: 0;
	width: 100%;
	height: 3px;
	pointer-events: none;
}
.scroll-progress span {
	display: block;
	height: 100%;
	background: var(--brass);
	transform: scaleX(0);
	transform-origin: left;
}
.preview-bar {
	height: 30px;
	background: var(--blue-dark);
	color: #e6e8e5;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 0 15px;
	font: 400 11px/1 var(--font-body);
	letter-spacing: 0.11em;
	text-transform: uppercase;
	text-align: center;
}
.preview-mark {
	width: 5px;
	height: 5px;
	transform: rotate(45deg);
	background: var(--brass);
	flex: none;
}
.preview-separator {
	opacity: 0.5;
}
.site-header {
	height: 94px;
	padding: 0 var(--gutter);
	display: flex;
	align-items: center;
	gap: clamp(20px, 3vw, 48px);
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	position: sticky;
	top: 0;
	z-index: 80;
	transition:
		box-shadow 0.35s ease,
		background 0.35s ease;
}
.site-header.is-sticky {
	box-shadow: 0 12px 40px rgba(19, 39, 47, 0.07);
}
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: none;
	min-width: 220px;
}
.brand img {
	height: 60px;
	width: 60px;
	object-fit: contain;
}
.brand span {
	display: flex;
	flex-direction: column;
	line-height: 1;
}
.brand strong {
	font: 400 36px/0.88 var(--font-display);
	letter-spacing: -0.045em;
	color: var(--blue);
}
.brand small {
	font: 400 9px/1.2 var(--font-label);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-top: 6px;
	color: var(--brass);
}
.desktop-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(20px, 2.3vw, 38px);
	flex: 1;
}
.desktop-nav a,
.text-action {
	font: 500 12px/1 var(--font-body);
	letter-spacing: 0.04em;
	position: relative;
	white-space: nowrap;
}
.desktop-nav a::after,
.text-action::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	right: 100%;
	height: 1px;
	background: var(--brass);
	transition: right 0.45s var(--ease);
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.text-action:hover::after,
.text-action:focus-visible::after {
	right: 0;
}
.header-actions {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.2vw, 34px);
	flex: none;
}
.button {
	min-height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 34px;
	padding: 13px 24px;
	font: 500 11px/1.2 var(--font-label);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border: 1px solid transparent;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	transition:
		color 0.38s ease,
		border-color 0.38s ease,
		transform 0.55s var(--ease),
		box-shadow 0.55s var(--ease);
}
.button::before {
	content: '';
	position: absolute;
	z-index: -1;
	inset: 0;
	background: var(--brass);
	transform: translateY(101%);
	transition: transform 0.58s var(--ease);
}
.button:hover::before,
.button:focus-visible::before {
	transform: translateY(0);
}
.button:hover {
	transform: translateY(-3px);
	box-shadow: 0 11px 25px rgba(9, 38, 49, 0.16);
}
.button span {
	font: 400 20px/0.5 var(--font-display);
	transition: transform 0.45s var(--ease);
}
.button:hover span {
	transform: translate(3px, -3px);
}
.button-blue {
	background: var(--blue);
	color: #fff;
}
.button-cream {
	background: var(--paper);
	color: var(--blue-dark);
}
.button-cream::before {
	background: #e0c497;
}
.menu-toggle,
.mobile-nav {
	display: none;
}
.hero {
	height: min(780px, calc(100svh - 124px));
	min-height: 600px;
	position: relative;
	overflow: hidden;
	background: #17272b;
	color: #fff;
}
.hero-media,
.hero-shade {
	position: absolute;
	inset: 0;
}
.hero-media {
	overflow: hidden;
}
.hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 48%;
	transform: scale(1.075);
	animation: hero-settle 2.2s var(--ease) both;
}
.hero-shade {
	background:
		linear-gradient(
			90deg,
			rgba(8, 20, 23, 0.88) 0%,
			rgba(11, 24, 26, 0.74) 31%,
			rgba(12, 25, 27, 0.27) 70%,
			rgba(8, 18, 20, 0.17) 100%
		),
		linear-gradient(
			0deg,
			rgba(9, 22, 24, 0.56),
			transparent 22%,
			transparent 78%,
			rgba(9, 22, 24, 0.14)
		);
	pointer-events: none;
}
.hero-content {
	position: absolute;
	left: var(--gutter);
	top: 50%;
	transform: translateY(-50%);
	max-width: 800px;
	padding: 0 20px 15px 0;
}
.eyebrow {
	margin: 0;
	font: 400 12px/1.3 var(--font-label);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--brass);
}
.hero-eyebrow {
	color: #f0e2c6;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
}
.eyebrow-rule {
	display: inline-block;
	width: 35px;
	height: 1px;
	background: var(--brass);
}
.eyebrow-dot {
	color: var(--brass);
}
.hero h1 {
	font: 300 clamp(78px, 10vw, 154px) / 0.88 var(--font-display);
	letter-spacing: -0.055em;
	margin: 44px 0 20px;
	text-wrap: balance;
}
.hero h1 em,
.display-title em,
.section-title em {
	font-weight: 300;
	color: var(--brass);
}
.hero h1 em {
	color: #e3bf86;
}
.hero-description {
	max-width: 390px;
	color: #f2f0eb;
	font-size: 17px;
	line-height: 1.65;
	margin: 0 0 32px;
}
.hero-links {
	display: flex;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
}
.hero-link {
	font: 500 11px/1 var(--font-label);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255, 255, 255, 0.66);
	padding-bottom: 8px;
	display: flex;
	gap: 30px;
	transition: border-color 0.3s ease;
}
.hero-link:hover {
	border-color: var(--brass);
}
.hero-bottom {
	position: absolute;
	left: var(--gutter);
	right: var(--gutter);
	bottom: 30px;
	display: flex;
	align-items: center;
	gap: 24px;
	font: 400 11px/1 var(--font-label);
	text-transform: uppercase;
	letter-spacing: 0.14em;
}
.hero-bottom-line {
	height: 1px;
	flex: 1;
	background: var(--line-light);
}
.video-toggle {
	border: 0;
	background: transparent;
	color: #fff;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 8px 0;
	font: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
}
.video-toggle svg {
	height: 18px;
	width: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	transition: transform 0.35s var(--ease);
}
.video-toggle:hover svg {
	transform: scale(1.2);
}
.video-toggle .icon-play {
	display: none;
}
.video-toggle.is-paused .icon-pause {
	display: none;
}
.video-toggle.is-paused .icon-play {
	display: block;
}
.intro-line {
	animation: rise-in 0.6s 0.04s var(--ease) both;
}
.intro-title {
	animation: rise-in 0.75s 0.1s var(--ease) both;
}
.intro-description {
	animation: rise-in 0.75s 0.18s var(--ease) both;
}
.intro-actions {
	animation: rise-in 0.75s 0.26s var(--ease) both;
}
@keyframes rise-in {
	from {
		opacity: 0;
		transform: translateY(32px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes hero-settle {
	from {
		opacity: 0.55;
		transform: scale(1.14);
	}
	to {
		opacity: 1;
		transform: scale(1.075);
	}
}
.section-wrap {
	padding-left: var(--gutter);
	padding-right: var(--gutter);
}
.intro-section {
	padding-top: clamp(92px, 11vw, 170px);
	padding-bottom: clamp(85px, 9vw, 140px);
}
.intro-kicker {
	display: flex;
	gap: 18px;
	align-items: center;
	color: var(--blue);
	font: 400 12px/1 var(--font-label);
	letter-spacing: 0.19em;
	text-transform: uppercase;
	margin-bottom: 36px;
}
.mini-motif {
	position: relative;
	width: 20px;
	height: 20px;
	display: inline-block;
	border: 1px solid var(--brass);
	transform: rotate(45deg);
	flex: none;
}
.mini-motif::after {
	content: '';
	position: absolute;
	inset: 5px;
	border: 1px solid var(--brass);
}
.intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.5fr);
	gap: clamp(60px, 8vw, 160px);
	align-items: end;
}
.display-title {
	font: 300 clamp(62px, 7.5vw, 118px) / 0.95 var(--font-display);
	letter-spacing: -0.048em;
	margin: 0;
	text-wrap: balance;
}
.intro-aside {
	padding-bottom: 8px;
}
.intro-aside p {
	font-size: clamp(16px, 1.3vw, 19px);
	line-height: 1.75;
	margin: 0 0 28px;
	color: #46545b;
}
.inline-link {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 34px;
	padding: 0 0 8px;
	border-bottom: 1px solid currentColor;
	font: 500 11px/1.2 var(--font-label);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--blue);
	transition: color 0.3s ease;
}
.inline-link:hover {
	color: var(--brass);
}
.inline-link span {
	font: 400 19px/1 var(--font-display);
}
.intro-divider {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-top: clamp(80px, 9vw, 135px);
}
.intro-divider > span {
	height: 1px;
	flex: 1;
	background: var(--line);
}
.intro-divider .mini-motif {
	width: 11px;
	height: 11px;
}
.intro-divider .mini-motif::after {
	inset: 3px;
}
.signature-section {
	padding-bottom: clamp(115px, 13vw, 210px);
}
.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 46px;
}
.section-heading .eyebrow {
	margin-bottom: 18px;
}
.section-title {
	font: 300 clamp(51px, 5.8vw, 85px) / 1.02 var(--font-display);
	letter-spacing: -0.045em;
	margin: 0;
}
.signature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 2.5vw, 42px);
}
.signature-card:nth-child(2) {
	padding-top: 62px;
}
.signature-card:nth-child(3) {
	padding-top: 124px;
}
.image-frame {
	position: relative;
	overflow: hidden;
	aspect-ratio: 0.85;
	background: #d8d7cd;
}
.image-frame img,
.story-image img,
.fire-images img,
.gallery-tile img,
.visit-photo img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: transform 0.8s var(--ease);
}
.signature-card:hover img,
.gallery-tile:hover img {
	transform: scale(1.065);
}
.signature-card:nth-child(1) img {
	object-position: 54% 55%;
}
.signature-card:nth-child(2) img {
	object-position: 50% 46%;
}
.signature-card:nth-child(3) img {
	object-position: 50% 45%;
}
.card-caption {
	padding-top: 20px;
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 10px;
	border-bottom: 1px solid var(--line);
	padding-bottom: 18px;
}
.card-caption .eyebrow {
	font-size: 10px;
	color: var(--muted);
}
.card-caption h3 {
	font: 400 clamp(25px, 2.3vw, 36px) / 1.1 var(--font-display);
	letter-spacing: -0.025em;
	margin: 8px 0 0;
}
.card-arrow {
	display: grid;
	place-items: center;
	font: 400 26px/1 var(--font-display);
	color: var(--blue);
	transition: transform 0.45s var(--ease);
}
.signature-card:hover .card-arrow {
	transform: translate(4px, -4px);
}
.photo-note {
	font-size: 12px;
	letter-spacing: 0.06em;
	color: var(--muted);
	margin: 28px 0 0;
}
.story-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 760px;
	background: var(--blue-dark);
	color: #fff;
}
.story-image {
	position: relative;
	min-height: 650px;
	overflow: hidden;
}
.story-image img {
	object-position: 50% 30%;
}
.story-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(10, 21, 25, 0.5), transparent 45%);
}
.image-label {
	position: absolute;
	z-index: 1;
	left: clamp(25px, 5vw, 80px);
	bottom: 35px;
	right: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.6);
	padding-top: 16px;
	display: flex;
	justify-content: space-between;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font: 400 11px/1 var(--font-label);
}
.image-label span {
	font: 400 22px/1 var(--font-display);
}
.story-copy {
	padding: clamp(80px, 9vw, 150px) clamp(40px, 7vw, 135px) 70px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 70px;
	position: relative;
	overflow: hidden;
}
.story-copy-inner {
	position: relative;
	z-index: 1;
}
.story-copy .eyebrow {
	color: #d6ab6f;
	margin-bottom: 30px;
}
.story-copy .display-title {
	font-size: clamp(58px, 5.8vw, 95px);
	max-width: 650px;
}
.story-copy .display-title em {
	color: #dbad6c;
}
.story-copy p:not(.eyebrow) {
	font-size: 17px;
	line-height: 1.8;
	max-width: 520px;
	color: #e4e6e0;
	margin: 30px 0;
}
.story-copy .inline-link {
	color: #f0e6d2;
}
.story-motif {
	display: flex;
	gap: 10px;
	align-self: flex-end;
	opacity: 0.38;
	transform: rotate(45deg);
}
.story-motif span {
	height: 26px;
	width: 26px;
	border: 1px solid var(--brass);
	position: relative;
}
.story-motif span::after {
	content: '';
	position: absolute;
	inset: 7px;
	border: 1px solid var(--brass);
}
.fire-section {
	padding-top: clamp(115px, 13vw, 200px);
	padding-bottom: clamp(115px, 13vw, 200px);
	display: grid;
	grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(50px, 7vw, 115px);
	align-items: center;
}
.fire-heading {
	align-self: start;
	position: sticky;
	top: 130px;
}
.fire-heading .eyebrow {
	margin-bottom: 26px;
}
.fire-heading .display-title {
	font-size: clamp(65px, 6.7vw, 106px);
}
.fire-heading p:not(.eyebrow) {
	font-size: 17px;
	line-height: 1.75;
	max-width: 340px;
	color: #566268;
	margin-top: 28px;
}
.fire-images {
	display: grid;
	grid-template-columns: 1fr 0.6fr;
	align-items: end;
	gap: clamp(14px, 2vw, 30px);
}
.fire-images figure {
	margin: 0;
	overflow: hidden;
}
.fire-primary {
	height: clamp(480px, 51vw, 740px);
}
.fire-secondary {
	height: clamp(320px, 34vw, 500px);
	transform: translateY(75px);
}
.fire-images img {
	height: 100%;
}
.fire-primary img {
	object-position: 50% 50%;
}
.fire-secondary img {
	object-position: 50% 50%;
}
.fire-images figcaption {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 26px;
	color: #fff;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
	font: 400 11px/1 var(--font-label);
	letter-spacing: 0.17em;
	text-transform: uppercase;
}
.fire-images figure {
	position: relative;
}
.fire-images figure:hover img {
	transform: scale(1.055);
}
.gallery-section {
	background: #ebe8de;
	padding: clamp(110px, 11vw, 175px) 0;
}
.gallery-section .section-heading {
	margin-bottom: 50px;
}
.gallery-section .section-heading > p {
	max-width: 250px;
	color: var(--muted);
	margin-bottom: 5px;
}
.gallery-grid {
	display: grid;
	grid-template-columns: 1.3fr 0.85fr 0.85fr;
	gap: 18px;
	height: clamp(460px, 43vw, 660px);
}
.gallery-tile {
	border: 0;
	padding: 0;
	position: relative;
	overflow: hidden;
	text-align: left;
	color: #fff;
	background: #596267;
}
.gallery-tile img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.gallery-tile:nth-child(2) img {
	object-position: 50% 30%;
}
.gallery-tile:nth-child(3) img {
	object-position: 50% 50%;
}
.gallery-tile::after {
	content: '';
	position: absolute;
	inset: 40% 0 0;
	background: linear-gradient(transparent, rgba(3, 18, 22, 0.68));
	pointer-events: none;
}
.gallery-tile > span {
	position: absolute;
	z-index: 1;
	bottom: 23px;
	left: 23px;
	right: 23px;
	display: flex;
	justify-content: space-between;
	border-top: 1px solid rgba(255, 255, 255, 0.7);
	padding-top: 15px;
	font: 400 11px/1 var(--font-label);
	letter-spacing: 0.15em;
	text-transform: uppercase;
}
.gallery-tile > span > span {
	font: 400 22px/1 var(--font-display);
}
.visit-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: var(--blue-dark);
	color: #fff;
	min-height: 730px;
}
.visit-photo {
	position: relative;
	overflow: hidden;
	min-height: 650px;
}
.visit-photo img {
	position: absolute;
	inset: 0;
	object-position: 50% 47%;
}
.visit-panel {
	display: flex;
	align-items: center;
	padding: 90px clamp(40px, 7vw, 140px);
}
.visit-panel .eyebrow {
	color: #d4ab6e;
	margin-bottom: 26px;
}
.visit-panel .display-title {
	font-size: clamp(61px, 6vw, 96px);
}
.visit-panel .display-title em {
	color: #dbad6c;
}
.visit-panel p:not(.eyebrow) {
	font-size: 18px;
	line-height: 1.7;
	color: #e1e8e8;
	margin: 34px 0 8px;
}
.phone-link {
	font-size: 18px;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.45);
	text-underline-offset: 5px;
}
.phone-link:hover {
	text-decoration-color: var(--brass);
}
.visit-actions {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	margin-top: 42px;
}
.visit-actions .inline-link {
	color: var(--paper);
}
.visit-actions .inline-link:hover {
	color: #dbad6c;
}
.visit-actions > span {
	font-size: 12px;
	color: #c4d1d1;
	max-width: 155px;
	line-height: 1.5;
}
.site-footer {
	padding: 80px var(--gutter) 25px;
	background: #16262b;
	color: #e8ece8;
}
.footer-top {
	display: grid;
	grid-template-columns: 1.2fr 0.6fr 0.9fr;
	gap: 45px;
	padding-bottom: 85px;
}
.footer-brand {
	font: 300 clamp(72px, 8vw, 135px) / 0.85 var(--font-display);
	letter-spacing: -0.06em;
	color: #f2eee4;
}
.footer-top p {
	font-size: 13px;
	line-height: 1.7;
	color: #aebcbc;
	margin: 22px 0 0;
}
.footer-top nav {
	display: flex;
	flex-direction: column;
	gap: 13px;
	font: 400 12px/1.4 var(--font-label);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding-top: 8px;
}
.footer-top nav a,
.footer-contact a {
	width: fit-content;
	transition: color 0.3s ease;
}
.footer-top nav a:hover,
.footer-contact a:hover {
	color: var(--brass);
}
.footer-contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 13px;
}
.footer-contact span {
	color: var(--brass);
	font: 400 11px/1 var(--font-label);
	text-transform: uppercase;
	letter-spacing: 0.16em;
}
.footer-contact a:nth-child(2) {
	font: 300 31px/1.15 var(--font-display);
}
.footer-contact a:nth-child(3) {
	font-size: 13px;
	color: #c6d2d1;
}
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	gap: 15px;
	color: #a6b4b6;
	font-size: 11px;
	letter-spacing: 0.05em;
}
.gallery-dialog {
	max-width: min(90vw, 1000px);
	max-height: 90vh;
	border: 0;
	padding: 15px;
	background: var(--paper);
	color: var(--ink);
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}
.gallery-dialog::backdrop {
	background: rgba(5, 17, 21, 0.82);
}
.gallery-dialog img {
	max-height: calc(90vh - 85px);
	max-width: 100%;
	margin: auto;
	object-fit: contain;
}
.gallery-dialog p {
	font: 400 12px/1 var(--font-label);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin: 15px 0 0;
}
.dialog-close {
	position: absolute;
	z-index: 2;
	right: 14px;
	top: 14px;
	border: 0;
	background: var(--paper);
	color: var(--blue-dark);
	height: 40px;
	width: 40px;
	font: 300 31px/1 var(--font-display);
}
.motion-ready .reveal {
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.6s var(--ease),
		transform 0.6s var(--ease);
}
.motion-ready .reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.motion-ready .signature-card:nth-child(2) {
	transition-delay: 0.12s;
}
.motion-ready .signature-card:nth-child(3) {
	transition-delay: 0.24s;
}
.motion-ready .gallery-tile:nth-child(2) {
	transition-delay: 0.09s;
}
.motion-ready .gallery-tile:nth-child(3) {
	transition-delay: 0.18s;
}
@media (max-width: 1180px) {
	.brand {
		min-width: 170px;
	}
	.desktop-nav {
		gap: 18px;
	}
	.header-actions {
		gap: 18px;
	}
	.header-actions .text-action {
		display: none;
	}
	.signature-card:nth-child(2) {
		padding-top: 38px;
	}
	.signature-card:nth-child(3) {
		padding-top: 76px;
	}
	.story-copy {
		padding-left: 60px;
		padding-right: 55px;
	}
	.story-section,
	.visit-section {
		min-height: 660px;
	}
}
@media (max-width: 850px) {
	.site-header {
		height: 78px;
	}
	.desktop-nav,
	.header-actions {
		display: none;
	}
	.brand {
		min-width: 0;
	}
	.brand img {
		width: 52px;
		height: 52px;
	}
	.brand strong {
		font-size: 32px;
	}
	.menu-toggle {
		display: flex;
		margin-left: auto;
		width: 46px;
		height: 46px;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 7px;
		border: 1px solid var(--line);
		background: transparent;
		color: var(--ink);
	}
	.menu-toggle span {
		width: 22px;
		height: 1px;
		background: currentColor;
		transition: transform 0.35s var(--ease);
	}
	.menu-toggle[aria-expanded='true'] span:first-child {
		transform: translateY(4px) rotate(45deg);
	}
	.menu-toggle[aria-expanded='true'] span:last-child {
		transform: translateY(-4px) rotate(-45deg);
	}
	.mobile-nav a {
		font: 300 clamp(42px, 9vw, 66px) / 1.4 var(--font-display);
		border-bottom: 1px solid var(--line);
		display: flex;
		justify-content: space-between;
	}
	.mobile-nav a span {
		font-size: 30px;
		color: var(--brass);
	}
	.mobile-nav p {
		font-size: 12px;
		color: var(--muted);
		margin-top: 30px;
	}
	.hero {
		height: 720px;
		min-height: 600px;
	}
	.hero-content {
		max-width: 690px;
	}
	.hero h1 {
		font-size: clamp(77px, 12vw, 116px);
	}
	.intro-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.intro-aside {
		max-width: 600px;
		margin-left: auto;
	}
	.signature-grid {
		gap: 16px;
	}
	.signature-card:nth-child(2) {
		padding-top: 25px;
	}
	.signature-card:nth-child(3) {
		padding-top: 50px;
	}
	.story-section,
	.visit-section {
		grid-template-columns: 1fr;
	}
	.story-image {
		min-height: 580px;
		height: 70vw;
	}
	.story-copy {
		min-height: 570px;
		padding: 85px var(--gutter) 50px;
	}
	.story-copy .display-title {
		max-width: 700px;
	}
	.fire-section {
		grid-template-columns: 1fr;
	}
	.fire-heading {
		position: static;
		max-width: 650px;
	}
	.fire-images {
		margin-left: 12vw;
	}
	.visit-photo {
		height: 70vw;
		min-height: 580px;
	}
	.visit-panel {
		padding: 85px var(--gutter);
		min-height: 570px;
	}
	.gallery-grid {
		height: 500px;
	}
	.footer-top {
		grid-template-columns: 1fr 1fr;
	}
	.footer-top > div:first-child {
		grid-column: 1/-1;
	}
	.footer-brand {
		font-size: 100px;
	}
}
@media (max-width: 620px) {
	:root {
		--gutter: 23px;
	}
	.preview-bar {
		font-size: 9px;
		height: 32px;
		letter-spacing: 0.04em;
	}
	.preview-separator {
		display: none;
	}
	.site-header {
		height: 72px;
	}
	.brand {
		gap: 7px;
	}
	.brand img,
	.is-sticky .brand img {
		height: 42px;
		width: 42px;
	}
	.brand strong {
		font-size: 29px;
	}
	.brand small {
		font-size: 7px;
	}
	.hero {
		height: calc(100svh - 104px);
		min-height: 620px;
		max-height: 850px;
	}
	.hero-video {
		object-position: 57% 50%;
		transform: scale(1.12);
	}
	.hero-shade {
		background:
			linear-gradient(90deg, rgba(7, 19, 22, 0.78), rgba(7, 19, 22, 0.38)),
			linear-gradient(
				0deg,
				rgba(7, 18, 20, 0.7),
				transparent 25%,
				transparent 70%,
				rgba(7, 18, 20, 0.1)
			);
	}
	.hero-content {
		left: var(--gutter);
		right: var(--gutter);
		top: 47%;
		padding-right: 0;
	}
	.hero-eyebrow {
		font-size: 10px;
		line-height: 1.5;
		flex-wrap: wrap;
		gap: 5px;
	}
	.eyebrow-rule {
		width: 21px;
		margin-right: 4px;
	}
	.hero h1 {
		font-size: clamp(70px, 17vw, 112px);
		line-height: 0.86;
		margin: 28px 0 25px;
	}
	.hero-description {
		font-size: 15px;
		max-width: 310px;
	}
	.hero-links {
		gap: 22px;
	}
	.button {
		min-height: 48px;
		padding: 12px 17px;
		gap: 22px;
	}
	.hero-bottom {
		bottom: 22px;
		gap: 10px;
		font-size: 9px;
	}
	.hero-bottom > span:first-child {
		display: none;
	}
	.hero-bottom-line {
		display: block;
	}
	.intro-section {
		padding-top: 96px;
		padding-bottom: 88px;
	}
	.intro-kicker {
		margin-bottom: 35px;
	}
	.display-title {
		font-size: clamp(60px, 13vw, 84px);
	}
	.intro-aside {
		margin-left: 0;
	}
	.intro-aside p {
		font-size: 16px;
	}
	.intro-divider {
		margin-top: 75px;
	}
	.section-heading {
		align-items: start;
		flex-direction: column;
		gap: 22px;
		margin-bottom: 35px;
	}
	.section-title {
		font-size: clamp(49px, 10vw, 71px);
	}
	.signature-section {
		padding-bottom: 120px;
	}
	.signature-grid {
		display: flex;
		flex-direction: column;
		gap: 55px;
	}
	.signature-card:nth-child(2),
	.signature-card:nth-child(3) {
		padding-top: 0;
	}
	.image-frame {
		aspect-ratio: 1.08;
	}
	.card-caption {
		padding-top: 17px;
	}
	.card-caption h3 {
		font-size: 31px;
	}
	.photo-note {
		margin-top: 40px;
	}
	.story-image {
		height: 85vw;
		min-height: 420px;
	}
	.story-copy {
		padding: 90px var(--gutter) 45px;
		min-height: 650px;
	}
	.story-copy .display-title {
		font-size: clamp(65px, 12vw, 88px);
	}
	.story-copy p:not(.eyebrow) {
		font-size: 16px;
	}
	.fire-section {
		padding-top: 110px;
		padding-bottom: 150px;
		gap: 40px;
	}
	.fire-heading .display-title {
		font-size: clamp(70px, 14vw, 95px);
	}
	.fire-images {
		margin-left: 0;
		grid-template-columns: 1fr 0.58fr;
		gap: 10px;
	}
	.fire-primary {
		height: 500px;
	}
	.fire-secondary {
		height: 310px;
		transform: translateY(60px);
	}
	.fire-images figcaption {
		padding: 15px;
		font-size: 9px;
	}
	.gallery-section {
		padding: 105px 0;
	}
	.gallery-section .section-heading > p {
		margin: 0;
	}
	.gallery-grid {
		grid-template-columns: 1fr 1fr;
		height: auto;
		gap: 11px;
	}
	.gallery-tile {
		height: 240px;
	}
	.gallery-tile:first-child {
		grid-column: 1/-1;
		height: 370px;
	}
	.gallery-tile > span {
		left: 13px;
		right: 13px;
		bottom: 13px;
		font-size: 9px;
	}
	.visit-photo {
		min-height: 450px;
		height: 110vw;
	}
	.visit-panel {
		padding: 90px var(--gutter);
		min-height: 600px;
	}
	.visit-panel .display-title {
		font-size: clamp(64px, 12vw, 90px);
	}
	.visit-actions {
		align-items: start;
		flex-direction: column;
	}
	.visit-actions > span {
		max-width: none;
	}
	.site-footer {
		padding-top: 75px;
	}
	.footer-top {
		display: flex;
		flex-direction: column;
		gap: 42px;
		padding-bottom: 65px;
	}
	.footer-brand {
		font-size: 87px;
	}
	.footer-top p {
		margin-top: 11px;
	}
	.footer-bottom {
		flex-direction: column;
		font-size: 10px;
	}
}
@media (max-width: 380px) {
	.hero h1 {
		font-size: 67px;
	}
	.hero-links {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
	}
	.hero-bottom {
		font-size: 8px;
	}
	.display-title {
		font-size: 58px;
	}
	.gallery-tile {
		height: 190px;
	}
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-delay: 0s !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
	.motion-ready .reveal {
		opacity: 1 !important;
		transform: none !important;
	}
	.motion-ready .image-reveal {
		clip-path: none !important;
	}
}
.brand .brand-mark {
	display: block;
	position: relative;
	width: 51px;
	height: 54px;
	overflow: hidden;
	flex: none;
	line-height: normal;
}
.brand .brand-mark img {
	position: absolute;
	max-width: none;
	width: 110px;
	height: 90px;
	left: -29px;
	top: 0;
	object-fit: contain;
	transition: transform 0.45s var(--ease);
}
.brand .brand-copy {
	display: flex;
	flex-direction: column;
	line-height: 1;
}
@media (max-width: 620px) {
	.brand .brand-mark,
	.is-sticky .brand .brand-mark {
		width: 42px;
		height: 43px;
	}
	.brand .brand-mark img,
	.is-sticky .brand .brand-mark img {
		width: 88px;
		height: 72px;
		left: -23px;
		top: 0;
	}
}
@media (prefers-reduced-motion: no-preference) {
	@view-transition {
		navigation: auto;
	}
	::view-transition-old(root) {
		animation: 0.24s ease-in both page-out;
	}
	::view-transition-new(root) {
		animation: 0.42s var(--ease) both page-in;
	}
}
@keyframes page-out {
	to {
		opacity: 0;
		transform: none;
	}
}
@keyframes page-in {
	from {
		opacity: 0;
		transform: none;
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Corners: architectural photographs; slightly softened touch surfaces. */
:root {
	--radius-control: 4px;
	--radius-photo: 4px;
	--radius-dialog: 10px;
}
.button {
	border-radius: var(--radius-control);
}
.image-frame,
.gallery-tile,
.fire-images figure {
	border-radius: var(--radius-photo);
}
.gallery-dialog,
.dish-dialog {
	border-radius: var(--radius-dialog);
}
.menu-toggle,
.dialog-close {
	border-radius: 6px;
}
.dialog-close {
	width: 44px;
	height: 44px;
	transition:
		background 0.2s ease,
		transform 0.3s var(--ease);
}
.dialog-close:hover {
	background: var(--paper-deep);
	transform: rotate(8deg);
}
.arrow-icon {
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	flex: none;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 0.4s var(--ease);
}
.inline-link:hover .arrow-icon,
.hero-link:hover .arrow-icon {
	transform: translate(2px, -2px);
}
.mobile-nav-shell[hidden] {
	display: none !important;
}
.mobile-nav-shell {
	display: none;
}
.gallery-dialog::backdrop,
.dish-dialog::backdrop {
	opacity: 1;
	transition: opacity 0.22s ease;
}
.gallery-dialog.is-closing::backdrop,
.dish-dialog.is-closing::backdrop {
	opacity: 0;
}
@starting-style {
	.gallery-dialog[open]::backdrop,
	.dish-dialog[open]::backdrop {
		opacity: 0;
	}
}
.anchor-gliding .reveal {
	transition-delay: 0s !important;
}
@media (max-width: 850px) {
	.mobile-nav-shell {
		display: block;
		position: fixed;
		inset: var(--menu-top, 108px) 0 0;
		z-index: 75;
		overflow: hidden;
		pointer-events: none;
		isolation: isolate;
	}
	.mobile-nav {
		display: flex;
		position: absolute;
		inset: 0;
		flex-direction: column;
		background: var(--paper);
		padding: 28px var(--gutter) max(30px, env(safe-area-inset-bottom));
		overflow-y: auto;
		overscroll-behavior: contain;
		pointer-events: auto;
		opacity: 0;
		transform: translateY(-100%);
	}
	.mobile-nav a {
		flex: none;
		min-height: 64px;
		align-items: center;
	}
	.mobile-nav .arrow-icon {
		width: 25px;
		height: 25px;
		color: var(--brass);
	}
	.mobile-nav p {
		max-width: 300px;
		margin-top: auto;
		padding-top: 32px;
	}
	.motion-ready .signature-card,
	.motion-ready .gallery-tile {
		transition-delay: 0s;
	}
}
@media (prefers-reduced-motion: reduce) {
	.gallery-dialog::backdrop,
	.dish-dialog::backdrop {
		transition: opacity 0.12s ease !important;
	}
	.hero-video {
		animation: none;
		transform: scale(1.075);
	}
}
@media (hover: none) {
	.button:hover {
		transform: none;
		box-shadow: none;
	}
	.signature-card:hover img,
	.gallery-tile:hover img,
	.fire-images figure:hover img {
		transform: none;
	}
}

/* Keep Gallery photographs and their heading together on laptop displays. */
@media (min-width: 851px) {
	.gallery-grid {
		height: clamp(340px, min(43vw, calc(100svh - 350px)), 660px);
	}
}
