:root {
	--color-ink: #121212;
	--color-muted: #5f6168;
	--color-line: #e7e0dc;
	--color-surface: #fffaf6;
	--color-panel: #ffffff;
	--color-night: #17141c;
	--color-coral: #e6533f;
	--color-gold: #f0b84b;
	--color-teal: #127c76;
	--shadow: 0 20px 50px rgba(18, 18, 18, 0.12);
	--radius: 8px;
	--content: 1160px;
	--gutter: 1rem;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--color-surface);
	color: var(--color-ink);
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	overflow-x: hidden;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

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

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.2em;
}

h1,
h2,
h3 {
	margin: 0 0 0.55em;
	line-height: 1.05;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

h1 {
	max-width: 780px;
	font-size: 5rem;
}

h2 {
	font-size: 3.25rem;
}

h3 {
	font-size: 1.25rem;
}

p {
	margin: 0 0 1rem;
	overflow-wrap: break-word;
}

table,
pre {
	display: block;
	max-width: 100%;
	overflow-x: auto;
}

iframe,
embed,
object {
	max-width: 100%;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	top: 1rem;
	left: 1rem;
	z-index: 1000;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	background: var(--color-panel);
	clip: auto;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
	background: linear-gradient(180deg, rgba(23, 20, 28, 0.82), rgba(23, 20, 28, 0.08));
	color: #fff;
	transition: background 0.2s ease, box-shadow 0.2s ease, backdrop-filter 0.2s ease;
}

.site-header.is-scrolled,
.nav-open .site-header {
	background: rgba(23, 20, 28, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(100% - (var(--gutter) * 2), var(--content));
	min-height: 72px;
	margin: 0 auto;
	gap: 1rem;
}

.site-branding,
.primary-navigation {
	min-width: 0;
}

.site-title {
	font-weight: 800;
	font-size: 1.1rem;
	text-decoration: none;
	overflow-wrap: anywhere;
}

.custom-logo-link img,
.site-logo img {
	max-width: 64px;
	max-height: 58px;
	background: transparent;
	filter:
		drop-shadow(0 0 1px rgba(255, 255, 255, 0.95))
		drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
	object-fit: contain;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0;
	text-decoration: none;
}

.primary-navigation ul,
.footer-navigation ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.85rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation li {
	position: relative;
}

.primary-navigation a {
	display: block;
	color: rgba(255, 255, 255, 0.86);
	font-weight: 700;
	font-size: 0.84rem;
	text-decoration: none;
	white-space: nowrap;
}

.primary-navigation .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	min-width: 220px;
	padding: 0.5rem;
	background: var(--color-night);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.primary-navigation li:hover > .sub-menu,
.primary-navigation li:focus-within > .sub-menu {
	display: grid;
	gap: 0.15rem;
}

.primary-navigation .sub-menu a {
	padding: 0.55rem 0.65rem;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a {
	color: var(--color-gold);
}

.menu-toggle {
	display: none;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: var(--radius);
	background: transparent;
	color: #fff;
}

.menu-toggle[aria-expanded="true"] {
	background: rgba(255, 255, 255, 0.12);
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span:not(.screen-reader-text) + span:not(.screen-reader-text) {
	margin-top: 5px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(4) {
	transform: translateY(-7px) rotate(-45deg);
}

.hero {
	position: relative;
	display: grid;
	min-height: 680px;
	overflow: hidden;
	background: var(--color-night);
	color: #fff;
}

.site-main > .page-hero:first-child {
	padding-top: 8.5rem;
}

.hero__media {
	position: absolute;
	inset: 0;
	background: var(--color-night);
}

.hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(23, 20, 28, 0.95), rgba(23, 20, 28, 0.62) 45%, rgba(23, 20, 28, 0.24));
}

.hero__video {
	position: absolute;
	display: block;
	object-position: center 45%;
}

.hero__video--backdrop {
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(18px) brightness(0.56) saturate(1.1);
	transform: scale(1.08);
}

.hero__video--main {
	top: 50%;
	left: 50%;
	width: 74%;
	height: 140%;
	max-width: none;
	object-fit: contain;
	transform: translate(-50%, calc(-50% + 5%));
}

.hero__inner {
	position: relative;
	z-index: 1;
	align-self: center;
	width: min(100% - (var(--gutter) * 2), var(--content));
	margin: 0 auto;
	padding: 6rem 0;
}

.hero p:not(.eyebrow) {
	max-width: 620px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.25rem;
}

.eyebrow {
	margin-bottom: 0.8rem;
	color: var(--color-coral);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.8rem 1.2rem;
	border-radius: var(--radius);
	font-weight: 800;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
	transform: translateY(-1px);
}

.button--primary {
	background: var(--color-coral);
	color: #fff;
	box-shadow: 0 12px 26px rgba(230, 83, 63, 0.35);
}

.button--light {
	background: #fff;
	color: var(--color-night);
}

.section {
	position: relative;
	z-index: 0;
	width: min(100% - (var(--gutter) * 2), var(--content));
	margin: 0 auto;
	padding: 6rem 0;
}

.section + .section {
	border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.site-main > .section:nth-of-type(even)::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	z-index: -1;
	width: 100vw;
	background: rgba(255, 255, 255, 0.34);
	transform: translateX(-50%);
}

.page-hero {
	position: relative;
	display: grid;
	min-height: 460px;
	overflow: hidden;
	background: var(--color-night);
	color: #fff;
}

.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(23, 20, 28, 0.94), rgba(23, 20, 28, 0.64), rgba(23, 20, 28, 0.2)),
		url("../images/gallery-01.jpg") center / cover no-repeat;
}

.page-hero--services::before {
	background:
		linear-gradient(90deg, rgba(23, 20, 28, 0.94), rgba(23, 20, 28, 0.64), rgba(23, 20, 28, 0.2)),
		url("../images/wedding-dj-dance-floor-minnesota.jpg") center / cover no-repeat;
}

.page-hero--events::before {
	background:
		linear-gradient(90deg, rgba(23, 20, 28, 0.94), rgba(23, 20, 28, 0.64), rgba(23, 20, 28, 0.2)),
		url("../images/gallery-02.jpg") center / cover no-repeat;
}

.page-hero--booking::before {
	background:
		linear-gradient(90deg, rgba(23, 20, 28, 0.94), rgba(23, 20, 28, 0.64), rgba(23, 20, 28, 0.2)),
		url("../images/gallery-13.jpg") center / cover no-repeat;
}

.page-hero--add-ons::before {
	background:
		linear-gradient(90deg, rgba(23, 20, 28, 0.94), rgba(23, 20, 28, 0.64), rgba(23, 20, 28, 0.2)),
		url("../images/gallery-06.jpg") center / cover no-repeat;
}

.page-hero--testimonials::before {
	background:
		linear-gradient(90deg, rgba(23, 20, 28, 0.94), rgba(23, 20, 28, 0.62), rgba(23, 20, 28, 0.18)),
		url("../images/gallery-09.jpg") center / cover no-repeat;
}

.page-hero--coordinator::before {
	background:
		linear-gradient(90deg, rgba(23, 20, 28, 0.94), rgba(23, 20, 28, 0.64), rgba(23, 20, 28, 0.2)),
		url("../images/wedding-ceremony-audio-minnesota.jpg") center / cover no-repeat;
}

.page-hero__inner {
	position: relative;
	z-index: 1;
	align-self: center;
	width: min(100% - (var(--gutter) * 2), var(--content));
	margin: 0 auto;
	padding: 5rem 0;
}

.page-hero__inner p:not(.eyebrow) {
	max-width: 680px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.18rem;
}

.section__heading {
	max-width: 760px;
	margin-bottom: 2rem;
}

.service-area-section > p {
	max-width: 820px;
	color: var(--color-muted);
	font-weight: 700;
}

.feature-grid,
.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.package-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.feature-card,
.entry-card,
.post-card,
.package-card,
.widget,
.comments-area {
	background: var(--color-panel);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.feature-card {
	padding: 1.5rem;
}

.feature-card h2 {
	font-size: 1.75rem;
}

.feature-card--wide {
	grid-column: 1 / -1;
}

.service-detail-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	align-items: stretch;
}

.narrative-section {
	max-width: 920px;
}

.package-card {
	display: grid;
	align-content: start;
	padding: 1.5rem;
}

.package-card h2 {
	font-size: 2rem;
}

.package-card ul {
	padding-left: 1.2rem;
	margin: 1rem 0 0;
	color: var(--color-muted);
	font-weight: 700;
}

.story-section,
.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
	gap: 2rem;
	align-items: start;
}

