:root {
	--vv-ink: #111310;
	--vv-ink-soft: #242721;
	--vv-paper: #f6f3ec;
	--vv-paper-deep: #ede8de;
	--vv-white: #fff;
	--vv-moss: #55634a;
	--vv-clay: #b96f43;
	--vv-sand: #d9c7a2;
	--vv-mist: #dfe4dd;
	--vv-muted: #6b6c65;
	--vv-border: rgba(17, 19, 16, 0.16);
	--vv-shadow: 0 18px 54px rgba(17, 19, 16, 0.12);
	--vv-shell: 1180px;
	--vv-shell-wide: 1480px;
	--vv-gutter: clamp(1rem, 4vw, 3.5rem);
	--vv-section: clamp(4rem, 9vw, 8.5rem);
	--vv-serif: ui-serif, Georgia, Cambria, "Times New Roman", serif;
	--vv-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-padding-top: 6rem;
}

body {
	margin: 0;
	background: var(--vv-paper);
	color: var(--vv-ink);
	font-family: var(--vv-sans);
	font-size: clamp(1rem, 0.95rem + 0.15vw, 1.1rem);
	line-height: 1.68;
	text-rendering: optimizeLegibility;
}

body.navigation-is-open {
	overflow: hidden;
}

img,
picture,
video,
iframe {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

figure {
	margin: 0;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	text-decoration-color: var(--vv-clay);
}

button,
input,
textarea,
select {
	font: inherit;
}

button,
input[type="button"],
input[type="submit"] {
	cursor: pointer;
}

:focus-visible {
	outline: 3px solid var(--vv-clay);
	outline-offset: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.65em;
	font-family: var(--vv-serif);
	font-weight: 500;
	line-height: 1.06;
	text-wrap: balance;
}

h1 {
	font-size: clamp(3rem, 8vw, 8rem);
	letter-spacing: -0.055em;
}

h2 {
	font-size: clamp(2.2rem, 4.4vw, 4.8rem);
	letter-spacing: -0.04em;
}

h3 {
	font-size: clamp(1.45rem, 2.2vw, 2.2rem);
	letter-spacing: -0.025em;
}

p {
	margin: 0 0 1.35em;
}

::selection {
	background: var(--vv-sand);
	color: var(--vv-ink);
}

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

.screen-reader-text:focus {
	top: 0.75rem;
	left: 0.75rem;
	z-index: 10000;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto;
	background: var(--vv-white);
	color: var(--vv-ink);
}

.shell {
	width: min(calc(100% - (2 * var(--vv-gutter))), var(--vv-shell));
	margin-inline: auto;
}

.shell--wide {
	width: min(calc(100% - (2 * var(--vv-gutter))), var(--vv-shell-wide));
}

.section {
	padding-block: var(--vv-section);
}

.section--dark {
	background: var(--vv-ink);
	color: var(--vv-white);
}

.section--soft {
	background: var(--vv-paper-deep);
}

.section--accent {
	background: var(--vv-sand);
}

.eyebrow {
	margin: 0 0 1.2rem;
	font-family: var(--vv-sans);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.button,
.wp-element-button,
button[type="submit"],
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.78rem 1.25rem;
	border: 1px solid var(--vv-white);
	border-radius: 0;
	background: var(--vv-white);
	color: var(--vv-ink);
	font-size: 0.74rem;
	font-weight: 750;
	letter-spacing: 0.1em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.wp-element-button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
	border-color: var(--vv-clay);
	background: var(--vv-clay);
	color: var(--vv-white);
	text-decoration: none;
}

.button--small {
	min-height: 40px;
	padding: 0.6rem 0.9rem;
	font-size: 0.68rem;
}

.button--ghost {
	background: transparent;
	color: var(--vv-white);
}

.button--dark {
	border-color: var(--vv-ink);
	background: var(--vv-ink);
	color: var(--vv-white);
}

.button-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.76rem;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-decoration: none;
	text-transform: uppercase;
}

.text-link::after {
	content: "\2192";
	transition: transform 180ms ease;
}

.text-link:hover::after {
	transform: translateX(0.25rem);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(17, 19, 16, 0.96);
	color: var(--vv-white);
	backdrop-filter: blur(14px);
}

/* Logged-in users get the admin bar fixed over the top of the viewport, so a
 * header pinned to top:0 slides underneath it. WordPress grows the bar to 46px
 * below 783px and lets it scroll away entirely below 601px, so the offset has
 * to follow those same breakpoints. */
.admin-bar .site-header {
	top: 32px;
}

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

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

.site-header__inner {
	display: grid;
	grid-template-columns: minmax(170px, auto) minmax(0, 1fr) auto;
	align-items: center;
	min-height: 76px;
	gap: clamp(1rem, 2vw, 2rem);
}

.site-branding {
	min-width: 0;
}

.custom-logo-link,
.site-branding__logo-link,
.site-branding__text {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	color: inherit;
	text-decoration: none;
}

.custom-logo {
	width: auto;
	max-width: min(220px, 40vw);
	max-height: 52px;
}

.site-header .custom-logo,
.site-header .site-branding__logo {
	width: 52px;
	height: 52px;
	object-fit: contain;
	filter: none;
}

.site-branding__name {
	font-family: var(--vv-serif);
	font-size: 1.35rem;
	line-height: 1;
}

