/*
Theme Name: DOLONG Bridal
Theme URI: https://dolongbridal.com
Author: DOLONG Bridal
Description: Editorial WooCommerce theme custom-built for DOLONG Bridal.
Version: 1.0.0
Text Domain: dolong-bridal
*/

:root {
  --dl-ink: #161513;
  --dl-paper: #f6f3ec;
  --dl-ivory: #fffdf9;
  --dl-gold: #bfa77d;
  --dl-mist: #d8d0c3;
  --dl-line: rgba(22, 21, 19, .15);
  --dl-shell: 1360px;
  --dl-serif: "Playfair Display", Georgia, serif;
  --dl-sans: "Mont", "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--dl-paper); color: var(--dl-ink); font-family: var(--dl-sans); font-size: 15px; line-height: 1.55; }
img { display: block; width: auto; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.dl-shell { width: min(calc(100% - 80px), var(--dl-shell)); margin-inline: auto; }
.dl-overline { margin: 0; color: rgba(22, 21, 19, .75); font-size: 10px; font-weight: 600; letter-spacing: .16em; line-height: 1.25; text-transform: uppercase; }
.dl-title { margin: 0; font-family: var(--dl-serif); font-size: clamp(42px, 5vw, 82px); font-weight: 400; letter-spacing: -.045em; line-height: .95; text-transform: uppercase; }

.dl-button, .dl-text-link { display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-size: 11px; font-weight: 600; letter-spacing: .11em; line-height: 1; text-transform: uppercase; transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease; }
.dl-button { min-height: 47px; padding: 0 21px; border: 1px solid currentColor; border-radius: 999px; }
.dl-button--ink { border-color: var(--dl-ink); background: var(--dl-ink); color: var(--dl-ivory); }
.dl-button--ink:hover { background: transparent; color: var(--dl-ink); }
.dl-text-link { padding-block: 8px; border-bottom: 1px solid currentColor; }
.dl-text-link:hover { color: var(--dl-gold); }

/* ==========================================================================
   HEADER / DESKTOP NAV / MOBILE MENU
   ========================================================================== */

.dl-header {
	position: sticky;
	z-index: 50;
	top: 0;
	width: 100%;
	background: #f7f4ec;
	color: #0e0e0e;
	transition:
		background 280ms ease,
		box-shadow 280ms ease,
		color 280ms ease;
}

.dolong-home .dl-header {
	position: absolute;
	inset: 0 0 auto;
	background: transparent;
}

.dolong-home .dl-header.is-scrolled {
	position: fixed;
}

.dl-header.is-scrolled {
	background: rgba(247, 244, 236, 0.92);
	box-shadow: 0 10px 32px rgba(14, 14, 14, 0.07);
	backdrop-filter: blur(18px) saturate(115%);
	-webkit-backdrop-filter: blur(18px) saturate(115%);
}

.dl-header__inner {
	display: grid;
	grid-template-columns: 170px minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(22px, 2.4vw, 40px);
	min-height: 92px;
	transition: min-height 280ms ease;
}

.dl-header.is-scrolled .dl-header__inner {
	min-height: 70px;
}

/* Brand */
.dl-header__brand {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
}

.dl-brand {
	display: inline-block;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 22px;
	letter-spacing: 0.13em;
	line-height: 0.8;
	text-transform: uppercase;
}

.dl-brand small {
	display: block;
	margin-top: 7px;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 7px;
	letter-spacing: 0.34em;
	text-align: center;
}

.dl-brand--image {
	display: flex;
	align-items: center;
}

.dl-brand--image .custom-logo-link {
	display: block;
	line-height: 0;
}

.dl-brand--image .custom-logo {
	display: block;
	width: auto;
	max-width: 142px;
	max-height: 43px;
	object-fit: contain;
	transition: filter 280ms ease;
}

/* Desktop navigation */
.dl-header__nav-inner {
	width: 100%;
}

.dl-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(20px, 2vw, 36px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.dl-menu li {
	position: relative;
	margin: 0;
	list-style: none;
}

.dl-menu > li > a {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 44px;
	padding: 0;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.075em;
	white-space: nowrap;
	text-transform: uppercase;
}

.dl-menu > li:not(.menu-item-has-children) > a::after {
	position: absolute;
	right: 0;
	bottom: 5px;
	left: 0;
	height: 1px;
	background: currentColor;
	content: "";
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 220ms ease;
}

.dl-menu > li:not(.menu-item-has-children):hover > a::after,
body:not(.home) .dl-menu > li.current-menu-item:not(.menu-item-has-children) > a::after {
	transform: scaleX(1);
}

.dl-menu > .menu-item-has-children > a {
	gap: 8px;
}

.dl-menu > .menu-item-has-children > a::after {
	display: block;
	width: 6px;
	height: 6px;
	margin-top: -4px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	content: "";
	transform: rotate(45deg);
}

/* Standard dropdown */
.dl-menu .sub-menu {
	position: absolute;
	top: calc(100% + 14px);
	left: 50%;
	z-index: 5;
	display: grid;
	min-width: 220px;
	margin: 0;
	padding: 9px 18px;
	border: 1px solid rgba(14, 14, 14, 0.08);
	border-radius: 0 0 8px 8px;
	background: rgba(247, 244, 236, 0.97);
	box-shadow: 0 20px 42px rgba(14, 14, 14, 0.1);
	list-style: none;
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 7px);
	transition:
		opacity 180ms ease,
		transform 220ms ease;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.dl-menu .sub-menu::before {
	position: absolute;
	top: -15px;
	right: 0;
	left: 0;
	height: 15px;
	content: "";
}

.dl-menu .sub-menu a {
	display: block;
	padding: 10px 2px;
	border-bottom: 1px solid rgba(14, 14, 14, 0.1);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.03em;
	white-space: nowrap;
}

.dl-menu .sub-menu li:last-child > a {
	border-bottom: 0;
}

.dl-menu .menu-item-has-children:hover > .sub-menu,
.dl-menu .menu-item-has-children:has(> a:focus-visible, > .sub-menu a:focus-visible) > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

/* Desktop mega menu: Váy cưới */
.dl-menu > .dl-mega-gowns > .sub-menu {
	left: -24px;
	grid-template-columns: 1.15fr 1fr 1fr;
	gap: 0 48px;
	width: 620px;
	min-width: 620px;
	padding: 29px 31px 32px;
	transform: translateY(7px);
}

.dl-menu > .dl-mega-gowns:hover > .sub-menu,
.dl-menu > .dl-mega-gowns:has(> a:focus-visible, > .sub-menu a:focus-visible) > .sub-menu {
	transform: translateY(0);
}

.dl-menu > .dl-mega-gowns > .sub-menu > li {
	position: static;
}

.dl-menu > .dl-mega-gowns > .sub-menu > li:nth-child(1) {
	grid-column: 1;
}

.dl-menu > .dl-mega-gowns > .sub-menu > li:nth-child(2) {
	grid-column: 2;
}

.dl-menu > .dl-mega-gowns > .sub-menu > li:nth-child(3) {
	grid-column: 3;
}

.dl-menu > .dl-mega-gowns > .sub-menu > li > a {
	padding: 0 0 12px;
	border: 0;
}

.dl-menu > .dl-mega-gowns > .sub-menu > li:first-child > a {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 1.08;
	white-space: normal;
}

.dl-menu > .dl-mega-gowns > .sub-menu > li:first-child > a::after {
	display: block;
	margin-top: 16px;
	color: #756f68;
	content: "Xem tất cả thiết kế  →";
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.dl-menu > .dl-mega-gowns > .sub-menu > li:not(:first-child) > a {
	color: #756f68;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.dl-menu > .dl-mega-gowns > .sub-menu > li > .sub-menu {
	position: static;
	display: grid;
	min-width: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	opacity: 1;
	pointer-events: auto;
	transform: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

@media (min-width: 1025px) {
	.dl-menu > .dl-mega-gowns > .sub-menu > li > .sub-menu {
		pointer-events: none;
	}

	.dl-menu > .dl-mega-gowns:hover > .sub-menu > li > .sub-menu,
	.dl-menu > .dl-mega-gowns:has(> a:focus-visible, > .sub-menu a:focus-visible) > .sub-menu > li > .sub-menu {
		pointer-events: auto;
	}
}

.dl-menu > .dl-mega-gowns > .sub-menu > li > .sub-menu::before {
	display: none;
}

.dl-menu > .dl-mega-gowns > .sub-menu > li > .sub-menu a {
	padding: 6px 0;
	border: 0;
	font-size: 11px;
	letter-spacing: 0.01em;
	line-height: 1.4;
	white-space: normal;
}

.dl-menu > .dl-mega-gowns > .sub-menu > li > .sub-menu a:hover {
	color: #9a783f;
}

/* Header tools */
.dl-header__tools {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 9px;
}

.dl-utility {
	display: grid;
	width: 38px;
	height: 38px;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: currentColor;
	cursor: pointer;
	transition: background 180ms ease;
}

.dl-utility:hover {
	background: rgba(14, 14, 14, 0.06);
}

.dl-utility svg,
.dl-search svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.35;
}

.dl-header__booking {
	min-width: 158px;
	min-height: 43px;
	margin-left: 7px;
	padding-inline: 19px;
	font-size: 10px;
}

.dl-header__booking:hover {
	border-color: #0e0e0e;
	background: #0e0e0e;
	box-shadow: 0 8px 18px rgba(14, 14, 14, 0.13);
	color: #fffdf9;
	transform: translateY(-1px);
}

.dl-header__toggle,
.dl-header__mobile-booking {
	display: none;
}

/* Search */
.dl-search {
	position: fixed;
	z-index: 70;
	top: 102px;
	left: 50%;
	width: min(470px, calc(100vw - 36px));
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -8px);
	transition:
		opacity 180ms ease,
		transform 220ms ease;
}

.dl-header.is-scrolled .dl-search {
	top: 80px;
}

.dl-header.is-search-open .dl-search {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.dl-search__form {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 8px 7px 18px;
	border: 1px solid rgba(14, 14, 14, 0.08);
	border-radius: 999px;
	background: rgba(255, 253, 249, 0.98);
	box-shadow: 0 16px 42px rgba(14, 14, 14, 0.14);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.dl-search__form input {
	min-width: 0;
	flex: 1;
	border: 0;
	outline: 0;
	background: transparent;
	color: #0e0e0e;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 14px;
}

.dl-search__form button {
	display: grid;
	width: 39px;
	height: 39px;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: #0e0e0e;
	color: #fffdf9;
	cursor: pointer;
}

/* Tablet + mobile overlay menu */
@media (max-width: 1024px) {
	.dl-header {
		/* Mobile Menu Typography v1 — LOCKED. */
		--dl-mobile-menu-level-1: 16px;
		--dl-mobile-menu-level-2: 14px;
		--dl-mobile-menu-label: 10px;
		--dl-mobile-menu-cta: 12px;
	}

	.dl-header__inner {
		grid-template-columns: 1fr auto;
		gap: 16px;
		min-height: 76px;
	}

	.dl-header.is-scrolled .dl-header__inner {
		min-height: 66px;
	}

	.dl-header__nav {
		display: none;
		grid-column: 1 / -1;
	}

	.dl-header__booking {
		display: none;
	}

	.dl-header__toggle {
		position: relative;
		display: grid;
		width: 40px;
		height: 40px;
		padding: 0;
		place-items: center;
		border: 0;
		border-radius: 50%;
		background: transparent;
		color: currentColor;
		cursor: pointer;
	}

	.dl-header__toggle span {
		position: absolute;
		width: 22px;
		height: 1px;
		background: currentColor;
		transition:
			transform 220ms ease,
			top 220ms ease;
	}

	.dl-header__toggle span:first-child {
		top: 16px;
	}

	.dl-header__toggle span:last-child {
		top: 23px;
	}

	.dl-header.is-open {
		position: fixed;
		inset: 0;
		width: 100%;
		height: 100dvh;
		overflow-y: auto;
		background: #f7f4ec;
		box-shadow: none;
		color: #0e0e0e;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.dolong-home .dl-header.is-open {
		position: fixed;
		background: #f7f4ec;
		color: #0e0e0e;
	}

	.dolong-home .dl-header.is-open:not(.is-scrolled) .custom-logo {
		filter: none;
	}

	.dl-header.is-open .dl-header__inner {
		align-content: start;
		min-height: 76px;
	}

	.dl-header.is-open .dl-header__toggle span:first-child {
		top: 20px;
		transform: rotate(45deg);
	}

	.dl-header.is-open .dl-header__toggle span:last-child {
		top: 20px;
		transform: rotate(-45deg);
	}

	.dl-header.is-open .dl-header__nav {
		display: block;
		width: 100%;
		padding: 25px 0 42px;
	}

	.dl-header__nav-inner {
		display: flex;
		min-height: calc(100dvh - 143px);
		flex-direction: column;
	}

	.dl-menu {
		display: block;
		width: 100%;
	}

	.dl-menu > li {
		border-bottom: 1px solid #cbc2b8;
	}

	.dl-menu > li > a {
		min-height: 0;
		padding: 19px 54px 19px 0;
		font-size: var(--dl-mobile-menu-level-1);
		font-weight: 500;
		letter-spacing: 0.01em;
		line-height: 1.3;
		text-transform: none;
	}

	.dl-menu > li > a::after,
	.dl-menu .menu-item-has-children > a::after {
		display: none;
	}

	.dl-submenu-toggle {
		position: absolute;
		z-index: 2;
		top: 7px;
		right: -8px;
		display: grid;
		width: 44px;
		height: 44px;
		padding: 0;
		place-items: center;
		border: 0;
		background: transparent;
		color: #0e0e0e;
		cursor: pointer;
	}

	.dl-submenu-toggle::before {
		width: 7px;
		height: 7px;
		border-right: 1px solid currentColor;
		border-bottom: 1px solid currentColor;
		content: "";
		transform: translateY(-2px) rotate(45deg);
		transition: transform 200ms ease;
	}

	.menu-item-has-children.is-submenu-open > .dl-submenu-toggle::before {
		transform: translateY(2px) rotate(-135deg);
	}

	.dl-menu .sub-menu,
	.dl-menu > .dl-mega-gowns > .sub-menu {
		position: static;
		display: none;
		width: auto;
		min-width: 0;
		margin: 0;
		padding: 0 0 14px 18px;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.dl-menu .menu-item-has-children.is-submenu-open > .sub-menu {
		display: grid;
	}

	/* Tin tức đang là mục cuối: luôn hiển thị 3 mục con, không dùng dấu + */
	.dl-menu > li:last-child > .sub-menu {
		display: grid;
	}

	.dl-menu > li:last-child > .dl-submenu-toggle {
		display: none;
	}

	.dl-menu > li:last-child > a {
		padding-right: 0;
	}

	.dl-menu .sub-menu::before {
		display: none;
	}

	.dl-menu .sub-menu li {
		border: 0;
	}

	.dl-menu .sub-menu a,
	.dl-menu > .dl-mega-gowns > .sub-menu > li > a,
	.dl-menu > .dl-mega-gowns > .sub-menu > li > .sub-menu a {
		padding: 9px 42px 9px 0;
		border: 0;
		color: #756f68;
		font-family: "Montserrat", Arial, sans-serif;
		font-size: var(--dl-mobile-menu-level-2);
		font-weight: 500;
		letter-spacing: 0;
		line-height: 1.5;
		text-transform: none;
		white-space: normal;
	}

	.dl-menu > .dl-mega-gowns > .sub-menu > li:first-child > a {
		font-family: "Montserrat", Arial, sans-serif;
		font-size: var(--dl-mobile-menu-level-2);
		font-weight: 500;
		letter-spacing: 0;
	}

	.dl-menu > .dl-mega-gowns > .sub-menu > li:not(:first-child) > a {
		padding-block: 10px 6px;
		font-size: var(--dl-mobile-menu-label);
		font-weight: 600;
		letter-spacing: 0.12em;
		line-height: 1.4;
		text-transform: uppercase;
	}

	.dl-menu > .dl-mega-gowns > .sub-menu > li:first-child > a::after {
		display: none;
	}

	.dl-menu .sub-menu .sub-menu,
	.dl-menu > .dl-mega-gowns > .sub-menu > li > .sub-menu {
		padding: 1px 0 7px 16px;
	}

	.dl-menu .sub-menu .dl-submenu-toggle {
		top: 1px;
	}

	.dl-header__mobile-booking {
		display: block;
		margin-top: auto;
		padding-top: 34px;
	}

	.dl-header__mobile-booking .dl-button {
		width: 100%;
		min-height: 50px;
		font-size: var(--dl-mobile-menu-cta);
		font-weight: 600;
		letter-spacing: 0.12em;
	}

	.dl-search {
		top: 84px;
	}

	.dl-header.is-scrolled .dl-search {
		top: 74px;
	}
}

/* Phone */
@media (max-width: 560px) {
	.dl-header__inner,
	.dl-header.is-open .dl-header__inner {
		min-height: 68px;
	}

	.dl-header.is-scrolled .dl-header__inner {
		min-height: 60px;
	}

	.dl-brand--image .custom-logo {
		max-width: 112px;
		max-height: 34px;
	}

	.dl-header__tools {
		gap: 3px;
	}

	.dl-utility,
	.dl-header__toggle {
		width: 38px;
		height: 38px;
	}


	.dl-menu .sub-menu,
	.dl-menu > .dl-mega-gowns > .sub-menu {
		padding: 3px 0 16px 20px;
	}


	.dl-header.is-open .dl-header__nav {
		padding: 16px 0 32px;
	}

	.dl-header__nav-inner {
		min-height: calc(100dvh - 124px);
	}

	.dl-header__mobile-booking {
		padding-top: 26px;
	}

	.dl-header__mobile-booking .dl-button {
		min-height: 48px;
	}
}

/* END HEADER / DESKTOP NAV / MOBILE MENU */

/* Home */
.dl-hero { position: relative; min-height: max(720px, 100svh); overflow: hidden; background: #d4ccbf; }
.dl-hero__media, .dl-hero__wash { position: absolute; inset: 0; }
.dl-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.dl-hero__wash { background: linear-gradient(90deg, rgba(246,243,236,.93) 0%, rgba(246,243,236,.76) 29%, rgba(246,243,236,.21) 57%, rgba(246,243,236,.03) 78%); }
.dl-hero__inner { position: relative; z-index: 1; display: flex; align-items: center; min-height: inherit; padding-block: 138px 86px; }
.dl-hero__copy { width: min(455px, 48%); }
.dl-hero h1 { margin: 13px 0 13px; font-family: var(--dl-serif); font-size: clamp(72px, 9vw, 142px); font-weight: 400; letter-spacing: -.075em; line-height: .78; }
.dl-hero__subhead { margin: 30px 0 0; font-family: var(--dl-serif); font-size: clamp(22px, 2vw, 30px); letter-spacing: -.03em; }
.dl-hero__body { max-width: 38ch; margin: 15px 0 0; color: rgba(22, 21, 19, .74); font-size: 14px; line-height: 1.65; }
.dl-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 32px; }
.dl-hero__marker { position: absolute; bottom: 33px; left: max(40px, calc((100% - var(--dl-shell)) / 2)); z-index: 1; display: flex; align-items: center; gap: 10px; color: rgba(22, 21, 19, .74); font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.dl-hero__marker i { display: block; width: 44px; height: 1px; background: currentColor; }
.dl-home-intro { border-bottom: 1px solid var(--dl-line); background: var(--dl-ivory); }
.dl-home-intro__grid { display: grid; grid-template-columns: .55fr 1.25fr .55fr; align-items: center; gap: 46px; padding-block: 74px; }
.dl-home-intro__statement { margin: 0; font-family: var(--dl-serif); font-size: clamp(28px, 2.7vw, 42px); letter-spacing: -.035em; line-height: 1.1; }
.dl-home-intro .dl-text-link { justify-self: end; }

/* Generic pages & Woo */
.dl-page-content { min-height: 45vh; }
.dl-section { padding-block: 96px; }
.dl-page-content__body { max-width: 920px; }
.dl-shop-hero { padding-block: 90px 45px; border-bottom: 1px solid var(--dl-line); }
.dl-product-grid ul.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 38px 16px; margin: 48px 0 !important; padding: 0; list-style: none; }
.dl-product-grid ul.products::before, .dl-product-grid ul.products::after { display: none; }
.dl-product-grid ul.products li.product { width: auto !important; margin: 0 !important; float: none !important; }
.dl-product-grid ul.products li.product a img { width: 100% !important; aspect-ratio: .73; object-fit: cover; margin: 0 !important; }
.dl-product-grid .woocommerce-loop-product__title { margin: 14px 0 0 !important; padding: 0 !important; font-family: var(--dl-serif); font-size: 23px !important; font-weight: 400; text-transform: uppercase; }
.dl-product-grid .price, .dl-product-grid .button, .dl-product-grid .added_to_cart { display: none !important; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.dl-footer {
	border-top: 1px solid #cbc2b8;
	background: #f7f4ec;
	color: #0e0e0e;
}

.dl-footer__main {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr) minmax(250px, 1fr);
	gap: clamp(44px, 7vw, 116px);
	padding: 88px 0 62px;
}

.dl-footer .dl-overline {
	margin: 0;
	color: #756f68;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.15em;
	line-height: 1.35;
}

.dl-footer__identity .dl-brand--image .custom-logo {
	max-width: 150px;
	max-height: 46px;
}

.dl-footer__identity > .dl-overline {
	margin-top: 29px;
}

.dl-footer__identity address {
	margin: 17px 0 0;
	color: #756f68;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 13px;
	font-style: normal;
	line-height: 1.8;
}

.dl-footer__navigation > .dl-overline,
.dl-footer__booking > .dl-overline {
	margin-bottom: 23px;
}

.dl-footer__links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dl-footer__links li {
	margin: 0;
	list-style: none;
}

.dl-footer__links a {
	color: #0e0e0e;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.01em;
	line-height: 1.45;
	transition: color 180ms ease;
}

.dl-footer__links a:hover {
	color: #9a783f;
}

.dl-footer__booking > p:not(.dl-overline) {
	max-width: 31ch;
	margin: 0 0 24px;
	color: #756f68;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 13px;
	line-height: 1.7;
}

.dl-footer__booking .dl-button {
	min-width: 166px;
	min-height: 46px;
	font-size: 10px;
}

.dl-footer__social-wrap {
	margin-top: 43px;
}

.dl-footer__social-wrap .dl-overline {
	margin-bottom: 13px;
}

.dl-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 9px 17px;
}

.dl-footer__social a {
	color: #756f68;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.01em;
	transition: color 180ms ease;
}

.dl-footer__social a:hover {
	color: #9a783f;
}

.dl-footer__legal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 19px 0 23px;
	border-top: 1px solid #cbc2b8;
	color: #756f68;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.dl-footer__policy {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 7px 16px;
}

.dl-footer__policy a {
	text-decoration: underline;
	text-decoration-color: transparent;
	text-underline-offset: 3px;
	transition: color 180ms ease, text-decoration-color 180ms ease;
}

.dl-footer__policy a:hover,
.dl-footer__policy a:focus-visible {
	color: #0e0e0e;
	text-decoration-color: currentColor;
}

/* END FOOTER */

@media (min-width: 1025px) and (max-width: 1040px) {
  .dl-shell { width: min(calc(100% - 52px), var(--dl-shell)); }
  .dl-header__inner { grid-template-columns: 145px minmax(0, 1fr) auto; gap: 16px; }
  .dl-menu { gap: 18px; }
  .dl-menu > li > a { font-size: 10px; }
  .dl-header__tools .dl-button { min-width: auto; padding-inline: 14px; }
}

@media (max-width: 820px) {
  .dl-shell { width: min(calc(100% - 36px), var(--dl-shell)); }
  .dl-hero { min-height: 700px; }
  .dl-hero__copy { width: min(510px, 75%); }
  .dl-home-intro__grid { grid-template-columns: 1fr; gap: 24px; }
  .dl-home-intro .dl-text-link { justify-self: start; }
  .dl-footer__main {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px 40px;
	padding: 74px 0 54px;
}

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

.dl-footer__booking {
	grid-column: 1 / -1;
}
}

@media (max-width: 560px) {
  body { font-size: 14px; }
  .dl-shell { width: min(calc(100% - 32px), var(--dl-shell)); }
  .dl-brand--image .custom-logo { max-width: 120px; max-height: 36px; }
  .dl-utility { width: 32px; height: 32px; }
  .dl-hero { min-height: 690px; }
  .dl-hero__media img { object-position: 61% center; }
  .dl-hero__wash { background: linear-gradient(90deg, rgba(246,243,236,.92), rgba(246,243,236,.64) 55%, rgba(246,243,236,.16)); }
  .dl-hero__inner { align-items: flex-end; padding-block: 118px 110px; }
  .dl-hero__copy { width: 100%; }
  .dl-hero h1 { font-size: clamp(64px, 22vw, 105px); }
  .dl-hero__subhead { margin-top: 25px; font-size: 24px; }
  .dl-hero__body { max-width: 32ch; font-size: 13px; }
  .dl-hero__actions { gap: 16px; }
  .dl-hero__marker { bottom: 28px; left: 16px; }
  .dl-home-intro__grid { padding-block: 53px; }
  .dl-home-intro__statement { font-size: 30px; }
  .dl-footer__main {
	grid-template-columns: 1fr;
	gap: 0;
	padding: 58px 0 0;
}

.dl-footer__identity {
	grid-column: auto;
	order: 1;
	padding-bottom: 36px;
}

.dl-footer__identity .dl-brand--image .custom-logo {
	max-width: 144px;
	max-height: 44px;
}

.dl-footer__identity > .dl-overline {
	margin-top: 24px;
}

.dl-footer__identity address {
	margin-top: 15px;
	font-size: 14px;
	line-height: 1.7;
}

.dl-footer__booking {
	grid-column: auto;
	order: 2;
	padding: 31px 0 34px;
	border-top: 1px solid #cbc2b8;
	border-bottom: 1px solid #cbc2b8;
}

.dl-footer__booking > .dl-overline {
	margin-bottom: 15px;
}

.dl-footer__booking > p:not(.dl-overline) {
	max-width: 33ch;
	margin-bottom: 22px;
	font-size: 14px;
	line-height: 1.65;
}

.dl-footer__booking .dl-button {
	width: 100%;
	min-height: 52px;
	font-size: 10px;
}

.dl-footer__social-wrap {
	margin-top: 28px;
}

.dl-footer__navigation {
	order: 3;
	padding: 35px 0 39px;
}

.dl-footer__navigation > .dl-overline {
	margin-bottom: 20px;
}

.dl-footer__links {
	gap: 17px 22px;
}

.dl-footer__links a {
	font-size: 13px;
	line-height: 1.45;
}

.dl-footer__legal {
	align-items: flex-start;
	flex-direction: column;
	gap: 8px;
	padding: 18px 0 22px;
	font-size: 9px;
	letter-spacing: 0.1em;
}
}

/* ===== Homepage Hero: THE PRIME ===== */
/* Homepage header keeps a warm paper backdrop at the top so navigation remains
   readable over every Collection Key Visual. */
.dolong-home .dl-header:not(.is-scrolled) {
  background: rgba(247, 244, 236, .92);
  box-shadow: 0 8px 28px rgba(14, 14, 14, .06);
  color: var(--dl-ink);
  backdrop-filter: blur(16px) saturate(112%);
  -webkit-backdrop-filter: blur(16px) saturate(112%);
}

.dolong-home .dl-header:not(.is-scrolled) .custom-logo {
  filter: none;
}

.dolong-home .dl-header:not(.is-scrolled) .dl-header__tools .dl-button {
  border-color: currentColor;
}

.dolong-home .dl-header:not(.is-scrolled) .dl-header__tools .dl-button:hover {
  border-color: var(--dl-ink);
  background: var(--dl-ink);
  color: var(--dl-ivory);
}

.dl-hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  background: #17120d;
  color: var(--dl-ivory);
}

.dl-hero__media,
.dl-hero__wash {
  position: absolute;
  inset: 0;
}

.dl-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
}

.dl-hero__wash {
  background:
    linear-gradient(
      90deg,
      rgba(15, 12, 9, .89) 0%,
      rgba(15, 12, 9, .76) 29%,
      rgba(15, 12, 9, .35) 52%,
      rgba(15, 12, 9, .04) 78%
    ),
    linear-gradient(0deg, rgba(15, 12, 9, .26), transparent 40%);
}

.dl-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding-block: 138px 86px;
}

.dl-hero__copy {
  width: min(535px, 48%);
}

.dl-hero .dl-overline {
  color: rgba(255, 253, 249, .76);
}

.dl-hero h1 {
  margin: 16px 0 17px;
  font-family: var(--dl-serif);
  font-size: clamp(68px, 8vw, 128px);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .83;
  text-transform: uppercase;
}

.dl-hero__subhead {
  margin: 0;
  font-family: var(--dl-serif);
  font-size: clamp(23px, 2vw, 31px);
  letter-spacing: -.03em;
}

.dl-hero__body {
  max-width: 39ch;
  margin: 16px 0 0;
  color: rgba(255, 253, 249, .84);
  font-size: 14px;
  line-height: 1.65;
}

.dl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}

