/**
 * Booked By Design — Main Stylesheet
 *
 * Follows WordPress CSS coding standards and StyleLint rules.
 *
 * @package BookedByDesign
 */

/* ==========================================================================
   Design Tokens
   ========================================================================== */
:root {

	/* Surfaces */
	--cream: #eee2d8;
	--cream-2: #ece1d6;
	--blush: #f1d6cc;
	--blush-warm: #e8b8ad;
	--blush-soft: #f3dfd5;

	/* Ink */
	--ink: #1d1916;
	--ink-soft: #4a3f37;
	--ink-mute: #6a5d52;
	--hairline: rgba(29, 25, 22, 0.55);
	--hairline-2: rgba(29, 25, 22, 0.18);

	/* Accent — burgundy */
	--wine: #973c47;
	--wine-deep: #842f3a;
	--wine-soft: #b86d76;

	/* Typography */
	--serif: "Cormorant Garamond", "Cardo", Georgia, serif;
	--sans: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;

	/* Rhythm */
	--maxw: 1440px;
	--pad-x: clamp(20px, 3.6vw, 72px);
}

/* ==========================================================================
   Reset / Base
   ========================================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--sans);
	color: var(--ink);
	background: var(--cream);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 0;
}

.container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--pad-x);
}

/* ==========================================================================
   Shared Components
   ========================================================================== */

/* Eyebrow label — e.g. "01 / HELLO" */
.eyebrow {
	font-family: var(--sans);
	font-size: 11px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--ink);
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.eyebrow .slash {
	opacity: 0.5;
	font-weight: 400;
}

.eyebrow.with-rule::before {
	content: "";
	width: 32px;
	height: 1px;
	background: var(--ink);
	margin-right: 6px;
}

/* Underlined CTA link — e.g. "EXPLORE OUR WORK →" */
.pill-link {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	font-size: 11px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--ink);
}

.pill-link .label {
	position: relative;
	padding-bottom: 8px;
}

.pill-link .label::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: var(--ink);
}

.pill-link .arrow {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid var(--hairline);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.pill-link:hover .arrow {
	background: var(--ink);
	color: var(--cream);
	transform: translateX(3px);
}

.pill-link .arrow svg {
	width: 15px;
	height: 15px;
}

.pill-link.no-rule .label::after {
	display: none;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 30;
	max-width: calc(var(--maxw) + var(--pad-x) * 2);
	margin: 0 auto;
	padding: 32px var(--pad-x) 0;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: start;
	gap: 28px;
}

.brand {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 21px;
	line-height: 1.05;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ink);
}

.brand small {
	display: block;
	margin-top: 10px;
	font-family: var(--sans);
	font-weight: 500;
	font-size: 10px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.nav-links {
	display: flex;
	gap: 32px;
	justify-content: center;
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
}

.nav-links a {
	font-size: 10.5px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--ink);
	position: relative;
	padding: 6px 0;
	white-space: nowrap;
}

.nav-links a::after {
	content: "";
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: 0;
	height: 1px;
	background: var(--ink);
	transition: left 0.3s ease, right 0.3s ease;
}

.nav-links a:hover::after {
	left: 0;
	right: 0;
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 14px;
	justify-content: flex-end;
	margin-top: 6px;
}

.btn-enquire {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: var(--wine);
	color: #fff;
	border-radius: 999px;
	padding: 12px 18px 12px 24px;
	font-size: 10px;
	letter-spacing: 0.24em;
	font-weight: 600;
	text-transform: uppercase;
	transition: background 0.25s ease;
	white-space: nowrap;
}

.btn-enquire:hover {
	background: var(--wine-deep);
}

.btn-enquire .arrow {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #fff;
	color: var(--wine);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn-enquire .arrow svg {
	width: 10px;
	height: 10px;
}

/* ==========================================================================
   Mobile Navigation
   ========================================================================== */
.hamburger {
	display: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--hairline);
	align-items: center;
	justify-content: center;
	background: transparent;
	cursor: pointer;
	color: var(--ink);
	transition: background 0.3s ease;
	flex-shrink: 0;
}

.hamburger:hover {
	background: rgba(29, 25, 22, 0.06);
}

.hamburger span {
	display: block;
	width: 16px;
	height: 1.5px;
	background: var(--ink);
	position: relative;
	transition: background 0.3s ease;
}

.hamburger span::before,
.hamburger span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 1.5px;
	background: var(--ink);
	transition: transform 0.35s ease, top 0.35s ease;
}

.hamburger span::before {
	top: -5px;
}

.hamburger span::after {
	top: 5px;
}

.hamburger.is-active span {
	background: transparent;
}

.hamburger.is-active span::before {
	top: 0;
	transform: rotate(45deg);
}

.hamburger.is-active span::after {
	top: 0;
	transform: rotate(-45deg);
}

/* Mobile drawer overlay */
.mobile-drawer {
	position: fixed;
	inset: 0;
	z-index: 100;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s 0.4s, opacity 0.4s ease;
}

.mobile-drawer.is-open {
	visibility: visible;
	opacity: 1;
	transition: visibility 0s, opacity 0.4s ease;
}

.mobile-drawer-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(29, 25, 22, 0.35);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}

.mobile-drawer-panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(320px, 85vw);
	height: 100%;
	background: var(--cream);
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow-y: auto;
}

.mobile-drawer.is-open .mobile-drawer-panel {
	transform: translateX(0);
}

.mobile-drawer-close {
	align-self: flex-end;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--hairline);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
	transition: background 0.3s ease;
}

.mobile-drawer-close:hover {
	background: rgba(29, 25, 22, 0.06);
}

.mobile-drawer-close svg {
	width: 14px;
	height: 14px;
}

.mobile-drawer-links {
	list-style: none;
	padding: 0;
	margin: 0 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.mobile-drawer-links a {
	display: block;
	padding: 16px 0;
	font-family: var(--serif);
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.02em;
	color: var(--ink);
	border-bottom: 1px solid var(--hairline-2);
	transition: color 0.2s ease;
}

.mobile-drawer-links li:first-child a {
	border-top: 1px solid var(--hairline-2);
}

.mobile-drawer-links a:hover {
	color: var(--wine);
}

.mobile-drawer-cta {
	margin-top: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	background: var(--wine);
	color: #fff;
	border-radius: 999px;
	padding: 16px 28px;
	font-size: 11px;
	letter-spacing: 0.26em;
	font-weight: 500;
	text-transform: uppercase;
	text-align: center;
	transition: background 0.25s ease;
}

.mobile-drawer-cta:hover {
	background: var(--wine-deep);
}

.mobile-drawer-cta svg {
	width: 12px;
	height: 12px;
}

@media (min-width: 721px) {

	.hamburger {
		display: none !important;
	}

	.mobile-drawer {
		display: none !important;
	}
}

@media (max-width: 720px) {

	.hamburger {
		display: inline-flex;
	}

	.btn-enquire {
		display: none;
	}
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	position: relative;
	min-height: 100vh;
	padding: 0;
	overflow: hidden;
	isolation: isolate;
	background: var(--cream-2);
}

.hero > .hero-shelf {
	display: none;
}

.hero-img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -2;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(
			to right,
			var(--cream-2) 0%,
			var(--cream-2) 22%,
			rgba(236, 225, 214, 0.82) 30%,
			rgba(236, 225, 214, 0.45) 38%,
			rgba(236, 225, 214, 0.12) 46%,
			rgba(236, 225, 214, 0) 54%
		),
		linear-gradient(
			to top,
			rgba(236, 225, 214, 0.15) 0%,
			rgba(236, 225, 214, 0) 8%
		);
	pointer-events: none;
}

