@charset "utf-8";
/* 

CSS Document 

TemplateMo 611 Maison Doree

https://templatemo.com/tm-611-maison-doree

*/

:root {
	--color-cream: #FFFBF5;
	--color-ivory: #F7F3ED;
	--color-warm-white: #FEFCF9;
	--color-gold: #B8860B;
	--color-gold-light: #D4A853;
	--color-gold-dark: #8B6914;
	--color-charcoal: #1C1C1C;
	--color-charcoal-soft: #3A3A3A;
	--color-taupe: #A69080;
	--color-taupe-light: #C4B5A5;

	--font-display: 'Cormorant Garamond', Georgia, serif;
	--font-body: 'DM Sans', -apple-system, sans-serif;

	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 2rem;
	--space-lg: 4rem;
	--space-xl: 6rem;
	--space-2xl: 10rem;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	font-size: 18px;
	line-height: 1.6;
	color: var(--color-charcoal);
	background-color: var(--color-cream);
	-webkit-font-smoothing: antialiased;
}

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

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

/* Preloader */
.site-preloader {
	position: fixed;
	inset: 0;
	display: grid;
	place-items: center;
	background:
		radial-gradient(900px 360px at 15% -10%, rgba(184, 134, 11, 0.14), transparent 60%),
		radial-gradient(700px 300px at 90% 110%, rgba(184, 134, 11, 0.1), transparent 65%),
		linear-gradient(160deg, #181818 0%, #1f1f1f 100%);
	z-index: 4000;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-preloader.is-hidden {
	opacity: 0;
	visibility: hidden;
}

.preloader-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	padding: 1.4rem 1.6rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 14px;
	backdrop-filter: blur(8px);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.preloader-logo {
	width: 150px;
	max-width: 48vw;
	height: auto;
	padding: 0.45rem 0.6rem;
	background: rgba(255, 255, 255, 0.88);
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	animation: preloaderLogoPulse 1.6s ease-in-out infinite;
}

.preloader-line {
	width: 180px;
	max-width: 55vw;
	height: 3px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 100px;
	overflow: hidden;
}

.preloader-line::before {
	content: '';
	display: block;
	height: 100%;
	width: 36%;
	background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold));
	border-radius: inherit;
	animation: preloaderLineMove 1.1s ease-in-out infinite;
}

@keyframes preloaderLogoPulse {
	0%, 100% { transform: scale(1); opacity: 0.95; }
	50% { transform: scale(1.04); opacity: 1; }
}

@keyframes preloaderLineMove {
	0% { transform: translateX(-110%); }
	100% { transform: translateX(280%); }
}

/* Typography */
.heading-display {
	font-family: var(--font-display);
	font-weight: 300;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.heading-editorial {
	font-family: var(--font-display);
	font-weight: 400;
	font-style: italic;
	line-height: 1.2;
}

.text-label {
	font-family: var(--font-body);
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-taupe);
}

.text-body {
	font-family: var(--font-body);
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--color-charcoal-soft);
}

/* Layout Utilities */
.container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 var(--space-md);
}

.container--narrow {
	max-width: 900px;
}

.container--wide {
	max-width: 1600px;
}

/* ========================================
           HEADER / NAVIGATION
        ======================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 0.85rem 0;
	transition: background 0.4s ease, padding 0.4s ease;
}

.site-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 251, 245, 0.82);
	z-index: -1;
}

.site-header.scrolled {
	background: rgba(255, 251, 245, 0.98);
	backdrop-filter: blur(12px);
	padding: 0.65rem 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled::before {
	display: none;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.35rem 0.9rem;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 14px;
	backdrop-filter: blur(8px);
}

.logo {
	display: inline-flex;
	align-items: center;
}

.logo img {
	display: block;
	height: 68px;
	width: auto;
	transform-origin: center;
	will-change: transform, filter;
}

.logo:hover img {
	animation: logoHoverPulse 0.6s ease;
	filter: drop-shadow(0 6px 16px rgba(184, 134, 11, 0.35));
}

.logo:focus-visible img {
	animation: logoHoverPulse 0.6s ease;
}

@keyframes logoHoverPulse {
	0% { transform: scale(1); }
	45% { transform: scale(1.08); }
	100% { transform: scale(1.04); }
}

.nav-main {
	display: flex;
	align-items: center;
	gap: 1.9rem;
	padding: 0.4rem 0.55rem 0.4rem 1rem;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.nav-main a:not(.nav-cta) {
	font-family: var(--font-body);
	font-size: 0.98rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	position: relative;
	padding: 0.3rem 0;
	transition: color 0.25s ease;
}

.nav-main a:not(.nav-cta) + a:not(.nav-cta)::before {
	content: '';
	position: absolute;
	left: -0.95rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 1.05rem;
	background-color: rgba(0, 0, 0, 0.18);
}

.nav-main a:not(.nav-cta):hover {
	color: var(--color-gold);
}

.nav-main a:not(.nav-cta)::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -0.2rem;
	width: 100%;
	height: 2px;
	background-color: var(--color-gold);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.25s ease;
}

.nav-main a:not(.nav-cta):hover::after,
.nav-main a:not(.nav-cta):focus-visible::after {
	transform: scaleX(1);
}

.nav-cta {
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.82rem 1.35rem;
	border: 1px solid var(--color-charcoal);
	border-radius: 10px;
	background-color: var(--color-charcoal);
	color: var(--color-cream);
	transition: all 0.25s ease;
}

.nav-cta:hover {
	background-color: var(--color-gold-dark);
	border-color: var(--color-gold-dark);
	transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 1.5px;
	background-color: var(--color-charcoal);
	transition: all 0.3s ease;
}

/* ========================================
           HERO SECTION
        ======================================== */
.hero {
	min-height: 600px;
	max-height: 820px;
	height: 100vh;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	background-color: var(--color-cream);
	overflow: hidden;
}

.hero-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: var(--space-md) var(--space-lg);
	padding-left: max(var(--space-md), calc((100vw - 1400px) / 2 + var(--space-md)));
}

.hero-tagline {
	margin-bottom: var(--space-sm);
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 0.8s ease forwards;
	animation-delay: 0.3s;
}

.hero-title {
	font-size: clamp(2.5rem, 4.5vw, 4rem);
	margin-bottom: var(--space-sm);
	opacity: 0;
	transform: translateY(30px);
	animation: fadeUp 0.8s ease forwards;
	animation-delay: 0.5s;
}

.hero-title em {
	font-style: italic;
	color: var(--color-gold);
}

.hero-description {
	max-width: 380px;
	margin-bottom: var(--space-md);
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 0.8s ease forwards;
	animation-delay: 0.7s;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: var(--space-md);
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 0.8s ease forwards;
	animation-delay: 0.9s;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 1.1rem 2.25rem;
	background-color: var(--color-charcoal);
	color: var(--color-cream);
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background-color: var(--color-gold-dark);
}

.btn-text {
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-charcoal);
	position: relative;
}

.btn-text::after {
	content: '→';
	margin-left: 0.5rem;
	transition: margin-left 0.3s ease;
}

.btn-text:hover::after {
	margin-left: 0.75rem;
}

.hero-image {
	position: relative;
	overflow: hidden;
	clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.hero-slide.active {
	opacity: 1;
}

.hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease, filter 0.7s ease;
}