.story-copy,
.contact-panel,
.contact-details,
.timeline-list div {
	padding: 1.5rem;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-panel);
	box-shadow: var(--shadow);
}

.about-page .page-hero {
	min-height: 320px;
}

.about-page .page-hero__inner {
	padding: 3rem 0;
}

.about-page .page-hero__inner h1 {
	max-width: 640px;
}

.about-story {
	grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
	padding: 2.75rem 0 2rem;
	gap: 1.25rem;
	align-items: center;
}

.about-story h2 {
	font-size: 2.35rem;
}

.about-story .story-copy {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.about-story .story-copy p:last-child {
	margin-bottom: 0;
}

.about-process {
	padding: 2rem 0 3rem;
	border-top: 1px solid var(--color-line);
}

.about-process .section__heading {
	display: grid;
	grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
	gap: 1.5rem;
	align-items: end;
	max-width: none;
	margin-bottom: 1.5rem;
}

.about-process .section__heading h2 {
	margin-bottom: 0;
	font-size: 2.35rem;
}

.about-photo {
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--color-night);
}

.about-photo img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.process-list {
	display: grid;
	gap: 0;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-panel);
	box-shadow: 0 14px 34px rgba(18, 18, 18, 0.08);
}

.process-list article {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr);
	gap: 1rem;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid var(--color-line);
}