/* Flower & spark layers for hero animation */
.hero .flower-layer,
.hero .spark-layer {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 30%;
	z-index: 2;
	pointer-events: none;
	overflow: hidden;
	contain: strict;
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 14%);
	mask-image: linear-gradient(to right, transparent 0%, black 14%);
}

.hero .flower {
	position: absolute;
	left: 0;
	top: 0;
	width: var(--size);
	height: auto;
	opacity: var(--opacity);
	filter: drop-shadow(0 12px 14px rgba(75, 38, 24, 0.14));
	will-change: transform, opacity;
	transform: translate3d(-999px, -999px, 0);
	user-select: none;
	-webkit-user-drag: none;
}

.hero .spark {
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 999px;
	background: rgba(219, 174, 96, 0.9);
	box-shadow: 0 0 12px rgba(219, 174, 96, 0.55);
	opacity: 0.72;
	will-change: transform, opacity;
}

.hero-content {
	position: relative;
	z-index: 3;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--pad-x);
	padding-top: clamp(200px, 28vh, 320px);
	padding-bottom: 80px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 40px;
	min-height: calc(100vh - 80px);
	align-content: start;
}

.hero-eyebrow {
	font-family: var(--sans);
	font-size: 10px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--ink-soft);
	line-height: 1.7;
	margin-bottom: 20px;
}

.hero h1 {
	font-family: var(--serif);
	font-weight: 400;
	font-size: clamp(48px, 6vw, 86px);
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: var(--ink);
	margin: 0 0 28px;
}

.hero h1 em {
	font-style: italic;
	font-weight: 600;
	color: var(--wine);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 6px;
	text-decoration-color: var(--wine-soft);
}

.hero p {
	max-width: 380px;
	font-size: 14.5px;
	line-height: 1.85;
	color: var(--ink-soft);
	margin: 0 0 44px;
}

/* Hero CTA */
.hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 22px;
	text-decoration: none;
	color: var(--ink);
}

.hero-cta-label {
	font-size: 11px;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	font-weight: 500;
	padding: 16px 32px;
	border: 1px solid var(--hairline-2);
	transition: background 0.3s ease, color 0.3s ease;
}

.hero-cta:hover .hero-cta-label {
	background: var(--ink);
	color: var(--cream);
}

.hero-cta-arrow {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--hairline-2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.hero-cta:hover .hero-cta-arrow {
	background: var(--ink);
	color: var(--cream);
	transform: translateX(3px);
}

.hero-cta-arrow svg {
	width: 14px;
	height: 14px;
}

/* Play showreel button */
.play {
	position: absolute;
	right: 12%;
	top: 42%;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, 0.9);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	transition: transform 0.4s ease, background 0.4s ease;
}

.play:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: scale(1.04);
}

.play .ring {
	position: absolute;
	inset: -22px;
	pointer-events: none;
	animation: spin 22s linear infinite;
}

.play .ring text {
	font-family: var(--sans);
	font-size: 8.5px;
	letter-spacing: 0.35em;
	fill: #fff;
	text-transform: uppercase;
	font-weight: 500;
}

.play .triangle {
	width: 0;
	height: 0;
	border-left: 12px solid #fff;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	margin-left: 4px;
}

@keyframes spin {

	to {
		transform: rotate(360deg);
	}
}

/* Scroll to explore */
.scroll-explore {
	position: absolute;
	right: var(--pad-x);
	bottom: 52px;
	z-index: 4;
	font-size: 9px;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--ink-soft);
	display: flex;
	align-items: center;
	gap: 14px;
	line-height: 1.65;
	text-align: right;
}

.scroll-explore::after {
	content: "";
	width: 1px;
	height: 52px;
	background: var(--ink-soft);
	flex-shrink: 0;
	animation: scroll-line 2.4s ease-in-out infinite;
}

@keyframes scroll-line {

	0%,
	100% {
		opacity: 0.4;
		transform: scaleY(1);
	}

	50% {
		opacity: 1;
		transform: scaleY(1.15);
	}
}

/* Scroll-triggered entrance animations */
.reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-delay-1 {
	transition-delay: 0.1s;
}

.reveal-delay-2 {
	transition-delay: 0.2s;
}

.reveal-delay-3 {
	transition-delay: 0.3s;
}

/* ==========================================================================
   Growth Section
   ========================================================================== */
.growth {
	background: var(--cream);
}

.growth-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.2fr);
	align-items: stretch;
}

.growth-left {
	position: relative;
	padding: 72px 68px 80px 100px;
	display: flex;
	flex-direction: column;
}

.growth-left .eyebrow-row {
	align-self: center;
	margin: 0 auto 44px;
	display: inline-flex;
	width: auto;
}

/* Vertical breadcrumb */
.vertical-words {
	position: absolute;
	left: 26px;
	top: 50%;
	transform: translateY(-50%) rotate(-90deg);
	transform-origin: left center;
	display: flex;
	gap: 22px;
	font-size: 9.5px;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--ink);
	white-space: nowrap;
}

.vertical-words span {
	position: relative;
}

.vertical-words span + span::before {
	content: "/";
	position: absolute;
	left: -14px;
	top: 0;
	opacity: 0.45;
}

.growth h2 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(34px, 3.6vw, 50px);
	line-height: 1.08;
	letter-spacing: -0.01em;
	color: var(--ink);
	margin: 0 0 24px;
}

.growth h2 em {
	font-style: italic;
	font-weight: 500;
	color: var(--wine);
}

.growth p {
	max-width: 380px;
	font-size: 14.5px;
	line-height: 1.75;
	color: var(--ink-soft);
	margin: 0 0 36px;
}

.growth-right {
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 420px;
	background-color: var(--cream);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
	position: relative;
	padding: 72px 0 80px;
	overflow: hidden;
	isolation: isolate;
	background: var(--blush);
}