.site-branding__description {
	margin-top: 0.35rem;
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.primary-navigation {
	justify-self: center;
	min-width: 0;
}

.primary-menu,
.primary-navigation .menu {
	display: flex;
	align-items: center;
	gap: clamp(0.75rem, 1.7vw, 1.7rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu li,
.primary-navigation .menu li {
	position: relative;
}

.primary-menu a,
.primary-navigation .menu a {
	display: block;
	padding-block: 1.65rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-decoration: none;
	text-transform: uppercase;
}

/* Top-level placeholders only open a submenu; do not present them as links. */
.primary-menu > li > a[href="#"],
.primary-navigation .menu > li > a[href="#"] {
	cursor: default;
}

/* Homepage hero slider.
 *
 * Nothing here may set position, inset, width, transform or font-size on the
 * slide layers. Those come from the per-slide composer in Vaios Hero Slider,
 * and this stylesheet loads after the plugin's — an override here silently
 * discards every coordinate the composer saved, so the admin preview and the
 * live page disagree with no way to tell why from the editor.
 *
 * A previous revision pinned the layers with `position: static !important` and
 * laid the content out as a centred flex column above 901px. That is what made
 * dragging a title in the composer do nothing on desktop. */

/* Type size is the one exception, and only for Greek. The same slide runs
 * about a fifth longer in Greek than in English, but the composer stores one
 * size per slide rather than one per language, so the English setting pushes
 * the Greek headline onto an extra line and into the layer below.
 *
 * These cap rather than pin: the composer's own value is still the ceiling, so
 * lowering it in the editor lowers Greek too. Only the overflow is prevented. */
/* The size itself comes from the slide's own Greek controls in the composer,
 * so the editor preview and the live page read the same number and cannot
 * disagree. Only the leading and the line breaking are set here. */
html[lang^="el"] .vvhs-slider .vvhs-slide__title {
	font-size: var(--vvhs-el-title-font-size, var(--vvhs-title-font-size, 8rem));
	line-height: 1.12;
	/* Greek headlines are long enough that a ragged break pushes a third line;
	 * balancing keeps the two lines even instead. */
	text-wrap: balance;
}

html[lang^="el"] .vvhs-slider .vvhs-slide__description {
	font-size: var(--vvhs-el-description-font-size, var(--vvhs-description-font-size, 1.45rem));
	line-height: 1.35;
}

html[lang^="el"] .vvhs-slider .vvhs-slide__eyebrow {
	font-size: var(--vvhs-el-eyebrow-font-size, var(--vvhs-eyebrow-font-size, 0.76rem));
}

html[lang^="el"] .vvhs-slider .vvhs-button {
	font-size: var(--vvhs-el-buttons-font-size, var(--vvhs-buttons-font-size, 0.74rem));
}

/* 701–900px is the one band nobody composes for: the layer coordinates come
 * from a desktop-width preview, but the frame here is barely wider than a
 * tablet. A Greek headline takes three lines instead of two, and because the
 * layers are absolutely positioned the extra line has nowhere to go — the
 * eyebrow slides up behind the header and the title lands on the description.
 *
 * Stack the three layers in normal flow for this band only. Coordinates are
 * ignored, nothing can collide, and both the desktop composer above 901px and
 * the plugin's own phone settings below 701px are left untouched. */
@media (min-width: 701px) and (max-width: 900px) {
	.vvhs-slider .vvhs-slide__content {
		display: flex !important;
		box-sizing: border-box;
		flex-direction: column;
		justify-content: center;
		gap: clamp(1rem, 2.5vw, 1.6rem);
		padding: 0 6vw !important;
	}

	.vvhs-slider .vvhs-slide__title-group,
	.vvhs-slider .vvhs-slide__description,
	.vvhs-slider .vvhs-slide__buttons {
		position: static !important;
		inset: auto !important;
		width: auto !important;
		max-width: 100% !important;
		transform: none !important;
	}
}

@media (max-width: 900px) {
	.vvhs-slider .vvhs-slide__title,
	html[lang^="el"] .vvhs-slider .vvhs-slide__title {
		font-size: clamp(2.7rem, 8vw, 4.4rem) !important;
		line-height: 1.2 !important;
	}

	html[lang^="el"] .vvhs-slider .vvhs-slide__description {
		font-size: clamp(1.35rem, 4vw, 1.9rem) !important;
		line-height: 1.4 !important;
	}

	html[lang^="el"] .vvhs-slider .vvhs-slide--right {
		--vvhs-description-y: 52% !important;
		--vvhs-buttons-y: 64% !important;
	}

	html[lang^="el"] .vvhs-slider .vvhs-slide--right .vvhs-slide__title {
		max-width: 82% !important;
	}
}

@media (max-width: 600px) {
	.vvhs-slider .vvhs-slide__title,
	html[lang^="el"] .vvhs-slider .vvhs-slide__title {
		font-size: clamp(2.3rem, 9vw, 3.5rem) !important;
		line-height: 1.22 !important;
	}

	html[lang^="el"] .vvhs-slider .vvhs-slide--right {
		--vvhs-description-y: 59% !important;
		--vvhs-buttons-y: 70% !important;
	}

	html[lang^="el"] .vvhs-slider .vvhs-slide--right .vvhs-slide__title {
		max-width: 94% !important;
	}
}

.site-header .primary-navigation a:not(.button),
.site-header .language-switcher a,
.site-header .header-cart {
	color: var(--vv-white);
}

.primary-menu > li > a::after,
.primary-navigation .menu > li > a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 1.15rem;
	left: 0;
	height: 1px;
	background: var(--vv-clay);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
}

.primary-menu > li:hover > a::after,
.primary-menu > li.current-menu-item > a::after,
.primary-menu > li.current-menu-ancestor > a::after,
.primary-menu > li:focus-within > a::after,
.primary-navigation .menu > li:hover > a::after {
	transform: scaleX(1);
}

.primary-menu .sub-menu,
.primary-navigation .children {
	position: absolute;
	top: calc(100% - 0.5rem);
	left: -1rem;
	min-width: 240px;
	margin: 0;
	padding: 0.5rem 0;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: var(--vv-ink-soft);
	box-shadow: var(--vv-shadow);
	list-style: none;
	opacity: 0;
	pointer-events: none;
	transform: translateY(0.5rem);
	transition: opacity 160ms ease, transform 160ms ease;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu,
.primary-navigation .menu li:hover > .children,
.primary-navigation .menu li:focus-within > .children {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.primary-menu .sub-menu a,
.primary-navigation .children a {
	padding: 0.65rem 1rem;
	line-height: 1.4;
}

/* Keep the Downloads third level inside its parent panel and permanently
   expanded while the parent panel is open. This keeps Workshops and
   Mentorship Program in a stable position throughout pointer travel. */
@media (min-width: 1024px) {
	/* A mouse click can leave a top-level link focused. Do not let that stale
	   focus keep a large submenu open over the page. Keyboard focus remains
	   supported through :focus-visible below. */
	.primary-menu > li:focus-within:not(:hover) > .sub-menu,
	.primary-navigation .menu > li:focus-within:not(:hover) > .children {
		opacity: 0;
		pointer-events: none;
		transform: translateY(0.5rem);
	}

	.primary-navigation.is-keyboard-navigation .primary-menu li:focus-within > .sub-menu,
	.primary-navigation.is-keyboard-navigation .menu li:focus-within > .children {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	/* A clicked top-level link keeps browser focus. When the pointer moves to a
	   sibling item, the sibling hover must take priority and close the old menu. */
	.primary-menu:has(> li:hover) > li:not(:hover) > .sub-menu,
	.primary-navigation .menu:has(> li:hover) > li:not(:hover) > .children {
		opacity: 0;
		pointer-events: none;
		transform: translateY(0.5rem);
	}

	.primary-menu .sub-menu .sub-menu {
		position: static;
		display: block;
		min-width: 0;
		margin: 0.15rem 0 0.65rem 1rem;
		padding: 0 0 0 0.55rem;
		border: 0;
		border-left: 1px solid rgba(255, 255, 255, 0.18);
		background: transparent;
		box-shadow: none;
		opacity: 1;
		pointer-events: none;
		transform: none;
	}

	.primary-menu > li:hover > .sub-menu .sub-menu,
	.primary-navigation.is-keyboard-navigation .primary-menu > li:focus-within > .sub-menu .sub-menu {
		pointer-events: auto;
	}


	.primary-menu .sub-menu .sub-menu a {
		padding: 0.55rem 0.65rem;
		font-size: 0.78rem;
		line-height: 1.35;
	}
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.site-header__actions--mobile {
	display: none;
}

.header-cart {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.header-cart--empty {
	display: none;
}

.header-cart__count {
	display: grid;
	place-items: center;
	min-width: 1.4rem;
	height: 1.4rem;
	padding-inline: 0.25rem;
	border-radius: 999px;
	background: var(--vv-clay);
}

.language-switcher ul {
	display: flex;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.language-switcher a {
	display: grid;
	width: 2rem;
	height: 2rem;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 0.62rem;
	font-weight: 750;
	letter-spacing: 0.05em;
	text-decoration: none;
}

.language-switcher a[aria-current="page"],
.language-switcher a:hover {
	border-color: var(--vv-clay);
	background: var(--vv-clay);
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 0.65rem;
	padding: 0.65rem;
	border: 0;
	background: transparent;
	color: inherit;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.menu-toggle__icon {
	display: grid;
	gap: 5px;
	width: 22px;
}

.menu-toggle__icon span {
	display: block;
	height: 1px;
	background: currentColor;
	transition: transform 180ms ease;
}

.contact-strip {
	position: relative;
	z-index: 900;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	background: #48422d;
	color: var(--vv-white);
}

.contact-strip__inner {
	display: flex;
	min-height: 56px;
	align-items: center;
	justify-content: space-between;
	gap: clamp(1.5rem, 3vw, 3rem);
}

.contact-strip__contacts,
.contact-strip__socials ul {
	display: flex;
	align-items: center;
}

.contact-strip__contacts {
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: clamp(1rem, 2.4vw, 2rem);
}

.contact-strip__socials {
	margin-left: auto;
}

.contact-strip__contact-link {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
}

.contact-strip__contact-link--whatsapp .contact-strip__icon {
	color: #25d366;
}

.contact-strip__contact-link--whatsapp:hover .contact-strip__icon {
	color: #128c7e;
}

.contact-strip__socials ul {
	justify-content: flex-end;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-strip__social-link {
	display: flex;
	width: 2.25rem;
	height: 2.25rem;
	align-items: center;
	justify-content: center;
	padding: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: var(--vv-white);
	line-height: 0;
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-strip__social-link:hover {
	background: var(--vv-clay);
	color: var(--vv-white);
	text-decoration: none;
	transform: translateY(-2px);
}

.contact-strip__social-link--tiktok {
	width: 2.25rem;
	padding: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
}

.contact-strip__social-link--tiktok:hover {
	background: var(--vv-clay);
	color: var(--vv-white);
}

.contact-strip__icon {
	display: block;
	flex: 0 0 auto;
	width: 1.15rem;
	height: 1.15rem;
	overflow: visible;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.contact-strip__icon-fill {
	fill: currentColor;
	stroke: none;
}

.contact-strip__social-link--instagram .contact-strip__icon,
.contact-strip__social-link--tiktok .contact-strip__icon {
	width: 1.08rem;
	height: 1.08rem;
}

.contact-strip__social-link--youtube .contact-strip__icon,
.contact-strip__social-link--linkedin .contact-strip__icon {
	width: 1.22rem;
	height: 1.22rem;
}

.hero {
	position: relative;
	display: grid;
	min-height: min(88vh, 920px);
	align-items: end;
	overflow: hidden;
	background: linear-gradient(135deg, #30382c, #111310 68%);
	color: var(--vv-white);
}

.hero__media,
.hero__overlay {
	position: absolute;
	inset: 0;
}

.hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero__overlay {
	background: linear-gradient(90deg, rgba(11, 13, 10, 0.82) 0%, rgba(11, 13, 10, 0.42) 48%, rgba(11, 13, 10, 0.1) 100%), linear-gradient(0deg, rgba(11, 13, 10, 0.64), transparent 52%);
}

.hero__content {
	position: relative;
	z-index: 1;
	padding-block: clamp(6rem, 15vh, 11rem) clamp(3.5rem, 9vh, 7rem);
}

.hero h1 {
	max-width: 9ch;
	margin-bottom: 0.2em;
}

.hero__lead {
	max-width: 36rem;
	font-family: var(--vv-serif);
	font-size: clamp(1.3rem, 2.4vw, 2.15rem);
	line-height: 1.3;
}

.front-page-content:empty {
	display: none;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: clamp(2rem, 5vw, 4.5rem);
}

.section-heading h2 {
	margin: 0;
}

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

.project-card {
	grid-column: span 6;
	min-height: clamp(300px, 43vw, 650px);
}

.project-card:nth-child(3n) {
	grid-column: span 12;
	min-height: clamp(340px, 52vw, 760px);
}

.project-card__link {
	position: relative;
	display: block;
	height: 100%;
	overflow: hidden;
	background: var(--vv-ink-soft);
	color: var(--vv-white);
	text-decoration: none;
}

.project-card__media,
.project-card__overlay,
.project-card__placeholder {
	position: absolute;
	inset: 0;
	display: block;
}

.project-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.project-card__placeholder,
.content-card__placeholder {
	background: linear-gradient(135deg, var(--vv-moss), var(--vv-ink));
}

.project-card__overlay {
	background: linear-gradient(0deg, rgba(11, 13, 10, 0.82), transparent 62%);
	transition: background-color 240ms ease;
}

.project-card__content {
	position: absolute;
	right: clamp(1.25rem, 3vw, 2.5rem);
	bottom: clamp(1.25rem, 3vw, 2.5rem);
	left: clamp(1.25rem, 3vw, 2.5rem);
	z-index: 1;
}

.project-card__content > .eyebrow {
	display: none;
}

.project-card__title {
	display: block;
	width: 100%;
	max-width: none;
	overflow: hidden;
	font-family: var(--vv-serif);
	font-size: var(--project-title-size, clamp(1.8rem, 4vw, 4.4rem));
	letter-spacing: -0.035em;
	line-height: 1.02;
	white-space: nowrap;
}

.project-card:hover img {
	transform: scale(1.035);
}

.card-grid {
	display: grid;
	gap: clamp(1.25rem, 2.5vw, 2.5rem);
}

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

.content-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	border-top: 1px solid var(--vv-border);
}

.content-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--vv-mist);
}

.content-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.content-card:hover .content-card__media img {
	transform: scale(1.025);
}

.content-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding-top: 1.25rem;
}

.content-card__meta {
	margin: 0 0 0.8rem;
	color: var(--vv-muted);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.content-card__title {
	margin-bottom: 0.55rem;
	font-size: clamp(1.45rem, 2.2vw, 2.2rem);
}

.content-card__title a {
	text-decoration: none;
}

.content-card__excerpt {
	color: var(--vv-muted);
	font-size: 0.95rem;
}

.content-card .text-link {
	margin-top: auto;
}

.journal-hero {
	position: relative;
	display: flex;
	min-height: clamp(440px, 62vw, 780px);
	align-items: flex-end;
	overflow: hidden;
	background: var(--vv-ink);
	color: var(--vv-white);
}

.journal-hero__media,
.journal-hero__overlay {
	position: absolute;
	inset: 0;
}

.journal-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.journal-hero__overlay {
	background:
		linear-gradient(90deg, rgba(11, 13, 10, 0.78), rgba(11, 13, 10, 0.08) 68%),
		linear-gradient(0deg, rgba(11, 13, 10, 0.72), transparent 62%);
}

.journal-hero__content {
	position: relative;
	z-index: 1;
	padding-block: clamp(4rem, 10vw, 8rem);
}

.journal-hero h1 {
	max-width: 10ch;
	margin: 0;
	font-size: clamp(4.5rem, 12vw, 11rem);
	line-height: 0.82;
}

.journal-hero__lead {
	max-width: 38rem;
	margin: clamp(1.5rem, 3vw, 2.5rem) 0 0;
	font-family: var(--vv-serif);
	font-size: clamp(1.2rem, 2vw, 1.75rem);
	line-height: 1.45;
}

.journal-index {
	padding-top: clamp(3.75rem, 6vw, 5.75rem);
	background: var(--vv-paper);
}

.journal-live-search {
	position: relative;
	z-index: 6;
	max-width: 54rem;
	margin: clamp(1.25rem, 2.5vw, 1.75rem) auto 0;
	padding: 0.4rem;
	border: 1px solid var(--vv-border);
	background: var(--vv-white);
	box-shadow: none;
}

.journal-live-search__row {
	display: flex;
}

.journal-live-search__field {
	min-width: 0;
	flex: 1;
	padding: 0.9rem 1rem !important;
	border-color: var(--vv-border) !important;
	background: transparent !important;
	font-family: var(--vv-serif);
	font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.journal-live-search .journal-live-search__button {
	appearance: none;
	padding: 0.85rem 1.35rem;
	border: 1px solid var(--vv-ink);
	background: var(--vv-ink) !important;
	color: var(--vv-white) !important;
	font-size: 0.7rem;
	font-weight: 750;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	transition: background-color 180ms ease, border-color 180ms ease;
}

.journal-live-search .journal-live-search__button:hover,
.journal-live-search .journal-live-search__button:focus-visible {
	border-color: var(--vv-clay);
	background: var(--vv-clay) !important;
}

.journal-live-search__results {
	position: absolute;
	top: calc(100% + 0.55rem);
	right: 0;
	left: 0;
	max-height: min(62vh, 520px);
	overflow-y: auto;
	border: 1px solid var(--vv-border);
	background: var(--vv-white);
	box-shadow: 0 22px 55px rgba(11, 13, 10, 0.2);
}

.journal-live-search__message {
	margin: 0;
	padding: 1rem 1.15rem;
	color: var(--vv-muted);
}

.journal-live-search__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.journal-live-search__item + .journal-live-search__item {
	border-top: 1px solid var(--vv-border);
}

.journal-live-search__link {
	display: grid;
	grid-template-columns: 104px minmax(0, 1fr);
	align-items: center;
	gap: 1rem;
	padding: 0.75rem;
	text-decoration: none;
}

.journal-live-search__link:hover,
.journal-live-search__link:focus-visible {
	background: var(--vv-paper);
}

.journal-live-search__thumb {
	display: block;
	width: 104px;
	height: 70px;
	object-fit: cover;
	background: var(--vv-mist);
}

.journal-live-search__meta {
	display: block;
	margin-bottom: 0.25rem;
	color: var(--vv-muted);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.journal-live-search__title {
	display: block;
	font-family: var(--vv-serif);
	font-size: clamp(1rem, 1.7vw, 1.35rem);
	line-height: 1.15;
}

.journal-index__header {
	margin-bottom: clamp(2.5rem, 5vw, 4.25rem);
}

.journal-index__header > div:first-child {
	text-align: center;
}

.journal-index__header h2 {
	max-width: none;
	margin: 0 auto;
	font-size: clamp(1.65rem, 8vw, 4.8rem);
	white-space: nowrap;
}

.journal-tools {
	margin-top: clamp(1.5rem, 3vw, 2.25rem);
	padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
	border-top: 1px solid var(--vv-border);
}

.journal-categories {
	display: flex;
	width: 100%;
	flex-wrap: nowrap;
	justify-content: center;
	gap: 0.6rem;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 0.3rem;
	scrollbar-width: thin;
}

.journal-categories a {
	flex: 0 0 auto;
	padding: 0.55rem 0.8rem;
	border: 1px solid var(--vv-border);
	font-size: 0.68rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.journal-categories a:hover,
.journal-categories a:focus-visible,
.journal-categories a.is-current {
	border-color: var(--vv-ink);
	background: var(--vv-ink);
	color: var(--vv-white);
}

.journal-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: clamp(2.25rem, 4vw, 4.5rem) clamp(1.25rem, 2.5vw, 2.5rem);
}

.journal-grid .content-card {
	grid-column: span 4;
}

.journal-grid .content-card:first-child {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.85fr);
	align-items: stretch;
	border-top: 0;
	background: var(--vv-white);
}

.journal-grid .content-card:first-child .content-card__media {
	display: flex;
	align-items: center;
	min-height: clamp(420px, 42vw, 650px);
	aspect-ratio: auto;
	background: var(--vv-white);
}

.journal-grid .content-card:first-child .content-card__media img {
	height: auto;
	object-fit: contain;
}

.journal-grid .content-card:first-child:hover .content-card__media img {
	transform: none;
}

.journal-grid .content-card:first-child .content-card__body {
	justify-content: center;
	padding: clamp(2rem, 5vw, 5rem);
}

.journal-grid .content-card:first-child .content-card__title {
	font-size: clamp(2.2rem, 3vw, 3.8rem);
	line-height: 0.98;
}

.journal-grid .content-card:first-child .content-card__excerpt {
	font-size: clamp(1rem, 1.2vw, 1.15rem);
}

.journal-pagination {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1rem;
	margin-top: clamp(3rem, 7vw, 6rem);
	padding-top: clamp(1.25rem, 3vw, 2rem);
	border-top: 1px solid var(--vv-border);
}

.journal-pagination a {
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-decoration: none;
	text-transform: uppercase;
}

.journal-pagination__next {
	justify-self: end;
}

.journal-pagination__status {
	color: var(--vv-muted);
	font-family: var(--vv-serif);
	font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.workshop-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
	align-items: end;
	gap: clamp(2rem, 7vw, 7rem);
}

.workshop-cta h2,
.about-strip h2 {
	margin: 0;
}

.about-strip {
	overflow: hidden;
	background: var(--vv-paper);
}

.about-strip__inner {
	display: grid;
	grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
	align-items: center;
	gap: clamp(3rem, 5.5vw, 7rem);
}

.about-strip__content {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}

.about-strip__copy h2 {
	max-width: 10ch;
	font-size: clamp(3rem, 4.5vw, 5.4rem);
	line-height: 1.08;
}

.about-strip__content .text-link {
	margin-top: clamp(2rem, 3vw, 3.25rem);
}

.about-strip__gallery {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(170px, 0.95fr);
	align-items: center;
	gap: clamp(0.75rem, 1.1vw, 1.25rem);
	padding-left: clamp(1.5rem, 2.5vw, 3rem);
	border-left: 1px solid var(--vv-border);
}

.about-strip__photo {
	position: relative;
	width: 100%;
	margin: 0;
	overflow: hidden;
	background: var(--vv-paper-deep);
}

.about-strip__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-strip__photo--landscape {
	aspect-ratio: 4 / 3;
}

.about-strip__photo--portrait {
	aspect-ratio: 3 / 4;
}

.workshop-feature {
	background: var(--vv-ink);
	color: var(--vv-white);
}

.workshop-feature__grid {
	display: grid;
	min-height: clamp(580px, 48vw, 760px);
	grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.85fr);
}

.workshop-feature__media {
	margin: 0;
	overflow: hidden;
	background: var(--vv-ink-soft);
}

.workshop-feature__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.workshop-feature__content {
	display: flex;
	padding: clamp(3rem, 6vw, 6.5rem);
	flex-direction: column;
	justify-content: center;
}

.workshop-feature__content .eyebrow {
	color: var(--vv-clay);
}

.workshop-feature__content h2 {
	max-width: 10ch;
	margin: 0 0 1.75rem;
	font-size: clamp(2.8rem, 4.6vw, 5.5rem);
	line-height: 1.08;
}

.workshop-feature__content > p:not(.eyebrow) {
	max-width: 30rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.72);
	font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.workshop-feature__content .button {
	align-self: flex-start;
}

.testimonials {
	background: var(--vv-paper-deep);
}

.testimonials__inner {
	width: 100%;
	padding-inline: var(--vv-gutter);
}

.testimonials .section-heading {
	justify-content: center;
	text-align: center;
}

.testimonials .section-heading h2 {
	margin-inline: auto;
}

.testimonials .card-grid {
	align-items: stretch;
}

.testimonials .quote-card {
	display: flex;
	height: 100%;
	flex-direction: column;
}

.testimonials .quote-card blockquote {
	display: flex;
	width: 100%;
	flex: 1;
	flex-direction: column;
}

.testimonials__actions {
	display: flex;
	justify-content: center;
	margin-top: clamp(2rem, 4vw, 3.5rem);
}

.quote-card {
	position: relative;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	border: 1px solid var(--vv-border);
	background: var(--vv-white);
}

.quote-card::before {
	content: "“";
	position: absolute;
	top: clamp(1.25rem, 2.5vw, 2rem);
	right: clamp(1.25rem, 2.5vw, 2rem);
	color: var(--vv-clay);
	font-family: var(--vv-serif);
	font-size: 4rem;
	line-height: 0.7;
}

.quote-card blockquote {
	margin: clamp(1.5rem, 3vw, 2rem) 0 0;
}

.quote-card blockquote > p {
	font-family: var(--vv-serif);
	font-size: clamp(1.15rem, 1.7vw, 1.5rem);
	line-height: 1.45;
}

.quote-card cite {
	display: block;
	font-size: 0.72rem;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.quote-card__author {
	display: flex;
	align-items: center;
	gap: 1rem;
	min-height: clamp(3.5rem, 5vw, 4.5rem);
	padding-right: 3.75rem;
}

.quote-card__avatar {
	flex: 0 0 auto;
	width: clamp(3.5rem, 5vw, 4.5rem);
	margin: 0;
	aspect-ratio: 1;
	overflow: hidden;
	border: 2px solid var(--vv-paper-deep);
	border-radius: 50%;
	background: var(--vv-paper-deep);
}

.quote-card__avatar-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.quote-card__author-copy {
	min-width: 0;
}

.quote-card__author-copy > span,
.quote-card cite span {
	color: var(--vv-muted);
}

.quote-card__link {
	margin-top: 1.5rem;
	align-self: flex-start;
	color: var(--vv-ink);
}

.testimonials-page {
	background: var(--vv-paper-deep);
}

.testimonials-page__hero {
	position: relative;
	display: flex;
	min-height: clamp(620px, 78vh, 860px);
	align-items: flex-end;
	overflow: hidden;
	background: var(--vv-ink);
	color: var(--vv-white);
}

.testimonials-page__hero-media,
.testimonials-page__hero-veil {
	position: absolute;
	inset: 0;
}

.testimonials-page__hero-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 48%;
}

.testimonials-page__hero-veil {
	background:
		linear-gradient(90deg, rgba(8, 10, 8, 0.92) 0%, rgba(8, 10, 8, 0.68) 46%, rgba(8, 10, 8, 0.16) 82%),
		linear-gradient(0deg, rgba(8, 10, 8, 0.7) 0%, transparent 58%);
}

.testimonials-page__hero-content {
	position: relative;
	z-index: 1;
	padding-block: clamp(5rem, 11vh, 8rem);
}

.testimonials-page__hero .eyebrow {
	color: var(--vv-clay);
}

.testimonials-page__hero h1 {
	max-width: 14ch;
	margin: 0 0 1.5rem;
	color: var(--vv-white);
	font-size: clamp(3.4rem, 7vw, 7.5rem);
	font-variant-ligatures: none;
	letter-spacing: -0.025em;
	line-height: 1.02;
}

.testimonials-page__hero-content > p:last-child {
	max-width: 42rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	line-height: 1.7;
}

.testimonials-page__archive {
	padding-inline: var(--vv-gutter);
}

.testimonials-page__grid {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.25rem, 2.5vw, 2.5rem);
}

.testimonials-page__grid .quote-card {
	scroll-margin-top: 9rem;
}

.testimonials-page__grid .quote-card blockquote > p {
	font-size: clamp(1.08rem, 1.35vw, 1.35rem);
}

.testimonials-page__grid .quote-card__avatar {
	width: clamp(4.25rem, 6vw, 5.5rem);
}

.archive-hero {
	padding-block: clamp(5rem, 10vw, 9rem);
	background: var(--vv-ink);
	color: var(--vv-white);
}

.archive-hero--accent {
	background: var(--vv-moss);
}

.archive-hero h1 {
	max-width: 14ch;
	margin: 0;
}

.archive-hero__description {
	max-width: 50rem;
	margin-top: 1.5rem;
	font-family: var(--vv-serif);
	font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.singular-view {
	padding-bottom: var(--vv-section);
}

.singular-header {
	padding-block: clamp(4.5rem, 10vw, 9rem) clamp(2.5rem, 5vw, 4.5rem);
}

.singular-header h1 {
	max-width: 14ch;
	font-size: clamp(3rem, 7vw, 7rem);
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: 1.5rem;
	color: var(--vv-muted);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.entry-meta a {
	text-decoration: none;
}

.singular-deck {
	max-width: 44rem;
	margin: 1.5rem 0 0;
	color: var(--vv-muted);
	font-family: var(--vv-serif);
	font-size: clamp(1.25rem, 2.25vw, 2rem);
	line-height: 1.4;
}

.singular-media {
	margin-bottom: clamp(3rem, 7vw, 6rem);
}

.singular-media img {
	width: 100%;
	max-height: 85vh;
	object-fit: cover;
}

.singular-media figcaption,
.wp-element-caption {
	margin-top: 0.7rem;
	color: var(--vv-muted);
	font-size: 0.78rem;
}

.entry-content {
	font-size: clamp(1.04rem, 1rem + 0.22vw, 1.18rem);
}

.entry-content > * {
	margin-top: 0;
	margin-bottom: 1.55em;
}

.entry-content > h2,
.entry-content > h3 {
	margin-top: 1.65em;
}

.entry-content .alignwide,
.entry-content .alignfull {
	width: auto;
	max-width: none;
}

.entry-content .alignwide {
	margin-right: min(-18vw, calc((760px - 100vw) / 2 + var(--vv-gutter)));
	margin-left: min(-18vw, calc((760px - 100vw) / 2 + var(--vv-gutter)));
}

.entry-content .alignfull {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.entry-content blockquote {
	margin-inline: 0;
	padding-left: clamp(1.25rem, 3vw, 2.5rem);
	border-left: 3px solid var(--vv-clay);
	font-family: var(--vv-serif);
	font-size: clamp(1.3rem, 2.4vw, 2rem);
}

.entry-content iframe {
	width: 100%;
}

.wp-block-gallery {
	gap: clamp(0.5rem, 1.25vw, 1rem) !important;
}

.wp-block-image img {
	width: 100%;
}

/* Curated portfolio galleries. The legacy gallery pages share one image-first
 * layout while preserving each photograph's original aspect ratio. */
.portfolio-gallery-view {
	padding-bottom: clamp(3rem, 6vw, 6rem);
	background: var(--vv-paper);
}

.portfolio-gallery-view .portfolio-gallery-header {
	padding-block: clamp(3rem, 6vw, 6rem) clamp(2rem, 3.5vw, 3.5rem);
}

.portfolio-gallery-view .portfolio-gallery-header h1 {
	max-width: 16ch;
	margin: 0.35rem 0 0;
	font-size: clamp(3rem, 6vw, 6.5rem);
	line-height: 0.98;
}

.portfolio-gallery-view .singular-deck {
	max-width: 54rem;
	margin-top: 1rem;
}

.portfolio-gallery-view .singular-media {
	margin-bottom: clamp(2rem, 4vw, 4rem);
}

.portfolio-gallery-view .singular-media img {
	display: block;
	width: 100%;
	max-height: none;
	height: auto;
}

.portfolio-gallery-content {
	font-size: clamp(1rem, 1vw + 0.72rem, 1.15rem);
}

.portfolio-gallery-content > :where(p, h2, h3, h4, ul, ol, blockquote):not(.alignwide):not(.alignfull) {
	width: min(100%, 780px);
	margin-right: auto;
	margin-left: auto;
}

.portfolio-gallery-content > :where(.wp-block-gallery, .gallery, .blocks-gallery-grid),
.portfolio-gallery-content .wp-block-gallery,
.portfolio-gallery-content .gallery {
	width: 100%;
	max-width: none;
	margin: clamp(2rem, 4vw, 4rem) 0;
	column-count: 2;
	column-gap: clamp(0.75rem, 1.4vw, 1.4rem);
	display: block !important;
}

.portfolio-gallery-content :where(.wp-block-gallery, .gallery, .blocks-gallery-grid) > :where(figure, li, .gallery-item),
.portfolio-gallery-content .wp-block-gallery figure,
.portfolio-gallery-content .gallery .gallery-item {
	display: inline-block !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 0 clamp(0.75rem, 1.4vw, 1.4rem) !important;
	break-inside: avoid;
	vertical-align: top;
}

.portfolio-gallery-content :where(.wp-block-gallery, .gallery, .blocks-gallery-grid) img,
.portfolio-gallery-content .wp-block-image img {
	display: block;
	width: 100%;
	height: auto !important;
	max-height: none;
	object-fit: contain;
}

.portfolio-gallery-content :where(iframe, video, .wp-block-embed) {
	width: 100%;
	max-width: none;
}

.portfolio-gallery-content .wp-block-embed__wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.portfolio-gallery-content .wp-block-embed__wrapper iframe {
	position: absolute;
	inset: 0;
	height: 100%;
}

@media (max-width: 700px) {
	.portfolio-gallery-view .portfolio-gallery-header {
		padding-block: 2.5rem 1.75rem;
	}

	.portfolio-gallery-view .portfolio-gallery-header h1 {
		font-size: clamp(2.65rem, 13vw, 4.25rem);
	}

	.portfolio-gallery-content > :where(.wp-block-gallery, .gallery, .blocks-gallery-grid),
	.portfolio-gallery-content .wp-block-gallery,
	.portfolio-gallery-content .gallery {
		column-count: 1;
	}
}

/* Portfolio project pages rebuilt from their actual media library items. */
.portfolio-gallery-view {
	padding-bottom: 0;
	background: #11130f;
}

.portfolio-project-hero {
	position: relative;
	display: flex;
	min-height: clamp(540px, 78vh, 860px);
	align-items: flex-end;
	overflow: hidden;
	background: #11130f;
	color: #fff;
}

.portfolio-project-hero__media,
.portfolio-project-hero__veil {
	position: absolute;
	inset: 0;
}

.portfolio-project-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--portfolio-hero-position, 50% 50%);
}

.portfolio-project-hero__veil {
	background: linear-gradient(90deg, rgba(7, 9, 7, 0.88), rgba(7, 9, 7, 0.38) 55%, rgba(7, 9, 7, 0.08)), linear-gradient(0deg, rgba(7, 9, 7, 0.72), transparent 60%);
}

.portfolio-project-hero__content {
	position: relative;
	z-index: 1;
	padding-block: clamp(3rem, 7vw, 6rem);
}

.portfolio-project-hero__content .eyebrow {
	color: var(--vv-sand);
}

.portfolio-project-hero__content h1 {
	max-width: 11ch;
	margin: 0.35rem 0 1rem;
	color: #fff;
	font-size: clamp(3.4rem, 7vw, 7.5rem);
	line-height: 0.94;
	letter-spacing: -0.045em;
}

.portfolio-project-hero__content > p:last-child:not(.eyebrow) {
	max-width: 46rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1rem, 1.3vw, 1.22rem);
	line-height: 1.65;
}

.portfolio-project-gallery {
	padding-block: clamp(1rem, 2vw, 2rem) clamp(3rem, 6vw, 6rem);
	column-count: 2;
	column-gap: clamp(0.65rem, 1.2vw, 1.2rem);
}

.portfolio-project-gallery__item {
	display: inline-block;
	width: 100%;
	margin: 0 0 clamp(0.65rem, 1.2vw, 1.2rem);
	break-inside: avoid;
	vertical-align: top;
}

.portfolio-project-gallery__item img {
	display: block;
	width: 100%;
	height: auto;
}

.portfolio-film-gallery {
	padding-block: clamp(3rem, 6vw, 6rem);
}

.portfolio-gallery-intro {
	max-width: 760px;
	margin-bottom: clamp(2rem, 4vw, 4rem);
	color: #fff;
}

.portfolio-gallery-intro .eyebrow {
	color: var(--vv-sand);
}

.portfolio-gallery-intro h2 {
	margin: 0.4rem 0 0;
	color: #fff;
	font-size: clamp(2.4rem, 4.5vw, 5rem);
	line-height: 1;
}

.portfolio-film-gallery__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(0.75rem, 1.4vw, 1.4rem);
}

.portfolio-film {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #000;
}

.portfolio-film iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@media (max-width: 700px) {
	.portfolio-project-hero {
		min-height: 72vh;
	}

	.portfolio-project-hero__content h1 {
		font-size: clamp(3rem, 14vw, 4.7rem);
	}

	.portfolio-project-gallery {
		column-count: 1;
	}

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

/* Curated reading index */
.must-reads-page {
	background: var(--vv-paper);
}

.must-reads-hero {
	position: relative;
	display: flex;
	min-height: clamp(560px, 78vh, 840px);
	align-items: flex-end;
	overflow: hidden;
	background: var(--vv-ink);
	color: #fff;
}

.must-reads-hero__media,
.must-reads-hero__veil {
	position: absolute;
	inset: 0;
}

.must-reads-hero__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

.must-reads-hero__veil {
	background: linear-gradient(90deg, rgba(9, 11, 9, 0.92), rgba(9, 11, 9, 0.62) 48%, rgba(9, 11, 9, 0.1)), linear-gradient(0deg, rgba(9, 11, 9, 0.74), transparent 58%);
}

.must-reads-hero__content {
	position: relative;
	z-index: 1;
	padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.must-reads-hero .eyebrow {
	color: var(--vv-sand);
}

.must-reads-hero h1 {
	max-width: 10ch;
	margin: 0.4rem 0 1.25rem;
	color: #fff;
	font-size: clamp(3.6rem, 7vw, 7.4rem);
	line-height: 0.95;
	letter-spacing: -0.045em;
}

.must-reads-hero__content > p:last-child:not(.eyebrow) {
	max-width: 43rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1.05rem, 1.4vw, 1.25rem);
	line-height: 1.65;
}

.must-reads-index {
	padding-block: clamp(4rem, 8vw, 8rem);
}

.must-reads-index__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: clamp(2rem, 4vw, 4rem);
	padding-bottom: 1rem;
	border-bottom: 1px solid #c8c5bc;
}

.must-reads-index__header .eyebrow {
	margin: 0;
}

.must-reads-index__header span {
	color: #806a42;
	font-family: var(--vv-serif);
	font-size: 1.35rem;
}

.must-reads-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: clamp(2rem, 4vw, 4rem) clamp(1rem, 2vw, 2rem);
}

.must-read-card {
	grid-column: span 4;
	min-width: 0;
}

.must-read-card:first-child {
	grid-column: span 8;
}

.must-read-card__media {
	display: block;
	overflow: visible;
	background: transparent;
}

.must-read-card:first-child .must-read-card__media {
	aspect-ratio: auto;
}

.must-read-card__media img,
.must-read-card__placeholder {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	transition: transform 600ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.must-read-card__placeholder {
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, var(--vv-moss), var(--vv-ink));
}

.must-read-card:hover .must-read-card__media img {
	transform: scale(1.025);
}

.must-read-card__body {
	padding-top: 1.35rem;
}

.must-read-card__meta {
	margin: 0 0 0.65rem;
	color: #806a42;
	font-size: 0.68rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.must-read-card h2 {
	margin: 0;
	font-size: clamp(1.7rem, 2.5vw, 2.8rem);
	line-height: 1.03;
}

.must-read-card h2 a {
	color: inherit;
	text-decoration: none;
}

.must-read-card__excerpt {
	margin: 1rem 0 1.2rem;
	color: var(--vv-muted);
	line-height: 1.65;
}

.must-reads-empty {
	padding-block: 3rem;
	color: var(--vv-muted);
}

@media (max-width: 950px) {
	.must-read-card,
	.must-read-card:first-child {
		grid-column: span 6;
	}
}

@media (max-width: 700px) {
	.must-reads-hero {
		min-height: 68vh;
	}

	.must-reads-hero h1 {
		font-size: clamp(3rem, 14vw, 4.8rem);
	}

	.must-read-card,
	.must-read-card:first-child {
		grid-column: span 12;
	}

	.must-read-card:first-child .must-read-card__media,
	.must-read-card__media {
		aspect-ratio: auto;
	}
}

.entry-footer {
	padding-top: 2rem;
}

/* Free wildlife photography e-book landing article. */
.ebook-post {
	background: #f4f1ea;
}

.ebook-hero {
	position: relative;
	display: grid;
	min-height: min(760px, 78vh);
	align-items: end;
	background-image: var(--ebook-hero-image);
	background-position: center;
	background-size: cover;
	color: #fff;
}

.ebook-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(8, 13, 10, 0.9) 0%, rgba(8, 13, 10, 0.58) 45%, rgba(8, 13, 10, 0.18) 100%);
}

.ebook-hero__content {
	position: relative;
	z-index: 1;
	padding-block: clamp(5rem, 12vw, 9rem) clamp(3.5rem, 7vw, 6rem);
}

.ebook-hero__content h1 {
	max-width: 850px;
	margin: 0.4rem 0 1rem;
	font-size: clamp(3rem, 7vw, 6.8rem);
	line-height: 0.92;
}

.ebook-hero__content > p:not(.eyebrow) {
	max-width: 650px;
	font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.ebook-button {
	display: inline-flex;
	margin-top: 1.5rem;
	padding: 0.9rem 1.35rem;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 999px;
	color: inherit;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.ebook-story {
	padding-block: clamp(4rem, 8vw, 8rem);
}

.ebook-manifesto {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(2rem, 5vw, 6rem);
	margin-bottom: clamp(4rem, 8vw, 8rem);
}

.ebook-manifesto p {
	margin: 0;
	font-family: var(--vv-serif);
	font-size: clamp(1.65rem, 3vw, 3rem);
	line-height: 1.12;
}

.ebook-earth {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
	align-items: end;
	gap: clamp(1.5rem, 4vw, 4rem);
	margin: 0 0 clamp(4rem, 8vw, 8rem);
}

.ebook-earth img,
.ebook-editions img {
	display: block;
	width: 100%;
	height: auto;
}

.ebook-earth figcaption {
	padding-bottom: 1rem;
	font-size: clamp(1.05rem, 1.7vw, 1.35rem);
	line-height: 1.55;
}

.ebook-copy {
	max-width: 780px;
	margin: 0 auto clamp(4rem, 8vw, 8rem);
	font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.ebook-section-heading {
	margin-bottom: 2rem;
}

.ebook-section-heading h2,
.ebook-signup h2 {
	margin: 0.35rem 0 0;
	font-size: clamp(2.4rem, 5vw, 5rem);
	line-height: 0.98;
}

.ebook-editions__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1rem, 2.5vw, 2.5rem);
}

.ebook-editions__grid figure {
	margin: 0;
}

.ebook-editions__grid figcaption {
	padding-top: 0.8rem;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.ebook-signup {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
	gap: clamp(2rem, 5vw, 6rem);
	margin-top: clamp(4rem, 9vw, 9rem);
	padding: clamp(2rem, 5vw, 5rem);
	background: #172019;
	color: #fff;
}

.ebook-signup__form .mailpoet-heading {
	display: none !important;
}

.ebook-signup__form .mailpoet_form {
	padding: 0 !important;
	background: transparent !important;
}

.ebook-closing {
	max-width: 780px;
	margin: clamp(4rem, 8vw, 8rem) auto 0;
	font-size: clamp(1.1rem, 1.8vw, 1.4rem);
}

.ebook-closing strong {
	display: block;
	margin-top: 1rem;
	font-family: var(--vv-serif);
	font-size: clamp(1.7rem, 3vw, 3rem);
	line-height: 1.1;
}

@media (max-width: 760px) {
	.ebook-hero {
		min-height: 660px;
		background-position: 62% center;
	}

	.ebook-hero__overlay {
		background: linear-gradient(0deg, rgba(8, 13, 10, 0.94), rgba(8, 13, 10, 0.2));
	}

	.ebook-manifesto,
	.ebook-earth,
	.ebook-signup {
		grid-template-columns: 1fr;
	}

	.ebook-editions__grid {
		grid-template-columns: 1fr;
	}
}

/* Compact editorial rhythm for individual journal posts. */
.single-post {
	--vv-post-layout-width: 1040px;
}

.single-post .singular-header,
.single-post .singular-media,
.single-post .entry-content,
.single-post .entry-footer,
.single-post .post-navigation {
	width: min(calc(100% - (2 * var(--vv-gutter))), var(--vv-post-layout-width));
	max-width: none;
	margin-inline: auto;
}

/* Editorial media rhythm inside articles: readable text, wider photographs. */
.single-post .entry-content > :where(p, h2, h3, h4, h5, h6, ul, ol, blockquote) {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.single-post .entry-content > .wp-block-image {
	width: 100%;
	margin: clamp(1.75rem, 3vw, 2.75rem) auto;
}

.single-post .entry-content > .wp-block-image img {
	display: block;
	width: 100%;
	height: auto;
	max-height: none;
	object-fit: contain;
}

.single-post .entry-content > .wp-block-gallery {
	display: grid !important;
	width: 100%;
	max-width: none;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(0.6rem, 1.2vw, 1.1rem) !important;
	margin: clamp(2rem, 3.5vw, 3.25rem) auto;
}

.single-post .entry-content > .wp-block-gallery.columns-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.single-post .entry-content > .wp-block-gallery:has(> .wp-block-image:nth-child(2):last-child) {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.single-post .entry-content > .wp-block-gallery:has(> .wp-block-image:nth-child(3):last-child) {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.single-post .entry-content > .wp-block-gallery:has(> .wp-block-image:nth-child(3):last-child) > .wp-block-image:last-child {
	grid-column: 1 / -1;
	width: 100% !important;
}

.single-post .entry-content > .wp-block-gallery:has(> .wp-block-image:nth-child(4):last-child) {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.single-post .entry-content > .wp-block-gallery > .wp-block-image {
	display: block !important;
	width: 100% !important;
	margin: 0 !important;
}

.single-post .entry-content > .wp-block-gallery > .wp-block-image img {
	display: block;
	width: 100%;
	height: auto !important;
	aspect-ratio: auto !important;
	object-fit: contain !important;
}

.single-post .entry-content .wp-element-caption,
.single-post .entry-content figcaption {
	width: 100%;
	margin-top: 0.65rem;
	color: var(--vv-muted);
	font-size: 0.78rem;
	line-height: 1.45;
}

@media (max-width: 700px) {
	.single-post .entry-content > .wp-block-image {
		margin-block: 1.75rem;
	}

	.single-post .entry-content > .wp-block-gallery,
	.single-post .entry-content > .wp-block-gallery.columns-2,
	.single-post .entry-content > .wp-block-gallery:has(> .wp-block-image:nth-child(2):last-child),
	.single-post .entry-content > .wp-block-gallery:has(> .wp-block-image:nth-child(3):last-child),
	.single-post .entry-content > .wp-block-gallery:has(> .wp-block-image:nth-child(4):last-child) {
		grid-template-columns: 1fr;
		gap: 0.8rem !important;
		margin-block: 2rem;
	}

	.single-post .entry-content > .wp-block-gallery:has(> .wp-block-image:nth-child(3):last-child) > .wp-block-image:last-child {
		grid-column: auto;
	}
}

.single-post .singular-header {
	padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 2.5vw, 2.5rem);
}

.single-post .singular-header h1 {
	max-width: none;
	margin: 0;
	font-size: clamp(2.5rem, 4.4vw, 4.75rem);
	line-height: 1.02;
}

.single-post .entry-meta {
	margin-bottom: 1.25rem;
}

.single-post .singular-deck {
	max-width: none;
	margin-top: 1rem;
	font-size: clamp(1.05rem, 1.35vw, 1.3rem);
	line-height: 1.5;
}

.single-post .singular-media {
	width: min(calc(100% - (2 * var(--vv-gutter))), var(--vv-post-layout-width));
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.single-post .singular-media img {
	width: 100%;
	height: auto;
	max-height: none;
	object-fit: contain;
}

.single-post .entry-content {
	font-size: clamp(1rem, 0.96rem + 0.12vw, 1.08rem);
	line-height: 1.72;
}

.single-post .entry-content .alignwide,
.single-post .entry-content .alignfull {
	width: 100%;
	max-width: 100%;
	margin-inline: 0;
}

.single-post .entry-content > center {
	width: 100%;
	text-align: center;
}

.single-post .entry-content > center > .cmplz-placeholder-parent {
	width: min(100%, 500px);
	margin-inline: auto;
}

.single-post .entry-content > center iframe {
	width: 100% !important;
	max-width: 500px;
	height: 522px !important;
	margin-inline: auto;
}

.single-post .fb-reels-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: start;
	gap: clamp(0.75rem, 1.5vw, 1.5rem);
	width: 100%;
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.single-post .fb-reel {
	position: relative;
	width: 100%;
	margin: 0;
	overflow: hidden;
	aspect-ratio: 9 / 16;
	background: var(--vv-ink);
}

.single-post .fb-reel > .cmplz-placeholder-parent,
.single-post .fb-reel iframe {
	width: 100% !important;
	height: 100% !important;
	min-height: 0 !important;
}

.single-post .fb-reel iframe {
	border: 0;
	aspect-ratio: 9 / 16;
}

.single-post .wp-block-embed-youtube iframe,
.single-post .wp-block-embed-vimeo iframe,
.single-post .entry-content iframe[src*="youtube.com"],
.single-post .entry-content iframe[src*="youtu.be"],
.single-post .entry-content iframe[src*="vimeo.com"] {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}

.single-post .entry-content > h2 {
	margin-top: clamp(2.25rem, 3.8vw, 3.25rem);
	margin-bottom: clamp(0.85rem, 1.4vw, 1rem);
	font-size: clamp(1.9rem, 2.7vw, 2.7rem);
	line-height: 1.1;
}

.single-post .entry-content > h3 {
	margin-top: clamp(2rem, 3vw, 2.75rem);
	margin-bottom: 0.85rem;
	font-size: clamp(1.4rem, 2vw, 1.85rem);
	line-height: 1.15;
}

.project-film iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
}

.workshop-facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	margin-bottom: clamp(3rem, 7vw, 6rem);
	background: var(--vv-border);
}

.workshop-facts > div {
	display: flex;
	min-height: 130px;
	padding: 1.5rem;
	flex-direction: column;
	justify-content: space-between;
	background: var(--vv-white);
}

.workshop-facts span {
	color: var(--vv-muted);
	font-size: 0.68rem;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.workshop-facts strong {
	font-family: var(--vv-serif);
	font-size: clamp(1.15rem, 2vw, 1.55rem);
	font-weight: 500;
}

.workshop-booking {
	padding-top: 2rem;
}

.testimonial-content blockquote {
	border-left: 0;
	padding-left: 0;
	font-size: clamp(1.6rem, 3.5vw, 3.2rem);
	line-height: 1.28;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.post-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	margin-top: clamp(3.5rem, 7vw, 6rem);
	padding-top: clamp(1.75rem, 3vw, 2.5rem);
	border-top: 1px solid var(--vv-border);
}

.post-navigation > div {
	display: flex;
	align-items: flex-start;
	min-width: 0;
	padding-right: clamp(2rem, 5vw, 6rem);
	flex-direction: column;
	gap: 0.75rem;
}

.post-navigation > div:last-child {
	align-items: flex-end;
	padding-right: 0;
	padding-left: clamp(2rem, 5vw, 6rem);
	border-left: 1px solid var(--vv-border);
	text-align: right;
}

.post-navigation a {
	display: block;
	max-width: 30ch;
	font-family: var(--vv-serif);
	font-size: clamp(1.25rem, 1.7vw, 1.65rem);
	line-height: 1.2;
	text-decoration: none;
}

.post-navigation__label {
	display: block;
	margin: 0;
	color: var(--vv-muted);
	font-family: var(--vv-sans);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.comments-area {
	margin-top: var(--vv-section);
	padding-top: 2rem;
	border-top: 1px solid var(--vv-border);
}

.comment-list {
	padding: 0;
	list-style: none;
}

.comment-list .children {
	list-style: none;
}

.comment-body {
	padding-block: 1.5rem;
	border-bottom: 1px solid var(--vv-border);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="number"],
input[type="tel"],
select,
textarea {
	width: 100%;
	padding: 0.8rem 0.9rem;
	border: 1px solid var(--vv-border);
	border-radius: 0;
	background: var(--vv-white);
	color: var(--vv-ink);
}

textarea {
	min-height: 160px;
	resize: vertical;
}

.search-form {
	display: flex;
	gap: 0.75rem;
	max-width: 38rem;
}

.search-form label {
	flex: 1;
}

.navigation.pagination {
	margin-top: clamp(2rem, 5vw, 4rem);
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid var(--vv-border);
	text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
	border-color: var(--vv-ink);
	background: var(--vv-ink);
	color: var(--vv-white);
}

.empty-state,
.error-page__inner {
	max-width: 48rem;
	padding-block: clamp(5rem, 12vw, 11rem);
}

.error-page__inner h1 {
	font-size: clamp(3rem, 7vw, 7rem);
}

.error-page .search-form {
	margin-block: 2rem;
}

.site-footer {
	background: var(--vv-ink);
	color: var(--vv-white);
}

.site-footer__main {
	display: grid;
	grid-template-columns: 1.45fr repeat(3, minmax(150px, 0.7fr));
	gap: clamp(2rem, 5vw, 5rem);
	padding-block: clamp(2.75rem, 4.5vw, 4.5rem);
}

.site-footer__main--has-widgets {
	grid-template-columns: 1.6fr repeat(3, minmax(150px, 0.7fr));
}

.site-footer__identity {
	max-width: 32rem;
}

.site-footer__logo-link {
	display: inline-flex;
	align-items: center;
	gap: clamp(1rem, 2vw, 1.75rem);
	margin-bottom: 1.5rem;
	color: var(--vv-white);
	text-decoration: none;
}

.site-footer__logo-frame {
	display: inline-flex;
	width: clamp(82px, 7vw, 104px);
	height: clamp(82px, 7vw, 104px);
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--vv-white);
}

.site-footer__logo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 50%;
}

.site-footer__identity > .eyebrow {
	margin-bottom: 0.9rem;
	color: var(--vv-clay);
}

.site-footer__name {
	margin: 0;
	font-family: var(--vv-serif);
	font-size: clamp(2rem, 4vw, 4rem);
	letter-spacing: -0.045em;
	line-height: 1;
	white-space: nowrap;
}

.site-footer__heading,
.footer-widget__title {
	font-family: var(--vv-sans);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.footer-menu,
.social-menu,
.footer-contact {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-menu li,
.social-menu li,
.footer-contact li {
	margin-bottom: 0.65rem;
}

.footer-menu a,
.social-menu a,
.footer-contact a {
	text-decoration: none;
}

.footer-contact li {
	padding-bottom: 0.8rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-contact__label {
	display: block;
	margin-bottom: 0.2rem;
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.62rem;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.footer-contact__value {
	display: block;
	color: var(--vv-white);
	font-size: 0.92rem;
}

.site-footer__newsletter > p {
	margin: 0 0 1rem;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.86rem;
	line-height: 1.6;
}

.site-footer__newsletter-form .mailpoet-heading {
	display: none !important;
}

.site-footer__newsletter-form #mailpoet_form_3 {
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.site-footer__newsletter-form .mailpoet_form,
.site-footer__newsletter-form .mailpoet_form_columns_container,
.site-footer__newsletter-form .mailpoet_form_columns {
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
}

.site-footer__newsletter-form .mailpoet_form_columns {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 0.55rem !important;
}

.site-footer__newsletter-form .mailpoet_form_column,
.site-footer__newsletter-form .mailpoet_paragraph {
	min-width: 0 !important;
	margin: 0 !important;
}

.site-footer__newsletter-form .mailpoet_text,
.site-footer__newsletter-form .mailpoet_submit {
	width: 100% !important;
	height: 46px !important;
	margin: 0 !important;
	padding: 0 0.9rem !important;
	border: 1px solid rgba(255, 255, 255, 0.22) !important;
	border-radius: 0 !important;
	font-family: var(--vv-sans) !important;
}

.site-footer__newsletter-form .mailpoet_text {
	background: transparent !important;
	color: var(--vv-white) !important;
}

.site-footer__newsletter-form .mailpoet_text:focus {
	border-color: rgba(255, 255, 255, 0.7) !important;
	outline: 0 !important;
}

.site-footer__newsletter-form .mailpoet_text::placeholder {
	color: rgba(255, 255, 255, 0.58) !important;
}

.site-footer__newsletter-form .mailpoet_submit,
.site-footer__newsletter-fallback {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	background: var(--vv-clay) !important;
	color: var(--vv-white) !important;
	font-size: 0.68rem !important;
	font-weight: 800 !important;
	letter-spacing: 0.1em !important;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
}

.site-footer__newsletter-form .mailpoet_submit:hover,
.site-footer__newsletter-form .mailpoet_submit:focus-visible,
.site-footer__newsletter-fallback:hover,
.site-footer__newsletter-fallback:focus-visible {
	background: var(--vv-white) !important;
	color: var(--vv-ink) !important;
}

.site-footer__newsletter-fallback {
	min-height: 46px;
	padding-inline: 1rem;
}

.site-footer__newsletter-form .mailpoet_validate_success,
.site-footer__newsletter-form .mailpoet_validate_error {
	margin: 0.75rem 0 0 !important;
	font-size: 0.78rem !important;
	line-height: 1.45 !important;
}

.social-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 1rem;
	margin-top: 1.25rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.site-footer__legal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding-block: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-footer__legal-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.55rem 1.4rem;
}

.site-footer__legal a {
	color: rgba(255, 255, 255, 0.74);
	text-decoration: none;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
	color: var(--vv-white);
}

.site-footer__legal p {
	margin: 0;
}

.commerce-view ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.25rem, 3vw, 2.5rem);
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
}

.woocommerce ul.products li.product a img {
	margin-bottom: 1rem;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.woocommerce span.onsale {
	min-width: 0;
	min-height: 0;
	padding: 0.45rem 0.65rem;
	border-radius: 0;
	background: var(--vv-clay);
	font-size: 0.68rem;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
}

.woocommerce div.product .product_title,
.woocommerce .woocommerce-products-header__title {
	font-family: var(--vv-serif);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	border-radius: 0;
	background: var(--vv-ink);
	color: var(--vv-white);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

@media (max-width: 1450px) {
	.site-header__inner {
		grid-template-columns: 64px minmax(0, 1fr) auto;
		gap: 0.75rem;
	}

	.primary-menu,
	.primary-navigation .menu {
		justify-content: center;
		gap: clamp(0.3rem, 0.65vw, 0.65rem);
	}

	.primary-menu a,
	.primary-navigation .menu a {
		font-size: 0.62rem;
		letter-spacing: 0.035em;
	}

	.header-cta {
		display: none;
	}
}

@media (max-width: 1023px) {
	.site-header__inner {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.menu-toggle {
		display: inline-flex;
		justify-self: end;
	}

	.menu-is-open .menu-toggle__icon span:first-child {
		transform: translateY(3px) rotate(45deg);
	}

	.menu-is-open .menu-toggle__icon span:last-child {
		transform: translateY(-3px) rotate(-45deg);
	}

	.primary-navigation {
		position: fixed;
		top: 76px;
		right: 0;
		bottom: 0;
		left: 0;
		padding: 1.25rem var(--vv-gutter) 3rem;
		overflow-y: auto;
		background: var(--vv-ink);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-0.75rem);
		visibility: hidden;
		transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
	}

	.menu-is-open .primary-navigation {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
		visibility: visible;
		transition-delay: 0s;
	}

	.primary-menu,
	.primary-navigation .menu {
		display: block;
	}

	.primary-menu a,
	.primary-navigation .menu a {
		padding: 0.85rem 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		font-family: var(--vv-serif);
		font-size: clamp(1.25rem, 4vw, 2rem);
		font-weight: 500;
		letter-spacing: 0;
		text-transform: none;
	}

	.primary-menu > li > a::after,
	.primary-navigation .menu > li > a::after {
		display: none;
	}

	.primary-menu .sub-menu,
	.primary-navigation .children {
		position: static;
		min-width: 0;
		padding: 0 0 0 1rem;
		border: 0;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.primary-menu .sub-menu a,
	.primary-navigation .children a {
		padding: 0.65rem 0;
		font-family: var(--vv-sans);
		font-size: 0.9rem;
	}

	.site-header__actions--desktop {
		display: none;
	}

	.site-header__actions--mobile {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		justify-content: flex-start;
		margin-top: 1.5rem;
		padding-top: 1.5rem;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}

	.site-header__actions--mobile .header-cta {
		display: inline-flex;
	}

	.about-strip__inner {
		grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
		gap: clamp(1.75rem, 4vw, 3rem);
	}

	.about-strip__gallery {
		grid-template-columns: minmax(0, 1.55fr) minmax(115px, 0.95fr);
		gap: 0.65rem;
		padding-left: 1rem;
	}

	.card-grid--three,
	.commerce-view ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.journal-grid .content-card {
		grid-column: span 6;
	}

	.journal-grid .content-card:first-child {
		grid-column: span 12;
		grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
	}

	.journal-grid .content-card:first-child .content-card__media {
		min-height: clamp(380px, 52vw, 540px);
	}

	.journal-grid .content-card:first-child .content-card__body {
		padding: clamp(1.75rem, 4vw, 3rem);
	}

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

	.site-footer__identity {
		grid-column: 1 / -1;
	}

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

	.contact-strip__inner {
		flex-wrap: wrap;
		gap: 0.75rem 1.25rem;
		padding-block: 0.6rem;
	}
}

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

	.hero {
		min-height: 78vh;
	}

	.hero__overlay {
		background: linear-gradient(0deg, rgba(11, 13, 10, 0.84), rgba(11, 13, 10, 0.14) 75%);
	}

	.section-heading,
	.workshop-cta__inner {
		display: block;
	}

	.section-heading .text-link,
	.workshop-cta .button,
	.about-strip .text-link {
		margin-top: 1.5rem;
	}

	.about-strip__inner {
		display: block;
	}

	.about-strip__content {
		margin-bottom: 2.5rem;
	}

	.about-strip__copy h2 {
		max-width: 12ch;
		font-size: clamp(2.8rem, 13vw, 4.8rem);
	}

	.about-strip__gallery {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(105px, 0.62fr);
		gap: 0.65rem;
		padding-left: 0;
		border-left: 0;
	}

	.about-strip__photo {
		position: static;
		width: 100%;
		box-shadow: none;
	}

	.about-strip__photo--portrait {
		width: 100%;
	}

	.single-post .fb-reels-grid {
		width: min(100%, 420px);
		grid-template-columns: 1fr;
		margin-inline: auto;
	}

	.project-card,
	.project-card:nth-child(3n) {
		grid-column: span 12;
		min-height: 70vw;
	}

	.journal-hero {
		min-height: 70vh;
	}

	.journal-hero__overlay {
		background: linear-gradient(0deg, rgba(11, 13, 10, 0.88), rgba(11, 13, 10, 0.08) 78%);
	}

	.journal-hero h1 {
		font-size: clamp(4rem, 24vw, 7rem);
	}

	.journal-live-search {
		padding: 0.4rem;
	}

	.journal-index {
		padding-top: 3.25rem;
	}

	.journal-index__header {
		display: block;
	}

	.journal-categories {
		justify-content: flex-start;
	}

	.journal-live-search__link {
		grid-template-columns: 76px minmax(0, 1fr);
	}

	.journal-live-search__thumb {
		width: 76px;
		height: 58px;
	}

	.journal-grid .content-card,
	.journal-grid .content-card:first-child {
		grid-column: span 12;
	}

	.journal-grid .content-card:first-child {
		display: flex;
		flex-direction: column;
		background: transparent;
	}

	.journal-grid .content-card:first-child .content-card__media {
		min-height: 0;
		aspect-ratio: auto;
	}

	.journal-grid .content-card:first-child .content-card__body {
		padding: 1.25rem 0 0;
	}

	.journal-grid .content-card:first-child .content-card__title {
		font-size: clamp(2rem, 11vw, 3.4rem);
	}

	.card-grid--three,
	.commerce-view ul.products {
		grid-template-columns: 1fr;
	}

	.post-navigation {
		grid-template-columns: 1fr;
	}

	.post-navigation > div:last-child {
		align-items: flex-start;
		padding-top: 1.5rem;
		padding-left: 0;
		border-top: 1px solid var(--vv-border);
		border-left: 0;
		text-align: left;
	}

	.post-navigation > div {
		padding-right: 0;
	}

	.search-form {
		align-items: stretch;
		flex-direction: column;
	}

	.site-footer__main {
		grid-template-columns: 1fr;
	}

	.site-footer__identity {
		grid-column: auto;
	}

	.site-footer__legal {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.5rem;
	}

	.site-footer__legal-links {
		justify-content: flex-start;
	}

	.workshop-facts {
		grid-template-columns: 1fr;
	}

	.contact-strip__inner {
		min-height: 0;
		padding-block: 0.5rem;
	}

	.contact-strip__contacts {
		width: 100%;
		justify-content: center;
		gap: 0.65rem 1rem;
	}

	.contact-strip__socials {
		width: 100%;
		margin-left: 0;
	}

	.contact-strip__socials ul {
		justify-content: center;
	}

	.contact-strip__contact-link {
		font-size: 0.78rem;
	}

	.contact-strip__social-link {
		width: 2.15rem;
		height: 2.15rem;
	}

	.contact-strip__social-link--tiktok {
		width: 2.15rem;
		padding: 0;
	}
}

/* Standalone contact page */
.contact-page {
	background: var(--vv-paper);
}

.contact-page__hero {
	overflow: hidden;
	padding: 0;
	background: var(--vv-ink);
	color: var(--vv-white);
}

.contact-page__hero-grid {
	position: relative;
	display: flex;
	width: 100%;
	max-width: none;
	min-height: clamp(620px, calc(100svh - 140px), 840px);
	margin: 0;
	align-items: center;
	isolation: isolate;
}

.contact-page__hero-grid--single {
	display: flex;
}

.contact-page__hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	width: min(47rem, 46vw);
	margin-right: auto;
	margin-left: max(var(--vv-gutter), calc((100vw - var(--vv-shell-wide)) / 2 + var(--vv-gutter)));
	flex-direction: column;
	justify-content: center;
	padding: clamp(4rem, 8vw, 7.5rem) 2rem clamp(4rem, 8vw, 7.5rem) 0;
}

.contact-page__hero .eyebrow {
	color: var(--vv-clay);
}

.contact-page__hero h1 {
	max-width: 9ch;
	margin: 0 0 1.5rem;
	font-size: clamp(3.6rem, 6.4vw, 7rem);
	line-height: 0.88;
}

.contact-page__hero-content > p:last-child {
	max-width: 35rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(1rem, 1.5vw, 1.3rem);
}

.contact-page__hero-media {
	position: absolute;
	z-index: 0;
	inset: 0;
	margin: 0;
	overflow: hidden;
	background: #242720;
}

.contact-page__hero-media::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(17, 19, 16, 0.97) 0, rgba(17, 19, 16, 0.9) 25%, rgba(17, 19, 16, 0.68) 43%, rgba(17, 19, 16, 0.22) 58%, transparent 72%),
		linear-gradient(0deg, rgba(17, 19, 16, 0.22), transparent 42%);
	content: "";
}

.contact-page__hero-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 18%;
}

.contact-page__main {
	padding-block: clamp(4rem, 8vw, 8rem);
}

.contact-page__layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
	align-items: start;
	gap: clamp(3rem, 8vw, 8rem);
}

.contact-page__intro {
	position: sticky;
	top: calc(var(--vv-header-height, 88px) + 2rem);
}

.contact-page__intro h2 {
	max-width: 10ch;
	margin: 0 0 1.5rem;
	font-size: clamp(2.5rem, 4vw, 4.8rem);
	line-height: 0.95;
}

.contact-page__intro > p:not(.eyebrow) {
	max-width: 34rem;
	color: var(--vv-muted);
}

.contact-page__details {
	margin: clamp(2.5rem, 5vw, 4rem) 0 0;
	padding: 0;
	border-top: 1px solid var(--vv-border);
	list-style: none;
}

.contact-page__details li {
	display: grid;
	grid-template-columns: 7rem minmax(0, 1fr);
	align-items: center;
	gap: 1rem;
	padding: 1.1rem 0;
	border-bottom: 1px solid var(--vv-border);
}

.contact-page__details span {
	color: var(--vv-muted);
	font-size: 0.7rem;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.contact-page__details a,
.contact-page__details strong {
	min-width: 0;
	font-weight: 650;
	overflow-wrap: anywhere;
}

.contact-form-panel {
	padding: clamp(1.5rem, 4vw, 4rem);
	border: 1px solid var(--vv-border);
	background: var(--vv-white);
}

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

.contact-form__field {
	margin: 0;
}

.contact-form__field--full {
	grid-column: 1 / -1;
}

.contact-form__field label {
	display: block;
	margin-bottom: 0.55rem;
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.contact-form__field label span {
	color: var(--vv-clay);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
	padding: 0.95rem 1rem;
	border-color: #c9c8c0;
	background: #fbfaf6;
	transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
	outline: 0;
	border-color: var(--vv-clay);
	background: var(--vv-white);
	box-shadow: 0 0 0 3px rgba(190, 105, 55, 0.13);
}

.contact-form__field textarea {
	min-height: 190px;
}

.contact-form__consent {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin: 1.5rem 0;
	color: var(--vv-muted);
	font-size: 0.86rem;
	line-height: 1.5;
}

.contact-form__consent input {
	width: 1.1rem;
	height: 1.1rem;
	margin: 0.15rem 0 0;
	accent-color: var(--vv-clay);
}

.contact-form__submit {
	display: inline-flex;
	gap: 1.25rem;
	min-width: 12rem;
}

.contact-form__submit span {
	font-size: 1.15em;
	transition: transform 180ms ease;
}

.contact-form__submit:hover span,
.contact-form__submit:focus-visible span {
	transform: translateX(0.25rem);
}

.contact-form__notice {
	display: grid;
	gap: 0.35rem;
	margin-bottom: 1.5rem;
	padding: 1rem 1.15rem;
	border-left: 4px solid;
}

.contact-form__notice--success {
	border-color: #4f7153;
	background: #edf4ed;
	color: #2f5134;
}

.contact-form__notice--error {
	border-color: #a94538;
	background: #faefed;
	color: #6e2d25;
}

.contact-form__notice ul {
	margin: 0.35rem 0 0;
	padding-left: 1.25rem;
}

.contact-form__honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

@media (max-width: 900px) {
	.contact-page__layout {
		grid-template-columns: 1fr;
	}

	.contact-page__hero-content {
		width: min(66%, 38rem);
		margin-left: var(--vv-gutter);
		padding: clamp(3.5rem, 10vw, 5.5rem) 0;
	}

	.contact-page__hero h1 {
		max-width: 12ch;
	}

	.contact-page__hero-media {
		aspect-ratio: auto;
	}

	.contact-page__hero-media::after {
		background:
			linear-gradient(90deg, rgba(17, 19, 16, 0.96) 0, rgba(17, 19, 16, 0.84) 43%, rgba(17, 19, 16, 0.3) 70%, transparent 92%),
			linear-gradient(0deg, rgba(17, 19, 16, 0.32), transparent 55%);
	}

	.contact-page__intro {
		position: static;
	}

	.contact-page__intro h2 {
		max-width: 14ch;
	}
}

@media (max-width: 600px) {
	.contact-page__hero {
		padding: 0;
	}

	.contact-page__hero-grid {
		min-height: clamp(600px, 80svh, 720px);
	}

	.contact-page__hero-content {
		width: min(68%, 30rem);
	}

	.contact-page__hero h1 {
		font-size: clamp(3.35rem, 18vw, 5.4rem);
	}

	.contact-page__hero-media {
		aspect-ratio: auto;
	}

	.contact-page__hero-media img {
		object-position: 72% 18%;
	}

	.contact-form-panel {
		padding: 1.25rem;
	}

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

	.contact-form__field--full {
		grid-column: auto;
	}

	.contact-page__details li {
		grid-template-columns: 1fr;
		gap: 0.35rem;
	}

	.contact-form__submit {
		width: 100%;
	}
}

/* Native nature-photography speech page */
.speech-page {
	background: var(--vv-paper);
}

.speech-page__hero .contact-page__hero-content {
	width: min(50rem, 50vw);
}

.speech-page__hero h1 {
	max-width: 11ch;
	font-size: clamp(3.2rem, 5.4vw, 6.2rem);
	line-height: 0.92;
}

.speech-page__hero .contact-page__hero-media img {
	object-position: center center;
}

.speech-page__introduction {
	padding-block: clamp(4.5rem, 9vw, 9rem);
}

.speech-page__intro-grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
	align-items: start;
	gap: clamp(3rem, 8vw, 8rem);
}

.speech-page__speaker-image {
	margin-top: 0;
	overflow: visible;
	background: transparent;
}

.speech-page__speaker-image img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.speech-page__copy {
	max-width: 52rem;
}

.speech-page__copy > p {
	color: var(--vv-muted);
	font-size: clamp(1rem, 1.25vw, 1.17rem);
}

.speech-page__copy .speech-page__lead {
	margin-bottom: 1.6rem;
	color: var(--vv-ink);
	font-family: var(--vv-serif);
	font-size: clamp(1.5rem, 2.2vw, 2.25rem);
	line-height: 1.25;
}

.speech-page__formats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: clamp(2.5rem, 5vw, 4rem);
	border-top: 1px solid var(--vv-border);
	border-bottom: 1px solid var(--vv-border);
}

.speech-page__formats article {
	padding: 1.5rem 1.2rem 1.5rem 0;
}

.speech-page__formats article + article {
	padding-left: 1.2rem;
	border-left: 1px solid var(--vv-border);
}

.speech-page__formats span {
	display: block;
	margin-bottom: 1.25rem;
	color: var(--vv-clay);
	font-size: 0.68rem;
	font-weight: 750;
	letter-spacing: 0.12em;
}

.speech-page__formats h3 {
	margin: 0 0 0.6rem;
	font-family: var(--vv-sans);
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.speech-page__formats p {
	margin: 0;
	color: var(--vv-muted);
	font-size: 0.85rem;
	line-height: 1.55;
}

.speech-page__contact-button {
	gap: 1rem;
	margin-top: 2rem;
}

@media (max-width: 900px) {
	.speech-page__hero .contact-page__hero-content {
		width: min(66%, 40rem);
	}

	.speech-page__hero h1 {
		font-size: clamp(3rem, 9vw, 5.5rem);
	}

	.speech-page__intro-grid {
		grid-template-columns: 1fr;
	}

	.speech-page__speaker-image {
		max-width: 42rem;
	}
}

@media (max-width: 1000px) {
	.workshop-feature__grid {
		min-height: 0;
		grid-template-columns: 1fr;
	}

	.workshop-feature__media {
		aspect-ratio: 3 / 2;
	}

	.workshop-feature__content h2 {
		max-width: 13ch;
	}
}

@media (max-width: 700px) {
	.speech-page__hero .contact-page__hero-content {
		width: min(68%, 29rem);
	}

	.speech-page__hero h1 {
		font-size: clamp(2.8rem, 13vw, 4.4rem);
	}

	.speech-page__hero .contact-page__hero-media img {
		object-position: 68% center;
	}

	.speech-page__formats {
		grid-template-columns: 1fr;
	}

	.speech-page__formats article + article {
		padding-left: 0;
		border-top: 1px solid var(--vv-border);
		border-left: 0;
	}

	.testimonials-page__grid {
		grid-template-columns: 1fr;
	}

	.testimonials-page__hero {
		min-height: 680px;
	}

	.testimonials-page__hero-media img {
		object-position: 58% center;
	}

	.testimonials-page__hero-veil {
		background: linear-gradient(0deg, rgba(8, 10, 8, 0.96) 0%, rgba(8, 10, 8, 0.62) 68%, rgba(8, 10, 8, 0.2) 100%);
	}

	.testimonials-page__hero-content {
		padding-block: 4.5rem;
	}

	.testimonials-page__hero h1 {
		font-size: clamp(2.75rem, 12vw, 4.2rem);
		line-height: 1.08;
	}
}

/* Photography workshops landing page. */
.workshops-page {
	background: var(--vv-paper);
}

.workshops-hero {
	position: relative;
	display: flex;
	min-height: clamp(650px, 84vh, 920px);
	align-items: flex-end;
	overflow: hidden;
	background: var(--vv-ink);
	color: var(--vv-white);
}

.workshops-hero__media,
.workshops-hero__veil {
	position: absolute;
	inset: 0;
}

.workshops-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 58% top;
}

.workshops-hero__veil {
	background:
		linear-gradient(90deg, rgba(9, 11, 8, 0.86) 0%, rgba(9, 11, 8, 0.55) 39%, rgba(9, 11, 8, 0.08) 72%),
		linear-gradient(0deg, rgba(9, 11, 8, 0.63) 0%, transparent 48%);
}

.workshops-hero__content {
	position: relative;
	z-index: 1;
	padding-block: clamp(5rem, 11vh, 8.5rem);
}

@media (min-width: 1024px) {
	.workshops-hero__media img {
		height: 115%;
		transform: translate(-30%, -13%) scaleX(1.3);
		transform-origin: left center;
	}

	.workshops-hero__content {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(36rem, 44rem);
		column-gap: clamp(2rem, 4vw, 5rem);
		transform: translateX(clamp(1rem, calc((100vw - var(--vv-shell-wide)) / 2 - 5rem), 14rem));
	}

	.workshops-hero__content > * {
		grid-column: 2;
	}
}

.workshops-hero__content .eyebrow {
	color: var(--vv-sand);
}

.workshops-hero h1 {
	max-width: 8.5ch;
	margin-bottom: 1.6rem;
	font-size: clamp(4rem, 8.6vw, 9rem);
	line-height: 0.93;
}

.workshops-hero__lead {
	max-width: 37rem;
	margin-bottom: 2.2rem;
	color: rgba(255, 255, 255, 0.84);
	font-size: clamp(1.05rem, 1.45vw, 1.32rem);
	line-height: 1.55;
}

.workshops-hero__scroll {
	position: absolute;
	right: var(--vv-gutter);
	bottom: clamp(2rem, 5vw, 4rem);
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 0.8rem;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.68rem;
	font-weight: 750;
	letter-spacing: 0.14em;
	text-decoration: none;
	text-transform: uppercase;
}

.workshops-hero__scroll::after {
	width: 1px;
	height: 3.2rem;
	background: currentColor;
	content: "";
}

.workshops-principles {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: var(--vv-ink);
	color: var(--vv-white);
}

.workshops-principles__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workshops-principles span {
	display: flex;
	min-height: 90px;
	align-items: center;
	justify-content: center;
	padding: 1.2rem;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.7rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-align: center;
	text-transform: uppercase;
}

.workshops-principles span + span {
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.workshops-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.75fr);
	gap: clamp(3rem, 8vw, 9rem);
	align-items: start;
}

.workshops-intro {
	padding-block: clamp(3.5rem, 5vw, 5.5rem);
}

.workshops-intro h2 {
	max-width: 14ch;
	margin: 0;
	font-size: clamp(3rem, 5.7vw, 6.4rem);
	line-height: 0.96;
}

.workshops-intro__copy {
	padding-top: clamp(1rem, 4vw, 4.5rem);
}

.workshops-intro__copy p {
	color: var(--vv-muted);
}

.workshops-intro__copy .workshops-intro__lead {
	color: var(--vv-ink);
	font-family: var(--vv-serif);
	font-size: clamp(1.45rem, 2.15vw, 2.15rem);
	line-height: 1.28;
}

.workshops-featured {
	padding-bottom: clamp(3.5rem, 5vw, 5.5rem);
}

.workshops-featured__grid {
	display: grid;
	width: 100%;
	max-width: none;
	margin-inline: 0;
	grid-template-columns: minmax(0, 1.35fr) minmax(520px, 0.9fr);
	min-height: 0;
}

.workshops-featured__media {
	min-height: clamp(620px, 40vw, 820px);
	overflow: hidden;
	background: var(--vv-ink-soft);
}

.workshops-featured__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.workshops-featured__content {
	display: flex;
	padding: clamp(2.5rem, 3vw, 3.25rem);
	flex-direction: column;
	justify-content: center;
	background: var(--vv-ink);
	color: var(--vv-white);
}

.workshops-featured__content .eyebrow,
.workshops-method .eyebrow {
	color: var(--vv-clay);
}

.workshops-featured h2 {
	max-width: 10ch;
	font-size: clamp(3.2rem, 5vw, 5.7rem);
	line-height: 0.95;
}

.workshops-featured__content > p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.7);
}

.workshops-featured__facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 1.2rem 0 2.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.workshops-featured__facts div {
	padding: 1.15rem;
	border-right: 1px solid rgba(255, 255, 255, 0.16);
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.workshops-featured__facts dt {
	margin-bottom: 0.35rem;
	color: var(--vv-clay);
	font-size: 0.62rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.workshops-featured__facts dd {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.35;
}

.workshops-featured__content .button {
	align-self: flex-start;
}

.workshops-collection {
	padding-top: 0;
	padding-bottom: clamp(3.5rem, 5vw, 5.5rem);
}

.workshops-collection__heading {
	align-items: end;
}

.workshops-collection__heading > p {
	max-width: 32rem;
	margin: 0;
	color: var(--vv-muted);
}

.workshops-collection__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(2rem, 3.5vw, 4rem) clamp(1.5rem, 3vw, 3rem);
}

.workshop-card {
	min-width: 0;
}

.workshop-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--vv-paper-deep);
}

.workshop-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.workshop-card:hover .workshop-card__media img {
	transform: scale(1.025);
}

.workshop-card__media span {
	position: absolute;
	right: 0;
	bottom: 0;
	min-width: 3.4rem;
	padding: 0.75rem;
	background: var(--vv-paper);
	font-size: 0.7rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-align: center;
}

.workshop-card__body {
	padding: clamp(1.5rem, 3vw, 2.25rem) 0 0;
	border-top: 3px solid var(--vv-ink);
}

.workshop-card__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem 1.5rem;
	margin-bottom: 1.15rem;
	color: var(--vv-clay);
	font-size: 0.66rem;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.workshop-card h3 {
	max-width: 18ch;
	margin-bottom: 0.55rem;
	font-size: clamp(2rem, 3.1vw, 3.5rem);
	line-height: 1;
}

.workshop-card h3 a {
	text-decoration: none;
}

.workshop-card__location {
	margin-bottom: 1.25rem;
	color: var(--vv-ink);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.workshop-card__body > p:not(.workshop-card__location) {
	max-width: 40rem;
	color: var(--vv-muted);
}

.workshops-method {
	padding-block: 0;
}

.workshops-method__grid {
	display: grid;
	width: 100%;
	max-width: none;
	margin-inline: 0;
	grid-template-columns: minmax(0, 1.35fr) minmax(520px, 0.85fr);
	gap: 0;
	align-items: stretch;
}

.workshops-method__media {
	aspect-ratio: 3 / 2;
	overflow: hidden;
}

.workshops-method__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.workshops-method__content {
	display: flex;
	padding: clamp(2rem, 2.5vw, 3rem);
	flex-direction: column;
	justify-content: center;
}

.workshops-method h2 {
	max-width: 14ch;
	margin-bottom: 0.45em;
	font-size: clamp(3rem, 3.4vw, 4.2rem);
	line-height: 0.96;
}

.workshops-method__list {
	padding: 0;
	margin: 1.5rem 0 0;
	list-style: none;
}

.workshops-method__list li {
	display: grid;
	grid-template-columns: 2.5rem 1fr;
	gap: 1rem;
	padding: 1rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.workshops-method__list li > span {
	padding-top: 0.2rem;
	color: var(--vv-clay);
	font-size: 0.66rem;
	font-weight: 750;
	letter-spacing: 0.1em;
}

.workshops-method__list h3 {
	margin-bottom: 0.3rem;
	font-family: var(--vv-sans);
	font-size: 0.88rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.workshops-method__list p {
	margin: 0;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.94rem;
}

.workshops-private__grid {
	display: grid;
	grid-template-columns: minmax(380px, 0.78fr) minmax(0, 1.22fr);
	align-items: stretch;
}

.workshops-private,
.workshops-testimonials {
	padding-block: clamp(3.5rem, 5vw, 5.5rem);
}

.workshops-private__content {
	position: relative;
	z-index: 1;
	display: flex;
	padding: clamp(2.5rem, 3.5vw, 4.25rem);
	margin-right: 0;
	flex-direction: column;
	justify-content: center;
	background: var(--vv-paper-deep);
}

.workshops-private h2 {
	max-width: 12ch;
	font-size: clamp(3rem, 4vw, 4.6rem);
	line-height: 0.96;
}

.workshops-private__content > p:not(.eyebrow) {
	max-width: 37rem;
	color: var(--vv-muted);
}

.workshops-private__media {
	min-height: clamp(560px, 36vw, 700px);
	overflow: hidden;
}

.workshops-private__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.workshops-testimonials__heading {
	justify-content: center;
	text-align: center;
}

.workshops-testimonials__heading h2 {
	max-width: 16ch;
	margin-inline: auto;
}

.workshops-testimonials .testimonials__actions {
	margin-top: clamp(1.5rem, 2.5vw, 2.5rem);
}

.workshops-final-cta {
	padding-block: clamp(4rem, 6vw, 6.5rem);
	border-top: 1px solid rgba(185, 111, 67, 0.5);
	border-bottom: 1px solid rgba(217, 199, 162, 0.2);
	background: linear-gradient(135deg, #20241e 0%, #171a16 100%);
	color: var(--vv-white);
	text-align: center;
}

.workshops-final-cta__inner {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.workshops-final-cta .eyebrow {
	color: var(--vv-clay);
}

.workshops-final-cta h2 {
	max-width: 14ch;
	margin-bottom: 2rem;
	font-size: clamp(3rem, 6vw, 6.5rem);
	line-height: 0.96;
}

.workshops-page + .site-footer .site-footer__main {
	padding-block: clamp(3.5rem, 5vw, 5.5rem);
}

html[lang^="el"] .workshops-hero h1 {
	max-width: 10ch;
	font-size: clamp(3.8rem, 7.6vw, 7.8rem);
}

html[lang^="el"] .workshops-hero__lead {
	max-width: 41rem;
}

html[lang^="el"] .workshops-intro h2,
html[lang^="el"] .workshops-featured h2,
html[lang^="el"] .workshops-method h2,
html[lang^="el"] .workshops-private h2 {
	hyphens: none;
	overflow-wrap: normal;
}

/* Workshops WooCommerce catalogue. */
.workshop-shop-page {
	background: var(--vv-paper);
}

.workshop-shop-hero {
	position: relative;
	display: flex;
	min-height: clamp(620px, 78vh, 840px);
	align-items: flex-end;
	overflow: hidden;
	background: var(--vv-ink);
	color: var(--vv-white);
}

.workshop-shop-hero__media,
.workshop-shop-hero__veil {
	position: absolute;
	inset: 0;
}

.workshop-shop-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 45%;
}

.workshop-shop-hero__veil {
	background: linear-gradient(90deg, rgba(8, 10, 8, .91), rgba(8, 10, 8, .58) 45%, rgba(8, 10, 8, .12) 78%);
}

.workshop-shop-hero__content {
	position: relative;
	z-index: 1;
	padding-block: clamp(4rem, 8vw, 7rem);
}

.workshop-shop-hero .eyebrow {
	color: var(--vv-sand);
}

.workshop-shop-hero h1 {
	max-width: 10ch;
	margin: .35rem 0 1.4rem;
	color: #fff;
	font-size: clamp(4rem, 7vw, 7.8rem);
	letter-spacing: -.04em;
	line-height: .96;
}

.workshop-shop-hero__content > p:not(.eyebrow) {
	max-width: 44rem;
	margin: 0 0 2rem;
	color: rgba(255, 255, 255, .82);
	font-size: clamp(1rem, 1.35vw, 1.2rem);
	line-height: 1.7;
}

.workshop-shop-list {
	padding-block: clamp(4.5rem, 8vw, 8rem);
}

.workshop-shop-list__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, .8fr);
	margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
	align-items: end;
}

.workshop-shop-list__header .eyebrow {
	grid-column: 1 / -1;
}

.workshop-shop-list__header h2 {
	grid-column: 1 / 2;
	max-width: 13ch;
	margin: 0;
	font-size: clamp(3rem, 5.4vw, 5.8rem);
	line-height: .98;
}

.workshop-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	border: 1px solid #cbc9c1;
	background: #cbc9c1;
}

.workshop-product-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	background: #faf9f6;
}

.workshop-product-card__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #e7e5de;
}

.workshop-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .65s ease;
}

.workshop-product-card:hover .workshop-product-card__media img {
	transform: scale(1.03);
}

.workshop-product-card__body {
	display: flex;
	min-height: 330px;
	padding: clamp(1.4rem, 2.4vw, 2.1rem);
	flex: 1;
	flex-direction: column;
}

.workshop-product-card__label {
	margin: 0 0 .9rem;
	color: #806a42;
	font-size: .65rem;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.workshop-product-card h3 {
	margin: 0 0 1rem;
	font-size: clamp(1.75rem, 2.5vw, 2.8rem);
	line-height: 1.04;
}

.workshop-product-card h3 a {
	color: inherit;
	text-decoration: none;
}

.workshop-product-card__intro {
	color: var(--vv-muted);
	font-size: .95rem;
	line-height: 1.65;
}

.workshop-product-card__intro p {
	margin: 0;
}

.workshop-product-card__footer {
	display: flex;
	margin-top: auto;
	padding-top: 1.4rem;
	align-items: end;
	justify-content: space-between;
	gap: 1rem;
	border-top: 1px solid #d7d4cb;
}

.workshop-product-card__price {
	color: #171914;
	font-family: var(--vv-serif);
	font-size: 1.35rem;
}

.workshop-product-card__price del {
	margin-right: .4rem;
	color: #89877f;
	font-size: .9rem;
}

.workshop-product-card__price ins {
	text-decoration: none;
}

/* The personal workshop is the signature, full-width experience. */
.workshop-product-grid > .workshop-product-card--signature {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
	min-height: 520px;
}

.workshop-product-grid > .workshop-product-card--signature .workshop-product-card__media {
	order: 2;
	height: 100%;
	aspect-ratio: auto;
}

.workshop-product-grid > .workshop-product-card--signature .workshop-product-card__body {
	min-height: 0;
	padding: clamp(2.5rem, 5vw, 5.5rem);
	justify-content: center;
	background: #efede7;
}

.workshop-product-grid > .workshop-product-card--signature h3 {
	max-width: 12ch;
	font-size: clamp(3rem, 5vw, 5.4rem);
	line-height: .97;
}

.workshop-product-grid > .workshop-product-card--signature .workshop-product-card__intro {
	max-width: 36rem;
	font-size: 1.02rem;
}

.workshop-product-grid > .workshop-product-card--signature .workshop-product-card__footer {
	margin-top: clamp(2rem, 4vw, 4rem);
}

.workshop-shop-empty {
	padding: 3rem;
	border: 1px solid #cbc9c1;
	font-family: var(--vv-serif);
	font-size: 1.5rem;
}

.workshop-shop-contact {
	padding-block: clamp(5rem, 9vw, 8rem);
	background: #171914;
	color: #fff;
	text-align: center;
}

.workshop-shop-contact__inner {
	display: flex;
	max-width: 900px;
	align-items: center;
	flex-direction: column;
}

.workshop-shop-contact .eyebrow {
	color: var(--vv-sand);
}

.workshop-shop-contact h2 {
	margin: .5rem 0 2rem;
	font-size: clamp(3rem, 5.5vw, 5.5rem);
	line-height: .98;
}

@media (max-width: 1000px) {
	.workshop-product-grid {
		grid-template-columns: 1fr 1fr;
	}

	.workshop-product-grid > .workshop-product-card--signature {
		grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
	}
}

@media (max-width: 700px) {
	.workshop-shop-hero {
		min-height: 700px;
	}

	.workshop-shop-hero__veil {
		background: linear-gradient(0deg, rgba(8, 10, 8, .94), rgba(8, 10, 8, .45) 75%, rgba(8, 10, 8, .15));
	}

	.workshop-shop-hero h1 {
		font-size: clamp(3.2rem, 14vw, 4.8rem);
	}

	.workshop-shop-list__header,
	.workshop-product-grid {
		grid-template-columns: 1fr;
	}

	.workshop-product-grid > .workshop-product-card--signature {
		display: flex;
		min-height: 0;
	}

	.workshop-product-grid > .workshop-product-card--signature .workshop-product-card__media {
		order: 0;
		aspect-ratio: 4 / 3;
	}

	.workshop-product-grid > .workshop-product-card--signature .workshop-product-card__body {
		padding: 2rem 1.4rem;
	}

	.workshop-product-grid > .workshop-product-card--signature h3 {
		font-size: clamp(2.4rem, 11vw, 3.5rem);
	}

	.workshop-shop-list__header h2 {
		font-size: clamp(2.8rem, 12vw, 4rem);
	}

	.workshop-product-card__body {
		min-height: 280px;
	}
}

@media (max-width: 1023px) {
	.workshops-hero__scroll {
		display: none;
	}

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

	.workshops-principles span:nth-child(3) {
		border-left: 0;
	}

	.workshops-principles span:nth-child(n + 3) {
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}

	.workshops-intro__grid,
	.workshops-method__grid {
		grid-template-columns: 1fr;
	}

	.workshops-intro__copy {
		max-width: 48rem;
		padding-top: 0;
	}

	.workshops-featured__grid {
		grid-template-columns: 1fr;
	}

	.workshops-featured__media {
		aspect-ratio: 3 / 2;
		min-height: 0;
	}

	.workshops-featured__content {
		min-height: 560px;
	}

	.workshops-method__media {
		max-width: none;
	}

	.workshops-private__grid {
		grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
	}
}

@media (max-width: 700px) {
	.workshops-hero {
		min-height: 720px;
	}

	.workshops-hero__media img {
		object-position: 64% center;
	}

	.workshops-hero__veil {
		background: linear-gradient(0deg, rgba(9, 11, 8, 0.88) 0%, rgba(9, 11, 8, 0.42) 72%, rgba(9, 11, 8, 0.22) 100%);
	}

	.workshops-hero__content {
		padding-bottom: 4.5rem;
	}

	.workshops-hero h1 {
		font-size: clamp(3.6rem, 17vw, 5.7rem);
	}

	html[lang^="el"] .workshops-hero h1 {
		font-size: clamp(3.15rem, 15vw, 5rem);
	}

	.workshops-hero .button-group,
	.workshops-hero .button {
		width: 100%;
	}

	.workshops-principles span {
		min-height: 78px;
		padding: 1rem 0.6rem;
		font-size: 0.61rem;
	}

	.workshops-intro h2,
	.workshops-featured h2,
	.workshops-method h2,
	.workshops-private h2,
	.workshops-final-cta h2 {
		font-size: clamp(2.7rem, 13vw, 4.2rem);
	}

	.workshops-featured {
		padding-bottom: 4rem;
	}

	.workshops-featured__grid {
		width: 100%;
	}

	.workshops-featured__content {
		min-height: 0;
		padding: 2.5rem var(--vv-gutter) 3rem;
	}

	.workshops-featured__facts {
		grid-template-columns: 1fr;
	}

	.workshops-collection__heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.workshops-collection__grid {
		grid-template-columns: 1fr;
	}

	.workshop-card h3 {
		font-size: clamp(2rem, 10vw, 3rem);
	}

	.workshops-method__grid {
		gap: 2.5rem;
	}

	.workshops-method__media {
		width: 100%;
		margin-left: 0;
	}

	.workshops-method__content {
		padding: 2.5rem var(--vv-gutter) 3rem;
	}

	.workshops-private__grid {
		grid-template-columns: 1fr;
	}

	.workshops-private__content {
		padding: 2.5rem var(--vv-gutter) 3rem;
		margin: 0;
	}

	.workshops-private__media {
		order: -1;
		min-height: 0;
		aspect-ratio: 3 / 2;
	}
}

/* The Kingdom of the Pelicans workshop page. */
.kerkini-workshop {
	background: var(--vv-paper);
}

.kerkini-hero {
	position: relative;
	display: flex;
	min-height: clamp(740px, 91vh, 980px);
	align-items: flex-end;
	overflow: hidden;
	background: var(--vv-ink);
	color: var(--vv-white);
}

.kerkini-hero__media,
.kerkini-hero__veil {
	position: absolute;
	inset: 0;
}

.kerkini-hero__media img {
	width: 114%;
	max-width: none;
	height: 100%;
	object-fit: cover;
	object-position: center 45%;
	transform: translateX(-14.5%) scaleX(1.035);
	transform-origin: left center;
}

.kerkini-hero__veil {
	background:
		linear-gradient(90deg, rgba(8, 10, 7, 0.88) 0%, rgba(8, 10, 7, 0.6) 38%, rgba(8, 10, 7, 0.08) 72%),
		linear-gradient(0deg, rgba(8, 10, 7, 0.7) 0%, transparent 52%);
}

.kerkini-hero__content {
	position: relative;
	z-index: 1;
	padding-block: clamp(5rem, 12vh, 9rem);
	transform: translateX(clamp(-8rem, -6vw, -4rem));
}

.kerkini-hero__back {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	margin-bottom: clamp(3rem, 8vh, 6rem);
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.67rem;
	font-weight: 750;
	letter-spacing: 0.13em;
	text-decoration: none;
	text-transform: uppercase;
}

.kerkini-hero__back::before {
	content: "\2190";
	font-size: 1rem;
}

.kerkini-hero .eyebrow {
	color: var(--vv-sand);
}

.kerkini-hero h1 {
	max-width: 10ch;
	margin-bottom: 1.4rem;
	font-size: clamp(4.2rem, 8.4vw, 9.2rem);
	line-height: 1.04;
}

.kerkini-hero__lead {
	max-width: 42rem;
	margin-bottom: 1.6rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1.08rem, 1.5vw, 1.35rem);
	line-height: 1.55;
}

.kerkini-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	margin-bottom: 2rem;
}

.kerkini-hero__meta span {
	padding: 0.35rem 1rem;
	border-left: 1px solid rgba(255, 255, 255, 0.28);
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.kerkini-hero__meta span:first-child {
	padding-left: 0;
	border-left: 0;
}

.kerkini-hero__available-button {
	gap: 0.8rem;
	border-color: var(--vv-clay);
	background: var(--vv-clay);
	color: var(--vv-white);
}

.kerkini-hero__available-button span {
	padding-right: 0.8rem;
	border-right: 1px solid rgba(255, 255, 255, 0.4);
	font-size: 0.64rem;
	letter-spacing: 0.13em;
}

.kerkini-hero__available-button strong {
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.06em;
}

.kerkini-hero__available-button:hover {
	border-color: var(--vv-white);
	background: var(--vv-white);
	color: var(--vv-ink);
}

.kerkini-hero__available-button:hover span {
	border-color: var(--vv-border);
}

.kerkini-facts {
	border-bottom: 1px solid var(--vv-border);
	background: var(--vv-white);
}

.kerkini-facts__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kerkini-facts__grid > div {
	display: flex;
	min-height: 112px;
	padding: 1.5rem;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}

.kerkini-facts__grid > div + div {
	border-left: 1px solid var(--vv-border);
}

.kerkini-facts span {
	margin-bottom: 0.35rem;
	color: var(--vv-clay);
	font-size: 0.61rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.kerkini-facts strong {
	font-size: 0.88rem;
	font-weight: 650;
}

.kerkini-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.75fr);
	gap: clamp(3rem, 8vw, 9rem);
}

.kerkini-intro__heading h2 {
	max-width: 13ch;
	margin: 0;
	font-size: clamp(3rem, 5.7vw, 6.4rem);
	line-height: 0.96;
}

.kerkini-intro__copy {
	padding-top: clamp(1rem, 4vw, 4rem);
}

.kerkini-intro__copy p {
	color: var(--vv-muted);
}

.kerkini-intro__copy .kerkini-intro__lead {
	color: var(--vv-ink);
	font-family: var(--vv-serif);
	font-size: clamp(1.45rem, 2.15vw, 2.15rem);
	line-height: 1.28;
}

.kerkini-journey {
	background: var(--vv-ink);
	color: var(--vv-white);
}

.kerkini-journey__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(400px, 0.8fr);
	align-items: stretch;
}