.hero-slide:hover img {
	transform: scale(1.04);
	filter: saturate(1.03) contrast(1.02);
}

.hero-image-overlay {
	position: absolute;
	bottom: var(--space-lg);
	left: var(--space-lg);
	background-color: var(--color-warm-white);
	padding: var(--space-md);
	max-width: 280px;
	z-index: 10;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 0.8s ease forwards;
	animation-delay: 1.1s;
}

.overlay-title {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 400;
	margin-bottom: var(--space-xs);
	transition: opacity 0.5s ease;
}

.overlay-price {
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--color-gold);
	font-weight: 500;
	transition: opacity 0.5s ease;
}

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ========================================
           FEATURED PIECE SECTION
        ======================================== */
.featured-piece {
	position: relative;
	padding: var(--space-2xl) 0;
	background-color: var(--color-ivory);
	overflow: hidden;
	isolation: isolate;
}

.featured-piece::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom, rgba(247, 243, 237, 0.96) 0%, rgba(247, 243, 237, 0) 12%),
		linear-gradient(to top, rgba(247, 243, 237, 0.96) 0%, rgba(247, 243, 237, 0) 12%),
		linear-gradient(115deg, rgba(28, 28, 28, 0.34) 0%, rgba(28, 28, 28, 0.22) 50%, rgba(28, 28, 28, 0.18) 100%),
		url("images/bg1.jpg") center/cover no-repeat;
	filter: blur(1px);
	transform: scale(1.01);
	z-index: -2;
}

.featured-piece::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(184, 134, 11, 0.10) 0%, rgba(255, 251, 245, 0.52) 55%, rgba(255, 251, 245, 0.62) 100%);
	backdrop-filter: blur(0.5px);
	z-index: -1;
}

.featured-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: var(--space-xl);
	align-items: center;
	position: relative;
	z-index: 2;
}

.featured-image-wrapper {
	position: relative;
}

.featured-image {
	aspect-ratio: 4/5;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
}

.featured-image-wrapper:hover .featured-image img {
	transform: scale(1.04);
	filter: saturate(1.04);
}

.featured-badge {
	position: absolute;
	top: var(--space-md);
	left: var(--space-md);
	background-color: var(--color-gold);
	color: var(--color-cream);
	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.5rem 1rem;
}

.featured-content {
	padding: var(--space-lg);
	padding-right: var(--space-lg);
	background: rgba(255, 252, 249, 0.9);
	border: 1px solid rgba(166, 144, 128, 0.3);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(6px);
}

.featured-label {
	margin-bottom: var(--space-sm);
}

.featured-title {
	font-size: clamp(2.75rem, 4.5vw, 4rem);
	margin-bottom: var(--space-md);
}

.featured-description {
	margin-bottom: var(--space-md);
}

.featured-details {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
	margin-bottom: var(--space-lg);
	padding: var(--space-md) 0;
	border-top: 1px solid var(--color-taupe-light);
	border-bottom: 1px solid var(--color-taupe-light);
}

.detail-row {
	display: flex;
	justify-content: space-between;
	font-size: 1rem;
}

.detail-label {
	color: var(--color-taupe);
}

.detail-value {
	font-weight: 500;
}

.featured-price {
	font-family: var(--font-display);
	font-size: 2.25rem;
	font-weight: 400;
	color: var(--color-gold-dark);
	margin-bottom: var(--space-md);
}

/* ========================================
           COLLECTIONS SECTION
        ======================================== */
.collections {
	padding: var(--space-2xl) 0;
	background-color: var(--color-cream);
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: var(--space-xl);
}

.section-header-left {
	max-width: 500px;
}

.section-title {
	font-size: clamp(2.25rem, 4vw, 3.5rem);
	margin-bottom: var(--space-sm);
}

.section-subtitle {
	color: var(--color-taupe);
}

/* Asymmetric Masonry Grid */
.collections-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: repeat(2, auto);
	gap: var(--space-md);
}

.collection-item {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.collection-item:nth-child(1) {
	grid-column: 1 / 6;
	grid-row: 1 / 3;
}

.collection-item:nth-child(2) {
	grid-column: 6 / 10;
	grid-row: 1 / 2;
}

.collection-item:nth-child(3) {
	grid-column: 10 / 13;
	grid-row: 1 / 2;
}

.collection-item:nth-child(4) {
	grid-column: 6 / 9;
	grid-row: 2 / 3;
}

.collection-item:nth-child(5) {
	grid-column: 9 / 13;
	grid-row: 2 / 3;
}

.collection-image {
	width: 100%;
	height: 100%;
	min-height: 280px;
	overflow: hidden;
	border-radius: 14px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.collection-item:nth-child(1) .collection-image {
	min-height: 600px;
}

.collection-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease, filter 0.45s ease;
}

.collection-item:hover .collection-image img {
	transform: scale(1.045);
	filter: saturate(1.04);
}

.collection-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(28, 28, 28, 0.7) 0%, transparent 60%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: var(--space-md);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.collection-item:hover .collection-overlay {
	opacity: 1;
}

.collection-name {
	font-family: var(--font-display);
	font-size: 1.75rem;
	font-weight: 400;
	color: var(--color-cream);
	margin-bottom: var(--space-xs);
}

.collection-count {
	font-size: 0.9rem;
	color: var(--color-taupe-light);
	letter-spacing: 0.05em;
}

/* ========================================
           ABOUT / STORY SECTION
        ======================================== */
.story {
	padding: var(--space-2xl) 0;
	background: linear-gradient(104deg,
			#1C1C1C 0%,
			#1C1C1C 50%,
			#222222 50%,
			#222222 100%);
	color: var(--color-cream);
	overflow: hidden;
}

.story-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	align-items: center;
}

.story-content {
	padding-right: var(--space-lg);
}

.story-label {
	color: var(--color-gold-light);
	margin-bottom: var(--space-sm);
}

.story-title {
	font-size: clamp(2.75rem, 4.5vw, 4.5rem);
	margin-bottom: var(--space-md);
	color: var(--color-cream);
}

.story-text {
	color: var(--color-taupe-light);
	margin-bottom: var(--space-md);
}

.story-signature {
	margin-top: var(--space-lg);
}

.signature-name {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.75rem;
	color: var(--color-gold-light);
	margin-bottom: var(--space-xs);
}

.signature-title {
	font-size: 0.9rem;
	color: var(--color-taupe);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.story-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-md);
	position: relative;
}

.story-image:first-child {
	margin-top: var(--space-xl);
}

.story-image {
	aspect-ratio: 3/4;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.story-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease;
}

.story-image:hover img {
	transform: scale(1.035);
	filter: saturate(1.03);
}

/* ========================================
           CRAFTSMANSHIP SECTION
        ======================================== */
.craftsmanship {
	padding: var(--space-2xl) 0;
	background-color: var(--color-ivory);
	overflow: hidden;
}

.craft-grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: var(--space-xl);
	align-items: center;
}

.craft-content {
	order: 1;
}

.craft-image-wrapper {
	order: 2;
	position: relative;
}

.craft-image {
	aspect-ratio: 16/10;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.craft-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease, filter 0.45s ease;
}

.craft-image-wrapper:hover .craft-image img {
	transform: scale(1.03);
	filter: saturate(1.03);
}