.services::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(50% 80% at 75% 28%, rgba(255, 235, 222, 0.55), transparent 62%),
		radial-gradient(45% 70% at 18% 60%, rgba(255, 228, 212, 0.45), transparent 65%),
		radial-gradient(38% 55% at 55% 90%, rgba(213, 160, 148, 0.3), transparent 68%),
		linear-gradient(180deg, rgba(241, 214, 204, 0) 0%, rgba(225, 180, 168, 0.15) 100%);
}

.services::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image:
		radial-gradient(ellipse 4px 2.5px at 12% 22%, rgba(196, 148, 86, 0.65) 0%, transparent 70%),
		radial-gradient(ellipse 5px 3px at 22% 78%, rgba(196, 148, 86, 0.55) 0%, transparent 70%),
		radial-gradient(ellipse 3px 2px at 38% 18%, rgba(206, 158, 96, 0.7) 0%, transparent 70%),
		radial-gradient(ellipse 6px 3.5px at 49% 88%, rgba(186, 138, 76, 0.55) 0%, transparent 70%),
		radial-gradient(ellipse 4px 2.5px at 61% 32%, rgba(206, 158, 96, 0.6) 0%, transparent 70%),
		radial-gradient(ellipse 5px 3px at 73% 72%, rgba(196, 148, 86, 0.55) 0%, transparent 70%),
		radial-gradient(ellipse 4px 2.5px at 88% 25%, rgba(206, 158, 96, 0.65) 0%, transparent 70%),
		radial-gradient(ellipse 3px 2px at 95% 65%, rgba(186, 138, 76, 0.55) 0%, transparent 70%),
		radial-gradient(ellipse 14px 9px at 8% 88%, rgba(217, 148, 140, 0.4) 0%, transparent 60%),
		radial-gradient(ellipse 12px 8px at 30% 12%, rgba(217, 148, 140, 0.35) 0%, transparent 60%),
		radial-gradient(ellipse 16px 10px at 55% 75%, rgba(207, 138, 130, 0.4) 0%, transparent 60%),
		radial-gradient(ellipse 11px 7px at 80% 92%, rgba(217, 148, 140, 0.35) 0%, transparent 60%),
		radial-gradient(ellipse 14px 9px at 92% 8%, rgba(207, 138, 130, 0.4) 0%, transparent 60%);
	background-repeat: no-repeat;
	pointer-events: none;
}

.services-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 36px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}

.service-card {
	position: relative;
	background-size: cover;
	background-position: center 20%;
	background-repeat: no-repeat;
	border-radius: 6px;
	padding: 22px 22px 24px;
	min-height: 185px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: transform 0.35s ease;
}

.service-card:hover {
	transform: translateY(-3px);
}

.service-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(241, 214, 204, 0.28);
	pointer-events: none;
	transition: background 0.35s ease;
	border-radius: 6px;
}

.service-card:hover::after {
	background: rgba(241, 214, 204, 0.15);
}

.service-num {
	position: relative;
	z-index: 1;
	font-size: 11px;
	letter-spacing: 0.28em;
	font-weight: 500;
	color: var(--ink);
	margin-bottom: 22px;
}

.service-title {
	position: relative;
	z-index: 1;
	font-family: var(--sans);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.14em;
	line-height: 1.45;
	text-transform: uppercase;
	color: var(--ink);
	margin: 0 0 12px;
}

.service-desc {
	position: relative;
	z-index: 1;
	font-size: 12.5px;
	line-height: 1.65;
	color: var(--ink-soft);
	margin: 0 0 auto;
}

.service-arrow {
	position: relative;
	z-index: 1;
	margin-top: 18px;
	display: inline-flex;
	align-items: center;
	color: var(--ink);
	transition: transform 0.3s ease;
}

.service-card:hover .service-arrow {
	transform: translateX(6px);
}

.service-arrow svg {
	width: 26px;
	height: 12px;
}

/* ==========================================================================
   Featured Work Section
   ========================================================================== */
.featured {
	background: var(--cream);
	padding: 72px 0 80px;
}

.featured-grid {
	display: grid;
	grid-template-columns: minmax(240px, 0.85fr) minmax(0, 2.6fr) auto;
	gap: 40px;
	align-items: center;
}

.featured h2 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(28px, 2.8vw, 38px);
	line-height: 1.2;
	letter-spacing: -0.008em;
	margin: 20px 0 28px;
	color: var(--ink);
}

.portfolio-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.portfolio-card {
	position: relative;
	aspect-ratio: 1 / 0.95;
	overflow: hidden;
	border-radius: 3px;
	cursor: pointer;
	background: #c9b3a8;
}

.portfolio-card .img {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.portfolio-card:hover .img {
	transform: scale(1.05);
}

.portfolio-card .portfolio-meta {
	transform: translateY(6px);
	transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.5s ease;
}

.portfolio-card:hover .portfolio-meta {
	transform: translateY(0);
}

.portfolio-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(60, 30, 28, 0.06) 0%, rgba(60, 30, 28, 0.32) 100%);
	pointer-events: none;
}

.portfolio-meta {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 2;
	color: #fff;
	text-align: left;
}

.portfolio-meta .name {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 18px;
	line-height: 1.2;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0 0 8px;
}

.portfolio-meta .tag {
	font-family: var(--sans);
	font-size: 9px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	opacity: 0.88;
	font-weight: 500;
}

.featured-next {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 1px solid var(--hairline);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--ink);
	transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
	align-self: center;
}

.featured-next:hover {
	background: var(--ink);
	color: var(--cream);
	transform: translateX(3px);
}

/* ==========================================================================
   Testimonial Section
   ========================================================================== */
.testimonial {
	position: relative;
	padding: 80px 0;
	overflow: hidden;
	isolation: isolate;
	background:
		radial-gradient(45% 80% at 88% 50%, rgba(232, 184, 173, 0.5), transparent 60%),
		radial-gradient(35% 70% at 8% 50%, rgba(232, 184, 173, 0.32), transparent 65%),
		radial-gradient(60% 100% at 50% 100%, rgba(255, 232, 222, 0.3), transparent 70%),
		var(--blush-soft);
}

.testimonial-grid {
	display: grid;
	grid-template-columns: 54px 1fr 54px;
	gap: 32px;
	align-items: center;
}

.quote-arrow {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 1px solid var(--hairline);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--ink);
	background: transparent;
	transition: background 0.3s ease, color 0.3s ease;
}

.quote-arrow:hover {
	background: var(--ink);
	color: var(--cream);
}

.quote-body {
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	padding-left: 42px;
}

.quote-body::before {
	content: "\201C";
	position: absolute;
	left: -6px;
	top: -32px;
	font-family: var(--serif);
	font-weight: 600;
	font-size: 72px;
	line-height: 1;
	color: var(--ink);
}

.quote-body::after {
	content: "\2726";
	position: absolute;
	left: 8px;
	top: -58px;
	font-size: 12px;
	color: var(--wine-soft);
}