.process-list article:last-child {
	border-bottom: 0;
}

.process-list span {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--color-night);
	color: var(--color-gold);
	font-weight: 800;
	font-size: 0.8rem;
}

.process-list h3 {
	margin-bottom: 0.25rem;
}

.process-list p {
	margin-bottom: 0;
	color: var(--color-muted);
}

.booking-process {
	padding: 3.5rem 0 2rem;
}

.booking-process .section__heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	max-width: none;
	margin-bottom: 1.25rem;
}

.booking-process .section__heading h2 {
	max-width: 700px;
	margin-bottom: 0;
	font-size: 2.45rem;
}

.booking-steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
}

.booking-steps::before {
	content: "";
	position: absolute;
	top: 36px;
	left: 8%;
	right: 8%;
	height: 2px;
	background: var(--color-line);
}

.booking-steps article {
	position: relative;
	z-index: 1;
	display: grid;
	align-content: start;
	min-height: 190px;
	padding: 1.15rem;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-panel);
	box-shadow: 0 14px 34px rgba(18, 18, 18, 0.08);
}

.booking-steps span {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin-bottom: 1rem;
	border-radius: 50%;
	background: var(--color-teal);
	color: #fff;
	font-weight: 800;
	font-size: 0.8rem;
	box-shadow: 0 0 0 8px var(--color-surface);
}

.booking-steps h3 {
	margin-bottom: 0.4rem;
}

.booking-steps p {
	margin-bottom: 0;
	color: var(--color-muted);
}

.contact-layout {
	padding-top: 2rem;
}

.contact-panel h2,
.contact-details h2 {
	font-size: 2.1rem;
}

.contact-details ul {
	display: grid;
	gap: 1rem;
	padding: 0;
	margin: 1.5rem 0 0;
	list-style: none;
}

.contact-details li {
	display: grid;
	gap: 0.2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--color-line);
}

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

.booking-form {
	display: grid;
	gap: 1rem;
}

.booking-form label {
	display: grid;
	gap: 0.35rem;
	font-weight: 800;
}

.notice {
	margin: 1rem 0;
	padding: 0.85rem 1rem;
	border-radius: var(--radius);
	font-weight: 800;
}