.craft-stats {
	position: absolute;
	bottom: -40px;
	left: var(--space-lg);
	right: var(--space-lg);
	display: flex;
	gap: var(--space-lg);
	background-color: var(--color-warm-white);
	padding: var(--space-md) var(--space-lg);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-family: var(--font-display);
	font-size: 2.75rem;
	font-weight: 300;
	color: var(--color-gold-dark);
	line-height: 1;
	margin-bottom: var(--space-xs);
}

.stat-label {
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-taupe);
}

.craft-title {
	font-size: clamp(2.25rem, 3.5vw, 3rem);
	margin-bottom: var(--space-md);
}

.craft-text {
	margin-bottom: var(--space-md);
}

.craft-list {
	list-style: none;
	margin-bottom: var(--space-lg);
}

.craft-list li {
	position: relative;
	padding-left: var(--space-md);
	margin-bottom: var(--space-sm);
	font-size: 1.05rem;
}

.craft-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 6px;
	height: 1px;
	background-color: var(--color-gold);
}

/* ========================================
           VIDEO TESTIMONIAL SECTION
        ======================================== */
.video-testimonial {
	position: relative;
	padding: var(--space-2xl) 0 var(--space-xl);
	background-color: var(--color-cream);
	overflow: hidden;
	isolation: isolate;
}

.video-testimonial::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom, rgba(255, 251, 245, 0.96) 0%, rgba(255, 251, 245, 0) 12%),
		linear-gradient(to top, rgba(255, 251, 245, 0.96) 0%, rgba(255, 251, 245, 0) 12%),
		linear-gradient(115deg, rgba(28, 28, 28, 0.3) 0%, rgba(28, 28, 28, 0.2) 50%, rgba(28, 28, 28, 0.15) 100%),
		url("images/bg3.jpg") center/cover no-repeat;
	filter: blur(1px);
	transform: scale(1.01);
	z-index: -2;
}

.video-testimonial::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(184, 134, 11, 0.09) 0%, rgba(255, 251, 245, 0.56) 58%, rgba(255, 251, 245, 0.64) 100%);
	backdrop-filter: blur(0.5px);
	z-index: -1;
}

.video-testimonial .container {
	position: relative;
	z-index: 2;
}

.video-testimonial-player {
	max-width: 900px;
	margin: 0 auto;
	overflow: hidden;
	background-color: rgba(12, 12, 12, 0.92);
	border-radius: 16px;
	border: 1px solid rgba(166, 144, 128, 0.36);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(4px);
}

.video-testimonial-player video {
	width: 100%;
	height: auto;
	display: block;
}

/* ========================================
           TESTIMONIALS SECTION
        ======================================== */
.testimonials {
	position: relative;
	padding: var(--space-xl) 0 var(--space-2xl);
	background-color: var(--color-cream);
	overflow: hidden;
	isolation: isolate;
}

.testimonials::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom, rgba(255, 251, 245, 0.96) 0%, rgba(255, 251, 245, 0) 12%),
		linear-gradient(to top, rgba(255, 251, 245, 0.96) 0%, rgba(255, 251, 245, 0) 12%),
		linear-gradient(115deg, rgba(28, 28, 28, 0.28) 0%, rgba(28, 28, 28, 0.18) 50%, rgba(28, 28, 28, 0.14) 100%),
		url("images/bg2.jpg") center/cover no-repeat;
	filter: blur(1px);
	transform: scale(1.01);
	z-index: -2;
}

.testimonials::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(184, 134, 11, 0.09) 0%, rgba(255, 251, 245, 0.58) 58%, rgba(255, 251, 245, 0.66) 100%);
	backdrop-filter: blur(0.5px);
	z-index: -1;
}

.testimonials-header {
	text-align: center;
	margin-bottom: var(--space-xl);
	position: relative;
	z-index: 2;
	max-width: 880px;
	margin-left: auto;
	margin-right: auto;
	padding: 1.2rem 1.5rem;
	background: rgba(255, 251, 245, 0.8);
	border: 1px solid rgba(166, 144, 128, 0.32);
	border-radius: 14px;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(6px);
}

.testimonials-title {
	font-size: clamp(2.25rem, 3.5vw, 3rem);
	margin-bottom: var(--space-sm);
}

.testimonials-subtitle {
	color: var(--color-taupe);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
	position: relative;
	z-index: 2;
}

.testimonial-card {
	background: linear-gradient(180deg, rgba(255, 252, 248, 0.96) 0%, rgba(255, 249, 242, 0.93) 100%);
	padding: 2rem 2rem 1.6rem;
	position: relative;
	border: 1px solid rgba(166, 144, 128, 0.28);
	border-radius: 14px;
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(4px);
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.testimonial-card:hover {
	transform: translateY(-6px);
	border-color: rgba(184, 134, 11, 0.38);
	box-shadow: 0 22px 42px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: 0.65rem;
	right: 1rem;
	font-family: var(--font-display);
	font-size: 3.4rem;
	line-height: 1;
	color: var(--color-gold);
	opacity: 0.18;
}

.testimonial-stars {
	display: flex;
	gap: 4px;
	margin-bottom: 1rem;
}

.testimonial-stars span {
	color: var(--color-gold);
	font-size: 0.9rem;
}

.testimonial-text {
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-style: italic;
	line-height: 1.7;
	color: var(--color-charcoal);
	margin-bottom: 1.2rem;
	min-height: 11.5rem;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding-top: 0.9rem;
	border-top: 1px solid rgba(166, 144, 128, 0.35);
}

.testimonial-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	background-color: rgba(247, 243, 237, 0.95);
	border: 1px solid rgba(166, 144, 128, 0.3);
}

.testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-info {
	flex: 1;
}

.testimonial-name {
	font-family: var(--font-body);
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--color-charcoal);
}

.testimonial-detail {
	font-size: 0.9rem;
	color: var(--color-taupe);
}

/* ========================================
           CONTACT / VISIT SECTION
        ======================================== */
.contact {
	padding: var(--space-2xl) 0;
	background-color: var(--color-ivory);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-xl);
}

.contact-content {
	padding-right: var(--space-lg);
}

.contact-title {
	font-size: clamp(2.25rem, 3.5vw, 3rem);
	margin-bottom: var(--space-md);
}

.contact-text {
	margin-bottom: var(--space-lg);
}

.contact-details {
	margin-bottom: var(--space-lg);
}

.contact-item {
	margin-bottom: var(--space-md);
}

.contact-item-label {
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-taupe);
	margin-bottom: var(--space-xs);
}

.contact-item-value {
	font-family: var(--font-display);
	font-size: 1.35rem;
}

.contact-item-value a {
	transition: color 0.3s ease;
}

.contact-item-value a:hover {
	color: var(--color-gold);
}

.contact-form-wrapper {
	background-color: var(--color-warm-white);
	padding: var(--space-lg);
	max-width: 760px;
	margin: 0 auto;
}

.contact-content .contact-form-wrapper {
	max-width: none;
	margin: var(--space-md) 0 0;
}

.contact-map {
	margin-top: var(--space-md);
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(166, 144, 128, 0.3);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
	display: block;
	width: 100%;
	height: 320px;
	border: 0;
}

.form-title {
	font-family: var(--font-display);
	font-size: 1.65rem;
	font-weight: 400;
	margin-bottom: var(--space-md);
}