.quote-body p {
	font-family: var(--sans);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.8;
	color: var(--ink);
	margin: 0 0 20px;
	max-width: 580px;
}

.quote-body cite {
	font-style: normal;
	font-size: 11px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--ink);
}

.quote-body cite::before {
	content: "\2014 ";
	margin-right: 2px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
	background: var(--cream);
	padding: 72px 0 32px;
}

.footer-top {
	display: grid;
	grid-template-columns: 1fr 2.5fr 0.95fr;
	gap: 48px;
	align-items: start;
	padding-bottom: 40px;
	border-top: 1px solid var(--hairline-2);
	padding-top: 48px;
}

.footer-stay .stay-eyebrow {
	font-size: 11px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--ink);
}

.footer-stay h3 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 26px;
	line-height: 1.15;
	margin: 12px 0 8px;
	color: var(--ink);
}

.footer-stay p {
	font-size: 13px;
	line-height: 1.6;
	color: var(--ink-soft);
	margin: 0 0 14px;
}

.footer-social {
	display: flex;
	gap: 14px;
}

.footer-social a {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--ink);
	transition: opacity 0.2s ease;
}

.footer-social a:hover {
	opacity: 0.55;
}

.footer-social svg {
	width: 15px;
	height: 15px;
}

.footer-mid {
	display: grid;
	gap: 20px;
}

.newsletter {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	gap: 12px;
}

.field {
	background: transparent;
	border: 1px solid var(--hairline-2);
	border-radius: 4px;
	padding: 13px 16px;
}

.field input {
	width: 100%;
	border: 0;
	background: transparent;
	outline: none;
	font: 400 13px/1 var(--sans);
	color: var(--ink);
}

.field input::placeholder {
	color: rgba(29, 25, 22, 0.42);
}

.field:focus-within {
	border-color: var(--wine-soft);
}

.subscribe {
	background: var(--wine);
	color: #fff;
	border-radius: 4px;
	padding: 0 26px;
	font-size: 11px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	transition: background 0.25s ease;
}

.subscribe:hover {
	background: var(--wine-deep);
}

.subscribe svg {
	width: 13px;
	height: 9px;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.footer-links h4 {
	font-size: 10.5px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--ink);
	margin: 0 0 14px;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 4px;
}

.footer-links a {
	font-size: 12.5px;
	line-height: 1.6;
	color: var(--ink-soft);
	transition: color 0.2s ease;
	display: block;
	padding: 2px 0;
}

.footer-links a:hover {
	color: var(--wine);
}

.footer-card {
	position: relative;
	border-radius: 6px;
	padding: 22px 26px;
	min-height: 100px;
	overflow: hidden;
	background-color: var(--blush-soft);
	display: flex;
	align-items: center;
}

.footer-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--card-bg, url("../images/strategy-meets-design.webp"));
	background-size: cover;
	background-position: center;
	z-index: 0;
	border-radius: 6px;
}

.footer-card h4 {
	display: none;
	position: relative;
	z-index: 1;
	font-family: var(--serif);
	font-weight: 500;
	font-size: 22px;
	line-height: 1.2;
	margin: 0;
	color: var(--ink);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 28px;
	margin-top: 12px;
	border-top: 1px solid var(--hairline-2);
	font-size: 11px;
	color: var(--ink-soft);
}

.footer-bottom .center {
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-size: 10.5px;
}