.kerkini-journey__media {
	display: flex;
	align-items: center;
	margin-block: clamp(3rem, 6vw, 6.5rem);
	overflow: hidden;
}

.kerkini-journey__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 57% center;
}

.kerkini-journey__content {
	display: flex;
	padding: clamp(3rem, 6vw, 6.5rem);
	justify-content: center;
	flex-direction: column;
}

.kerkini-journey .eyebrow {
	color: var(--vv-clay);
}

.kerkini-journey h2 {
	max-width: 9ch;
	font-size: clamp(3.2rem, 5.4vw, 6rem);
	line-height: 0.96;
}

.kerkini-journey__content > p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.68);
}

.kerkini-journey__modes {
	padding: 0;
	margin: 1.4rem 0 0;
	list-style: none;
}

.kerkini-journey__modes li {
	display: grid;
	grid-template-columns: 2.75rem 1fr;
	gap: 1rem;
	padding: 1rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 0.78rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.kerkini-journey__modes span {
	color: var(--vv-clay);
}

.kerkini-booking__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
	gap: clamp(2rem, 7vw, 7rem);
	align-items: end;
	margin-bottom: clamp(3rem, 6vw, 5rem);
}

.kerkini-booking__header h2 {
	max-width: 12ch;
	margin: 0;
}