.form-group {
	margin-bottom: var(--space-md);
}

.form-label {
	display: block;
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 0.875rem 1rem;
	font-family: var(--font-body);
	font-size: 1rem;
	border: 1px solid var(--color-taupe-light);
	background-color: transparent;
	transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--color-gold);
}

.form-textarea {
	min-height: 120px;
	resize: vertical;
}

.form-submit {
	width: 100%;
	padding: 1.1rem;
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background-color: var(--color-charcoal);
	color: var(--color-cream);
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.form-submit:hover {
	background-color: var(--color-gold-dark);
}

/* ========================================
           FOOTER
        ======================================== */
.site-footer {
	background:
		radial-gradient(1200px 420px at 12% -8%, rgba(184, 134, 11, 0.14), transparent 58%),
		radial-gradient(900px 360px at 90% 110%, rgba(184, 134, 11, 0.12), transparent 60%),
		linear-gradient(160deg, #171717 0%, #1c1c1c 55%, #161616 100%);
	color: var(--color-cream);
	padding: 4.5rem 0 1.3rem;
	position: relative;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.35fr 1fr 0.9fr;
	gap: 1.2rem;
	margin-bottom: 1.4rem;
	padding-bottom: 1.4rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Footer cards */
.footer-brand,
.footer-column {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 14px;
	padding: 1.25rem 1.35rem;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.footer-brand:hover,
.footer-column:hover {
	transform: translateY(-3px);
	border-color: rgba(184, 134, 11, 0.34);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.footer-logo {
	font-family: var(--font-display);
	font-size: 2.05rem;
	font-weight: 400;
	letter-spacing: 0.03em;
	margin-bottom: 0.7rem;
}

.footer-logo span {
	color: var(--color-gold-light);
}

.footer-tagline {
	font-size: 0.98rem;
	color: var(--color-taupe);
	line-height: 1.65;
	margin-bottom: 1rem;
}

.footer-contact-info p {
	font-size: 0.95rem;
	color: var(--color-taupe-light);
	margin-bottom: 0.35rem;
	line-height: 1.6;
}

.footer-contact-info a {
	color: var(--color-taupe-light);
	transition: color 0.25s ease;
}

.footer-contact-info a:hover {
	color: var(--color-gold-light);
}

.footer-column-title {
	font-family: var(--font-body);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-gold-light);
	margin-bottom: 0.95rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.7rem;
}

.footer-links a {
	display: inline-block;
	font-size: 0.96rem;
	color: var(--color-taupe-light);
	padding: 0.15rem 0;
	position: relative;
	transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
	color: var(--color-gold-light);
	transform: translateX(4px);
}

.footer-links a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -0.1rem;
	width: 100%;
	height: 1px;
	background: rgba(184, 134, 11, 0.75);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.footer-links a:hover::after {
	transform: scaleX(1);
}

.footer-hours {
	list-style: none;
}

.footer-hours li {
	font-size: 0.95rem;
	color: var(--color-taupe-light);
	line-height: 1.7;
	margin-bottom: 0.6rem;
}

/* Footer Bottom */
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.footer-copyright {
	font-size: 0.82rem;
	color: #9f968b;
	letter-spacing: 0.02em;
}

.footer-social {
	display: flex;
	gap: 0.6rem;
}

.footer-social a {
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-taupe-light);
	padding: 0.5rem 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.03);
	transition: all 0.25s ease;
}

.footer-social a:hover {
	color: var(--color-gold-light);
	border-color: rgba(184, 134, 11, 0.45);
	background: rgba(184, 134, 11, 0.1);
	transform: translateY(-1px);
}

/* ========================================
           RESPONSIVE STYLES
        ======================================== */
@media (max-width: 1200px) {
	.hero {
		grid-template-columns: 1fr 1fr;
	}

	.hero-content {
		padding: var(--space-md) var(--space-md);
		padding-left: var(--space-lg);
	}

	.collections-grid {
		grid-template-columns: repeat(6, 1fr);
	}

	.collection-item:nth-child(1) {
		grid-column: 1 / 4;
		grid-row: 1 / 2;
	}

	.collection-item:nth-child(2) {
		grid-column: 4 / 7;
		grid-row: 1 / 2;
	}

	.collection-item:nth-child(3) {
		grid-column: 1 / 3;
		grid-row: 2 / 3;
	}

	.collection-item:nth-child(4) {
		grid-column: 3 / 5;
		grid-row: 2 / 3;
	}

	.collection-item:nth-child(5) {
		grid-column: 5 / 7;
		grid-row: 2 / 3;
	}

	.collection-item:nth-child(1) .collection-image {
		min-height: 350px;
	}
}

@media (max-width: 1100px) {
	.logo img {
		height: 56px;
	}

	.nav-main {
		gap: var(--space-md);
	}

	.nav-main a:not(.nav-cta) {
		font-size: 0.85rem;
	}

	.nav-cta {
		font-size: 0.75rem;
		padding: 0.7rem 1rem;
	}

	.craft-stats {
		gap: var(--space-md);
		padding: var(--space-sm) var(--space-md);
		left: var(--space-md);
		right: var(--space-md);
	}
}

@media (max-width: 860px) {
	.nav-main {
		display: none;
	}

	.header-inner {
		padding: 0.3rem 0.65rem;
	}

	.logo img {
		height: 44px;
	}

	.menu-toggle {
		display: flex;
	}

	.hero {
		grid-template-columns: 1fr;
		height: auto;
		max-height: none;
	}

	.hero-content {
		padding: calc(var(--space-lg) + 60px) var(--space-md) var(--space-lg);
		order: 2;
	}

	.hero-image {
		order: 1;
		height: 400px;
		clip-path: none;
	}

	.hero-image-overlay {
		display: none;
	}

	.featured-grid,
	.story-grid,
	.craft-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.featured-content {
		padding: 1.15rem;
		padding-right: 1.15rem;
		order: 2;
	}

	.featured-title {
		font-size: clamp(2rem, 8vw, 2.5rem);
	}

	.featured-details {
		padding: 0.85rem 0;
		margin-bottom: 1rem;
	}

	.detail-row {
		gap: 0.8rem;
		align-items: flex-start;
	}

	.detail-value {
		text-align: right;
		max-width: 58%;
		word-break: break-word;
	}

	.featured-image-wrapper {
		order: 1;
	}

	.story-content {
		padding-right: 0;
	}

	.craft-content {
		order: 2;
	}

	.craft-image-wrapper {
		order: 1;
	}

	.craft-stats {
		position: static;
		margin-top: var(--space-md);
		justify-content: center;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: var(--space-md);
	}

	.contact-content {
		padding-right: 0;
	}

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

	.footer-brand {
		grid-column: 1 / -1;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 0.8rem;
		text-align: center;
	}
}

@media (max-width: 768px) {
	.collections-grid {
		grid-template-columns: 1fr 1fr;
	}

	.collection-item:nth-child(1) {
		grid-column: 1 / -1;
		grid-row: auto;
	}

	.collection-item:nth-child(2),
	.collection-item:nth-child(3),
	.collection-item:nth-child(4),
	.collection-item:nth-child(5) {
		grid-column: auto;
		grid-row: auto;
	}

	.collection-item:nth-child(1) .collection-image {
		min-height: 300px;
	}

	.collection-overlay {
		opacity: 1;
	}

	.story-images {
		grid-template-columns: 1fr;
		gap: var(--space-sm);
	}

	.story-image:first-child {
		margin-top: 0;
	}

	.section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--space-md);
	}

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

	.testimonial-card:nth-child(3) {
		grid-column: 1 / -1;
	}
}