.dl-hero .dl-button--ink {
  border-color: var(--dl-ivory);
  background: var(--dl-ivory);
  color: var(--dl-ink);
}

.dl-hero .dl-button--ink:hover {
  background: transparent;
  color: var(--dl-ivory);
}

.dl-hero .dl-text-link {
  color: var(--dl-ivory);
}

.dl-hero .dl-text-link:hover {
  color: #ead8b9;
}

.dl-hero__marker {
  position: absolute;
  bottom: 33px;
  left: max(40px, calc((100% - var(--dl-shell)) / 2));
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 253, 249, .74);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.dl-hero__marker i {
  display: block;
  width: 44px;
  height: 1px;
  background: currentColor;
}

@media (max-width: 820px) {
  .dolong-home .dl-header.is-open {
    color: var(--dl-ink);
  }

  .dolong-home .dl-header.is-open .custom-logo {
    filter: none;
  }

  .dl-hero {
    min-height: 700px;
  }

  .dl-hero__copy {
    width: min(510px, 75%);
  }
}

@media (max-width: 560px) {
  .dl-hero {
    min-height: 690px;
  }

  .dl-hero__media img {
    object-position: 61% center;
  }

  .dl-hero__wash {
    background:
      linear-gradient(
        180deg,
        rgba(15, 12, 9, .52),
        rgba(15, 12, 9, .10) 38%,
        rgba(15, 12, 9, .76) 100%
      ),
      linear-gradient(90deg, rgba(15, 12, 9, .62), transparent 72%);
  }

  .dl-hero__inner {
    align-items: flex-end;
    padding-block: 118px 110px;
  }

  .dl-hero__copy {
    width: 100%;
  }

  .dl-hero h1 {
    font-size: clamp(58px, 17vw, 80px);
  }

  .dl-hero__subhead {
    font-size: 24px;
  }

  .dl-hero__body {
    max-width: 32ch;
    font-size: 13px;
  }

  .dl-hero__marker {
    bottom: 28px;
    left: 16px;
  }
}
/* Giữ trọn ảnh Hero trên desktop, chừa không gian copy bên trái */
@media (min-width: 821px) {
  .dl-hero__media {
    background: #17120d;
  }

  .dl-hero__media img {
    object-fit: contain;
    object-position: right center;
  }

  .dl-hero__wash {
    background:
      linear-gradient(
        90deg,
        rgba(15, 12, 9, .98) 0%,
        rgba(15, 12, 9, .92) 28%,
        rgba(15, 12, 9, .52) 50%,
        rgba(15, 12, 9, .06) 74%
      ),
      linear-gradient(0deg, rgba(15, 12, 9, .22), transparent 42%);
  }
}
/* Dropdown on the homepage uses the same ink tone as the header. */
.dolong-home .dl-header:not(.is-scrolled) .dl-menu .sub-menu,
.dolong-home .dl-header:not(.is-scrolled) .dl-menu .sub-menu a {
  color: var(--dl-ink);
}