.footer-bottom .legal {
	display: flex;
	gap: 32px;
	font-size: 10.5px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.footer-bottom .legal a {
	color: var(--ink-soft);
	transition: color 0.2s ease;
}

.footer-bottom .legal a:hover {
	color: var(--wine);
}

/* ==========================================================================
   Wide Screens (27" and up)
   ========================================================================== */
@media (min-width: 1800px) {

	:root {
		--maxw: 1600px;
		--pad-x: 80px;
	}

	.hero::before {
		background:
			linear-gradient(
				to right,
				var(--cream-2) 0%,
				var(--cream-2) 26%,
				rgba(236, 225, 214, 0.85) 34%,
				rgba(236, 225, 214, 0.5) 42%,
				rgba(236, 225, 214, 0.15) 50%,
				rgba(236, 225, 214, 0) 58%
			),
			linear-gradient(to top, rgba(236, 225, 214, 0.15) 0%, rgba(236, 225, 214, 0) 8%);
	}

	.service-card {
		min-height: 220px;
	}

	.portfolio-card {
		aspect-ratio: 1 / 1.1;
	}

	.featured-grid {
		gap: 52px;
	}
}

/* ==========================================================================
   Responsive — Tablet
   ========================================================================== */
@media (max-width: 1100px) {

	.nav-links {
		display: none;
	}

	.nav {
		grid-template-columns: 1fr auto;
	}

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

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

	.portfolio-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-top {
		grid-template-columns: 1fr;
	}

	.footer-links {
		justify-content: start;
	}

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

	.growth-left {
		padding: 64px var(--pad-x);
	}

	.vertical-words {
		display: none;
	}

	.growth-left .eyebrow-row {
		align-self: flex-start;
		margin-left: 0;
	}

	.featured-next {
		display: none;
	}
}

/* ==========================================================================
   Responsive — Mobile
   ========================================================================== */
@media (max-width: 720px) {

	/* Nav */
	.nav {
		grid-template-columns: 1fr auto;
		padding: 20px var(--pad-x) 0;
		gap: 12px;
		align-items: start;
	}

	.nav-links {
		display: none;
	}

	.nav > nav {
		display: none;
	}

	.brand {
		font-size: 17px;
	}

	.brand small {
		font-size: 9px;
		margin-top: 6px;
		letter-spacing: 0.2em;
	}

	.nav-right {
		margin-top: 0;
		align-items: start;
	}

	/* Hero */
	.hero {
		min-height: auto;
		padding: 0 0 340px;
	}

	.hero-content {
		grid-template-columns: 1fr;
		padding-top: 110px;
		padding-bottom: 48px;
		min-height: auto;
		gap: 0;
	}

	.hero-eyebrow {
		font-size: 9px;
		margin-bottom: 14px;
	}

	.hero h1 {
		font-size: clamp(32px, 9vw, 48px);
		line-height: 1.08;
		margin-bottom: 20px;
		letter-spacing: -0.02em;
	}

	.hero p {
		font-size: 14px;
		line-height: 1.75;
		margin-bottom: 32px;
		max-width: 320px;
	}

	.hero-cta-label {
		font-size: 10px;
		padding: 13px 24px;
		letter-spacing: 0.22em;
	}

	.hero-cta-arrow {
		width: 34px;
		height: 34px;
	}

	.hero::before {
		background:
			linear-gradient(
				180deg,
				var(--cream-2) 0%,
				var(--cream-2) 36%,
				rgba(236, 225, 214, 0.88) 48%,
				rgba(236, 225, 214, 0.25) 60%,
				rgba(236, 225, 214, 0) 72%
			);
	}

	.hero-img {
		left: 0;
		background-position: 55% bottom;
	}

	.play {
		right: 20px;
		top: auto;
		bottom: 100px;
		width: 64px;
		height: 64px;
	}

	.play .ring {
		inset: -18px;
	}

	.play .ring text {
		font-size: 7px;
	}

	.play .triangle {
		border-left-width: 10px;
		border-top-width: 6px;
		border-bottom-width: 6px;
	}

	.scroll-explore {
		display: none;
	}

	.hero-shelf {
		display: none;
	}

	/* Growth */
	.growth-left {
		padding: 52px var(--pad-x) 52px;
	}

	.growth h2 {
		font-size: clamp(30px, 8vw, 42px);
		line-height: 1.1;
		margin-bottom: 18px;
	}

	.growth p {
		font-size: 14px;
		line-height: 1.7;
		margin-bottom: 28px;
	}

	.growth-right {
		min-height: 280px;
	}

	.growth .pill-link {
		font-size: 10px;
	}

	/* Services */
	.services {
		padding: 52px 0 60px;
	}

	.services-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		margin-bottom: 28px;
	}

	.services-grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.service-card {
		min-height: 170px;
		padding: 18px 16px 20px;
		border-radius: 8px;
	}

	.service-num {
		font-size: 10px;
		margin-bottom: 16px;
	}

	.service-title {
		font-size: 11.5px;
		letter-spacing: 0.12em;
		margin-bottom: 8px;
	}

	.service-desc {
		font-size: 11.5px;
		line-height: 1.55;
	}

	.service-arrow {
		margin-top: 14px;
	}

	.service-card:last-child:nth-child(odd) {
		grid-column: 1 / -1;
	}

	/* Featured */
	.featured {
		padding: 52px 0 60px;
	}

	.featured-grid {
		gap: 24px;
	}

	.featured h2 {
		font-size: clamp(24px, 7vw, 32px);
		margin: 12px 0 20px;
		line-height: 1.2;
	}

	.portfolio-row {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.portfolio-card {
		border-radius: 6px;
	}

	.portfolio-meta {
		left: 14px;
		right: 14px;
		bottom: 14px;
	}

	.portfolio-meta .name {
		font-size: 14px;
		letter-spacing: 0.04em;
		margin-bottom: 5px;
	}

	.portfolio-meta .tag {
		font-size: 8px;
		letter-spacing: 0.28em;
	}

	/* Testimonial */
	.testimonial {
		padding: 56px 0;
	}

	.testimonial-grid {
		grid-template-columns: 1fr;
		gap: 0;
		text-align: center;
	}

	.quote-arrow {
		display: none;
	}

	.quote-body {
		padding-left: 0;
		text-align: center;
	}

	.quote-body::before {
		font-size: 56px;
		top: -24px;
		left: 50%;
		transform: translateX(-50%);
	}

	.quote-body p {
		font-size: 15px;
		line-height: 1.75;
		max-width: 100%;
		margin: 0 auto 18px;
	}

	.quote-body cite {
		font-size: 10px;
	}

	/* Footer */
	.footer {
		padding: 52px 0 28px;
	}

	.footer-top {
		grid-template-columns: 1fr;
		gap: 36px;
		padding-bottom: 32px;
	}

	.footer-stay h3 {
		font-size: 24px;
		line-height: 1.2;
		margin: 10px 0 8px;
	}

	.footer-stay p {
		font-size: 12.5px;
		line-height: 1.6;
	}

	.footer-social {
		gap: 16px;
	}

	.footer-social a {
		width: 32px;
		height: 32px;
	}

	.footer-social svg {
		width: 16px;
		height: 16px;
	}

	.newsletter {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.newsletter .field {
		padding: 14px 16px;
	}

	.newsletter .field input {
		font-size: 13px;
	}

	.newsletter .subscribe {
		grid-column: 1 / -1;
		padding: 14px 24px;
		justify-content: center;
		font-size: 10px;
		border-radius: 6px;
	}

	.footer-links {
		grid-template-columns: 1fr 1fr;
		gap: 28px 24px;
		justify-content: start;
	}

	.footer-links h4 {
		font-size: 10px;
		margin-bottom: 12px;
	}

	.footer-links a {
		font-size: 12px;
		line-height: 1.55;
		padding: 3px 0;
	}

	.footer-card {
		min-height: 120px;
		aspect-ratio: 2.4 / 1;
		padding: 20px 22px;
		border-radius: 8px;
	}

	.footer-card h4 {
		display: none;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
		padding-top: 24px;
		margin-top: 16px;
	}

	.footer-bottom .center {
		font-size: 9.5px;
	}

	.footer-bottom .legal {
		gap: 20px;
		font-size: 9.5px;
		flex-wrap: wrap;
		justify-content: center;
	}

	/* Global mobile refinements */
	.eyebrow {
		font-size: 10px;
		letter-spacing: 0.24em;
		gap: 8px;
	}

	.eyebrow.with-rule::before {
		width: 24px;
	}

	.pill-link {
		font-size: 10px;
		gap: 14px;
	}

	.pill-link .arrow {
		width: 44px;
		height: 44px;
	}

	.pill-link .arrow svg {
		width: 13px;
		height: 13px;
	}

	/* Touch target fixes — mobile */
	.hero-cta-arrow {
		width: 44px;
		height: 44px;
	}

	.footer-social a {
		width: 44px;
		height: 44px;
	}

	.footer-links a {
		padding: 10px 0;
	}

	.journal-single__share-links a {
		width: 44px;
		height: 44px;
	}

	/* Inner page section padding — mobile */
	.service-single {
		padding: 48px 0 56px;
	}

	.service-single__process {
		padding: 52px 0;
	}

	.service-single__cta {
		padding: 52px 0;
	}

	.services-page__cta {
		padding: 52px 0;
	}

	.portfolio-page {
		padding: 48px 0 56px;
	}

	.portfolio-single {
		padding: 36px 0 56px;
	}

	.journal-page {
		padding: 48px 0 56px;
	}

	.journal-single {
		padding: 36px 0 56px;
	}

	.resources-page {
		padding: 48px 0 56px;
	}

	.contact-page {
		padding: 48px 0 56px;
	}

	/* Quote sparkle fix — reposition orphaned ::after at mobile */
	.quote-body::after {
		left: 50%;
		transform: translateX(-50%);
		top: -42px;
	}
}

/* ==========================================================================
   Very Narrow Phones
   ========================================================================== */
@media (max-width: 380px) {

	:root {
		--pad-x: 18px;
	}

	.hero h1 {
		font-size: 28px;
	}

	.hero-content {
		padding-top: 100px;
	}

	.hero p {
		font-size: 13.5px;
	}

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

	.service-card {
		min-height: auto;
		padding: 20px 18px 22px;
	}

	.footer-links {
		grid-template-columns: 1fr 1fr;
	}

	.brand {
		font-size: 15px;
	}

	.brand small {
		font-size: 9px;
	}

	.growth h2 {
		font-size: 28px;
	}

	.testimonial {
		padding: 44px 0;
	}

	.quote-body p {
		font-size: 14px;
	}

	/* 380px inner page tweaks */
	.about-values__card {
		padding: 24px 20px;
	}

	.resources-card {
		padding: 28px 22px;
	}

	.portfolio-single__hero img {
		aspect-ratio: 3 / 2;
	}

	.page-header {
		padding: clamp(100px, 12vh, 140px) 0 clamp(28px, 3vh, 40px);
	}

	.page-header__title {
		font-size: clamp(24px, 7vw, 34px);
	}
}

/* ==========================================================================
   Inner Page Header
   ========================================================================== */
.page-header {
	background: var(--cream);
	padding: clamp(140px, 18vh, 200px) 0 clamp(48px, 6vh, 72px);
	text-align: center;
}

.page-header__inner {
	max-width: 720px;
	margin: 0 auto;
}

.page-header__eyebrow {
	display: block;
	font-family: var(--sans);
	font-size: 10px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--ink-mute);
	margin-bottom: 20px;
}

.page-header__title {
	font-family: var(--serif);
	font-weight: 400;
	font-size: clamp(36px, 5vw, 58px);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--ink);
	margin: 0 0 20px;
}