@media (max-width: 576px) {
	:root {
		--space-lg: 3rem;
		--space-xl: 4rem;
		--space-2xl: 6rem;
	}

	.hero-actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-header {
		padding: 0.55rem 0;
	}

	.header-inner {
		min-height: 56px;
		padding: 0.28rem 0.55rem;
	}

	.logo img {
		height: 38px;
	}

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

	.collection-item:nth-child(n) {
		grid-column: 1;
	}

	.craft-stats {
		flex-direction: column;
		gap: var(--space-md);
	}

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

	.testimonial-card:nth-child(3) {
		grid-column: auto;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 0.9rem;
	}

	.footer-brand,
	.footer-column {
		padding: 1rem 1rem;
		text-align: center;
	}

	.footer-social {
		flex-wrap: wrap;
		justify-content: center;
	}

	.featured-content {
		padding: 0.95rem;
	}

	.featured-label {
		letter-spacing: 0.1em;
	}

	.featured-title {
		font-size: clamp(1.8rem, 10vw, 2.2rem);
		margin-bottom: 0.8rem;
	}

	.featured-description {
		font-size: 0.98rem;
		line-height: 1.65;
	}

	.detail-row {
		flex-direction: column;
		gap: 0.18rem;
	}

	.detail-value {
		text-align: left;
		max-width: 100%;
	}

	.featured-price {
		font-size: 1.8rem;
	}
}

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

	.contact-page .contact-map iframe {
		height: 340px;
	}
}

/* Mobile Navigation */
.mobile-nav {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 400px;
	height: 100vh;
	height: 100dvh;
	background-color: var(--color-warm-white);
	z-index: 2000;
	padding: var(--space-xl) var(--space-md);
	transition: right 0.4s ease;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.mobile-nav.active {
	right: 0;
}

.mobile-nav-close {
	position: absolute;
	top: var(--space-md);
	right: var(--space-md);
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--color-charcoal);
}

.mobile-nav-links {
	list-style: none;
	margin-top: var(--space-xl);
}

.mobile-nav-links li {
	margin-bottom: var(--space-md);
}

.mobile-nav-links a {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 400;
	color: var(--color-charcoal);
	transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
	color: var(--color-gold);
}

.mobile-nav-cta {
	margin-top: var(--space-xl);
	padding-bottom: var(--space-md);
}

.mobile-overlay {
	position: fixed;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 1999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Scroll To Top Button */
.scroll-top-btn {
	position: fixed;
	right: 1.4rem;
	bottom: 1.4rem;
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(166, 144, 128, 0.42);
	border-radius: 12px;
	background: rgba(28, 28, 28, 0.9);
	color: var(--color-cream);
	font-size: 1.2rem;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(8px);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	z-index: 1500;
}

.scroll-top-btn.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-top-btn:hover {
	background: var(--color-gold-dark);
	border-color: rgba(184, 134, 11, 0.7);
	transform: translateY(-2px);
}

.scroll-top-btn:focus-visible {
	outline: 2px solid rgba(184, 134, 11, 0.7);
	outline-offset: 3px;
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	left: 1.2rem;
	right: 1.2rem;
	bottom: 1rem;
	max-width: 980px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 1.2rem;
	padding: 1.05rem 1.15rem 1.05rem 1.25rem;
	background: linear-gradient(180deg, rgba(255, 252, 248, 0.96) 0%, rgba(255, 249, 242, 0.93) 100%);
	border: 1px solid rgba(166, 144, 128, 0.4);
	border-left: 3px solid rgba(184, 134, 11, 0.7);
	border-radius: 12px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
	backdrop-filter: blur(8px);
	z-index: 1600;
	opacity: 0;
	visibility: hidden;
	transform: translateY(14px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.cookie-banner.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.cookie-banner-content {
	min-width: 0;
}

.cookie-banner-title {
	font-family: var(--font-body);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-gold-dark);
	margin: 0 0 0.35rem 0;
}

.cookie-banner-text {
	font-size: 0.92rem;
	line-height: 1.55;
	color: #4a4741;
	margin: 0;
}

.cookie-banner-actions {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}

.cookie-btn {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.68rem 0.95rem;
	min-width: 118px;
	border-radius: 8px;
	cursor: pointer;
	border: 1px solid transparent;
	transition: all 0.2s ease;
}

.cookie-btn-secondary {
	background: rgba(255, 255, 255, 0.86);
	color: var(--color-charcoal);
	border-color: rgba(166, 144, 128, 0.46);
}

.cookie-btn-secondary:hover {
	background: rgba(245, 241, 234, 1);
	border-color: rgba(166, 144, 128, 0.64);
}

.cookie-btn-primary {
	background: var(--color-charcoal);
	color: var(--color-cream);
}

.cookie-btn-primary:hover {
	background: var(--color-gold-dark);
}

.cookie-btn:focus-visible {
	outline: 2px solid rgba(184, 134, 11, 0.7);
	outline-offset: 2px;
}

/* Contact Form Modal */
.form-modal {
	position: fixed;
	inset: 0;
	z-index: 2600;
	display: none;
	align-items: center;
	justify-items: center;
	padding: 1rem;
}

/* About Page - Text-only Blocks */
.about-text-section {
	padding: var(--space-2xl) 0;
	background-color: var(--color-cream);
}

.about-text-section--alt {
	background: linear-gradient(180deg, rgba(255, 251, 245, 0.7) 0%, rgba(247, 243, 237, 0.55) 100%);
}

.about-text-section .section-header {
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	gap: var(--space-sm);
	margin-bottom: var(--space-xl);
}

.about-text-section .section-header-left {
	text-align: center;
	max-width: 820px;
}

.about-text-section .section-title {
	margin-left: auto;
	margin-right: auto;
}

/* Communication: one common plate for the whole header text */
#communication.about-text-section .section-header-left {
	display: inline-block;
	padding: 0.95rem 1.25rem;
	background: rgba(255, 251, 245, 0.86);
	border: 1px solid rgba(166, 144, 128, 0.34);
	border-radius: 16px;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(6px);
}

#communication.about-text-section .text-label,
#communication.about-text-section .section-title,
#communication.about-text-section .section-subtitle {
	background: transparent;
	border: none;
	box-shadow: none;
	backdrop-filter: none;
	padding: 0;
	border-radius: 0;
}

#communication.about-text-section .text-label {
	margin: 0;
}

#communication.about-text-section .section-title {
	display: block;
	margin: 0 0 var(--space-sm);
}

#communication.about-text-section .section-subtitle {
	display: block;
	margin: 0;
	text-align: center;
}

/* Communication Background (bg4) */
#communication.about-text-section {
	background-color: transparent;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

#communication.about-text-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom, rgba(247, 243, 237, 0.92) 0%, rgba(247, 243, 237, 0) 12%),
		linear-gradient(to top, rgba(247, 243, 237, 0.92) 0%, rgba(247, 243, 237, 0) 12%),
		url("images/bg4.jpg") center/cover no-repeat;
	filter: blur(1px);
	transform: scale(1.01);
	z-index: -2;
}