.notice--success {
	background: rgba(18, 124, 118, 0.12);
	color: var(--color-teal);
}

.notice--error {
	background: rgba(230, 83, 63, 0.12);
	color: var(--color-coral);
}

.timeline-list {
	display: grid;
	gap: 1rem;
}

.timeline-list strong {
	display: block;
	font-size: 1.3rem;
}

.timeline-list span {
	display: block;
	margin-top: 0.35rem;
	color: var(--color-muted);
}

.feature-card__icon {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin-bottom: 1.25rem;
	border-radius: 50%;
	background: var(--color-night);
	color: var(--color-gold);
	font-weight: 800;
	font-size: 0.8rem;
}

.split-section {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
	gap: 2rem;
	align-items: center;
	border-top: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);
}

.split-section > div:first-child p:not(.eyebrow) {
	color: var(--color-muted);
	font-size: 1.1rem;
}

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

.stats-grid div {
	min-height: 132px;
	padding: 1.25rem;
	border-radius: var(--radius);
	background: #fff;
	border: 1px solid var(--color-line);
}

.stats-grid strong {
	display: block;
	color: var(--color-teal);
	font-size: 2rem;
	line-height: 1;
}

.stats-grid span {
	display: block;
	margin-top: 0.55rem;
	color: var(--color-muted);
	font-weight: 700;
}

.review-summary-section {
	padding-bottom: 2rem;
}

.review-summary-grid,
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.review-source-card,
.testimonial-card {
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-panel);
	box-shadow: 0 14px 34px rgba(18, 18, 18, 0.08);
}

.review-source-card {
	display: grid;
	padding: 1.5rem;
	text-decoration: none;
}

.review-source-card span {
	color: var(--color-coral);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.review-source-card strong {
	margin-top: 0.35rem;
	color: var(--color-teal);
	font-size: 3.5rem;
	line-height: 1;
}

.review-source-card small {
	margin-top: 0.35rem;
	color: var(--color-ink);
	font-weight: 800;
}

.review-source-card p {
	margin: 1rem 0 0;
	color: var(--color-muted);
}

.testimonials-section {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.testimonials-section--google {
	padding-top: 2rem;
}

.testimonial-grid--compact {
	margin-bottom: 1rem;
}

.testimonial-card {
	display: grid;
	gap: 1rem;
	align-content: start;
	padding: 1.5rem;
}

.testimonial-card__meta {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	gap: 0.15rem 0.8rem;
	align-items: center;
}

.testimonial-card__meta span {
	display: inline-grid;
	place-items: center;
	grid-row: span 2;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--color-night);
	color: var(--color-gold);
	font-weight: 800;
}

.testimonial-card__meta strong {
	line-height: 1.2;
}

.testimonial-card__meta small {
	color: var(--color-muted);
	font-weight: 700;
}

.testimonial-card p,
.testimonial-card blockquote {
	margin-bottom: 0;
	color: var(--color-muted);
	font-size: 1.05rem;
}

.testimonial-card blockquote {
	margin: 0;
	color: var(--color-ink);
	font-size: 1.18rem;
	font-weight: 800;
	line-height: 1.45;
}

.testimonial-card__link {
	align-self: end;
	font-weight: 800;
}

.quote-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding-top: 3rem;
	padding-bottom: 3rem;
	border-top: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);
}

.quote-band h2 {
	max-width: 840px;
	font-size: 2.6rem;
}

.quote-band p:not(.eyebrow) {
	max-width: 720px;
	color: var(--color-muted);
}

.home-testimonials {
	padding-top: 0;
}

.photo-section {
	padding-top: 0;
}

.photo-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem;
}

.photo-grid figure {
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius);
	background: #111;
}

.photo-grid__large {
	grid-column: span 2;
	grid-row: span 2;
}

.photo-grid img {
	width: 100%;
	height: 100%;
	min-height: 210px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.photo-grid__large img {
	aspect-ratio: 1 / 1;
}

.photo-grid figure:hover img {
	transform: scale(1.03);
}

.cta-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(100% - (var(--gutter) * 2), var(--content));
	margin: 0 auto;
	padding: 3rem;
	gap: 1.5rem;
	border-radius: var(--radius);
	background: var(--color-night);
	color: #fff;
}