.kerkini-booking__header > p {
	margin: 0;
	color: var(--vv-muted);
}

.kerkini-booking__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(330px, 0.48fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: stretch;
}

.kerkini-dates {
	border-top: 1px solid var(--vv-border);
}

.kerkini-date {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 1rem;
	padding: 1.2rem 0;
	border-bottom: 1px solid var(--vv-border);
	align-items: center;
}

.kerkini-date > span {
	font-family: var(--vv-serif);
	font-size: clamp(1.5rem, 2.5vw, 2.4rem);
	line-height: 1.1;
}

.kerkini-date > strong {
	color: var(--vv-muted);
	font-size: 0.64rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.kerkini-date--available {
	padding-inline: 1.2rem;
	border-color: var(--vv-clay);
	background: var(--vv-clay);
	color: var(--vv-white);
}

.kerkini-date--available > strong {
	color: var(--vv-white);
}

.kerkini-booking__card {
	display: flex;
	padding: clamp(2rem, 4vw, 3.5rem);
	justify-content: center;
	flex-direction: column;
	background: var(--vv-ink);
	color: var(--vv-white);
}

.kerkini-booking__card .eyebrow {
	color: var(--vv-clay);
}

.kerkini-booking__card h3 {
	font-size: clamp(2.4rem, 4vw, 4.2rem);
	line-height: 0.98;
}

.kerkini-booking__card > p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.7);
}