.page-header__title em {
	font-style: italic;
	font-weight: 600;
	color: var(--wine);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 6px;
	text-decoration-color: var(--wine-soft);
}

.page-header__subtitle {
	font-size: 15px;
	line-height: 1.75;
	color: var(--ink-soft);
	margin: 0 0 16px;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}

.page-header__ornament {
	display: block;
	font-size: 14px;
	color: var(--wine-soft);
	margin-top: 24px;
}

/* ==========================================================================
   About Page
   ========================================================================== */
.about-story {
	background: var(--cream);
	padding: 80px 0;
}

.about-story__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.about-story__image img {
	width: 100%;
	height: auto;
	border-radius: 6px;
	object-fit: cover;
	aspect-ratio: 4 / 5;
}

.about-story__content .eyebrow {
	margin-bottom: 24px;
}

.about-story__content h2 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(28px, 3vw, 38px);
	line-height: 1.15;
	color: var(--ink);
	margin: 0 0 24px;
}

.about-story__content p {
	font-size: 14.5px;
	line-height: 1.8;
	color: var(--ink-soft);
	margin: 0 0 16px;
}

.about-values {
	background: var(--blush-soft);
	padding: 80px 0;
}

.about-values__header {
	text-align: center;
	margin-bottom: 52px;
}

.about-values__header .eyebrow {
	justify-content: center;
	margin-bottom: 20px;
}

.about-values__header h2 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.15;
	color: var(--ink);
	margin: 0;
}

.about-values__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.about-values__card {
	background: var(--cream);
	border-radius: 6px;
	padding: 32px 28px;
}

.about-values__num {
	font-size: 11px;
	letter-spacing: 0.28em;
	font-weight: 500;
	color: var(--wine);
	display: block;
	margin-bottom: 18px;
}

.about-values__card h3 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 22px;
	line-height: 1.2;
	color: var(--ink);
	margin: 0 0 12px;
}

.about-values__card p {
	font-size: 13.5px;
	line-height: 1.7;
	color: var(--ink-soft);
	margin: 0;
}

.about-cta {
	background: var(--cream);
	padding: 80px 0;
}

.about-cta__inner {
	text-align: center;
	max-width: 520px;
	margin: 0 auto;
}

.about-cta__inner h2 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(28px, 3vw, 38px);
	line-height: 1.15;
	color: var(--ink);
	margin: 0 0 16px;
}

.about-cta__inner p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--ink-soft);
	margin: 0 0 32px;
}

.about-cta__inner .pill-link {
	justify-content: center;
}

/* ==========================================================================
   Services Page
   ========================================================================== */
.services-page {
	background: var(--cream);
	padding: 64px 0 80px;
}

.services-page__grid {
	display: grid;
	gap: 32px;
}

.services-page__card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
	gap: 0;
	border-radius: 6px;
	overflow: hidden;
	background: var(--blush-soft);
	text-decoration: none;
	color: inherit;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.services-page__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(29, 25, 22, 0.08);
}

.services-page__card:nth-child(even) {
	direction: rtl;
}

.services-page__card:nth-child(even) > * {
	direction: ltr;
}

.services-page__card-image {
	min-height: 280px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--blush-warm);
}

.services-page__card-body {
	padding: 40px 44px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.services-page__card-num {
	font-size: 11px;
	letter-spacing: 0.28em;
	font-weight: 500;
	color: var(--wine);
	margin-bottom: 16px;
}

.services-page__card-title {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(24px, 2.5vw, 32px);
	line-height: 1.15;
	color: var(--ink);
	margin: 0 0 14px;
}

.services-page__card-body p {
	font-size: 14.5px;
	line-height: 1.75;
	color: var(--ink-soft);
	margin: 0 0 24px;
}

.services-page__cta {
	background: var(--blush-soft);
	padding: 72px 0;
}

.services-page__cta-inner {
	text-align: center;
	max-width: 520px;
	margin: 0 auto;
}

.services-page__cta-inner h2 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(26px, 3vw, 36px);
	line-height: 1.15;
	color: var(--ink);
	margin: 0 0 16px;
}

.services-page__cta-inner p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--ink-soft);
	margin: 0 0 32px;
}

.services-page__cta-inner .btn-enquire {
	display: inline-flex;
}

/* ==========================================================================
   Single Service
   ========================================================================== */
.service-single {
	background: var(--cream);
	padding: 64px 0 80px;
}

.service-single__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
}

.service-single__image img {
	width: 100%;
	border-radius: 6px;
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

.service-single__content .eyebrow {
	margin-bottom: 28px;
}

.service-single__details h2 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 26px;
	line-height: 1.2;
	color: var(--ink);
	margin: 24px 0 16px;
}

.service-single__details p {
	font-size: 14.5px;
	line-height: 1.8;
	color: var(--ink-soft);
	margin: 0 0 16px;
}

.service-single__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.service-single__list li {
	position: relative;
	padding: 12px 0 12px 28px;
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--ink-soft);
	border-bottom: 1px solid var(--hairline-2);
}

.service-single__list li::before {
	content: "\2726";
	position: absolute;
	left: 0;
	top: 12px;
	color: var(--wine-soft);
	font-size: 10px;
}