#communication.about-text-section::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(184, 134, 11, 0.08) 0%, rgba(255, 251, 245, 0.52) 55%, rgba(255, 251, 245, 0.62) 100%);
	backdrop-filter: blur(0.5px);
	z-index: -1;
}

#communication.about-text-section .container,
#communication.about-text-section .section-header,
#communication.about-text-section .section-header-left {
	position: relative;
	z-index: 2;
}

.about-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
}

.about-split-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-md);
}

.about-card {
	background: linear-gradient(180deg, rgba(255, 252, 248, 0.96) 0%, rgba(255, 249, 242, 0.93) 100%);
	border: 1px solid rgba(166, 144, 128, 0.26);
	border-radius: 14px;
	padding: 1.45rem 1.35rem;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.about-card--compact {
	padding: 1.35rem 1.25rem;
}

.about-card:hover {
	transform: translateY(-4px);
	border-color: rgba(184, 134, 11, 0.34);
	box-shadow: 0 20px 42px rgba(0, 0, 0, 0.12);
}

.about-card-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.55rem;
	margin-bottom: 0.7rem;
	color: var(--color-charcoal);
}

.about-card-text {
	margin-bottom: 0.8rem;
}

.about-card-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.about-card-list li {
	position: relative;
	padding-left: 1.2rem;
	color: var(--color-charcoal-soft);
}

.about-card-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(184, 134, 11, 0.75);
	box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.12);
}

.about-principles-card {
	background: linear-gradient(180deg, rgba(255, 252, 248, 0.96) 0%, rgba(255, 249, 242, 0.93) 100%);
	border: 1px solid rgba(166, 144, 128, 0.26);
	border-radius: 14px;
	padding: 1.6rem 1.45rem;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.about-principles-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.about-principles-list li {
	color: var(--color-charcoal-soft);
	font-size: 1.05rem;
	line-height: 1.7;
	padding-left: 1.25rem;
	position: relative;
}

.about-principles-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.7em;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: rgba(184, 134, 11, 0.75);
	box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.12);
}

@media (max-width: 1100px) {
	.about-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 860px) {
	.about-text-section {
		padding: var(--space-xl) 0;
	}

	.about-cards-grid {
		grid-template-columns: 1fr;
	}

	.about-split-grid {
		grid-template-columns: 1fr;
	}
}

.form-modal.visible {
	display: grid;
}

.form-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(20, 20, 20, 0.55);
	backdrop-filter: blur(2px);
}

.form-modal-dialog {
	position: relative;
	max-width: 540px;
	width: min(540px, 100%);
	margin: 0;
	background: linear-gradient(180deg, rgba(255, 252, 248, 0.98) 0%, rgba(255, 249, 242, 0.95) 100%);
	border: 1px solid rgba(166, 144, 128, 0.36);
	border-radius: 14px;
	padding: 1.35rem 1.25rem 1.2rem;
	box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

.form-modal-close {
	position: absolute;
	top: 0.45rem;
	right: 0.55rem;
	border: none;
	background: transparent;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	color: var(--color-charcoal-soft);
}

.form-modal-badge {
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	margin-bottom: 0.45rem;
	color: var(--color-gold-dark);
}

.form-modal-title {
	font-family: var(--font-display);
	font-size: 2rem;
	line-height: 1.15;
	margin-bottom: 0.6rem;
	color: var(--color-charcoal);
}

.form-modal-text {
	font-size: 0.98rem;
	line-height: 1.65;
	color: var(--color-charcoal-soft);
	margin-bottom: 1rem;
	white-space: pre-line;
}

.form-modal.error .form-modal-badge {
	color: #b13f2e;
}

.form-modal.error .form-modal-title {
	color: #8f2f23;
}

.form-modal-action {
	padding: 0.82rem 1.3rem;
}

@media (max-width: 576px) {
	.cookie-banner {
		left: 0.8rem;
		right: 0.8rem;
		grid-template-columns: 1fr;
		padding: 0.95rem;
		gap: 0.85rem;
	}

	.cookie-banner-actions {
		width: 100%;
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.cookie-btn {
		flex: 1;
		min-width: 0;
	}
}

/* Policy Page */
.policy-page {
	padding-top: 120px;
	background-color: var(--color-cream);
}

.policy-section {
	padding: var(--space-xl) 0 var(--space-2xl);
}

.policy-card {
	max-width: 980px;
	margin: 0 auto;
	padding: 2rem 2.1rem;
	background: rgba(255, 252, 248, 0.92);
	border: 1px solid rgba(166, 144, 128, 0.32);
	border-radius: 16px;
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(6px);
}

.policy-title {
	font-size: clamp(2.1rem, 4vw, 3rem);
	margin-bottom: 1rem;
}

.policy-intro {
	margin-bottom: 1.4rem;
}

.policy-subtitle {
	font-family: var(--font-body);
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-gold-dark);
	margin: 1.4rem 0 0.6rem;
}

.policy-card .text-body {
	font-size: 1rem;
	line-height: 1.75;
}

.policy-card a {
	color: var(--color-gold-dark);
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Contact Page Enhancements */
.contact-page .contact {
	background-color: transparent;
	padding-top: var(--space-xl);
}

.contact-page .contact-grid {
	grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
	align-items: start;
	gap: 1.35rem;
}

.contact-page .contact-content {
	padding-right: 0;
	padding: 1.35rem;
	background: rgba(255, 252, 248, 0.92);
	border: 1px solid rgba(166, 144, 128, 0.3);
	border-radius: 14px;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	gap: 0.95rem;
}

.contact-page .contact-map-panel {
	padding: 1.35rem;
	background: rgba(255, 252, 248, 0.92);
	border: 1px solid rgba(166, 144, 128, 0.3);
	border-radius: 14px;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 104px;
}

.contact-page .contact-map-panel .text-label {
	margin-bottom: 0.7rem;
}

.contact-page .contact-text {
	margin-bottom: 0.4rem;
	max-width: 52ch;
}

.contact-page .contact-details {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-bottom: 0.4rem;
}

.contact-page .contact-item {
	margin-bottom: 0;
	padding: 0.75rem 0.85rem;
	background: rgba(255, 255, 255, 0.58);
	border: 1px solid rgba(166, 144, 128, 0.22);
	border-radius: 10px;
}

.contact-page .contact-item-value {
	font-family: var(--font-body);
	font-size: 1.03rem;
	line-height: 1.5;
}

.contact-page .contact-content .contact-form-wrapper {
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(166, 144, 128, 0.28);
	border-radius: 12px;
	padding: 1.15rem;
	margin-top: 0.25rem;
}

.contact-page .contact-map {
	margin-top: 0;
	border-radius: 12px;
}

.contact-page .contact-map iframe {
	height: 430px;
}

@media (max-width: 576px) {
	.policy-page {
		padding-top: 98px;
	}

	.policy-section {
		padding: var(--space-lg) 0 var(--space-xl);
	}

	.policy-card {
		padding: 1.2rem 1.05rem;
		border-radius: 12px;
	}

	.policy-title {
		font-size: clamp(1.8rem, 9vw, 2.2rem);
	}

	.policy-subtitle {
		font-size: 0.9rem;
	}

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

	.contact-page .contact-content,
	.contact-page .contact-map-panel {
		padding: 1rem;
	}

	.contact-page .contact-map-panel {
		position: static;
	}

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

	.contact-page .contact-map iframe {
		height: 300px;
	}

	.form-modal-dialog {
		width: min(540px, calc(100vw - 1.6rem));
		padding: 1.05rem 0.95rem 0.95rem;
	}

	.form-modal-title {
		font-size: 1.6rem;
	}
}

/* Services Cards Page */
.services-page {
	padding-top: 120px;
	background-color: var(--color-cream);
	padding-bottom: 3rem;
}

.services-cards-section {
	padding: var(--space-2xl) 0;
}

.services-cards-section .section-header {
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: var(--space-sm);
	margin-bottom: var(--space-xl);
}

.services-cards-section .section-header-left {
	text-align: center;
	max-width: 760px;
}

.services-cards-section .section-title {
	margin-left: auto;
	margin-right: auto;
}

.services-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
}

.service-card {
	background: linear-gradient(180deg, rgba(255, 252, 248, 0.96) 0%, rgba(255, 249, 242, 0.93) 100%);
	border: 1px solid rgba(166, 144, 128, 0.28);
	border-radius: 16px;
	padding: 1.55rem 1.35rem 1.45rem;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
	min-height: 195px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 0.9rem;
	position: relative;
	overflow: hidden;
}

.service-media {
	width: 100%;
	aspect-ratio: 16/9;
	overflow: hidden;
	border-radius: 12px;
	border: 1px solid rgba(166, 144, 128, 0.25);
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
	background: rgba(247, 243, 237, 0.6);
}

.service-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.45s ease, filter 0.45s ease;
}