.kerkini-booking__card .button {
	align-self: flex-start;
	margin-top: 0.6rem;
}

.kerkini-booking__card .text-link {
	align-self: flex-start;
	margin-top: 1.5rem;
}

.kerkini-pricing__heading {
	align-items: end;
}

.kerkini-pricing__heading .eyebrow {
	color: var(--vv-clay);
}

.kerkini-pricing__heading > p {
	max-width: 34rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.66);
}

.kerkini-pricing__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	background: rgba(255, 255, 255, 0.18);
}

.kerkini-price {
	padding: clamp(2.5rem, 5vw, 5rem);
	background: var(--vv-ink-soft);
}

.kerkini-price--accent {
	background: var(--vv-paper);
	color: var(--vv-ink);
}

.kerkini-price__label {
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.kerkini-price__amount {
	display: flex;
	margin: 0 0 1rem;
	align-items: flex-start;
	font-family: var(--vv-serif);
	font-size: clamp(4rem, 8vw, 8rem);
	letter-spacing: -0.06em;
	line-height: 0.9;
}

.kerkini-price__amount span {
	padding-top: 0.3em;
	margin-right: 0.15em;
	font-family: var(--vv-sans);
	font-size: 0.24em;
	font-weight: 500;
}

.kerkini-price > p:not(.kerkini-price__label, .kerkini-price__amount) {
	max-width: 28rem;
	color: rgba(255, 255, 255, 0.62);
}

.kerkini-price--accent > p:not(.kerkini-price__label, .kerkini-price__amount) {
	color: var(--vv-muted);
}

.kerkini-price > strong {
	display: block;
	margin-top: 2rem;
	color: var(--vv-clay);
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.kerkini-pricing__note {
	display: flex;
	padding-top: 2rem;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.kerkini-pricing__note p {
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
}

.kerkini-included__heading {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-bottom: clamp(3rem, 6vw, 5rem);
	text-align: center;
}

.kerkini-included__heading h2 {
	max-width: 15ch;
	margin-bottom: 0;
}

.kerkini-included__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid var(--vv-border);
	border-left: 1px solid var(--vv-border);
}

.kerkini-included__grid article {
	min-height: 285px;
	padding: clamp(1.5rem, 2.5vw, 2.5rem);
	border-right: 1px solid var(--vv-border);
	border-bottom: 1px solid var(--vv-border);
}

.kerkini-included__grid article > span {
	display: block;
	margin-bottom: 2rem;
	color: var(--vv-clay);
	font-size: 0.65rem;
	font-weight: 750;
	letter-spacing: 0.12em;
}

.kerkini-included__grid h3 {
	margin-bottom: 0.8rem;
	font-family: var(--vv-sans);
	font-size: 0.9rem;
	font-weight: 750;
	letter-spacing: 0.06em;
	line-height: 1.3;
	text-transform: uppercase;
}

.kerkini-included__grid p {
	margin: 0;
	color: var(--vv-muted);
	font-size: 0.92rem;
}

.kerkini-included__footnote {
	display: flex;
	padding-top: 2rem;
	justify-content: space-between;
	gap: 2rem;
	color: var(--vv-muted);
	font-size: 0.88rem;
}

.kerkini-included__footnote p {
	max-width: 35rem;
	margin: 0;
}

.kerkini-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	padding: 1px;
	background: var(--vv-ink);
}

.kerkini-gallery figure {
	overflow: hidden;
	background: var(--vv-ink);
}

.kerkini-gallery img {
	width: 100%;
	height: auto;
}

.kerkini-testimonials__heading {
	justify-content: center;
	text-align: center;
}

.kerkini-testimonials__heading h2 {
	max-width: 15ch;
	margin-inline: auto;
}

.kerkini-prepare__inner {
	display: grid;
	grid-template-columns: minmax(270px, 0.45fr) minmax(0, 1fr);
	gap: clamp(3rem, 8vw, 8rem);
}

.kerkini-prepare__heading {
	position: sticky;
	top: 8rem;
	align-self: start;
}

.kerkini-prepare__heading h2 {
	font-size: clamp(3rem, 5vw, 5rem);
}

.kerkini-prepare__heading > p:not(.eyebrow) {
	color: var(--vv-muted);
}

.kerkini-prepare__details {
	border-top: 1px solid var(--vv-border);
}

.kerkini-prepare details {
	border-bottom: 1px solid var(--vv-border);
}

.kerkini-prepare summary {
	position: relative;
	padding: 1.6rem 3rem 1.6rem 0;
	font-family: var(--vv-serif);
	font-size: clamp(1.5rem, 2.5vw, 2.4rem);
	line-height: 1.15;
	cursor: pointer;
	list-style: none;
}

.kerkini-prepare summary::-webkit-details-marker {
	display: none;
}

.kerkini-prepare summary::after {
	position: absolute;
	top: 50%;
	right: 0;
	font-family: var(--vv-sans);
	font-size: 1.5rem;
	content: "+";
	transform: translateY(-50%);
}

.kerkini-prepare details[open] summary::after {
	content: "−";
}

.kerkini-prepare__panel {
	max-width: 50rem;
	padding: 0.2rem 0 2rem;
	color: var(--vv-muted);
}

.kerkini-prepare__panel ul {
	padding-left: 1.2rem;
	margin: 0 0 1.4rem;
}

.kerkini-prepare__panel li + li {
	margin-top: 0.55rem;
}

.kerkini-final-cta {
	position: relative;
	padding-block: clamp(6rem, 12vw, 11rem);
	overflow: hidden;
	background: var(--vv-ink);
	color: var(--vv-white);
	text-align: center;
}

.kerkini-final-cta::before {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(185, 111, 67, 0.22), transparent 48%);
	content: "";
}