.service-single__process {
	background: var(--blush-soft);
	padding: 80px 0;
}

.service-single__process-header {
	text-align: center;
	margin-bottom: 48px;
}

.service-single__process-header .eyebrow {
	justify-content: center;
	margin-bottom: 20px;
}

.service-single__process-header h2 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(28px, 3vw, 38px);
	line-height: 1.15;
	color: var(--ink);
	margin: 0;
}

.service-single__process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.service-single__step {
	background: var(--cream);
	border-radius: 6px;
	padding: 32px 28px;
}

.service-single__step-num {
	font-size: 11px;
	letter-spacing: 0.28em;
	font-weight: 500;
	color: var(--wine);
	display: block;
	margin-bottom: 16px;
}

.service-single__step h3 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 20px;
	line-height: 1.2;
	color: var(--ink);
	margin: 0 0 10px;
}

.service-single__step p {
	font-size: 13.5px;
	line-height: 1.7;
	color: var(--ink-soft);
	margin: 0;
}

.service-single__cta {
	background: var(--cream);
	padding: 72px 0;
}

.service-single__cta-inner {
	text-align: center;
	max-width: 520px;
	margin: 0 auto;
}

.service-single__cta-inner h2 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(26px, 3vw, 36px);
	line-height: 1.15;
	color: var(--ink);
	margin: 0 0 16px;
}

.service-single__cta-inner p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--ink-soft);
	margin: 0 0 32px;
}

.service-single__cta-inner .btn-enquire {
	display: inline-flex;
}

/* ==========================================================================
   Portfolio Page
   ========================================================================== */
.portfolio-page {
	background: var(--cream);
	padding: 64px 0 80px;
}

.portfolio-page__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.portfolio-page__card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 6px;
	aspect-ratio: 4 / 3;
	background: #c9b3a8;
}

.portfolio-page__card-image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.portfolio-page__card:hover .portfolio-page__card-image {
	transform: scale(1.05);
}

.portfolio-page__card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(60, 30, 28, 0.04) 0%, rgba(60, 30, 28, 0.4) 100%);
	pointer-events: none;
}

.portfolio-page__card-meta {
	position: absolute;
	left: 28px;
	right: 28px;
	bottom: 28px;
	z-index: 2;
	color: #fff;
}

.portfolio-page__card-name {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(22px, 2.5vw, 30px);
	line-height: 1.15;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 0 0 8px;
}

.portfolio-page__card-tag {
	font-family: var(--sans);
	font-size: 10px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	opacity: 0.88;
	font-weight: 500;
}

/* ==========================================================================
   Single Portfolio
   ========================================================================== */
.portfolio-single {
	background: var(--cream);
	padding: 48px 0 80px;
}

.portfolio-single__hero {
	margin-bottom: 56px;
}

.portfolio-single__hero img {
	width: 100%;
	border-radius: 6px;
	object-fit: cover;
	aspect-ratio: 16 / 7;
}

.portfolio-single__grid {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 56px;
	align-items: start;
}

.portfolio-single__sidebar {
	position: sticky;
	top: 40px;
}

.portfolio-single__meta-item {
	margin-bottom: 24px;
}

.portfolio-single__meta-item h4 {
	font-size: 10px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--ink-mute);
	margin: 0 0 6px;
}

.portfolio-single__meta-item p {
	font-size: 15px;
	line-height: 1.5;
	color: var(--ink);
	margin: 0;
}

.portfolio-single__sidebar .btn-enquire {
	display: inline-flex;
	margin-top: 8px;
}

.portfolio-single__content .eyebrow {
	margin-bottom: 24px;
}

.portfolio-single__content h2 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 28px;
	line-height: 1.2;
	color: var(--ink);
	margin: 0 0 16px;
}

.portfolio-single__content h3 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 22px;
	line-height: 1.2;
	color: var(--ink);
	margin: 32px 0 12px;
}

.portfolio-single__content p {
	font-size: 14.5px;
	line-height: 1.8;
	color: var(--ink-soft);
	margin: 0 0 16px;
}

/* Portfolio / Journal prev-next nav */
.portfolio-single__nav {
	background: var(--blush-soft);
	padding: 40px 0;
}

.portfolio-single__nav-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.portfolio-single__nav-link {
	display: block;
	text-decoration: none;
	color: var(--ink);
	padding: 20px 0;
	transition: color 0.2s ease;
}

.portfolio-single__nav-link:hover {
	color: var(--wine);
}

.portfolio-single__nav-link--next {
	text-align: right;
}

.portfolio-single__nav-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 10px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--ink-mute);
	margin-bottom: 8px;
}

.portfolio-single__nav-link--next .portfolio-single__nav-label {
	justify-content: flex-end;
}

.portfolio-single__nav-title {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 20px;
	line-height: 1.2;
}

/* ==========================================================================
   Journal Page
   ========================================================================== */
.journal-page {
	background: var(--cream);
	padding: 64px 0 80px;
}

.journal-page__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.journal-card {
	display: block;
	text-decoration: none;
	color: inherit;
	border-radius: 6px;
	overflow: hidden;
	background: var(--blush-soft);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.journal-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(29, 25, 22, 0.08);
}

.journal-card__image {
	aspect-ratio: 16 / 10;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--blush-warm);
}

.journal-card__body {
	padding: 24px 26px 28px;
}

.journal-card__date {
	font-size: 10px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--ink-mute);
	display: block;
	margin-bottom: 10px;
}

.journal-card__title {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 22px;
	line-height: 1.2;
	color: var(--ink);
	margin: 0 0 10px;
}

.journal-card__excerpt {
	font-size: 13.5px;
	line-height: 1.7;
	color: var(--ink-soft);
	margin: 0 0 16px;
}

.journal-card__link {
	font-size: 10.5px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--wine);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: gap 0.3s ease;
}

.journal-card:hover .journal-card__link {
	gap: 12px;
}

.journal-page__pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 48px;
}

.journal-page__pagination a,
.journal-page__pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 13px;
	font-weight: 500;
	color: var(--ink-soft);
	transition: background 0.2s ease, color 0.2s ease;
}

.journal-page__pagination a:hover {
	background: var(--ink);
	color: var(--cream);
}

.journal-page__pagination .current {
	background: var(--wine);
	color: #fff;
}

.journal-page__empty {
	text-align: center;
	padding: 64px 0;
}

.journal-page__empty p {
	font-size: 16px;
	color: var(--ink-soft);
}

/* ==========================================================================
   Single Journal (Blog Post)
   ========================================================================== */
.journal-single {
	background: var(--cream);
	padding: 48px 0 80px;
}

.journal-single__grid {
	display: grid;
	grid-template-columns: 1fr 240px;
	gap: 56px;
	align-items: start;
}