.dolong-home .dl-header:not(.is-scrolled) .dl-menu .sub-menu a:hover {
  color: var(--dl-gold);
}
/* Home — THE PRIME Collection */
.dl-prime-looks {
  padding: 118px 0 124px;
  background: var(--dl-ivory);
}

.dl-prime-looks__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .7fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 52px;
}

.dl-prime-looks h2 {
  margin: 13px 0 0;
  font-family: var(--dl-serif);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .86;
  text-transform: uppercase;
}

.dl-prime-looks__intro {
  max-width: 360px;
  justify-self: end;
}

.dl-prime-looks__intro p {
  margin: 0 0 18px;
  color: rgba(22, 21, 19, .68);
  font-size: 14px;
  line-height: 1.65;
}

.dl-prime-looks__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.dl-prime-look__image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #e9e2d7;
}

.dl-prime-look__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2, .7, .2, 1);
}

.dl-prime-look__view {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 13px;
  border-radius: 999px;
  background: rgba(255, 253, 249, .94);
  color: var(--dl-ink);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: opacity .28s ease, transform .28s ease;
}

.dl-prime-look:hover .dl-prime-look__image img {
  transform: scale(1.045);
}

.dl-prime-look:hover .dl-prime-look__view {
  opacity: 1;
  transform: translateY(0);
}