.kerkini-final-cta__inner {
	position: relative;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.kerkini-final-cta .eyebrow {
	color: var(--vv-clay);
}

.kerkini-final-cta h2 {
	max-width: 13ch;
	margin-bottom: 1.4rem;
	font-size: clamp(3.2rem, 6.4vw, 7rem);
	line-height: 0.95;
}

.kerkini-final-cta__inner > p:not(.eyebrow) {
	max-width: 38rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.68);
}

/* Private one-day Pelican Kingdom workshop. */
.pelican-day-workshop .kerkini-hero h1 {
	max-width: 9.5ch;
	font-size: clamp(4rem, 7.8vw, 8.8rem);
}

.pelican-day-workshop .kerkini-hero__lead {
	max-width: 39rem;
}

.pelican-day-workshop .kerkini-intro__heading h2 {
	max-width: 14ch;
	font-size: clamp(3rem, 5.2vw, 5.9rem);
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.pelican-day-workshop .day-booking .kerkini-booking__header {
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
	gap: clamp(2.5rem, 6vw, 6rem);
	padding-bottom: clamp(2rem, 3vw, 3rem);
	margin-bottom: clamp(2rem, 3vw, 3rem);
	border-bottom: 1px solid var(--vv-border);
}

.pelican-day-workshop .day-booking .kerkini-booking__header h2 {
	max-width: 13ch;
	font-size: clamp(3rem, 4.8vw, 5.4rem);
	letter-spacing: -0.035em;
	line-height: 1.05;
}

.pelican-day-workshop .day-booking .kerkini-booking__header > p {
	max-width: 32rem;
	justify-self: end;
	font-size: 1.02rem;
	line-height: 1.7;
}

.pelican-day-workshop .day-booking .kerkini-booking__layout {
	gap: 0;
	border: 1px solid var(--vv-border);
	background: var(--vv-white);
}

.pelican-day-workshop .day-booking .kerkini-dates {
	padding: clamp(1.25rem, 2.5vw, 2.5rem) clamp(1.5rem, 3.5vw, 3.5rem);
	border-top: 0;
}

.pelican-day-workshop .day-booking .kerkini-date {
	min-height: 82px;
}

.pelican-day-workshop .day-booking .kerkini-booking__card {
	min-height: 100%;
}

.pelican-day-workshop .kerkini-booking__card h3 {
	max-width: 11ch;
}

.pelican-day-workshop .kerkini-date > span {
	font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.pelican-day-workshop .kerkini-intro,
.pelican-day-workshop .kerkini-booking,
.pelican-day-workshop .kerkini-pricing,
.pelican-day-workshop .kerkini-included,
.pelican-day-workshop .kerkini-testimonials,
.pelican-day-workshop .kerkini-prepare {
	padding-block: clamp(4rem, 7vw, 7rem);
}

/* Madzharovo's Untamed Beauty workshop. */
.madzharovo-workshop .kerkini-hero__media img {
	width: 100%;
	max-width: 100%;
	object-position: center 38%;
	transform: none;
}

.madzharovo-workshop .kerkini-hero__veil {
	background:
		linear-gradient(90deg, rgba(8, 10, 7, 0.9) 0%, rgba(8, 10, 7, 0.66) 40%, rgba(8, 10, 7, 0.12) 74%),
		linear-gradient(0deg, rgba(8, 10, 7, 0.76) 0%, transparent 58%);
}

.madzharovo-workshop .kerkini-hero__content {
	transform: none;
}

.madzharovo-workshop .kerkini-hero h1 {
	max-width: 9ch;
	font-size: clamp(4rem, 7.4vw, 8.2rem);
	letter-spacing: -0.045em;
	line-height: 1.04;
}

.madzharovo-workshop .kerkini-hero__lead {
	max-width: 40rem;
}

.madzharovo-workshop .kerkini-intro__heading h2 {
	max-width: 12ch;
	font-size: clamp(3rem, 5.3vw, 6rem);
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.madzharovo-workshop .kerkini-journey__media img {
	object-position: center center;
}

.madzharovo-workshop .kerkini-journey h2 {
	max-width: 10ch;
	line-height: 1.04;
}

.madzharovo-workshop .kerkini-booking__header {
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
	gap: clamp(2.5rem, 6vw, 6rem);
	padding-bottom: clamp(2rem, 3vw, 3rem);
	margin-bottom: clamp(2rem, 3vw, 3rem);
	border-bottom: 1px solid var(--vv-border);
}

.madzharovo-workshop .kerkini-booking__header h2 {
	max-width: 12ch;
	font-size: clamp(3rem, 4.8vw, 5.4rem);
	letter-spacing: -0.035em;
	line-height: 1.06;
}

.madzharovo-workshop .kerkini-booking__header > p {
	max-width: 32rem;
	justify-self: end;
	font-size: 1.02rem;
	line-height: 1.7;
}

.madzharovo-workshop .kerkini-booking__layout {
	gap: 0;
	border: 1px solid var(--vv-border);
	background: var(--vv-white);
}

.madzharovo-workshop .kerkini-dates {
	padding: clamp(1.25rem, 2.5vw, 2.5rem) clamp(1.5rem, 3.5vw, 3.5rem);
	border-top: 0;
}

.madzharovo-workshop .kerkini-date {
	min-height: 82px;
}

.madzharovo-workshop .kerkini-booking__card {
	min-height: 100%;
}

.madzharovo-workshop .kerkini-included__footnote {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.madzharovo-workshop .kerkini-gallery figure {
	aspect-ratio: 3 / 2;
}

.madzharovo-workshop .kerkini-gallery img {
	height: 100%;
	object-fit: cover;
}

.madzharovo-workshop .kerkini-intro,
.madzharovo-workshop .kerkini-booking,
.madzharovo-workshop .kerkini-pricing,
.madzharovo-workshop .kerkini-included,
.madzharovo-workshop .kerkini-prepare {
	padding-block: clamp(4rem, 7vw, 7rem);
}

/* About Vaios Vitos. */
.about-story {
	background: var(--vv-paper);
}

.about-story__hero {
	position: relative;
	display: flex;
	min-height: clamp(760px, 92vh, 980px);
	align-items: flex-end;
	overflow: hidden;
	background: var(--vv-ink);
	color: var(--vv-white);
}

.about-story__hero-media,
.about-story__hero-veil {
	position: absolute;
	inset: 0;
}

.about-story__hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 42%;
}

.about-story__hero-veil {
	background:
		linear-gradient(90deg, rgba(8, 10, 7, 0.92) 0%, rgba(8, 10, 7, 0.7) 42%, rgba(8, 10, 7, 0.12) 75%),
		linear-gradient(0deg, rgba(8, 10, 7, 0.75) 0%, transparent 60%);
}

.about-story__hero-content {
	position: relative;
	z-index: 1;
	padding-block: clamp(5rem, 12vh, 9rem);
}

.about-story__hero .eyebrow {
	color: var(--vv-sand);
}

.about-story__hero h1 {
	max-width: 8.5ch;
	margin-bottom: 1.5rem;
	font-size: clamp(4rem, 7.8vw, 8.7rem);
	letter-spacing: -0.045em;
	line-height: 1.05;
}

.about-story__hero-lead {
	max-width: 43rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1.05rem, 1.5vw, 1.3rem);
	line-height: 1.65;
}

.about-story__facts {
	border-bottom: 1px solid var(--vv-border);
	background: var(--vv-white);
}

.about-story__facts-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-story__facts-grid > div {
	display: flex;
	min-height: 112px;
	padding: 1.5rem;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}

.about-story__facts-grid > div + div {
	border-left: 1px solid var(--vv-border);
}

.about-story__facts span {
	margin-bottom: 0.35rem;
	color: var(--vv-clay);
	font-size: 0.61rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.about-story__facts strong {
	font-size: 0.88rem;
	font-weight: 650;
}

.about-story__intro {
	padding-block: clamp(5rem, 9vw, 9rem);
}

.about-story__intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr) minmax(300px, 0.52fr);
	gap: clamp(2.5rem, 6vw, 7rem);
	align-items: start;
}

.about-story__intro-heading h2 {
	max-width: 11ch;
	margin: 0;
	font-size: clamp(3.2rem, 5.4vw, 6.2rem);
	letter-spacing: -0.04em;
	line-height: 1.08;
}

.about-story__intro-copy {
	padding-top: clamp(2rem, 5vw, 5rem);
}

.about-story__intro-copy p {
	color: var(--vv-muted);
}

.about-story__intro-copy .about-story__lead {
	color: var(--vv-ink);
	font-family: var(--vv-serif);
	font-size: clamp(1.4rem, 2vw, 2rem);
	line-height: 1.35;
}

.about-story__portrait {
	margin: 0;
	aspect-ratio: 4 / 5;
	overflow: hidden;
}

.about-story__portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.about-story__motion {
	padding-block: clamp(5rem, 9vw, 9rem);
	background: var(--vv-ink);
	color: var(--vv-white);
}

.about-story__motion-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.65fr);
	gap: clamp(3rem, 7vw, 8rem);
	align-items: center;
}

.about-story__motion-gallery {
	display: grid;
	min-height: clamp(580px, 55vw, 820px);
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-template-rows: 1fr 0.72fr;
	align-items: end;
}

.about-story__motion-image {
	margin: 0;
	overflow: hidden;
}

.about-story__motion-image--large {
	grid-column: 1 / 11;
	grid-row: 1 / 3;
	height: 88%;
	align-self: start;
}

.about-story__motion-image--small {
	z-index: 1;
	grid-column: 8 / 13;
	grid-row: 2;
	height: 88%;
	border: clamp(0.5rem, 1vw, 1rem) solid var(--vv-ink);
}

.about-story__motion-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-story__motion-image--large img {
	object-position: center center;
}

.about-story__motion-copy .eyebrow {
	color: var(--vv-clay);
}

.about-story__motion-copy h2 {
	max-width: 9ch;
	font-size: clamp(3.2rem, 5vw, 5.8rem);
	letter-spacing: -0.04em;
	line-height: 1.07;
}

.about-story__motion-copy p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.68);
}

.about-story__path {
	padding-block: clamp(5rem, 9vw, 9rem);
}

.about-story__path-heading {
	align-items: end;
}

.about-story__path-heading h2 {
	max-width: 13ch;
	line-height: 1.08;
}

.about-story__path-heading > p {
	max-width: 34rem;
	margin: 0;
	color: var(--vv-muted);
}

.about-story__milestones {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--vv-border);
	border-left: 1px solid var(--vv-border);
}

.about-story__milestones article {
	min-height: 330px;
	padding: clamp(2rem, 4vw, 4rem);
	border-right: 1px solid var(--vv-border);
	border-bottom: 1px solid var(--vv-border);
}

.about-story__milestones span {
	display: block;
	margin-bottom: clamp(3rem, 6vw, 6rem);
	color: var(--vv-clay);
	font-size: 0.68rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.about-story__milestones h3 {
	max-width: 14ch;
	font-family: var(--vv-serif);
	font-size: clamp(1.8rem, 2.6vw, 2.8rem);
	font-weight: 400;
	line-height: 1.12;
}

.about-story__milestones p {
	margin: 0;
	color: var(--vv-muted);
}

.about-story__pttl {
	padding-block: clamp(5rem, 9vw, 9rem);
	border-top: 1px solid var(--vv-border);
	background: var(--vv-white);
}

.about-story__pttl-grid {
	display: grid;
	grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.1fr);
	gap: clamp(3rem, 8vw, 9rem);
	align-items: center;
}

.about-story__pttl-copy h2 {
	max-width: 10ch;
	font-size: clamp(3.2rem, 5vw, 5.7rem);
	letter-spacing: -0.04em;
	line-height: 1.07;
}

.about-story__pttl-copy p:not(.eyebrow) {
	color: var(--vv-muted);
}

.about-story__pttl-copy .button {
	margin-top: 1rem;
}

.about-story__pttl-media {
	margin: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.about-story__pttl-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-story__workshops {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(390px, 0.75fr);
	background: var(--vv-ink);
	color: var(--vv-white);
}

.about-story__workshops-media {
	min-height: clamp(680px, 72vw, 930px);
	overflow: hidden;
}

.about-story__workshops-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.about-story__workshops-content {
	display: flex;
	width: 100%;
	max-width: none;
	padding: clamp(3rem, 6vw, 7rem);
	justify-content: center;
	flex-direction: column;
}

.about-story__workshops-content .eyebrow {
	color: var(--vv-clay);
}

.about-story__workshops-content h2 {
	max-width: 9ch;
	font-size: clamp(3.2rem, 5vw, 5.8rem);
	letter-spacing: -0.04em;
	line-height: 1.07;
}

.about-story__workshops-content p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.68);
}