.service-card:hover .service-media img {
	transform: scale(1.05);
	filter: saturate(1.05) contrast(1.02);
}

.service-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(520px 180px at 20% 0%, rgba(184, 134, 11, 0.18) 0%, rgba(184, 134, 11, 0) 60%);
	opacity: 0.65;
	pointer-events: none;
}

.service-card:hover {
	transform: translateY(-4px);
	border-color: rgba(184, 134, 11, 0.36);
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.service-title {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 400;
	margin-top: 0.1rem;
	margin-bottom: 0;
	color: var(--color-charcoal);
}

.service-text {
	color: var(--color-charcoal-soft);
	flex: 1;
	margin-bottom: 0;
	line-height: 1.7;
	position: relative;
	z-index: 1;
}

.service-learn-more {
	align-self: flex-start;
	margin-top: auto;
	padding: 0.9rem 1.25rem;
	border-radius: 10px;
	position: relative;
	z-index: 1;
}

.service-learn-more:hover {
	transform: translateY(-1px);
}

/* Service Details Modal */
.service-modal {
	position: fixed;
	inset: 0;
	z-index: 2550;
	display: none;
	align-items: center;
	justify-items: center;
	padding: 1rem;
}

.service-modal.visible {
	display: grid;
}

.service-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(16, 16, 16, 0.6);
	backdrop-filter: blur(4px);
}

.service-modal-dialog {
	position: relative;
	width: min(760px, 100%);
	margin: 0;
	padding: 1.55rem 1.45rem 1.35rem;
	background: linear-gradient(180deg, rgba(255, 253, 250, 0.99) 0%, rgba(255, 250, 244, 0.96) 100%);
	border: 1px solid rgba(166, 144, 128, 0.38);
	border-radius: 16px;
	box-shadow: 0 28px 56px rgba(0, 0, 0, 0.26);
	overflow: hidden;
}

.service-modal-dialog::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, rgba(184, 134, 11, 0.85) 0%, rgba(212, 168, 83, 0.7) 60%, rgba(212, 168, 83, 0.45) 100%);
}

.service-modal-close {
	position: absolute;
	top: 0.8rem;
	right: 0.85rem;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(166, 144, 128, 0.38);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.82);
	font-size: 1.2rem;
	line-height: 1;
	cursor: pointer;
	color: var(--color-charcoal-soft);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.service-modal-close:hover {
	background: rgba(184, 134, 11, 0.12);
	border-color: rgba(184, 134, 11, 0.45);
	color: var(--color-charcoal);
}

.service-modal-badge {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 0.55rem;
	color: var(--color-gold-dark);
}

.service-modal-title {
	font-family: var(--font-display);
	font-size: 2.2rem;
	line-height: 1.15;
	margin-bottom: 0.7rem;
	color: var(--color-charcoal);
}

.service-modal-text {
	font-size: 1.04rem;
	line-height: 1.75;
	color: var(--color-charcoal-soft);
	margin-bottom: 1.15rem;
	white-space: pre-line;
	max-width: 60ch;
}

.service-modal-action {
	padding: 0.9rem 1.35rem;
	min-width: 230px;
	letter-spacing: 0.11em;
	font-weight: 600;
	border-radius: 10px;
}

.service-modal-action:hover {
	transform: translateY(-1px);
}

@media (max-width: 1100px) {
	.services-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Tariff Email Confirmation Modals */
.email-verify-modal,
.email-status-modal {
	position: fixed;
	inset: 0;
	z-index: 2570;
	display: none;
	align-items: center;
	justify-items: center;
	padding: 1rem;
}

.email-verify-modal.visible,
.email-status-modal.visible {
	display: grid;
}

.email-verify-overlay,
.email-status-overlay {
	position: absolute;
	inset: 0;
	background: rgba(16, 16, 16, 0.6);
	backdrop-filter: blur(4px);
}

.email-verify-dialog,
.email-status-dialog {
	position: relative;
	width: min(560px, 100%);
	padding: 1.35rem 1.2rem 1.15rem;
	background: linear-gradient(180deg, rgba(255, 253, 250, 0.99) 0%, rgba(255, 250, 244, 0.96) 100%);
	border: 1px solid rgba(166, 144, 128, 0.38);
	border-radius: 14px;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
	overflow: hidden;
}

.email-verify-dialog::before,
.email-status-dialog::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, rgba(184, 134, 11, 0.85) 0%, rgba(212, 168, 83, 0.7) 60%, rgba(212, 168, 83, 0.45) 100%);
}

.email-verify-close,
.email-status-close {
	position: absolute;
	top: 0.65rem;
	right: 0.7rem;
	width: 32px;
	height: 32px;
	border: 1px solid rgba(166, 144, 128, 0.38);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.82);
	font-size: 1.15rem;
	line-height: 1;
	cursor: pointer;
	color: var(--color-charcoal-soft);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.email-verify-badge,
.email-status-badge {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 0.45rem;
	color: var(--color-gold-dark);
}

.email-verify-title,
.email-status-title {
	font-family: var(--font-display);
	font-size: 1.9rem;
	line-height: 1.15;
	margin-bottom: 0.55rem;
	color: var(--color-charcoal);
}

.email-verify-text,
.email-status-text {
	font-size: 1rem;
	line-height: 1.68;
	color: var(--color-charcoal-soft);
	margin-bottom: 1rem;
}

.email-verify-dialog .form-label {
	margin-bottom: 0;
}

#emailVerifyForm {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}