.dl-prime-look__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
}

.dl-prime-look__meta > span {
  color: rgba(22, 21, 19, .58);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .13em;
  white-space: nowrap;
}

.dl-prime-look h3 {
  margin: 0;
  font-family: var(--dl-serif);
  font-size: clamp(19px, 1.55vw, 25px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.dl-prime-look h3 a:hover {
  color: var(--dl-gold);
}

@media (max-width: 820px) {
  .dl-prime-looks {
    padding: 76px 0 82px;
  }

  .dl-prime-looks__header {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 34px;
  }

  .dl-prime-looks__intro {
    max-width: 400px;
    justify-self: start;
  }

  .dl-prime-looks__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 9px;
  }

  .dl-prime-look__view {
    display: none;
  }

  .dl-prime-look__meta {
    display: block;
    padding-top: 11px;
  }

  .dl-prime-look h3 {
    margin-top: 6px;
    font-size: 21px;
    text-align: left;
  }
}
/* Home — THE PRIME Codes */
.dl-prime-codes {
  padding: 112px 0;
  border-top: 1px solid var(--dl-line);
  border-bottom: 1px solid var(--dl-line);
  background: #ede8de;
}

.dl-prime-codes__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, .7fr));
  gap: 36px;
  align-items: start;
}

.dl-prime-codes__intro {
  padding-right: 34px;
}

.dl-prime-codes h2 {
  margin: 15px 0 0;
  font-family: var(--dl-serif);
  font-size: clamp(34px, 3vw, 49px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.16;
}

.dl-prime-code {
  min-height: 188px;
  padding: 4px 0 0 24px;
  border-left: 1px solid rgba(22, 21, 19, .18);
}

.dl-prime-code > span {
  display: block;
  margin-bottom: 41px;
  color: rgba(22, 21, 19, .62);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
}

.dl-prime-code h3 {
  margin: 0;
  font-family: var(--dl-serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
  text-transform: uppercase;
}

.dl-prime-code p {
  max-width: 23ch;
  margin: 13px 0 0;
  color: rgba(22, 21, 19, .7);
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 820px) {
  .dl-prime-codes {
    padding: 72px 0;
  }

  .dl-prime-codes__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .dl-prime-codes__intro {
    padding: 0 0 38px;
  }

  .dl-prime-code {
    min-height: auto;
    padding: 25px 0 25px 18px;
    border-top: 1px solid rgba(22, 21, 19, .15);
    border-left: 0;
  }

  .dl-prime-code:last-child {
    padding-bottom: 0;
  }

  .dl-prime-code > span {
    margin-bottom: 18px;
  }

  .dl-prime-code p {
    max-width: 35ch;
  }
}
/* Home — Bespoke journey */
.dl-bespoke-journey {
  padding: 122px 0 106px;
  background: var(--dl-paper);
}

.dl-bespoke-journey__header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .55fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 74px;
}

.dl-bespoke-journey h2 {
  max-width: 800px;
  margin: 15px 0 0;
  font-family: var(--dl-serif);
  font-size: clamp(39px, 4vw, 65px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.dl-bespoke-journey__copy {
  max-width: 340px;
  justify-self: end;
}

.dl-bespoke-journey__copy p {
  margin: 0 0 20px;
  color: rgba(22, 21, 19, .68);
  font-size: 14px;
  line-height: 1.7;
}

.dl-bespoke-journey__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--dl-line);
}

.dl-bespoke-step {
  min-height: 234px;
  padding: 25px 25px 0 0;
  border-right: 1px solid var(--dl-line);
}

.dl-bespoke-step:not(:first-child) {
  padding-left: 25px;
}

.dl-bespoke-step:last-child {
  padding-right: 0;
  border-right: 0;
}

.dl-bespoke-step > span {
  display: block;
  margin-bottom: 47px;
  color: rgba(22, 21, 19, .6);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
}

.dl-bespoke-step h3 {
  margin: 0;
  font-family: var(--dl-serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1;
  text-transform: uppercase;
}

.dl-bespoke-step p {
  max-width: 26ch;
  margin: 14px 0 0;
  color: rgba(22, 21, 19, .67);
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 820px) {
  .dl-bespoke-journey {
    padding: 76px 0 68px;
  }

  .dl-bespoke-journey__header {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 48px;
  }

  .dl-bespoke-journey__copy {
    justify-self: start;
  }

  .dl-bespoke-journey__steps {
    grid-template-columns: 1fr;
  }

  .dl-bespoke-step,
  .dl-bespoke-step:not(:first-child),
  .dl-bespoke-step:last-child {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--dl-line);
  }

  .dl-bespoke-step > span {
    margin-bottom: 15px;
  }

  .dl-bespoke-step p {
    max-width: 39ch;
  }
}
/* Bespoke Bridal — scroll story */
.dl-bespoke-story {
	--dl-bespoke-stage-height: min(620px, calc(100svh - 120px));
	position: relative;
	height: clamp(1500px, 185svh, 1700px);
	padding: 0;
	background: var(--dl-ivory);
}

.dl-bespoke-story__intro {
	display: none;
	grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
	column-gap: clamp(48px, 9vw, 156px);
	row-gap: 12px;
	width: min(calc(100% - 80px), 1360px);
	margin: 0 auto clamp(34px, 4vw, 56px);
}

.dl-bespoke-story__intro .dl-overline {
	grid-column: 1;
	margin: 0;
	align-self: end;
}

.dl-bespoke-story__intro h2 {
	grid-column: 1;
	max-width: 12ch;
	margin: 0;
	padding: .08em 0 .12em;
	font-family: var(--dl-serif);
	font-size: clamp(42px, 4vw, 64px);
	font-weight: 400;
	letter-spacing: -.025em;
	line-height: 1.08;
}

.dl-bespoke-story__intro > p:not(.dl-overline) {
	grid-column: 2;
	grid-row: 2;
	align-self: center;
	max-width: 34ch;
	margin: 0;
	color: rgba(22, 21, 19, .68);
	font-size: 13px;
	line-height: 1.7;
}

.dl-bespoke-story__intro span {
	grid-column: 2;
	margin: 2px 0 0;
	color: var(--dl-ink);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .14em;
	line-height: 1.4;
}

.dl-bespoke-story__stage {
	position: sticky;
	top: max(28px, calc((100svh - var(--dl-bespoke-stage-height)) / 2));
	width: min(calc(100% - 80px), 1360px);
	height: var(--dl-bespoke-stage-height);
	margin-inline: auto;
	overflow: hidden;
	background: var(--dl-ivory);
}

.dl-bespoke-story__slide {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: 465px minmax(0, 1fr);
	opacity: 0;
	pointer-events: none;
	transition: opacity .55s ease;
}

.dl-bespoke-story__slide.is-active {
	z-index: 1;
	opacity: 1;
	pointer-events: auto;
}

.dl-bespoke-story__image {
	min-height: 100%;
	margin: 0;
	overflow: hidden;
	background: #d8d0c3;
}

.dl-bespoke-story__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(.76) contrast(.96);
	transition: transform 1s ease;
}

.dl-bespoke-story__slide.is-active .dl-bespoke-story__image img {
	transform: none;
}

.dl-bespoke-story__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(38px, 5vw, 74px) clamp(78px, 8vw, 130px) clamp(38px, 5vw, 74px) clamp(36px, 4.5vw, 76px);
}

.dl-bespoke-story__content h2 {
	max-width: 9.5ch;
	margin: 10px 0 16px;
	padding: .08em 0 .12em;
	font-family: var(--dl-serif);
	font-size: clamp(40px, 3.35vw, 62px);
	font-weight: 400;
	letter-spacing: -.02em;
	line-height: 1.16;
	text-wrap: balance;
}

.dl-bespoke-story__body {
	max-width: 32ch;
	margin: 0 0 23px;
	color: rgba(22, 21, 19, .7);
	font-size: 13px;
	line-height: 1.68;
}

.dl-bespoke-story__bottom {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 16px;
	color: rgba(22, 21, 19, .7);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .14em;
}

.dl-bespoke-story__bottom i {
	display: block;
	width: 112px;
	height: 1px;
	background: var(--dl-line);
}

.dl-bespoke-story__bottom i::before {
	display: block;
	width: 25%;
	height: 1px;
	background: var(--dl-ink);
	content: "";
}

.dl-bespoke-story__rail {
	position: absolute;
	z-index: 2;
	top: 50%;
	right: clamp(18px, 2.5vw, 42px);
	display: grid;
	gap: 20px;
	width: 104px;
	margin: 0;
	padding: 0 0 0 27px;
	transform: translateY(-50%);
	border-left: 1px solid rgba(22, 21, 19, .17);
	list-style: none;
}

.dl-bespoke-story__rail li {
	position: relative;
	display: grid;
	gap: 4px;
	color: rgba(22, 21, 19, .35);
	transition: color .3s ease;
}

.dl-bespoke-story__rail li::before {
	position: absolute;
	top: 6px;
	left: -31px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
	content: "";
	transition: transform .3s ease, background .3s ease;
}

.dl-bespoke-story__rail span {
	font-family: var(--dl-serif);
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
}

.dl-bespoke-story__rail strong {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .08em;
	line-height: 1.35;
	text-transform: uppercase;
}

.dl-bespoke-story__rail li.is-active {
	color: var(--dl-ink);
}

.dl-bespoke-story__rail li.is-active::before {
	transform: scale(1.3);
	background: var(--dl-ink);
}

@media (max-width: 1040px) {
	.dl-bespoke-story {
		--dl-bespoke-stage-height: min(560px, calc(100svh - 112px));
		height: clamp(1420px, 180svh, 1580px);
	}

	.dl-bespoke-story__stage {
		width: min(calc(100% - 52px), 1360px);
	}

	.dl-bespoke-story__slide {
		grid-template-columns: 420px minmax(0, 1fr);
	}

	.dl-bespoke-story__content {
		padding-right: 94px;
	}
}