.about-story__workshops-content .button {
	align-self: flex-start;
	margin-top: 1rem;
}

.about-story__engagement {
	padding-block: clamp(5rem, 9vw, 9rem);
}

.about-story__engagement-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
	gap: clamp(3rem, 8vw, 9rem);
	align-items: center;
}

.about-story__engagement-media {
	margin: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.about-story__engagement-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-story__engagement-copy h2 {
	max-width: 11ch;
	font-size: clamp(3rem, 4.7vw, 5.4rem);
	letter-spacing: -0.04em;
	line-height: 1.08;
}

.about-story__engagement-copy p:not(.eyebrow) {
	color: var(--vv-muted);
}

.about-story__links {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 2rem;
	margin-top: 2rem;
}

.about-story__archive {
	padding-block: clamp(4.5rem, 8vw, 8rem) 1px;
	overflow: hidden;
}

.about-story__archive--dark {
	background: var(--vv-ink);
	color: var(--vv-white);
}

.about-story__archive--light {
	background: #eee9df;
	color: var(--vv-ink);
}

.about-story__archive-heading {
	display: grid;
	grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
	gap: clamp(2rem, 6vw, 7rem);
	align-items: end;
	padding-bottom: clamp(3rem, 6vw, 5.5rem);
}

.about-story__archive-heading .eyebrow {
	margin: 0;
	color: var(--vv-clay);
}

.about-story__archive-heading h2 {
	max-width: 11ch;
	margin: 0;
	font-size: clamp(3rem, 5.5vw, 6.4rem);
	letter-spacing: -0.04em;
	line-height: 1.05;
}

.about-story__archive-grid {
	padding-inline: 1px;
	columns: 3 320px;
	column-gap: 1px;
}

.about-story__archive-grid figure {
	display: inline-block;
	width: 100%;
	margin: 0 0 1px;
	overflow: hidden;
	break-inside: avoid;
	vertical-align: top;
}

.about-story__archive-grid img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
	.about-story__archive-grid figure:hover img {
		transform: scale(1.018);
	}
}

.about-story__personal {
	padding-block: clamp(5rem, 9vw, 9rem);
	background: var(--vv-white);
}

.about-story__personal-grid {
	display: grid;
	grid-template-columns: minmax(360px, 0.68fr) minmax(0, 1.05fr);
	gap: clamp(3rem, 8vw, 9rem);
	align-items: center;
}

.about-story__personal-copy h2 {
	max-width: 10ch;
	font-size: clamp(3.2rem, 5vw, 5.7rem);
	letter-spacing: -0.04em;
	line-height: 1.08;
}

.about-story__personal-copy p:not(.eyebrow) {
	color: var(--vv-muted);
}

.about-story__personal-gallery {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.75fr);
	gap: 1px;
	align-items: end;
}

.about-story__personal-media {
	margin: 0;
	overflow: hidden;
}

.about-story__personal-media img {
	display: block;
	width: 100%;
	height: auto;
}

.about-story__cta {
	position: relative;
	padding-block: clamp(6rem, 12vw, 11rem);
	overflow: hidden;
	background: var(--vv-ink);
	color: var(--vv-white);
	text-align: center;
}

.about-story__cta::before {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(185, 111, 67, 0.24), transparent 48%);
	content: "";
}

.about-story__cta-inner {
	position: relative;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.about-story__cta .eyebrow {
	color: var(--vv-clay);
}

.about-story__cta h2 {
	max-width: 11ch;
	margin-bottom: 1.5rem;
	font-size: clamp(3.2rem, 6.4vw, 7rem);
	letter-spacing: -0.04em;
	line-height: 1.07;
}

.about-story__cta-inner > p:not(.eyebrow) {
	max-width: 39rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1100px) {
	.about-story__intro-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-story__portrait {
		grid-column: 1 / -1;
		max-height: 660px;
		aspect-ratio: 16 / 9;
	}

	.about-story__motion-grid,
	.about-story__pttl-grid,
	.about-story__engagement-grid,
	.about-story__personal-grid {
		grid-template-columns: 1fr;
	}

	.about-story__motion-copy,
	.about-story__pttl-copy,
	.about-story__engagement-copy,
	.about-story__personal-copy {
		max-width: 48rem;
	}

	.about-story__pttl-media,
	.about-story__engagement-media,
	.about-story__personal-gallery {
		grid-row: 1;
	}

	.about-story__archive-heading {
		grid-template-columns: 1fr;
	}

	.about-story__workshops {
		grid-template-columns: 1fr;
	}

	.about-story__workshops-media {
		min-height: 560px;
	}

	.about-story__workshops-content {
		min-height: 620px;
	}

	.kerkini-intro__grid,
	.kerkini-booking__header {
		grid-template-columns: 1fr;
	}

	.pelican-day-workshop .day-booking .kerkini-booking__header {
		grid-template-columns: 1fr;
	}

	.pelican-day-workshop .day-booking .kerkini-booking__header > p {
		justify-self: start;
	}

	.madzharovo-workshop .kerkini-booking__header {
		grid-template-columns: 1fr;
	}

	.madzharovo-workshop .kerkini-booking__header > p {
		justify-self: start;
	}

	.kerkini-intro__copy {
		max-width: 48rem;
		padding-top: 0;
	}

	.kerkini-journey__grid {
		grid-template-columns: 1fr;
	}

	.kerkini-journey__media {
		width: 100%;
		margin-block: 0;
	}

	.kerkini-journey__media img {
		height: auto;
		object-fit: contain;
	}

	.kerkini-journey__content {
		min-height: 600px;
	}

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

	.kerkini-included__grid article {
		min-height: 240px;
	}
}

@media (max-width: 800px) {
	.about-story__facts-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-story__facts-grid > div:nth-child(3) {
		border-left: 0;
	}

	.about-story__facts-grid > div:nth-child(n + 3) {
		border-top: 1px solid var(--vv-border);
	}

	.about-story__intro-grid {
		grid-template-columns: 1fr;
	}

	.about-story__portrait {
		grid-column: auto;
		aspect-ratio: 4 / 5;
	}

	.about-story__milestones {
		grid-template-columns: 1fr;
	}

	.about-story__milestones article {
		min-height: 0;
	}

	.about-story__path-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.kerkini-hero__media img {
		width: 100%;
		max-width: 100%;
		transform: none;
	}

	.kerkini-hero__content {
		transform: none;
	}

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

	.kerkini-facts__grid > div:nth-child(3) {
		border-left: 0;
	}

	.kerkini-facts__grid > div:nth-child(n + 3) {
		border-top: 1px solid var(--vv-border);
	}

	.kerkini-booking__layout,
	.kerkini-prepare__inner {
		grid-template-columns: 1fr;
	}

	.kerkini-pricing__grid {
		grid-template-columns: 1fr;
	}

	.kerkini-pricing__note,
	.kerkini-included__footnote {
		align-items: flex-start;
		flex-direction: column;
	}

	.madzharovo-workshop .kerkini-included__footnote {
		grid-template-columns: 1fr;
	}

	.kerkini-gallery {
		grid-template-columns: 1fr;
	}

	.kerkini-prepare__heading {
		position: static;
	}
}

/* Premium WooCommerce cart. */
body.woocommerce-cart .page-view {
	background: #f7f6f2;
	padding-bottom: 28px !important;
}

body.woocommerce-cart .singular-header {
	padding-top: clamp(26px, 3vw, 42px) !important;
	padding-bottom: 14px !important;
}

body.woocommerce-cart .singular-header h1 {
	margin: 0 !important;
	font-size: clamp(42px, 5vw, 68px) !important;
	font-weight: 500 !important;
	letter-spacing: -.035em !important;
	line-height: .95 !important;
}

body.woocommerce-cart .entry-content {
	width: min(calc(100% - (2 * var(--vv-gutter))), 1620px);
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 22px !important;
}

body.woocommerce-cart .entry-content > .woocommerce,
body.woocommerce-cart .entry-content > .wp-block-woocommerce-cart {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

body.woocommerce-cart .entry-content > .woocommerce {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(420px, .75fr);
	gap: clamp(28px, 4vw, 60px);
	align-items: start;
}

body.woocommerce-cart .woocommerce-notices-wrapper,
body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-error,
body.woocommerce-cart .woocommerce-info {
	grid-column: 1 / -1;
}

body.woocommerce-cart .woocommerce-cart-form {
	grid-column: 1;
	margin: 0 !important;
}

body.woocommerce-cart table.shop_table.cart {
	margin: 0 !important;
	border: 0 !important;
	border-collapse: collapse !important;
	background: transparent !important;
}

body.woocommerce-cart table.shop_table.cart thead th {
	padding: 0 12px 13px !important;
	border: 0 !important;
	border-bottom: 1px solid #c9c6bd !important;
	color: #77756d !important;
	font-family: var(--vv-sans) !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	letter-spacing: .14em !important;
	text-transform: uppercase !important;
}

body.woocommerce-cart table.shop_table.cart thead th.product-name,
body.woocommerce-cart table.shop_table.cart thead th.product-price,
body.woocommerce-cart table.shop_table.cart thead th.product-quantity,
body.woocommerce-cart table.shop_table.cart thead th.product-subtotal {
	color: #77756d !important;
	font-family: var(--vv-sans) !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	letter-spacing: .14em !important;
	line-height: 1.2 !important;
	text-transform: uppercase !important;
}

body.woocommerce-cart table.shop_table.cart td {
	padding: 18px 12px !important;
	border: 0 !important;
	border-bottom: 1px solid #d7d4cb !important;
	background: transparent !important;
	vertical-align: middle !important;
}

body.woocommerce-cart table.shop_table.cart .product-thumbnail {
	width: 112px;
}

body.woocommerce-cart table.shop_table.cart .product-thumbnail img {
	width: 92px !important;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	background: #ebe8e0;
}

body.woocommerce-cart table.shop_table.cart .product-name a {
	color: #171914 !important;
	font-family: var(--vv-serif) !important;
	font-size: clamp(19px, 1.5vw, 24px) !important;
	font-weight: 500 !important;
	line-height: 1.15 !important;
	text-decoration: none !important;
}

body.woocommerce-cart table.shop_table.cart .variation {
	margin: 8px 0 0 !important;
	color: #727168 !important;
	font-size: 14px !important;
	line-height: 1.55 !important;
}

body.woocommerce-cart table.shop_table.cart .variation dt,
body.woocommerce-cart table.shop_table.cart .variation dd,
body.woocommerce-cart table.shop_table.cart .variation p {
	font-size: inherit !important;
	line-height: inherit !important;
	margin-bottom: 5px !important;
}

body.woocommerce-cart table.shop_table.cart td.product-price,
body.woocommerce-cart table.shop_table.cart td.product-subtotal {
	color: #34352f !important;
	font-family: var(--vv-serif) !important;
	font-size: 18px !important;
}

body.woocommerce-cart table.shop_table.cart .quantity .qty {
	width: 62px !important;
	height: 44px !important;
	margin: 0 !important;
	border: 1px solid #c6c2b8 !important;
	border-radius: 0 !important;
	background: #fbfaf7 !important;
}

body.woocommerce-cart table.shop_table.cart .product-remove a.remove {
	color: #77756d !important;
	font-size: 24px !important;
	font-weight: 300 !important;
}

body.woocommerce-cart table.shop_table.cart .product-remove a.remove:hover {
	background: transparent !important;
	color: #171914 !important;
}

body.woocommerce-cart table.shop_table.cart td.actions {
	padding: 20px 0 0 !important;
	border-bottom: 0 !important;
}

body.woocommerce-cart table.shop_table.cart td.actions .coupon {
	display: flex;
	gap: 8px;
}

body.woocommerce-cart table.shop_table.cart td.actions .coupon .input-text {
	width: 260px !important;
	min-width: 260px !important;
	height: 46px !important;
	padding: 0 14px !important;
	border: 1px solid #c6c2b8 !important;
	border-radius: 0 !important;
	background: #fbfaf7 !important;
	color: #171914 !important;
	font-family: var(--vv-sans) !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	letter-spacing: 0 !important;
	line-height: 46px !important;
}

body.woocommerce-cart table.shop_table.cart td.actions .coupon .input-text::placeholder {
	color: #77756d !important;
	font-family: var(--vv-sans) !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	letter-spacing: 0 !important;
	opacity: 1 !important;
}

body.woocommerce-cart table.shop_table.cart td.actions button.button {
	min-height: 46px !important;
	padding: 0 18px !important;
	border: 1px solid #171914 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: #171914 !important;
	font-size: 10px !important;
	font-weight: 800 !important;
	letter-spacing: .12em !important;
	text-transform: uppercase !important;
}

body.woocommerce-cart table.shop_table.cart td.actions > button.button {
	float: right;
}

body.woocommerce-cart .cart-collaterals {
	grid-column: 2;
	width: 100% !important;
	margin: 0 !important;
}

body.woocommerce-cart .cart-collaterals .cart_totals {
	float: none !important;
	width: 100% !important;
	padding: 24px !important;
	border: 1px solid #d2cfc6;
	background: #efede7;
}

body.woocommerce-cart .cart-collaterals .cart_totals h2 {
	margin: 0 0 20px !important;
	font-size: 30px !important;
	font-weight: 500 !important;
	line-height: 1 !important;
}

body.woocommerce-cart .cart-collaterals table.shop_table {
	margin: 0 0 20px !important;
	border: 0 !important;
	border-collapse: collapse !important;
}

body.woocommerce-cart .cart-collaterals table.shop_table th,
body.woocommerce-cart .cart-collaterals table.shop_table td {
	padding: 13px 0 !important;
	border: 0 !important;
	border-bottom: 1px solid #d2cfc6 !important;
	background: transparent !important;
}

body.woocommerce-cart .cart-collaterals table.shop_table th {
	font-size: 11px !important;
	font-weight: 800 !important;
	letter-spacing: .08em !important;
	text-transform: uppercase !important;
}

body.woocommerce-cart .cart-collaterals .order-total td {
	font-family: var(--vv-serif) !important;
	font-size: 25px !important;
}

body.woocommerce-cart .cart-collaterals ul#shipping_method {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

body.woocommerce-cart .cart-collaterals ul#shipping_method li {
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1.45 !important;
}

body.woocommerce-cart .cart-collaterals ul#shipping_method li:only-child input[type="radio"] {
	display: none !important;
}

body.woocommerce-cart .cart-collaterals ul#shipping_method label[for*="free_shipping"] {
	margin: 0 0 0 6px !important;
	color: #34352f !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1.45 !important;
}

body.woocommerce-cart .cart-collaterals tr.woocommerce-shipping-totals td {
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
	gap: 0 !important;
	text-align: left !important;
}

body.woocommerce-cart .cart-collaterals .woocommerce-shipping-destination {
	order: 1 !important;
	margin: 0 !important;
	padding: 2px 0 0 !important;
	border: 0 !important;
	color: #34352f !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	line-height: 1.55 !important;
}

body.woocommerce-cart .cart-collaterals .woocommerce-shipping-destination::before {
	display: block;
	margin-bottom: 11px;
	color: #77756d;
	content: "Shipping address";
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .14em;
	line-height: 1.2;
	text-transform: uppercase;
}

html[lang^="el"] body.woocommerce-cart .cart-collaterals .woocommerce-shipping-destination::before {
	content: "Διεύθυνση αποστολής";
}

body.woocommerce-cart .cart-collaterals .shipping-calculator-button {
	display: inline-block !important;
	margin: 0 !important;
	color: #171914 !important;
	font-size: 11px !important;
	font-weight: 750 !important;
	letter-spacing: .04em !important;
	text-decoration: none !important;
	border-bottom: 1px solid #806a42 !important;
}

body.woocommerce-cart .cart-collaterals .woocommerce-shipping-calculator {
	order: 2 !important;
	align-self: stretch !important;
	margin: 10px 0 22px !important;
	padding: 0 !important;
}

body.woocommerce-cart .cart-collaterals .woocommerce-shipping-calculator > p {
	margin: 0 !important;
}

body.woocommerce-cart .cart-collaterals .shipping-calculator-form {
	margin: 12px 0 0 !important;
	padding: 0 !important;
}

body.woocommerce-cart .cart-collaterals tr.woocommerce-shipping-totals td > ul#shipping_method {
	order: 3 !important;
	padding-top: 18px !important;
	border-top: 1px solid #d2cfc6 !important;
}

body.woocommerce-cart .cart-collaterals tr.woocommerce-shipping-totals td > ul#shipping_method::before {
	display: block;
	margin-bottom: 14px;
	color: #77756d;
	content: "Shipping method";
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .14em;
	line-height: 1.2;
	text-transform: uppercase;
}

html[lang^="el"] body.woocommerce-cart .cart-collaterals tr.woocommerce-shipping-totals td > ul#shipping_method::before {
	content: "Τρόπος αποστολής";
}

body.woocommerce-cart .cart-collaterals ul#shipping_method li {
	display: flex !important;
	align-items: baseline !important;
	gap: 6px !important;
	margin: 0 0 12px !important;
}

body.woocommerce-cart .cart-collaterals ul#shipping_method li:last-child {
	margin-bottom: 0 !important;
}

body.woocommerce-cart .cart-collaterals ul#shipping_method input.shipping_method {
	flex: 0 0 auto;
	margin: 0 !important;
}

body.woocommerce-cart .cart-collaterals ul#shipping_method label {
	margin: 0 !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
}

body.woocommerce-cart .cart-collaterals ul#shipping_method li:only-child label {
	margin: 0 !important;
	color: #34352f !important;
	font-size: 13px !important;
	font-weight: 600 !important;
}

body.woocommerce-cart .cart-collaterals .order-total .includes_tax,
body.woocommerce-cart .cart-collaterals .order-total .tax_label {
	display: block !important;
	width: 100% !important;
	margin-top: 7px !important;
	color: #77756d !important;
	font-family: var(--vv-sans) !important;
	font-size: 10px !important;
	font-weight: 500 !important;
	letter-spacing: .03em !important;
	line-height: 1.35 !important;
	white-space: nowrap !important;
}

body.woocommerce-cart .wc-proceed-to-checkout {
	padding: 0 !important;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	width: 100% !important;
	margin: 0 !important;
	padding: 18px 20px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: #171914 !important;
	color: #fff !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	letter-spacing: .14em !important;
	line-height: 1.35 !important;
	text-transform: uppercase !important;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
	background: #806a42 !important;
}