.journal-single__featured {
	margin-bottom: 36px;
}

.journal-single__featured img {
	width: 100%;
	border-radius: 6px;
	object-fit: cover;
	aspect-ratio: 16 / 8;
}

.journal-single__body h2 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 28px;
	line-height: 1.2;
	color: var(--ink);
	margin: 32px 0 16px;
}

.journal-single__body h3 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 22px;
	line-height: 1.2;
	color: var(--ink);
	margin: 28px 0 12px;
}

.journal-single__body p {
	font-size: 15px;
	line-height: 1.85;
	color: var(--ink-soft);
	margin: 0 0 18px;
}

.journal-single__body ul,
.journal-single__body ol {
	padding-left: 24px;
	margin: 0 0 18px;
}

.journal-single__body li {
	font-size: 15px;
	line-height: 1.75;
	color: var(--ink-soft);
	margin-bottom: 6px;
}

.journal-single__body blockquote {
	margin: 28px 0;
	padding: 24px 28px;
	border-left: 3px solid var(--wine-soft);
	background: var(--blush-soft);
	border-radius: 0 6px 6px 0;
}

.journal-single__body blockquote p {
	font-family: var(--serif);
	font-size: 18px;
	line-height: 1.6;
	color: var(--ink);
}

.journal-single__sidebar {
	position: sticky;
	top: 40px;
}

.journal-single__author,
.journal-single__share {
	margin-bottom: 32px;
}

.journal-single__author h4,
.journal-single__share h4 {
	font-size: 10px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--ink-mute);
	margin: 0 0 8px;
}

.journal-single__author p {
	font-size: 15px;
	line-height: 1.5;
	color: var(--ink);
	margin: 0;
}

.journal-single__share-links {
	display: flex;
	gap: 12px;
}

.journal-single__share-links a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--hairline-2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--ink);
	transition: background 0.2s ease, color 0.2s ease;
}

.journal-single__share-links a:hover {
	background: var(--ink);
	color: var(--cream);
}

.journal-single__share-links svg {
	width: 15px;
	height: 15px;
}

/* ==========================================================================
   Resources Page
   ========================================================================== */
.resources-page {
	background: var(--cream);
	padding: 64px 0 80px;
}

.resources-page__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.resources-card {
	background: var(--blush-soft);
	border-radius: 6px;
	padding: 36px 32px;
	display: flex;
	flex-direction: column;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.resources-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(29, 25, 22, 0.06);
}

.resources-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--hairline-2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--wine);
	margin-bottom: 20px;
}

.resources-card__icon svg {
	width: 20px;
	height: 20px;
}

.resources-card__title {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 22px;
	line-height: 1.2;
	color: var(--ink);
	margin: 0 0 10px;
}

.resources-card p {
	font-size: 13.5px;
	line-height: 1.7;
	color: var(--ink-soft);
	margin: 0 0 20px;
	flex: 1;
}

.resources-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 10.5px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--wine);
	transition: gap 0.3s ease;
}

.resources-card__link:hover {
	gap: 12px;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-page {
	background: var(--cream);
	padding: 64px 0 80px;
}

.contact-page__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 64px;
	align-items: start;
}

.contact-page__block {
	margin-bottom: 40px;
}

.contact-page__block .eyebrow {
	margin-bottom: 20px;
}

.contact-page__block h2 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(28px, 3vw, 36px);
	line-height: 1.15;
	color: var(--ink);
	margin: 0 0 14px;
}

.contact-page__block p {
	font-size: 14.5px;
	line-height: 1.75;
	color: var(--ink-soft);
	margin: 0;
}

.contact-page__detail {
	margin-bottom: 24px;
}

.contact-page__detail h4 {
	font-size: 10px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--ink-mute);
	margin: 0 0 6px;
}

.contact-page__detail p,
.contact-page__detail a {
	font-size: 15px;
	line-height: 1.5;
	color: var(--ink);
	margin: 0;
	transition: color 0.2s ease;
}

.contact-page__detail a:hover {
	color: var(--wine);
}

/* Contact form */
.contact-form {
	display: grid;
	gap: 20px;
}

.contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.contact-form__field {
	display: block;
}

.contact-form__label {
	display: block;
	font-size: 10.5px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--ink);
	margin-bottom: 8px;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid var(--hairline-2);
	border-radius: 4px;
	background: transparent;
	font: 400 14px/1.5 var(--sans);
	color: var(--ink);
	outline: none;
	transition: border-color 0.2s ease;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
	border-color: var(--wine-soft);
}

.contact-form__field select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' fill='none' stroke='%234a3f37' stroke-width='1.5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}

.contact-form .btn-enquire {
	display: inline-flex;
	width: auto;
	justify-self: start;
}

/* ==========================================================================
   Inner Pages — Responsive
   ========================================================================== */
@media (max-width: 1100px) {

	.about-values__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.service-single__process-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.portfolio-single__grid {
		grid-template-columns: 1fr;
	}

	.portfolio-single__sidebar {
		position: static;
		display: flex;
		gap: 32px;
		flex-wrap: wrap;
	}

	.journal-single__grid {
		grid-template-columns: 1fr;
	}

	.journal-single__sidebar {
		position: static;
		display: flex;
		gap: 32px;
	}
}

@media (max-width: 720px) {

	.page-header {
		padding: clamp(110px, 14vh, 160px) 0 clamp(36px, 4vh, 52px);
	}

	.page-header__title {
		font-size: clamp(28px, 8vw, 40px);
	}

	.page-header__subtitle {
		font-size: 14px;
	}

	/* About */
	.about-story {
		padding: 52px 0;
	}

	.about-story__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.about-values {
		padding: 52px 0;
	}

	.about-values__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.about-cta {
		padding: 52px 0;
	}

	/* Services page */
	.services-page__card {
		grid-template-columns: 1fr;
	}

	.services-page__card:nth-child(even) {
		direction: ltr;
	}

	.services-page__card-image {
		min-height: 200px;
	}

	.services-page__card-body {
		padding: 28px 24px;
	}

	/* Single service */
	.service-single__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.service-single__process-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	/* Portfolio page */
	.portfolio-page__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	/* Single portfolio */
	.portfolio-single__hero img {
		aspect-ratio: 16 / 9;
	}

	.portfolio-single__nav-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.portfolio-single__nav-link--next {
		text-align: left;
	}

	.portfolio-single__nav-link--next .portfolio-single__nav-label {
		justify-content: flex-start;
	}

	/* Journal page */
	.journal-page__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	/* Resources */
	.resources-page__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	/* Contact */
	.contact-page__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.contact-form__row {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}

	.mobile-drawer-panel {
		transition: none;
	}

	.mobile-drawer {
		transition: none;
	}

	.play .ring {
		animation: none;
	}

	.scroll-explore::after {
		animation: none;
	}
}