@media (max-width: 820px) {
	.dl-bespoke-story {
		height: auto;
		padding: 0 0 46px;
		overflow: hidden;
		background: var(--dl-paper);
	}

	.dl-bespoke-story__intro {
		display: block;
		box-sizing: border-box;
		width: 100%;
		margin: 0;
		padding: 54px 24px 30px;
		border-top: 1px solid var(--dl-line);
	}

.dl-bespoke-story__intro h2 {
	max-width: 14ch;
	margin: 10px 0 15px;
	padding: 0;
	font-family: var(--dl-serif);
	font-size: clamp(32px, 8.5vw, 40px);
	font-weight: 400;
	letter-spacing: -.02em;
	line-height: 1.14;
	text-wrap: balance;
}

	.dl-bespoke-story__intro > p:not(.dl-overline) {
		max-width: 34ch;
		margin: 0;
		color: rgba(22, 21, 19, .68);
		font-size: 13px;
		line-height: 1.7;
	}

	.dl-bespoke-story__intro span {
		display: block;
		margin-top: 24px;
		font-size: 9px;
		font-weight: 600;
		letter-spacing: .14em;
	}

	.dl-bespoke-story__stage {
		position: static;
		display: flex;
		gap: 14px;
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0 20px 14px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		background: transparent;
		-webkit-overflow-scrolling: touch;
	}

	.dl-bespoke-story__stage::-webkit-scrollbar {
		display: none;
	}

	.dl-bespoke-story__slide,
	.dl-bespoke-story__slide.is-active {
		position: relative;
		inset: auto;
		display: block;
		flex: 0 0 calc(100% - 46px);
		overflow: hidden;
		opacity: 1;
		pointer-events: auto;
		scroll-snap-align: start;
		background: var(--dl-ivory);
		border: 1px solid rgba(22, 21, 19, .08);
	}

	.dl-bespoke-story__image {
		height: min(62vw, 300px);
		min-height: 0;
	}

	.dl-bespoke-story__image img {
		transform: none !important;
		object-position: center 34%;
	}

	.dl-bespoke-story__content {
		min-height: 300px;
		padding: 28px 22px 32px;
	}

	.dl-bespoke-story__content h2 {
	max-width: 13ch;
	margin: 8px 0 12px;
	padding: 0;
	font-size: clamp(32px, 8vw, 38px);
	line-height: 1.14;
}

	.dl-bespoke-story__body {
		max-width: 34ch;
		margin-bottom: 20px;
		font-size: 13px;
		line-height: 1.65;
	}

	.dl-bespoke-story__bottom {
		margin-bottom: 14px;
	}

	.dl-bespoke-story__bottom i {
		width: 76px;
	}

	.dl-bespoke-story__rail {
		display: none;
	}
}

@media (max-width: 420px) {
	.dl-bespoke-story__intro {
		padding: 48px 20px 28px;
	}

	.dl-bespoke-story__stage {
		padding-inline: 16px;
	}

	.dl-bespoke-story__slide,
	.dl-bespoke-story__slide.is-active {
		flex-basis: calc(100% - 30px);
	}

	.dl-bespoke-story__image {
		height: min(64vw, 280px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.dl-bespoke-story__slide,
	.dl-bespoke-story__image img,
	.dl-bespoke-story__rail li,
	.dl-bespoke-story__rail li::before {
		transition: none;
	}
}
/* ==========================================================================
   SECTION: BOOK A FITTING CTA
   ========================================================================== */
.dl-booking-cta {
	position: relative;
	display: flex;
	align-items: end;
	min-height: clamp(580px, 45vw, 720px);
	overflow: hidden;
	background: var(--dl-ink);
	color: #fff;
}

.dl-booking-cta__image,
.dl-booking-cta__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.dl-booking-cta__image {
	object-fit: cover;
	object-position: 58% top;
}

.dl-booking-cta__overlay {
	background:
		linear-gradient(90deg, rgba(10, 10, 8, .78) 0%, rgba(10, 10, 8, .54) 34%, rgba(10, 10, 8, .16) 68%, rgba(10, 10, 8, .05) 100%),
		linear-gradient(0deg, rgba(10, 10, 8, .48) 0%, rgba(10, 10, 8, .06) 58%);
}

.dl-booking-cta__inner {
	position: relative;
	z-index: 1;
	width: min(calc(100% - 120px), var(--dl-shell));
	margin: 0 auto;
	padding: clamp(56px, 6vw, 100px) 0;
}

.dl-booking-cta__copy {
	max-width: 760px;
}

.dl-booking-cta .dl-overline {
	color: rgba(255, 255, 255, .72);
}

.dl-booking-cta h2 {
	max-width: 760px;
	margin: 15px 0 22px;
	font-family: var(--dl-serif);
	font-size: clamp(46px, 4.4vw, 68px);
	font-weight: 400;
	letter-spacing: -.035em;
	line-height: 1.06;
}

.dl-booking-cta__copy > p:not(.dl-overline) {
	max-width: 47ch;
	margin: 0 0 30px;
	color: rgba(255, 255, 255, .82);
	font-size: 14px;
	line-height: 1.72;
}

.dl-booking-cta .dl-button--light {
	background: #fff;
	color: var(--dl-ink);
}

.dl-booking-cta .dl-button--light:hover {
	background: var(--dl-gold);
	color: var(--dl-ink);
}

@media (max-width: 820px) {
	.dl-booking-cta {
		align-items: end;
		min-height: 650px;
	}

	.dl-booking-cta__image {
		object-position: 60% top;
	}

	.dl-booking-cta__overlay {
		background:
			linear-gradient(0deg, rgba(10, 10, 8, .93) 0%, rgba(10, 10, 8, .72) 38%, rgba(10, 10, 8, .16) 72%, rgba(10, 10, 8, .04) 100%);
	}

	.dl-booking-cta__inner {
		width: min(calc(100% - 40px), var(--dl-shell));
		padding: 190px 0 42px;
	}

	.dl-booking-cta__copy {
		max-width: 100%;
	}

	.dl-booking-cta h2 {
		max-width: 11.5ch;
		margin: 13px 0 16px;
		font-size: clamp(40px, 10.5vw, 52px);
		line-height: 1.06;
	}

	.dl-booking-cta__copy > p:not(.dl-overline) {
		max-width: 34ch;
		margin-bottom: 25px;
		font-size: 13px;
	}
}

@media (max-width: 420px) {
	.dl-booking-cta {
		min-height: 620px;
	}

	.dl-booking-cta__inner {
		width: min(calc(100% - 32px), var(--dl-shell));
		padding-top: 170px;
	}
}
/* END SECTION: BOOK A FITTING CTA */
/* ==========================================================================
/* ==========================================================================
   SECTION: FIND YOUR FORM / DÁNG VÁY
   ========================================================================== */
.dl-form-carousel {
	overflow: hidden;
	background: #f7f4ec;
	color: #0e0e0e;
	padding: clamp(70px, 6vw, 92px) 0;
}

.dl-form-carousel__layout {
	display: grid;
	grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
	gap: clamp(36px, 4.5vw, 72px);
	align-items: center;
}

.dl-form-carousel__copy {
	max-width: 390px;
}

.dl-form-carousel .dl-overline {
	margin: 0 0 22px;
	color: #756f68;
	font-family: "Montserrat", sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.18em;
	line-height: 1.2;
}

.dl-form-carousel h2,
.dl-form-carousel__meta h3 {
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 400;
}

.dl-form-carousel h2 {
	margin: 0;
	font-size: clamp(48px, 4.65vw, 76px);
	letter-spacing: -0.055em;
	line-height: 1.03;
}

.dl-form-carousel__body {
	max-width: 34ch;
	margin: 28px 0 0;
	color: #756f68;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	line-height: 1.65;
}

.dl-form-carousel__progress {
	display: flex;
	align-items: center;
	gap: 34px;
	margin: 38px 0 34px;
}

.dl-form-carousel__count,
.dl-form-carousel__controls > span {
	color: #b38d51;
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	letter-spacing: 0.08em;
	white-space: nowrap;
}

.dl-form-carousel__steps {
	display: flex;
	align-items: flex-start;
}

.dl-form-carousel__steps button {
	position: relative;
	width: 52px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #a8a097;
	cursor: pointer;
	font-family: "Montserrat", sans-serif;
	font-size: 10px;
	line-height: 1;
}

.dl-form-carousel__steps button::before {
	position: relative;
	z-index: 1;
	display: block;
	width: 9px;
	height: 9px;
	margin: 0 auto 8px;
	border: 1px solid #cbc2b8;
	border-radius: 50%;
	background: #f7f4ec;
	content: "";
}

.dl-form-carousel__steps button:not(:last-child)::after {
	position: absolute;
	top: 4px;
	left: 30px;
	width: 43px;
	height: 1px;
	background: #cbc2b8;
	content: "";
}

.dl-form-carousel__steps button[aria-pressed="true"] {
	color: #b38d51;
}

.dl-form-carousel__steps button[aria-pressed="true"]::before {
	border-color: #b38d51;
	background: #b38d51;
}

.dl-form-carousel .dl-text-link {
	display: inline-flex;
	gap: 10px;
	padding-bottom: 8px;
	border-bottom: 1px solid #0e0e0e;
	color: #0e0e0e;
	font-family: "Montserrat", sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}

/* Desktop carousel: previous / active / next */
.dl-form-carousel__stage {
	--dl-form-card-width: clamp(300px, 29vw, 385px);
	--dl-form-card-gap: clamp(16px, 2vw, 28px);
	--dl-form-art-height: clamp(370px, 31vw, 450px);

	width: min(100%, 650px);
	min-width: 0;
	justify-self: center;
}

.dl-form-carousel__viewport {
	overflow: hidden;
	width: 100%;
	touch-action: pan-y;
}

.dl-form-carousel__track {
	position: relative;
	height: calc(var(--dl-form-art-height) + 128px);
}

.dl-form-carousel__slide {
	position: absolute;
	top: 0;
	left: 50%;
	width: var(--dl-form-card-width);
	opacity: 0;
	filter: blur(1.1px);
	pointer-events: none;
	transform: translate3d(-50%, 0, 0) scale(0.9);
	transition:
		left 560ms cubic-bezier(0.22, 0.61, 0.36, 1),
		opacity 360ms ease,
		filter 360ms ease,
		transform 560ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.dl-form-carousel__slide.is-prev {
	z-index: 1;
	left: calc(50% - var(--dl-form-card-width) - var(--dl-form-card-gap));
	opacity: 0.24;
	filter: blur(1px);
	transform: translate3d(-50%, 0, 0) scale(0.94);
}

.dl-form-carousel__slide.is-active {
	z-index: 2;
	left: 50%;
	opacity: 1;
	filter: none;
	pointer-events: auto;
	transform: translate3d(-50%, 0, 0) scale(1);
}

.dl-form-carousel__slide.is-next {
	z-index: 1;
	left: calc(50% + var(--dl-form-card-width) + var(--dl-form-card-gap));
	opacity: 0.24;
	filter: blur(1px);
	transform: translate3d(-50%, 0, 0) scale(0.94);
}

.dl-form-carousel__slide.is-hidden {
	z-index: 0;
	left: 50%;
	opacity: 0;
	transform: translate3d(-50%, 0, 0) scale(0.88);
}

.dl-form-carousel__card {
	display: block;
	color: inherit;
	text-decoration: none;
}

.dl-form-carousel__arch {
	position: relative;
	padding: 11px;
	border: 1px solid #0e0e0e;
	border-radius: 50% 50% 5px 5px / 15% 15% 5px 5px;
	background: transparent;
}

.dl-form-carousel__arch::before {
	position: absolute;
	z-index: 0;
	inset: 10px;
	border: 1px solid rgba(197, 174, 135, 0.82);
	border-radius: 50% 50% 3px 3px / 15% 15% 3px 3px;
	content: "";
	pointer-events: none;
}

.dl-form-carousel__art {
	position: relative;
	z-index: 1;
	display: flex;
	height: var(--dl-form-art-height);
	align-items: center;
	justify-content: center;
	padding: 28px 25px 4px;
}

.dl-form-carousel__art img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 86%;
	max-height: 93%;
	object-fit: contain;
}

.dl-form-carousel__meta {
	position: relative;
	z-index: 1;
	padding: 8px 18px 20px;
	text-align: center;
}

.dl-form-carousel__meta > span {
	display: block;
	color: #b38d51;
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1;
}

.dl-form-carousel__meta > i {
	display: block;
	width: 18px;
	height: 1px;
	margin: 9px auto 10px;
	background: #c5ae87;
}

.dl-form-carousel__meta h3 {
	margin: 0;
	font-size: clamp(25px, 2vw, 31px);
	letter-spacing: -0.035em;
	line-height: 1.1;
}

.dl-form-carousel__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 19px;
}

.dl-form-carousel__controls button {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid #c5ae87;
	border-radius: 50%;
	background: transparent;
	color: #9a783f;
	cursor: pointer;
	font-family: Arial, sans-serif;
	font-size: 19px;
	line-height: 1;
	transition: background 180ms ease, color 180ms ease;
}

.dl-form-carousel__controls button:hover {
	background: #c5ae87;
	color: #fffdf9;
}

/* Mobile: vuốt để chuyển dáng */
@media (max-width: 980px) {
	.dl-form-carousel {
		padding: 68px 0 60px;
	}

	.dl-form-carousel__layout {
		display: block;
	}

	.dl-form-carousel__copy {
		max-width: 540px;
	}

	.dl-form-carousel h2 {
		font-size: clamp(46px, 11.5vw, 64px);
		line-height: 1.03;
	}

	.dl-form-carousel__body {
		margin-top: 23px;
		font-size: 14px;
	}

	.dl-form-carousel__progress {
		display: block;
		margin: 28px 0 30px;
	}

	.dl-form-carousel__count::after {
		margin-left: 10px;
		color: #9b958d;
		content: "· VUỐT ĐỂ KHÁM PHÁ";
		font-family: "Montserrat", sans-serif;
		font-size: 9px;
		font-weight: 600;
		letter-spacing: 0.12em;
	}

	.dl-form-carousel__steps,
	.dl-form-carousel__controls {
		display: none;
	}

	.dl-form-carousel__stage {
		--dl-form-card-width: min(82vw, 350px);
		--dl-form-card-gap: 16px;
		--dl-form-art-height: min(95vw, 430px);

		width: 100%;
		margin-top: 31px;
	}

	.dl-form-carousel__track {
		height: calc(var(--dl-form-art-height) + 124px);
	}

	.dl-form-carousel__slide.is-prev {
		left: calc(50% - var(--dl-form-card-width) - var(--dl-form-card-gap));
	}

	.dl-form-carousel__slide.is-next {
		left: calc(50% + var(--dl-form-card-width) + var(--dl-form-card-gap));
	}
}

@media (max-width: 480px) {
	.dl-form-carousel__arch {
		padding: 9px;
	}

	.dl-form-carousel__arch::before {
		inset: 8px;
	}

	.dl-form-carousel__meta {
		padding-bottom: 18px;
	}

	.dl-form-carousel__meta h3 {
		font-size: 25px;
	}
}
/* END SECTION: FIND YOUR FORM / DÁNG VÁY */
/* Collections styles live exclusively in assets/css/collections.css. */


/* Product detail — Light Editorial Title */
.dl-product-detail {
	background: #f8f4ec;
	color: #2d2923;
	padding-top: 1px;
}

.dl-product-detail > .dl-shell {
	width: min(calc(100% - 48px), 1360px);
	margin: 0 auto;
}

.dl-product-detail__breadcrumbs {
	display: flex;
	gap: 9px;
	margin: 24px 0 22px;
	color: #81786d;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.dl-product-detail__breadcrumbs a:hover {
	color: #2d2923;
}

.dl-product-detail__hero {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.85fr);
	align-items: start;
	gap: clamp(46px, 6vw, 104px);
	padding-bottom: clamp(82px, 9vw, 132px);
}