@media (max-width: 900px) {
	body.woocommerce-cart .entry-content > .woocommerce {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	body.woocommerce-cart .woocommerce-cart-form,
	body.woocommerce-cart .cart-collaterals {
		grid-column: 1;
	}
}

@media (max-width: 600px) {
	body.woocommerce-cart .singular-header h1 {
		font-size: 42px !important;
	}

	body.woocommerce-cart table.shop_table.cart td {
		padding: 12px 10px !important;
	}

	body.woocommerce-cart table.shop_table.cart td.actions .coupon {
		display: grid;
		grid-template-columns: 1fr auto;
		width: 100%;
	}

	body.woocommerce-cart table.shop_table.cart td.actions .coupon .input-text {
		width: 100% !important;
		min-width: 0 !important;
	}

	body.woocommerce-cart table.shop_table.cart td.actions > button.button {
		float: none;
		width: 100%;
		margin-top: 10px !important;
	}

	body.woocommerce-cart .cart-collaterals .cart_totals {
		padding: 20px !important;
	}
}

@media (max-width: 600px) {
	.about-story__hero {
		min-height: 780px;
	}

	.about-story__hero-media img {
		object-position: 62% center;
	}

	.about-story__hero-veil {
		background: linear-gradient(0deg, rgba(8, 10, 7, 0.94) 0%, rgba(8, 10, 7, 0.58) 68%, rgba(8, 10, 7, 0.2) 100%);
	}

	.about-story__hero h1,
	.about-story__intro-heading h2,
	.about-story__motion-copy h2,
	.about-story__pttl-copy h2,
	.about-story__workshops-content h2,
	.about-story__engagement-copy h2,
	.about-story__personal-copy h2,
	.about-story__cta h2 {
		font-size: clamp(2.75rem, 12vw, 4.2rem);
		letter-spacing: -0.025em;
		line-height: 1.1;
	}

	.about-story__hero .button-group,
	.about-story__hero .button,
	.about-story__cta .button-group,
	.about-story__cta .button {
		width: 100%;
	}

	.about-story__motion-gallery {
		min-height: 500px;
	}

	.about-story__motion-image--large {
		grid-column: 1 / 12;
	}

	.about-story__motion-image--small {
		grid-column: 7 / 13;
	}

	.about-story__archive {
		padding-top: 3.75rem;
	}

	.about-story__archive-grid {
		columns: 1;
	}

	.about-story__personal-gallery {
		grid-template-columns: 1fr;
	}

	.about-story__workshops-media {
		min-height: 420px;
	}

	.about-story__workshops-content {
		min-height: 0;
		padding: 3.5rem var(--vv-gutter);
	}

	.kerkini-hero {
		min-height: 760px;
	}

	.kerkini-hero__media img {
		object-position: 58% center;
	}

	.kerkini-hero__veil {
		background: linear-gradient(0deg, rgba(8, 10, 7, 0.92) 0%, rgba(8, 10, 7, 0.5) 72%, rgba(8, 10, 7, 0.22) 100%);
	}

	.kerkini-hero__content {
		padding-bottom: 4rem;
	}

	.kerkini-hero__back {
		margin-bottom: 3rem;
	}

	.kerkini-hero h1 {
		font-size: clamp(3.65rem, 17vw, 5.6rem);
		line-height: 0.95;
	}

	.kerkini-hero__meta {
		display: grid;
		gap: 0.55rem;
	}

	.kerkini-hero__meta span,
	.kerkini-hero__meta span:first-child {
		padding: 0;
		border: 0;
	}

	.kerkini-hero .button-group,
	.kerkini-hero .button,
	.kerkini-final-cta .button-group,
	.kerkini-final-cta .button {
		width: 100%;
	}

	.kerkini-intro__heading h2,
	.kerkini-journey h2,
	.kerkini-final-cta h2 {
		font-size: clamp(2.8rem, 13vw, 4.3rem);
	}

	.pelican-day-workshop .kerkini-intro__heading h2,
	.pelican-day-workshop .day-booking .kerkini-booking__header h2 {
		font-size: clamp(2.65rem, 12vw, 4rem);
		letter-spacing: -0.025em;
		line-height: 1.1;
	}

	.madzharovo-workshop .kerkini-hero h1,
	.madzharovo-workshop .kerkini-intro__heading h2,
	.madzharovo-workshop .kerkini-booking__header h2 {
		font-size: clamp(2.65rem, 12vw, 4rem);
		letter-spacing: -0.025em;
		line-height: 1.1;
	}

	.madzharovo-workshop .kerkini-hero__media img {
		object-position: 62% center;
	}

	.kerkini-journey__grid {
		width: 100%;
	}

	.kerkini-journey__content {
		min-height: 0;
		padding: 3rem var(--vv-gutter);
	}

	.kerkini-date > span {
		font-size: 1.4rem;
	}

	.kerkini-booking__card {
		padding: 2.25rem;
	}

	.kerkini-pricing__heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.kerkini-price {
		padding: 2.5rem 1.5rem;
	}

	.kerkini-included__grid {
		grid-template-columns: 1fr;
	}

	.kerkini-included__grid article {
		min-height: 0;
	}

	.kerkini-gallery {
		grid-template-columns: 1fr;
	}
}

/* In My Studio */
.studio-page { background: #f2f0eb; color: #151713; }
.studio-hero { position: relative; min-height: clamp(760px, 92vh, 980px); display: flex; align-items: flex-end; overflow: hidden; background: var(--vv-ink); color: var(--vv-white); }
.studio-hero__media, .studio-hero__veil { position: absolute; inset: 0; }
.studio-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.studio-hero__veil { background: linear-gradient(90deg, rgba(8,10,7,.92) 0%, rgba(8,10,7,.7) 42%, rgba(8,10,7,.12) 75%), linear-gradient(0deg, rgba(8,10,7,.75) 0%, transparent 60%); }
.studio-hero__content { position: relative; z-index: 1; padding-block: clamp(5rem, 12vh, 9rem); }
.studio-hero .eyebrow { color: var(--vv-sand); }
.studio-hero h1 { max-width: 8.5ch; margin: 0 0 1.5rem; color: inherit; font-size: clamp(4rem, 7.8vw, 8.7rem); line-height: 1.05; letter-spacing: -.045em; }
.studio-hero__content > p:not(.eyebrow) { max-width: 43rem; margin: 0 0 2rem; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.65; }
.studio-manifesto { padding-block: clamp(5rem, 10vw, 9rem); }
.studio-manifesto__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .8fr); gap: clamp(3rem, 9vw, 10rem); align-items: end; }
.studio-manifesto h2 { max-width: 760px; margin: .4rem 0 0; font-size: clamp(3rem, 6.5vw, 6.5rem); line-height: .96; letter-spacing: -.045em; }
.studio-manifesto__grid > p { margin: 0; font-size: 1.15rem; line-height: 1.8; color: #555a52; }
.studio-group { padding: clamp(5rem, 9vw, 8rem) 0; background: #fff; }
.studio-group--dark { background: #11140f; color: #f4f1e9; }
.studio-group__header { display: grid; grid-template-columns: 90px minmax(0, 780px); gap: 1rem; margin-bottom: clamp(2.75rem, 6vw, 5rem); align-items: start; }
.studio-group__header > span { color: #9b7d4b; font-family: var(--vv-font-heading); font-size: 1.25rem; }
.studio-group__header h2 { margin: 0 0 .8rem; color: inherit; font-size: clamp(2.8rem, 5vw, 5.25rem); line-height: 1; letter-spacing: -.04em; }
.studio-group__header p { max-width: 620px; margin: 0; color: #696d65; font-size: 1.08rem; line-height: 1.7; }
.studio-group--dark .studio-group__header p { color: rgba(255,255,255,.58); }
.studio-subgroup + .studio-subgroup { margin-top: clamp(3rem, 6vw, 5rem); }
.studio-subgroup__title { margin: 0 0 1.25rem; color: inherit; font-family: var(--vv-sans); font-size: .78rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.studio-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: rgba(20,24,18,.14); border: 1px solid rgba(20,24,18,.14); }
.studio-group--canon .studio-grid, .studio-group--sony .studio-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.studio-grid.studio-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.studio-grid.studio-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.studio-group--planning .studio-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.studio-group--dark .studio-grid { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.14); }
.studio-card { min-width: 0; background: #f7f6f2; }
.studio-group--dark .studio-card { background: #171a15; }
.studio-card a { display: flex; height: 100%; flex-direction: column; color: inherit; text-decoration: none; }
.studio-card figure { position: relative; aspect-ratio: 1 / 1; margin: 0; overflow: hidden; background: #e9e8e3; }
.studio-group--dark .studio-card figure { background: #fff; }
.studio-card img { width: 100%; height: 100%; padding: clamp(1.25rem, 2.4vw, 2.75rem); object-fit: contain; background: #fff; transition: transform .6s cubic-bezier(.2,.65,.25,1); }
.studio-card__content { display: flex; min-height: 126px; padding: 1.45rem; flex-direction: column; justify-content: space-between; gap: 1.5rem; }
.studio-card h3 { margin: 0; color: inherit; font-size: clamp(1.15rem, 1.6vw, 1.5rem); line-height: 1.18; }
.studio-card__content span { color: #82704e; font-size: .72rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.studio-card a:hover img, .studio-card a:focus-visible img { transform: scale(1.045); }
.studio-card a:focus-visible { outline: 3px solid #a88951; outline-offset: -3px; }
.studio-cta { padding-block: clamp(6rem, 12vw, 11rem); text-align: center; }
.studio-cta__inner { max-width: 860px; }
.studio-cta h2 { margin: .45rem 0 1rem; font-size: clamp(3rem, 7vw, 6.5rem); line-height: .98; letter-spacing: -.045em; }
.studio-cta__inner > p:not(.eyebrow) { max-width: 610px; margin: 0 auto 2rem; color: #5d625a; font-size: 1.12rem; line-height: 1.7; }
@media (max-width: 1050px) { .studio-grid, .studio-group--planning .studio-grid, .studio-group--canon .studio-grid, .studio-group--sony .studio-grid, .studio-grid.studio-grid--2, .studio-grid.studio-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 700px) {
	.studio-hero { min-height: 780px; }
	.studio-hero__media img { object-position: 62% center; }
	.studio-hero__veil { background: linear-gradient(0deg, rgba(8,10,7,.94) 0%, rgba(8,10,7,.58) 68%, rgba(8,10,7,.2) 100%); }
	.studio-hero h1 { font-size: clamp(2.75rem, 12vw, 4.2rem); letter-spacing: -.025em; line-height: 1.1; }
	.studio-manifesto__grid { grid-template-columns: 1fr; gap: 2rem; }
	.studio-group__header { grid-template-columns: 1fr; }
	.studio-grid, .studio-group--planning .studio-grid, .studio-group--canon .studio-grid, .studio-group--sony .studio-grid, .studio-grid.studio-grid--2, .studio-grid.studio-grid--4 { grid-template-columns: 1fr; }
	.studio-card figure { aspect-ratio: 1 / 1; }
	.studio-card img { padding: clamp(1.25rem, 7vw, 2.5rem); }
	.studio-card__content { min-height: 108px; }
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media print {
	.site-header,
	.site-footer,
	.post-navigation,
	.comments-area,
	.button,
	.text-link {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
	}
}
/* Print product premium controls — kept in the primary bundle for reliable loading. */
body.single-product .commerce-view--print form.variations_form.cart {
	margin: 16px 0 0 !important;
	padding: 20px !important;
	border: 1px solid #d2cfc6 !important;
	background: #efede7 !important;
}

body.single-product .commerce-view--workshop .summary::before {
	content: "Photography workshop";
}

body.single-product .commerce-view--preset .summary::before {
	content: "Lightroom presets";
}

html[lang^="el"] body.single-product .commerce-view--workshop .summary::before {
	content: "Φωτογραφικό workshop";
}

html[lang^="el"] body.single-product .commerce-view--preset .summary::before {
	content: "Lightroom presets";
}

/* Workshops have deposit choices, so they need a booking layout rather than
   the quantity grid used by physical print products. */
body.single-product .commerce-view--workshop form.cart .woocommerce-variation-add-to-cart {
	display: flex !important;
	width: 100% !important;
	flex-direction: column !important;
	align-items: stretch !important;
	gap: 14px !important;
}

body.single-product .commerce-view--workshop form.cart .quantity {
	display: none !important;
}

body.single-product .commerce-view--workshop form.cart .single_add_to_cart_button {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	height: 54px !important;
	line-height: 54px !important;
}

body.single-product .commerce-view--workshop form.cart .wc-deposits-wrapper,
body.single-product .commerce-view--workshop form.cart .wcdp_options,
body.single-product .commerce-view--workshop form.cart [class*="deposit-options"],
body.single-product .commerce-view--workshop form.cart [class*="deposit_option"] {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	box-sizing: border-box !important;
}

body.single-product .commerce-view--workshop form.cart .wc-deposits-wrapper ul,
body.single-product .commerce-view--workshop form.cart .wcdp_options ul {
	width: 100% !important;
	margin: 0 0 16px !important;
	padding: 0 !important;
	list-style: none !important;
}

body.single-product .commerce-view--workshop form.cart .wc-deposits-wrapper li,
body.single-product .commerce-view--workshop form.cart .wcdp_options li {
	display: flex !important;
	min-height: 56px !important;
	margin: 0 !important;
	padding: 14px 16px !important;
	align-items: center !important;
	gap: 10px !important;
	border: 1px solid #d2cfc6 !important;
	background: #fbfaf7 !important;
}

body.single-product .commerce-view--workshop .woocommerce div.product p.price,
body.single-product .commerce-view--workshop .woocommerce div.product span.price {
	color: #34352f !important;
}

body.single-product .commerce-view--preset form.cart:not(.variations_form) {
	display: flex !important;
	width: 100% !important;
	margin: 16px 0 0 !important;
	padding: 20px !important;
	flex-direction: column !important;
	gap: 12px !important;
	border: 1px solid #d2cfc6 !important;
	background: #efede7 !important;
}

body.single-product .commerce-view--preset form.cart:not(.variations_form) .quantity {
	display: none !important;
}

body.single-product .commerce-view--preset form.cart:not(.variations_form) .single_add_to_cart_button {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	height: 54px !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: #171914 !important;
	color: #fff !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	letter-spacing: .15em !important;
	line-height: 54px !important;
	text-transform: uppercase !important;
}

body.single-product .commerce-view--preset .woocommerce div.product p.price,
body.single-product .commerce-view--preset .woocommerce div.product span.price {
	color: #34352f !important;
}

body.single-product .commerce-view--print form.cart table.variations,
body.single-product .commerce-view--print form.cart table.variations tbody,
body.single-product .commerce-view--print form.cart table.variations tr,
body.single-product .commerce-view--print form.cart table.variations th.label,
body.single-product .commerce-view--print form.cart table.variations td.value {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	padding: 0 !important;
	border: 0 !important;
	text-align: left !important;
}

body.single-product .commerce-view--print form.cart table.variations {
	margin: 0 !important;
}

body.single-product .commerce-view--print form.cart table.variations tr {
	margin: 0 0 12px !important;
}

body.single-product .commerce-view--print form.cart table.variations th.label {
	margin: 0 0 6px !important;
}

body.single-product .commerce-view--print form.cart table.variations th.label label {
	margin: 0 !important;
	font-size: 10px !important;
	font-weight: 800 !important;
	letter-spacing: .16em !important;
	line-height: 1.2 !important;
	text-transform: uppercase !important;
}

body.single-product .commerce-view--print form.cart table.variations td.value select {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	height: 50px !important;
	margin: 0 !important;
	padding: 0 44px 0 15px !important;
	border: 1px solid #c6c2b8 !important;
	border-radius: 0 !important;
	background-color: #fbfaf7 !important;
	box-shadow: none !important;
	font-size: 15px !important;
}

body.single-product .commerce-view--print form.cart table.variations tr:focus-within,
body.single-product .commerce-view--print form.cart table.variations th:focus-within,
body.single-product .commerce-view--print form.cart table.variations td:focus-within {
	outline: 0 !important;
	box-shadow: none !important;
}

body.single-product .commerce-view--print form.cart table.variations td.value select:focus,
body.single-product .commerce-view--print form.cart table.variations td.value select:focus-visible {
	border-color: #77756d !important;
	outline: 0 !important;
	box-shadow: 0 0 0 1px #77756d !important;
}

body.single-product .commerce-view--print form.cart .single_variation_wrap {
	margin-top: 4px !important;
	padding-top: 14px !important;
	border-top: 1px solid #d2cfc6 !important;
}

body.single-product .commerce-view--print form.cart .single_variation {
	margin: 0 0 14px !important;
}

body.single-product .commerce-view--print form.cart .woocommerce-variation-price .price {
	display: flex !important;
	align-items: baseline !important;
	gap: 12px !important;
	margin: 0 !important;
	color: #171914 !important;
	font-family: var(--vv-serif) !important;
	line-height: 1 !important;
}

body.single-product .commerce-view--print form.cart .woocommerce-variation-price .price del {
	color: #8b897f !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	opacity: 1 !important;
	text-decoration-color: #8b897f !important;
	text-decoration-thickness: 1px !important;
}

body.single-product .commerce-view--print form.cart .woocommerce-variation-price .price del .woocommerce-Price-amount {
	color: inherit !important;
	font-size: inherit !important;
	font-weight: inherit !important;
}

body.single-product .commerce-view--print form.cart .woocommerce-variation-price .price ins {
	color: #171914 !important;
	font-size: 30px !important;
	font-weight: 600 !important;
	letter-spacing: -.02em !important;
	text-decoration: none !important;
	border: 0 !important;
}

body.single-product .commerce-view--print form.cart .woocommerce-variation-price .price ins .woocommerce-Price-amount {
	color: inherit !important;
	font-size: inherit !important;
	font-weight: inherit !important;
	text-decoration: none !important;
	border: 0 !important;
}

/* Refined pricing and CTA on print product cards. */
.commerce-view .woocommerce ul.products li.product .price,
.commerce-view .woocommerce-page ul.products li.product .price {
	display: block !important;
	margin: 10px 0 16px !important;
	color: #4f504a !important;
	font-family: var(--vv-serif) !important;
	font-size: 18px !important;
	font-weight: 500 !important;
	letter-spacing: -0.01em !important;
	line-height: 1.2 !important;
}

.commerce-view .woocommerce ul.products li.product .price .woocommerce-Price-amount,
.commerce-view .woocommerce-page ul.products li.product .price .woocommerce-Price-amount {
	color: inherit !important;
	font-size: inherit !important;
	font-weight: inherit !important;
}

.commerce-view .woocommerce ul.products li.product .button,
.commerce-view .woocommerce-page ul.products li.product .button {
	display: inline-flex !important;
	width: auto !important;
	min-width: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 0 5px !important;
	align-items: center !important;
	border: 0 !important;
	border-bottom: 1px solid #806a42 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: #171914 !important;
	box-shadow: none !important;
	font-size: 10px !important;
	font-weight: 800 !important;
	letter-spacing: 0.14em !important;
	line-height: 1.4 !important;
	text-transform: uppercase !important;
}

.commerce-view .woocommerce ul.products li.product .button:hover,
.commerce-view .woocommerce-page ul.products li.product .button:hover {
	border-bottom-color: #171914 !important;
	color: #806a42 !important;
}

/* One consistent editorial CTA across every WooCommerce product loop. */
body.woocommerce ul.products li.product a.button,
body.woocommerce-page ul.products li.product a.button,
body.single-product .related.products ul.products li.product a.button {
	display: inline-flex !important;
	width: auto !important;
	min-width: 0 !important;
	min-height: 0 !important;
	margin: 8px 0 0 !important;
	padding: 0 0 6px !important;
	align-items: center !important;
	border: 0 !important;
	border-bottom: 1px solid #806a42 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: #171914 !important;
	box-shadow: none !important;
	font-size: 10px !important;
	font-weight: 800 !important;
	letter-spacing: .14em !important;
	line-height: 1.4 !important;
	text-transform: uppercase !important;
}

body.woocommerce ul.products li.product a.button:hover,
body.woocommerce-page ul.products li.product a.button:hover,
body.single-product .related.products ul.products li.product a.button:hover {
	border-bottom-color: #171914 !important;
	background: transparent !important;
	color: #806a42 !important;
}

body.single-product .commerce-view--print form.cart .woocommerce-variation-add-to-cart {
	display: grid !important;
	grid-template-columns: 68px minmax(0, 1fr) !important;
	gap: 10px !important;
}

body.single-product .commerce-view--print form.cart .quantity,
body.single-product .commerce-view--print form.cart .quantity .qty,
body.single-product .commerce-view--print form.cart .single_add_to_cart_button {
	float: none !important;
	margin: 0 !important;
}

body.single-product .commerce-view--print form.cart .quantity .qty {
	width: 68px !important;
	height: 52px !important;
	border: 1px solid #bdb9ae !important;
	background: #fbfaf7 !important;
}

body.single-product .commerce-view--print form.cart .single_add_to_cart_button {
	width: 100% !important;
	height: 52px !important;
	padding: 0 20px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: #171914 !important;
	color: #fff !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	letter-spacing: .15em !important;
	text-transform: uppercase !important;
}

body.single-product .commerce-view--print .woocommerce-tabs {
	display: block !important;
	min-height: 0 !important;
	margin: 28px 0 0 !important;
	padding: 24px 28px 28px !important;
	background: #ebe8e0 !important;
}

body.single-product .commerce-view--print .woocommerce-tabs ul.tabs {
	display: flex !important;
	min-height: 0 !important;
	margin: 0 0 22px !important;
	padding: 0 !important;
	gap: 24px !important;
	border: 0 !important;
	border-bottom: 1px solid #c9c6bd !important;
	background: transparent !important;
}

body.single-product .commerce-view--print .woocommerce-tabs ul.tabs li {
	margin: 0 !important;
	padding: 0 0 10px !important;
	border: 0 !important;
	border-bottom: 2px solid transparent !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.single-product .commerce-view--print .woocommerce-tabs ul.tabs li.active {
	border-bottom-color: #806a42 !important;
}

body.single-product .commerce-view--print .woocommerce-tabs ul.tabs li a {
	padding: 0 !important;
	font-size: 10px !important;
	font-weight: 800 !important;
	letter-spacing: .13em !important;
	text-transform: uppercase !important;
}

body.single-product .commerce-view--print .woocommerce-tabs .panel,
body.single-product .commerce-view--print .woocommerce-tabs .woocommerce-Tabs-panel {
	display: block;
	width: 100% !important;
	max-width: 880px !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
}

body.single-product .commerce-view--print .woocommerce-tabs .panel h2,
body.single-product .commerce-view--print .woocommerce-tabs .woocommerce-Tabs-panel h2 {
	margin: 0 0 12px !important;
	padding: 0 !important;
	font-size: clamp(24px, 2.2vw, 32px) !important;
	font-weight: 500 !important;
	line-height: 1.08 !important;
}

/* WooCommerce repeats these panel names directly below the matching tab. */
body.single-product .commerce-view--premium-product .woocommerce-Tabs-panel--description > h2:first-child,
body.single-product .commerce-view--premium-product .woocommerce-Tabs-panel--additional_information > h2:first-child {
	display: none !important;
}

body.single-product .commerce-view--print .woocommerce-tabs .panel p,
body.single-product .commerce-view--print .woocommerce-tabs .woocommerce-Tabs-panel p {
	max-width: 780px !important;
	margin: 0 0 10px !important;
	padding: 0 !important;
	font-size: 15px !important;
	line-height: 1.65 !important;
}

@media (max-width: 800px) {
	body.single-product .commerce-view--print form.variations_form.cart {
		padding: 16px !important;
	}

	body.single-product .commerce-view--print .woocommerce-tabs {
		margin-top: 20px !important;
		padding: 20px 18px 22px !important;
	}
}

/* Greek display type needs extra leading for accents above and below the cap line. */
html[lang^="el"] main.site-main h1,
html[lang^="el"] main.site-main h2 {
	line-height: 1.12;
}