.email-verify-action.btn-primary {
	width: 100%;
	justify-content: center;
	text-align: center;
	padding: 0.95rem 1.1rem;
	border-radius: 10px;
	background: linear-gradient(180deg, #1d1d1d 0%, #0f0f0f 100%);
	border: 1px solid rgba(184, 134, 11, 0.55);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
	transition: transform 0.18s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.email-verify-action.btn-primary:hover {
	background: linear-gradient(180deg, var(--color-gold-dark) 0%, #6f5412 100%);
	border-color: rgba(184, 134, 11, 0.8);
	transform: translateY(-1px);
}

.email-status-action {
	width: 100%;
	justify-content: center;
	text-align: center;
}

.email-verify-action,
.email-status-action {
	width: 100%;
	justify-content: center;
}

.email-status-action.btn-primary {
	width: 100%;
	justify-content: center;
	text-align: center;
	padding: 0.95rem 1.1rem;
	border-radius: 10px;
	background: linear-gradient(180deg, #1d1d1d 0%, #0f0f0f 100%);
	border: 1px solid rgba(184, 134, 11, 0.55);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
	color: var(--color-cream);
	transition: transform 0.18s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.email-status-action.btn-primary:hover {
	background: linear-gradient(180deg, var(--color-gold-dark) 0%, #6f5412 100%);
	border-color: rgba(184, 134, 11, 0.8);
	transform: translateY(-1px);
}

.email-status-text {
	margin-bottom: 1.2rem;
}

/* Ensure consistent spacing in status modal */
#emailStatusModal form,
#emailStatusModal p,
#emailStatusModal .email-status-action {
	margin-top: 0;
}

#emailStatusModal .email-status-text {
	margin-bottom: 1.2rem;
}

.email-status-modal.error .email-status-badge,
.email-status-modal.error .email-status-title {
	color: #9b3325;
}

@media (max-width: 860px) {
	.services-page {
		padding-top: 98px;
	}

	.services-cards-section {
		padding: var(--space-xl) 0;
	}
}

@media (max-width: 576px) {
	.services-page {
		padding-top: 98px;
	}

	.services-cards-grid {
		grid-template-columns: 1fr;
		gap: var(--space-sm);
	}

	.service-card {
		padding: 1.25rem 1.05rem 1.1rem;
		min-height: auto;
	}

	.service-media {
		aspect-ratio: 16/8.2;
	}

	.service-learn-more {
		width: 100%;
		text-align: center;
		justify-content: center;
	}

	.service-title {
		font-size: 1.35rem;
	}

	.service-modal-dialog {
		width: min(700px, calc(100vw - 1.6rem));
		padding: 1.05rem 0.95rem 0.95rem;
	}

	.service-modal-title {
		font-size: 1.75rem;
	}

	.service-modal-text {
		font-size: 0.98rem;
	}

	.service-modal-action {
		width: 100%;
		justify-content: center;
		text-align: center;
		min-width: 0;
	}
}

/* Tariffs Block */
.tariffs-section {
	padding: var(--space-2xl) 0;
}

.tariffs-section .section-header {
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: var(--space-sm);
	margin-bottom: var(--space-xl);
}

.tariffs-section .section-header-left {
	text-align: center;
	max-width: 760px;
}

.tariffs-section .section-title {
	margin-left: auto;
	margin-right: auto;
}

.tariffs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
}

.tariff-card {
	background: linear-gradient(180deg, rgba(255, 252, 248, 0.96) 0%, rgba(255, 249, 242, 0.93) 100%);
	border: 1px solid rgba(166, 144, 128, 0.28);
	border-radius: 16px;
	padding: 1.7rem 1.45rem 1.55rem;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	min-height: 470px;
}

.tariff-card::before {
	content: '';
	position: absolute;
	inset: -2px;
	background: radial-gradient(540px 180px at 30% 0%, rgba(184, 134, 11, 0.18) 0%, rgba(184, 134, 11, 0) 62%);
	opacity: 0.8;
	pointer-events: none;
}

.tariff-card:hover {
	transform: translateY(-5px);
	border-color: rgba(184, 134, 11, 0.36);
	box-shadow: 0 22px 42px rgba(0, 0, 0, 0.12);
}

.tariff-label {
	position: relative;
	z-index: 1;
	font-size: 0.85rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--color-taupe);
	margin-bottom: 1.1rem;
}

.tariff-description {
	position: relative;
	z-index: 1;
	margin-top: -0.35rem;
	margin-bottom: 0.15rem;
	color: var(--color-charcoal-soft);
	font-size: 0.98rem;
	line-height: 1.7;
}

.tariff-price {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: baseline;
	gap: 0.35rem;
	margin-bottom: 1rem;
}

.tariff-currency {
	font-family: var(--font-display);
	font-size: 1.4rem;
	color: var(--color-gold-dark);
}

.tariff-amount {
	font-family: var(--font-display);
	font-size: 3rem;
	font-weight: 300;
	color: var(--color-gold-dark);
	letter-spacing: -0.02em;
}

.tariff-period {
	color: var(--color-taupe);
	font-size: 0.95rem;
}

.tariff-features {
	position: relative;
	z-index: 1;
	list-style: none;
	margin: 0 0 1.2rem 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.tariff-features li {
	color: var(--color-charcoal-soft);
	font-size: 1rem;
	line-height: 1.6;
	position: relative;
	padding-left: 1.15rem;
}

.tariff-features li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55rem;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(184, 134, 11, 0.75);
	box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.12);
}

.tariff-cta {
	position: relative;
	z-index: 1;
	margin-top: auto;
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.2rem;
	border-radius: 10px;
	text-transform: uppercase;
}

.tariff-cta:not(.tariff-cta--featured) {
	background: transparent;
	background-color: transparent;
	color: var(--color-charcoal);
	border: 1px solid rgba(28, 28, 28, 0.5);
	box-shadow: none;
}

.tariff-cta:not(.tariff-cta--featured):hover {
	background-color: var(--color-charcoal);
	color: var(--color-cream);
	border-color: var(--color-charcoal);
}

.tariff-cta--featured {
	background-color: var(--color-charcoal) !important;
	color: var(--color-cream) !important;
	border: 1px solid rgba(184, 134, 11, 0.75) !important;
	border-color: rgba(184, 134, 11, 0.75) !important;
	box-shadow: 0 14px 30px rgba(184, 134, 11, 0.22) !important;
}

.tariff-card--featured {
	border-color: rgba(184, 134, 11, 0.55);
}

.tariff-card--featured::after {
	content: 'Most Popular';
	position: absolute;
	top: 1.2rem;
	right: 1.2rem;
	z-index: 1;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-cream);
	background: rgba(28, 28, 28, 0.92);
	border: 1px solid rgba(184, 134, 11, 0.45);
	padding: 0.5rem 0.7rem;
	border-radius: 999px;
}

@media (max-width: 1100px) {
	.tariffs-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tariff-card--featured::after {
		top: 1rem;
		right: 1rem;
	}
}

@media (max-width: 860px) {
	.tariffs-section {
		padding: var(--space-xl) 0;
	}

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

	.tariff-card {
		min-height: auto;
	}
}

@media (max-width: 576px) {
	.tariffs-grid {
		gap: var(--space-sm);
	}

	.tariff-card {
		padding: 1.45rem 1.15rem 1.35rem;
	}
}