.dl-product-detail__gallery-desktop {
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
}

.dl-product-detail__thumbs {
	position: sticky;
	top: 108px;
	display: grid;
	gap: 10px;
}

.dl-product-detail__thumb {
	appearance: none;
	width: 74px;
	padding: 3px;
	border: 1px solid transparent;
	background: transparent;
	cursor: pointer;
	opacity: 0.64;
	transition: border-color 180ms ease, opacity 180ms ease;
}

.dl-product-detail__thumb:hover,
.dl-product-detail__thumb.is-active {
	border-color: #b99b6a;
	opacity: 1;
}

.dl-product-detail__thumb img {
	display: block;
	width: 100%;
	aspect-ratio: 0.78;
	object-fit: cover;
}

.dl-product-detail__main-image {
	margin: 0;
	overflow: hidden;
	background: #e9e0d3;
}

.dl-product-detail__main-image img {
	display: block;
	width: 100%;
	aspect-ratio: 0.78;
	object-fit: cover;
	transition: transform 500ms ease;
}

.dl-product-detail__main-image:hover img {
	transform: scale(1.012);
}

.dl-product-detail__gallery-mobile {
	display: none;
}

.dl-product-detail__summary {
	position: sticky;
	top: 104px;
	padding-top: 14px;
}

.dl-product-detail__collection-line {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
	color: #776b5e;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.dl-product-detail__collection-line::after {
	flex: 1;
	height: 1px;
	background: #d7c6ab;
	content: "";
}

.dl-product-detail__title {
	margin: 0;
	font-family: var(--dl-serif);
	font-size: clamp(58px, 5.4vw, 84px);
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 0.96;
}

.dl-product-detail__title-rule {
	position: relative;
	display: block;
	height: 1px;
	margin-top: 24px;
	background: #d7c6ab;
}

.dl-product-detail__title-rule::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	border: 1px solid #b99b6a;
	background: #f8f4ec;
	content: "";
	transform: translate(-50%, -50%) rotate(45deg);
}

.dl-product-detail__code {
	margin: 18px 0 0;
	color: #81786d;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.dl-product-detail__statement {
	max-width: 550px;
	margin: 26px 0 0;
	color: #665f56;
	font-family: var(--dl-sans);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.78;
}

.dl-product-detail__bespoke {
	margin-top: 30px;
	padding: 22px 24px 22px 28px;
	border-left: 1px solid #b99b6a;
	border-radius: 0 8px 8px 0;
	background: #f1eadf;
}

.dl-product-detail__bespoke-label {
	margin: 0 0 10px;
	color: #776b5e;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.dl-product-detail__bespoke h2 {
	margin: 0;
	font-family: var(--dl-serif);
	font-size: 22px;
	font-weight: 400;
	line-height: 1.28;
}

.dl-product-detail__bespoke > p:last-child {
	margin: 10px 0 0;
	color: #665f56;
	font-size: 12px;
	line-height: 1.65;
}

.dl-product-detail__specs {
	display: grid;
	margin: 22px 0 24px;
	border-top: 1px solid #ded3c2;
}

.dl-product-detail__spec {
	display: grid;
	grid-template-columns: 108px minmax(0, 1fr);
	gap: 18px;
	padding: 13px 0;
	border-bottom: 1px solid #ded3c2;
	align-items: baseline;
}

.dl-product-detail__spec span {
	color: #776b5e;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.dl-product-detail__spec a {
	justify-self: end;
	font-family: var(--dl-serif);
	font-size: 15px;
}

.dl-product-detail__booking {
	display: flex;
	width: 100%;
	min-height: 54px;
	align-items: center;
	justify-content: space-between;
	padding-inline: 22px;
	border-color: #b89a6a;
	background: #c5a779;
	color: #fffdf9;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.dl-product-detail__booking:hover {
	border-color: #a88b60;
	background: #af9165;
	color: #fffdf9;
}

.dl-product-detail__craftsmanship {
	padding: clamp(70px, 8vw, 116px) 0;
	border-top: 1px solid #ded3c2;
	background: #efe6d8;
}

.dl-product-detail__craftsmanship-inner {
	display: grid;
	grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
	gap: clamp(42px, 7vw, 112px);
	align-items: center;
}

.dl-product-detail__craftsmanship-copy .dl-overline {
	margin: 0 0 18px;
	color: #8e785a;
}

.dl-product-detail__craftsmanship-copy h2 {
	max-width: 460px;
	margin: 0;
	font-family: var(--dl-serif);
	font-size: clamp(39px, 4vw, 62px);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1.1;
}

.dl-product-detail__craftsmanship-copy > p:last-child {
	max-width: 430px;
	margin: 24px 0 0;
	color: #665f56;
	font-size: 13px;
	line-height: 1.8;
}

.dl-product-detail__craftsmanship-image {
	margin: 0;
	overflow: hidden;
	background: #e5dacb;
}

.dl-product-detail__craftsmanship-image img {
	display: block;
	width: 100%;
	aspect-ratio: 1.45;
	object-fit: cover;
}

.dl-product-detail__details {
	padding: clamp(76px, 7vw, 104px) 0;
	border-top: 1px solid #ded3c2;
	background: #f8f4ec;
}

.dl-product-detail__details-desktop {
	display: grid;
	grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(52px, 8vw, 136px);
	align-items: start;
}

.dl-product-detail__details-editorial {
	position: sticky;
	top: 112px;
}

.dl-product-detail__details h2 {
	margin: 0 0 28px;
	font-family: var(--dl-serif);
	font-size: clamp(35px, 3.25vw, 50px);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 1;
}

.dl-product-detail__details-image {
	margin: 0;
	overflow: hidden;
	background: #e5dacb;
}

.dl-product-detail__details-image img {
	display: block;
	width: 100%;
	aspect-ratio: 0.82;
	object-fit: cover;
}

.dl-product-detail__details-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.dl-product-detail__details-item {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 16px;
	padding: 0 0 26px;
	border-bottom: 1px solid #d9cdbb;
}

.dl-product-detail__details-item + .dl-product-detail__details-item {
	padding-top: 26px;
}

.dl-product-detail__details-number {
	color: #a2865f;
	font-family: var(--dl-serif);
	font-size: 23px;
	font-weight: 400;
	line-height: 1;
}