.cta-band h2 {
	margin-bottom: 0;
	font-size: 2.75rem;
}

.cta-band p:not(.eyebrow) {
	max-width: 680px;
	margin: 0.5rem 0 0;
	color: rgba(255, 255, 255, 0.76);
}

.layout-with-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	width: min(100% - (var(--gutter) * 2), var(--content));
	margin: 0 auto;
	padding: 4rem 0;
	gap: 2rem;
}

.content-narrow {
	width: min(100% - (var(--gutter) * 2), 860px);
	margin: 0 auto;
	padding: 4rem 0;
}

.content-list {
	display: grid;
	gap: 1.25rem;
}

.entry-card {
	overflow: hidden;
}

.entry-card__body,
.post-card__body,
.widget,
.comments-area,
.no-results {
	padding: 1.5rem;
}

.entry-card__image img,
.post-card__image img,
.featured-image img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.entry-title a,
.post-card h3 a,
.text-link {
	text-decoration: none;
}

.entry-meta {
	color: var(--color-muted);
	font-size: 0.9rem;
	font-weight: 700;
}

.post-card {
	overflow: hidden;
}

.page-header {
	margin-bottom: 2rem;
}

.entry-content {
	font-size: 1.05rem;
}

.entry-content > * {
	max-width: 760px;
}

.entry-content .alignwide {
	max-width: 100%;
}

.entry-content img,
.entry-content video {
	height: auto;
	max-width: 100%;
}

.wp-block-image,
.wp-block-gallery,
.wp-block-cover,
.wp-block-media-text {
	max-width: 100%;
}

.sidebar {
	display: grid;
	align-content: start;
	gap: 1rem;
}

.widget ul {
	padding-left: 1.2rem;
}

.site-footer {
	margin-top: 4rem;
	background: #0f0e12;
	color: #fff;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	width: min(100% - (var(--gutter) * 2), var(--content));
	margin: 0 auto;
	padding: 3rem 0;
	gap: 2rem;
}

.site-footer p,
.footer-navigation a {
	color: rgba(255, 255, 255, 0.72);
}

.footer-navigation a {
	text-decoration: none;
}

.footer-contact,
.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	margin-top: 0.8rem;
}

.footer-contact a,
.social-links a {
	color: rgba(255, 255, 255, 0.82);
	font-weight: 800;
	text-decoration: none;
}

.footer-navigation ul {
	flex-wrap: wrap;
	justify-content: flex-start;
}

.not-found-page {
	min-height: 50vh;
}

input,
textarea,
select {
	width: 100%;
	max-width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	font: inherit;
}

button,
input[type="submit"] {
	cursor: pointer;
	border: 0;
	border-radius: var(--radius);
	background: var(--color-coral);
	color: #fff;
	font: inherit;
	font-weight: 800;
	padding: 0.85rem 1.2rem;
}

.menu-toggle {
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: transparent;
}

.menu-toggle[aria-expanded="true"] {
	background: rgba(255, 255, 255, 0.12);
}

.mobile-booking-cta {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	left: 1rem;
	z-index: 30;
	display: none;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	border-radius: var(--radius);
	background: var(--color-coral);
	color: #fff;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 14px 34px rgba(18, 18, 18, 0.24);
}

.booking-page .mobile-booking-cta {
	display: none;
}