.dl-product-detail__details-item h3 {
	margin: 0 0 11px;
	color: #3d3831;
	font-family: var(--dl-sans);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1.4;
	text-transform: uppercase;
}

.dl-product-detail__details-copy {
	color: #665f56;
	font-family: var(--dl-sans);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
}

.dl-product-detail__details-copy p {
	margin: 0;
}

.dl-product-detail__details-mobile {
	display: none;
}

.dl-product-detail__related {
	padding: clamp(72px, 8vw, 118px) 0;
	border-top: 1px solid #ded3c2;
	background: #fbf8f2;
}

.dl-product-detail__related .dl-overline {
	margin: 0 0 15px;
	text-align: center;
}

.dl-product-detail__related h2 {
	margin: 0;
	font-family: var(--dl-serif);
	font-size: clamp(38px, 4.2vw, 62px);
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 1;
	text-align: center;
}

.dl-product-detail__related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
	justify-content: center;
	gap: 18px;
	width: min(100%, 1116px);
	margin: 42px auto 0;
}

.dl-product-detail__spec-value {
	justify-self: end;
	text-align: right;
}

.dl-product-detail__spec-value a {
	white-space: nowrap;
}

.dl-product-detail__related-card {
	min-width: 0;
}

.dl-product-detail__related-image {
	display: block;
	overflow: hidden;
	background: #e9e0d3;
}

.dl-product-detail__related-image img {
	display: block;
	width: 100%;
	aspect-ratio: 0.78;
	object-fit: cover;
	transition: transform 350ms ease;
}

.dl-product-detail__related-card:hover .dl-product-detail__related-image img {
	transform: scale(1.02);
}

.dl-product-detail__related-meta {
	padding-top: 12px;
}

.dl-product-detail__related-look {
	color: #81786d;
	font-size: 8px;
	font-weight: 600;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.dl-product-detail__related-name {
	margin: 7px 0 0;
	font-family: var(--dl-serif);
	font-size: 22px;
	font-weight: 400;
	line-height: 1.1;
}

@media (max-width: 1024px) {
	.dl-product-detail__hero {
		grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
		gap: 38px;
	}

	.dl-product-detail__summary {
		top: 88px;
	}

	.dl-product-detail__bespoke {
		padding: 19px 20px 19px 23px;
	}
}

@media (max-width: 780px) {
	.dl-product-detail > .dl-shell {
		width: min(calc(100% - 32px), 1360px);
	}

	.dl-product-detail__breadcrumbs {
		margin: 17px 0 18px;
	}

	.dl-product-detail__hero {
		display: block;
		padding-bottom: 68px;
	}

	.dl-product-detail__gallery-desktop {
		display: none;
	}

	.dl-product-detail__gallery-mobile {
		display: flex;
		gap: 8px;
		width: calc(100% + 32px);
		margin-left: -16px;
		overflow-x: auto;
		overscroll-behavior-x: contain;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.dl-product-detail__gallery-mobile::-webkit-scrollbar {
		display: none;
	}

	.dl-product-detail__gallery-mobile figure {
		flex: 0 0 87%;
		margin: 0;
		overflow: hidden;
		background: #e9e0d3;
		scroll-snap-align: start;
	}

	.dl-product-detail__gallery-mobile img {
		display: block;
		width: 100%;
		aspect-ratio: 0.78;
		object-fit: cover;
	}

	.dl-product-detail__summary {
		position: static;
		padding-top: 34px;
	}

	.dl-product-detail__collection-line {
		margin-bottom: 16px;
	}

	.dl-product-detail__title {
		font-size: clamp(48px, 15vw, 66px);
	}

	.dl-product-detail__title-rule {
		margin-top: 19px;
	}

	.dl-product-detail__statement {
		max-width: none;
		margin-top: 22px;
		font-size: 15px;
		line-height: 1.7;
	}

	.dl-product-detail__bespoke {
		margin-top: 25px;
	}

	.dl-product-detail__spec {
		grid-template-columns: 92px minmax(0, 1fr);
	}

	.dl-product-detail__craftsmanship {
		padding: 60px 0;
	}

	.dl-product-detail__craftsmanship-inner {
		display: flex;
		flex-direction: column-reverse;
		gap: 28px;
	}

	.dl-product-detail__craftsmanship-copy h2 {
		font-size: 42px;
	}

	.dl-product-detail__craftsmanship-image img {
		aspect-ratio: 1.05;
	}

	.dl-product-detail__details {
		padding: 58px 0 64px;
	}

	.dl-product-detail__details-desktop {
		display: none;
	}

	.dl-product-detail__details-mobile {
		display: block;
	}

	.dl-product-detail__details-mobile h2 {
		margin-bottom: 22px;
		font-size: 35px;
	}

	.dl-product-detail__details-mobile details {
		border-top: 1px solid #d9cdbb;
	}

	.dl-product-detail__details-mobile details:last-child {
		border-bottom: 1px solid #d9cdbb;
	}

	.dl-product-detail__details-mobile summary {
		display: grid;
		grid-template-columns: 36px minmax(0, 1fr) 10px;
		gap: 10px;
		min-height: 60px;
		align-items: center;
		cursor: pointer;
		list-style: none;
	}

	.dl-product-detail__details-mobile summary::-webkit-details-marker {
		display: none;
	}

	.dl-product-detail__details-mobile .dl-product-detail__details-number {
		font-size: 19px;
	}

	.dl-product-detail__details-label {
		color: #3d3831;
		font-family: var(--dl-sans);
		font-size: 14px;
		font-weight: 600;
		letter-spacing: 0.08em;
		line-height: 1.4;
		text-transform: uppercase;
	}

	.dl-product-detail__details-mobile summary i {
		width: 8px;
		height: 8px;
		border-right: 1px solid #9c815b;
		border-bottom: 1px solid #9c815b;
		transform: translateY(-2px) rotate(45deg);
		transition: transform 180ms ease;
	}

	.dl-product-detail__details-mobile details[open] summary i {
		transform: translateY(2px) rotate(-135deg);
	}

	.dl-product-detail__details-mobile .dl-product-detail__details-copy {
		padding: 0 0 21px 46px;
		font-size: 15px;
		line-height: 1.7;
	}

	.dl-product-detail__related {
		padding: 64px 0 76px;
	}

	.dl-product-detail__related h2 {
		font-size: 43px;
	}

	.dl-product-detail__related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 26px 10px;
		margin-top: 32px;
	}

	.dl-product-detail__related-name {
		font-size: 19px;
	}
}

@media (max-width: 420px) {
	.dl-product-detail__bespoke {
		padding: 18px 18px 18px 21px;
	}

	.dl-product-detail__bespoke h2 {
		font-size: 20px;
	}

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

/* ==========================================================================
   GLOBAL BOOKING MODAL — Fluent Forms Free
   ========================================================================== */
.dl-booking-modal {
	position: fixed;
	z-index: 100000;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 24px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 220ms ease, visibility 220ms ease;
}

.dl-booking-modal[hidden] {
	display: none !important;
}

.dl-booking-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.dl-booking-modal__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: rgba(20, 17, 14, .58);
	backdrop-filter: blur(5px);
	cursor: default;
}

.dl-booking-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(720px, 100%);
	max-height: min(860px, calc(100svh - 48px));
	overflow: auto;
	overscroll-behavior: contain;
	padding: clamp(34px, 5vw, 62px);
	border: 1px solid rgba(158, 143, 124, .46);
	background: var(--dl-paper, #f7f4ec);
	box-shadow: 0 30px 90px rgba(18, 15, 12, .24);
	color: var(--dl-ink, #0e0e0e);
}

.dl-booking-modal__close {
	position: absolute;
	top: 22px;
	right: 22px;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.dl-booking-modal__close::before,
.dl-booking-modal__close::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 1px;
	background: currentColor;
	content: "";
}

.dl-booking-modal__close::before { transform: translate(-50%, -50%) rotate(45deg); }
.dl-booking-modal__close::after { transform: translate(-50%, -50%) rotate(-45deg); }

.dl-booking-modal__head {
	padding-right: 42px;
	margin-bottom: 32px;
}

.dl-booking-modal__head h2 {
	margin: 11px 0 0;
	font-family: var(--dl-font-display, "Playfair Display", Georgia, serif);
	font-size: clamp(42px, 5vw, 66px);
	font-weight: 400;
	letter-spacing: -.05em;
	line-height: .98;
}

.dl-booking-modal__head > p:last-child {
	max-width: 54ch;
	margin: 18px 0 0;
	color: var(--dl-muted, #756f68);
	font-family: var(--dl-font-body, "Montserrat", Arial, sans-serif);
	font-size: 13px;
	line-height: 1.7;
}

.dl-booking-modal .fluentform {
	font-family: var(--dl-font-body, "Montserrat", Arial, sans-serif);
}

.dl-booking-modal .ff-el-group {
	margin-bottom: 20px;
}

.dl-booking-modal .ff-el-input--label label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.dl-booking-modal .ff-el-form-control {
	min-height: 48px;
	padding: 11px 0;
	border: 0;
	border-bottom: 1px solid var(--dl-line, #cbc2b8);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--dl-ink, #0e0e0e);
	font-family: inherit;
	font-size: 14px;
}

.dl-booking-modal textarea.ff-el-form-control {
	min-height: 92px;
	resize: vertical;
}

.dl-booking-modal .ff-el-form-control:focus {
	border-color: var(--dl-ink, #0e0e0e);
	box-shadow: none;
	outline: none;
}

.dl-booking-modal .ff-el-form-control[readonly] {
	color: #8c6935;
	cursor: default;
}

.dl-booking-modal .ff-btn-submit {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	padding: 0 30px;
	border: 1px solid var(--dl-ink, #0e0e0e);
	border-radius: 999px;
	background: var(--dl-ink, #0e0e0e);
	color: var(--dl-ivory, #fffdf9);
	font-family: inherit;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.dl-booking-modal .ff-message-success {
	padding: 18px;
	border: 1px solid var(--dl-line, #cbc2b8);
	background: rgba(255, 255, 255, .42);
}

/* Fluent Forms appends Flatpickr to <body>. Keep the calendar above the
 * theme modal instead of behind its backdrop/dialog stacking context. */
body.is-booking-modal-open .flatpickr-calendar {
	z-index: 100010 !important;
}

@media (max-width: 560px) {
	.dl-booking-modal {
		place-items: end center;
		padding: 0;
	}

	.dl-booking-modal__dialog {
		width: 100%;
		max-height: calc(100svh - 24px);
		padding: 38px 20px 28px;
		border-width: 1px 0 0;
		box-shadow: 0 -18px 55px rgba(18, 15, 12, .22);
	}

	.dl-booking-modal__close {
		top: 14px;
		right: 12px;
	}

	.dl-booking-modal__head {
		padding-right: 34px;
		margin-bottom: 25px;
	}

	.dl-booking-modal__head h2 {
		font-size: clamp(39px, 12vw, 52px);
	}

	.dl-booking-modal__head > p:last-child {
		margin-top: 14px;
		font-size: 12px;
	}

	.dl-booking-modal .ff-el-group {
		margin-bottom: 16px;
	}

	.dl-booking-modal .ff-btn-submit {
		width: 100%;
	}
}



/* ==========================================================================
   PRIVATE APPOINTMENT BOOKING PAGE
   ========================================================================== */

.dl-booking-page { overflow: hidden; background: var(--dl-paper); }
.dl-booking-page__hero { position: relative; display: grid; min-height: clamp(560px, 64vh, 700px); place-items: center; color: var(--dl-ivory); isolation: isolate; }
.dl-booking-page__hero-image, .dl-booking-page__hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.dl-booking-page__hero-image { object-fit: cover; object-position: center top; }
.dl-booking-page__hero-overlay { z-index: 1; background: linear-gradient(90deg, rgba(14,14,14,.6) 0%, rgba(14,14,14,.3) 55%, rgba(14,14,14,.12) 100%); }
.dl-booking-page__hero-content { position: relative; z-index: 2; }
.dl-booking-page__hero .dl-overline { color: rgba(255,253,249,.84); }
.dl-booking-page__hero h1, .dl-booking-page h2 { margin: 16px 0 0; font-family: var(--dl-serif); font-weight: 400; letter-spacing: -.04em; line-height: 1.03; }
.dl-booking-page__hero h1 { max-width: 720px; font-size: clamp(50px, 6.1vw, 88px); }
.dl-booking-page__hero-content > p:not(.dl-overline) { max-width: 495px; margin: 22px 0 0; font-size: 16px; line-height: 1.8; }
.dl-booking-page__hero .dl-button { margin-top: 29px; border-color: var(--dl-ivory); background: var(--dl-ivory); color: var(--dl-ink); }

.dl-booking-page__quick-contact { padding: 19px 0; border-bottom: 1px solid var(--dl-line); background: var(--dl-ivory); }
.dl-booking-page__quick-contact-inner { display: grid; grid-template-columns: 145px minmax(0, 1fr); align-items: center; gap: 24px; }
.dl-booking-page__quick-contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.dl-booking-page__quick-contact-grid a { display: flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px; padding: 6px 18px; border-left: 1px solid var(--dl-line); color: #4f493f; font-size: 10px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; transition: color .2s ease; }
.dl-booking-page__quick-contact-grid a:hover { color: #9b7b48; }
.dl-booking-page__quick-contact-grid svg { width: 19px; height: 19px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; }
.dl-booking-page__quick-contact-grid a:nth-child(2) svg, .dl-booking-page__quick-contact-grid a:nth-child(4) svg { fill: currentColor; stroke: none; }

.dl-booking-page__appointment { padding: clamp(66px, 6.5vw, 96px) 0; background: var(--dl-paper); }
.dl-booking-page__appointment-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(42px, 6vw, 84px); align-items: start; }
.dl-booking-page__boutique { min-width: 0; }
.dl-booking-page__boutique-copy { display: block; }
.dl-booking-page__boutique h2, .dl-booking-page__form h2 { font-size: clamp(34px, 3.3vw, 48px); }
.dl-booking-page__boutique-intro { max-width: 500px; margin: 18px 0 0; color: #665f56; font-family: var(--dl-sans); font-size: 15px; line-height: 1.72; }
.dl-booking-page__boutique-meta { display: grid; gap: 17px; margin-top: 27px; }
.dl-booking-page__boutique-meta-item { display: grid; gap: 4px; width: fit-content; color: #4f493f; }
.dl-booking-page__boutique-meta-item > span { color: #756f68; font-size: 8px; font-weight: 600; letter-spacing: .12em; line-height: 1.4; text-transform: uppercase; }
.dl-booking-page__boutique-meta-item address, .dl-booking-page__boutique-meta-item strong { margin: 0; color: #4f493f; font-family: var(--dl-sans); font-size: 13px; font-style: normal; font-weight: 400; line-height: 1.6; }
.dl-booking-page__boutique-meta-item address { white-space: nowrap; }
a.dl-booking-page__boutique-meta-item strong { border-bottom: 1px solid var(--dl-gold); }
.dl-booking-page__boutique-image { margin: 28px 0 0; overflow: hidden; background: #e5dacb; }
.dl-booking-page__boutique-image img { width: 100%; aspect-ratio: 1 / 1.08; object-fit: cover; object-position: center; }

.dl-booking-page__form-card { padding: clamp(34px, 4vw, 52px); border: 1px solid rgba(22,21,19,.13); border-radius: 18px; background: var(--dl-ivory); }
.dl-booking-page__form { max-width: none; }
.dl-booking-page__form .frm-fluent-form { margin-top: 28px; }
.dl-booking-page__form .ff-el-group { margin-bottom: 14px; }
.dl-booking-page__form .ff-el-input--label { margin-bottom: 7px; }
.dl-booking-page__form .ff-el-input--label label { color: #4f493f; font-family: var(--dl-sans); font-size: 11px; font-weight: 600; letter-spacing: .1em; line-height: 1.4; text-transform: uppercase; }
.dl-booking-page__form .ff-el-input--label .ff-el-required { margin-left: 3px; color: #a2865f; }
.dl-booking-page__form .ff-el-form-control { box-sizing: border-box; border: 0 !important; border-bottom: 1px solid #c8bfae !important; border-radius: 0 !important; background: transparent !important; box-shadow: none !important; color: var(--dl-ink) !important; font-family: var(--dl-sans) !important; font-size: 14px !important; font-weight: 400 !important; line-height: 1.55 !important; }
.dl-booking-page__form input.ff-el-form-control:not([type="hidden"]),
.dl-booking-page__form select.ff-el-form-control { height: 46px; min-height: 46px; padding: 11px 0 !important; }
.dl-booking-page__form select.ff-el-form-control { padding-right: 28px !important; }
.dl-booking-page__form textarea.ff-el-form-control { padding: 11px 0 !important; }
.dl-booking-page__form .ff-el-form-control::placeholder { color: #8a837b !important; font-family: var(--dl-sans) !important; font-size: 14px !important; font-weight: 400 !important; line-height: 1.55 !important; opacity: 1; }
.dl-booking-page__form input[type="date"].ff-el-form-control,
.dl-booking-page__form input.flatpickr-input.ff-el-form-control { line-height: 22px !important; }
.dl-booking-page__form input[type="date"].ff-el-form-control::-webkit-date-and-time-value { min-height: 22px; margin: 0; text-align: left; }
.dl-booking-page__form textarea[name="description"] { min-height: 92px; resize: vertical; }
.dl-booking-page__form textarea[name="description_1"] { height: 46px !important; min-height: 46px !important; overflow: hidden; resize: none; }
.dl-booking-page__form .ff_submit_btn_wrapper { margin-bottom: 0; text-align: left !important; }
.dl-booking-page__form .ff-btn-submit { min-height: 45px; margin-top: 8px; padding: 0 23px; border: 1px solid var(--dl-ink); border-radius: 999px; background: var(--dl-ink); color: var(--dl-ivory); font-size: 10px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; transition: background .2s ease, color .2s ease; }
.dl-booking-page__form .ff-btn-submit:hover { background: transparent; color: var(--dl-ink); }
.dl-booking-page__confirmation, .dl-booking-page__privacy { max-width: 520px; color: #665f56; font-size: 12px; line-height: 1.65; }
.dl-booking-page__confirmation { margin: 20px 0 0; }
.dl-booking-page__privacy { margin: 8px 0 0; }
.dl-booking-page__privacy a { border-bottom: 1px solid currentColor; color: var(--dl-ink); }

.dl-booking-page__map { padding: clamp(62px, 6vw, 88px) 0; border-top: 1px solid var(--dl-line); background: var(--dl-ivory); }
.dl-booking-page__map-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.dl-booking-page__map h2 { font-size: clamp(36px, 3.6vw, 52px); }
.dl-booking-page__map-frame { height: clamp(340px, 28vw, 390px); overflow: hidden; background: #e6dfd3; }
.dl-booking-page__map-frame iframe { display: block; width: 100%; height: 100%; border: 0; }

.dl-footer__main { padding-top: clamp(54px, 5vw, 72px); padding-bottom: clamp(42px, 4vw, 58px); }
.dl-footer__social-icon { width: 32px; height: 32px; border-color: rgba(22,21,19,.28); color: #4f493f; }
.dl-footer__social-icon:hover,
.dl-footer__social-icon:focus-visible {
	border-color: var(--dl-gold);
	background: transparent;
	color: var(--dl-gold);
}

.dl-footer__social-icon svg {
	display: block;
	width: 17px;
	height: 17px;
}

.dl-footer__social-icon--instagram svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.55;
}

.dl-footer__social-icon--instagram svg circle:last-child {
	fill: currentColor;
	stroke: none;
}

.dl-footer__social-icon--facebook svg {
	fill: currentColor;
	stroke: none;
}
.dl-footer__legal { min-height: 54px; }

@media (max-width: 900px) {
	.dl-booking-page__quick-contact-inner { grid-template-columns: 1fr; gap: 10px; }
	.dl-booking-page__quick-contact-grid a:first-child { border-left: 0; }
	.dl-booking-page__appointment-grid { grid-template-columns: 1fr; gap: 46px; }
	.dl-booking-page__boutique { display: grid; grid-template-columns: .92fr 1.08fr; gap: 30px; align-items: end; }
	.dl-booking-page__boutique-image { margin-top: 0; }
	.dl-booking-page__form-card { max-width: 680px; }
}

@media (max-width: 640px) {
	.dl-booking-page__hero { min-height: 535px; }
	.dl-booking-page__hero-image { object-position: 60% top; }
	.dl-booking-page__hero-content > p:not(.dl-overline) { max-width: 360px; font-size: 15px; }
	.dl-booking-page__quick-contact { padding: 15px 0; }
	.dl-booking-page__quick-contact-grid { grid-template-columns: repeat(2, 1fr); }
	.dl-booking-page__quick-contact-grid a { min-height: 43px; justify-content: flex-start; padding: 5px 10px; }
	.dl-booking-page__quick-contact-grid a:nth-child(odd) { border-left: 0; }
	.dl-booking-page__quick-contact-grid a:nth-child(n+3) { border-top: 1px solid rgba(22,21,19,.1); }
	.dl-booking-page__appointment-grid { gap: 40px; }
	.dl-booking-page__boutique { display: block; }
	.dl-booking-page__boutique-meta-item address { white-space: normal; }
	.dl-booking-page__boutique-image { margin-top: 25px; }
	.dl-booking-page__boutique-image img { aspect-ratio: 4 / 5; }
	.dl-booking-page__form-card { padding: 30px 22px; border-radius: 14px; }
	.dl-booking-page__boutique h2, .dl-booking-page__form h2 { font-size: 36px; }
	.dl-booking-page__form .frm-fluent-form { margin-top: 25px; }
	.dl-booking-page__map-head { display: grid; align-items: start; }
	.dl-booking-page__map-frame { height: 270px; }
}