@media (max-width: 1080px) {
	h1 {
		font-size: 4rem;
	}

	h2 {
		font-size: 2.75rem;
	}

	.primary-navigation ul {
		gap: 0.85rem;
	}

	.photo-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	:root {
		--gutter: 1rem;
	}

	body {
		padding-bottom: 76px;
	}

	.booking-page {
		padding-bottom: 0;
	}

	.site-header__inner {
		min-height: 62px;
	}

	.admin-bar .site-header {
		top: 46px;
	}

	.custom-logo-link img,
	.site-logo img {
		max-width: 56px;
		max-height: 52px;
	}

	.menu-toggle {
		display: grid;
		flex: 0 0 44px;
	}

	.primary-navigation {
		position: absolute;
		top: calc(100% - 0.25rem);
		right: var(--gutter);
		left: var(--gutter);
		display: none;
		padding: 0.7rem;
		background: rgba(23, 20, 28, 0.96);
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: var(--radius);
		box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-navigation ul {
		display: grid;
		gap: 0.18rem;
		width: 100%;
		margin: 0;
		padding: 0;
		overflow: visible;
	}

	.primary-navigation a {
		display: block;
		padding: 0.82rem 0.95rem;
		font-size: 0.85rem;
		white-space: nowrap;
	}

	.primary-navigation .sub-menu {
		position: static;
		display: grid;
		min-width: 0;
		margin-left: 1rem;
		padding: 0;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.hero {
		min-height: 590px;
	}

	.site-main > .page-hero:first-child {
		padding-top: 7.5rem;
	}

	.hero__inner {
		padding: 4.5rem 0;
	}

	h1 {
		font-size: 3.2rem;
	}

	h2,
	.cta-band h2 {
		font-size: 2.35rem;
	}

	.hero p:not(.eyebrow) {
		font-size: 1.1rem;
	}

	.section {
		padding: 4rem 0;
	}

	.mobile-booking-cta {
		display: inline-flex;
	}

	.hero__media {
		background: var(--color-night);
	}

	.hero__media::after {
		background: linear-gradient(180deg, rgba(23, 20, 28, 0.96), rgba(23, 20, 28, 0.72));
	}

	.feature-grid,
	.post-grid,
	.package-grid,
	.review-summary-grid,
	.testimonial-grid,
	.service-detail-grid,
	.split-section,
	.story-section,
	.contact-layout,
	.layout-with-sidebar,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.about-page .page-hero {
		min-height: 300px;
	}

	.about-story {
		padding: 2.25rem 0 1.75rem;
		gap: 1rem;
	}

	.about-story h2 {
		font-size: 2.1rem;
	}

	.about-process {
		padding: 1.75rem 0 3rem;
	}

	.about-process .section__heading {
		grid-template-columns: 1fr;
		gap: 0.25rem;
	}

	.about-process .section__heading h2 {
		font-size: 2.1rem;
	}

	.booking-process {
		padding: 3rem 0 1.5rem;
	}

	.booking-process .section__heading {
		display: grid;
		gap: 0.25rem;
	}

	.booking-process .section__heading h2 {
		font-size: 2.1rem;
	}

	.booking-steps {
		grid-template-columns: 1fr;
	}

	.booking-steps::before {
		display: none;
	}

	.booking-steps article {
		min-height: 0;
	}

	.page-hero {
		min-height: 420px;
	}

	.page-hero::before,
	.page-hero--services::before,
	.page-hero--events::before,
	.page-hero--booking::before,
	.page-hero--testimonials::before {
		background:
			linear-gradient(180deg, rgba(23, 20, 28, 0.94), rgba(23, 20, 28, 0.68)),
			url("../images/gallery-01.jpg") center / cover no-repeat;
	}

	.photo-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.photo-grid__large {
		grid-column: auto;
		grid-row: auto;
	}

	.cta-band {
		display: grid;
		padding: 2rem;
	}

	.quote-band {
		display: grid;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 520px) {
	.site-header__inner {
		gap: 0.75rem;
	}

	h1 {
		font-size: 2.35rem;
	}

	h2,
	.cta-band h2 {
		font-size: 1.9rem;
	}

	.hero {
		min-height: 540px;
	}

	.hero__inner {
		padding: 3.5rem 0;
	}

	.button {
		width: 100%;
		min-height: 50px;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.photo-grid {
		grid-template-columns: 1fr;
	}

	.photo-grid img {
		min-height: 240px;
	}

	.cta-band,
	.feature-card,
	.package-card,
	.story-copy,
	.contact-panel,
	.contact-details,
	.entry-card__body,
	.post-card__body {
		padding: 1.1rem;
	}

	.about-page .page-hero__inner {
		padding: 2.5rem 0;
	}

	.about-story {
		padding-top: 2rem;
	}

	.about-photo img {
		aspect-ratio: 16 / 10;
	}

	.process-list article {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 0.75rem;
		padding: 0.9rem 1rem;
	}

	.process-list span {
		width: 36px;
		height: 36px;
	}

	.booking-process {
		padding-top: 2.25rem;
	}

	.booking-steps article {
		padding: 1rem;
	}

	.booking-steps span {
		width: 38px;
		height: 38px;
		margin-bottom: 0.75rem;
		box-shadow: 0 0 0 6px var(--color-surface);
	}
}

@media (max-width: 360px) {
	.custom-logo-link img,
	.site-logo img {
		max-width: 52px;
		max-height: 48px;
	}

	h1 {
		font-size: 2rem;
	}

	h2,
	.cta-band h2 {
		font-size: 1.65rem;
	}
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 15px;
		line-height: 1.5;
	}

	.site-header__inner {
		min-height: 54px;
	}

	.custom-logo-link img,
	.site-logo img {
		max-width: 46px;
		max-height: 42px;
	}

	.menu-toggle {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

	.hero {
		min-height: 360px;
	}

	.hero__inner {
		align-self: end;
		padding: 4.25rem 0 1.7rem;
	}

	.hero .eyebrow {
		margin-bottom: 0.45rem;
	}

	.hero h1 {
		max-width: 320px;
		margin-bottom: 0.45rem;
		font-size: 1.9rem;
	}

	.hero p:not(.eyebrow) {
		display: -webkit-box;
		max-width: 320px;
		margin-bottom: 0.85rem;
		overflow: hidden;
		font-size: 0.92rem;
		line-height: 1.42;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.page-hero {
		min-height: 270px;
	}

	.site-main > .page-hero:first-child {
		padding-top: 4rem;
	}

	.page-hero__inner,
	.about-page .page-hero__inner {
		align-self: end;
		padding: 2.5rem 0 1.5rem;
	}

	.page-hero__inner h1 {
		margin-bottom: 0.45rem;
		font-size: 1.85rem;
	}

	.page-hero__inner p:not(.eyebrow) {
		display: -webkit-box;
		max-width: 330px;
		overflow: hidden;
		font-size: 0.92rem;
		line-height: 1.45;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.section {
		padding: 1.75rem 0;
	}

	.section__heading {
		margin-bottom: 0.75rem;
	}

	.section__heading h2,
	.split-section h2,
	.service-area-section h2,
	.booking-process .section__heading h2,
	.contact-panel h2,
	.contact-details h2,
	.about-story h2,
	.quote-band h2 {
		font-size: 1.35rem;
		line-height: 1.12;
	}

	.feature-grid,
	.testimonial-grid,
	.review-summary-grid,
	.service-detail-grid,
	.booking-steps,
	.stats-grid {
		gap: 0.5rem;
	}

	.feature-card {
		display: grid;
		grid-template-columns: 32px minmax(0, 1fr);
		gap: 0.1rem 0.65rem;
		align-items: start;
		padding: 0.72rem;
	}

	.feature-card__icon {
		width: 32px;
		height: 32px;
		margin: 0;
		font-size: 0.68rem;
	}

	.feature-card h3,
	.feature-card h2 {
		margin-bottom: 0.15rem;
		font-size: 0.98rem;
		line-height: 1.15;
	}

	.feature-card p {
		grid-column: 2;
		margin-bottom: 0;
		font-size: 0.88rem;
		line-height: 1.42;
	}

	.split-section > div:first-child p:not(.eyebrow),
	.service-area-section > p {
		margin-bottom: 0;
		font-size: 0.9rem;
		line-height: 1.45;
	}

	.stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.stats-grid div {
		min-height: auto;
		padding: 0.72rem;
	}

	.stats-grid strong {
		font-size: 1.45rem;
	}

	.stats-grid span {
		margin-top: 0.35rem;
		font-size: 0.78rem;
		line-height: 1.25;
	}

	.home-testimonials {
		padding-top: 1.75rem;
	}

	.review-source-card,
	.testimonial-card,
	.contact-panel,
	.contact-details,
	.story-copy,
	.package-card,
	.entry-card__body,
	.post-card__body,
	.widget,
	.comments-area {
		padding: 0.85rem;
	}

	.testimonial-card {
		gap: 0.55rem;
	}

	.testimonial-card__meta {
		grid-template-columns: 36px minmax(0, 1fr);
		gap: 0.05rem 0.6rem;
	}

	.testimonial-card__meta span {
		width: 36px;
		height: 36px;
		font-size: 0.76rem;
	}

	.testimonial-card__meta strong,
	.testimonial-card__meta small {
		font-size: 0.86rem;
	}

	.testimonial-card blockquote {
		font-size: 0.9rem;
		line-height: 1.38;
	}

	.review-source-card strong {
		font-size: 2.2rem;
	}

	.review-source-card p {
		margin-top: 0.55rem;
		font-size: 0.9rem;
		line-height: 1.42;
	}

	.photo-section .section__heading {
		margin-bottom: 0.6rem;
	}

	.photo-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.45rem;
	}

	.photo-grid figure:nth-child(n+4) {
		display: none;
	}

	.photo-grid img {
		min-height: 120px;
	}

	.cta-band {
		padding: 1rem;
		gap: 0.85rem;
	}

	.cta-band h2 {
		font-size: 1.35rem;
	}

	.cta-band p:not(.eyebrow) {
		font-size: 0.88rem;
		line-height: 1.42;
	}

	.booking-process {
		padding: 1.55rem 0 0.75rem;
	}

	.booking-steps article {
		display: grid;
		grid-template-columns: 34px minmax(0, 1fr);
		gap: 0.1rem 0.65rem;
		padding: 0.75rem;
	}

	.booking-steps span {
		grid-row: span 2;
		width: 32px;
		height: 32px;
		margin-bottom: 0;
		font-size: 0.68rem;
		box-shadow: none;
	}

	.booking-steps h3 {
		margin-bottom: 0.15rem;
		font-size: 0.98rem;
	}

	.booking-steps p {
		font-size: 0.88rem;
		line-height: 1.42;
	}

	.contact-layout {
		gap: 0.75rem;
		padding-top: 1rem;
	}

	.booking-form,
	.form-grid,
	.contact-details ul {
		gap: 0.65rem;
	}

	.booking-form label {
		gap: 0.2rem;
		font-size: 0.9rem;
	}

	input,
	textarea,
	select {
		padding: 0.65rem 0.75rem;
		font-size: 0.95rem;
	}

	textarea {
		min-height: 116px;
	}

	button,
	input[type="submit"],
	.button {
		min-height: 44px;
		padding: 0.65rem 0.85rem;
		font-size: 0.92rem;
	}

	.about-story {
		padding: 1.25rem 0 1.25rem;
	}

	.about-photo img {
		aspect-ratio: 16 / 8;
	}

	.story-copy p {
		font-size: 0.9rem;
		line-height: 1.45;
	}

	.quote-band,
	.testimonials-section,
	.testimonials-section--google,
	.review-summary-section {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}

	.site-footer {
		margin-top: 2rem;
	}

	.site-footer__inner {
		padding: 1.5rem 0;
		gap: 0.75rem;
	}

	.site-footer h2 {
		font-size: 1.35rem;
	}

	.site-footer p,
	.social-links a {
		font-size: 0.9rem;
	}

	.mobile-booking-cta {
		min-height: 48px;
	}
}

@media (max-width: 390px) {
	.hero {
		min-height: 335px;
	}

	.hero h1 {
		font-size: 1.75rem;
	}

	.hero p:not(.eyebrow) {
		font-size: 0.88rem;
		-webkit-line-clamp: 2;
	}

	.page-hero {
		min-height: 240px;
	}

	.page-hero__inner h1 {
		font-size: 1.65rem;
	}

	.page-hero__inner p:not(.eyebrow) {
		-webkit-line-clamp: 2;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.photo-grid img {
		min-height: 104px;
	}
}
