/**
 * E-Class Elements — core stylesheet.
 *
 * Everything is scoped under .ecel-* so nothing leaks into the theme.
 * Values here are the mockup baseline; every one of them is overridden the
 * moment a designer touches the matching Elementor control.
 *
 * Font families assume Playfair Display / Montserrat / Great Vibes are
 * available (they are registered in the Elementor kit). Fallbacks are safe.
 */

/* ---------------------------------------------------------------------------
   Tokens — zero-specificity so widget controls always win
   --------------------------------------------------------------------------- */
:where(
	.ecel-header, .ecel-hero, .ecel-strip, .ecel-banner, .ecel-secheading,
	.ecel-pkg, .ecel-addons, .ecel-contactbar, .ecel-card, .ecel-flist,
	.ecel-cta, .ecel-gallery, .ecel-footer
) {
	--ecel-plum: #26030A;
	--ecel-burgundy: #3A0A16;
	--ecel-gold: #C79542;
	--ecel-gold-light: #E5CC92;
	--ecel-gold-deep: #AD7F38;
	--ecel-cream: #F5ECE1;
	--ecel-card: #FDF8F1;
	--ecel-on-dark: #E8DCCB;
	--ecel-body: #3F3230;

	--ecel-serif: "Playfair Display", Georgia, "Times New Roman", serif;
	--ecel-sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
	--ecel-script: "Great Vibes", "Playfair Display", cursive;
}

/* Shared layout wrapper */
.ecel-inner {
	width: 100%;
	max-width: 1240px;
	margin-inline: auto;
}

.ecel-section {
	position: relative;
	overflow: hidden;
}

/* ---------------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------------- */
.ecel-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px 34px;
	border: 1px solid transparent;
	border-radius: 0;
	font-family: var(--ecel-sans);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	line-height: 1.2;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.ecel-btn:hover,
.ecel-btn:focus-visible { text-decoration: none; }

/* ---------------------------------------------------------------------------
   Site Header
   --------------------------------------------------------------------------- */
.ecel-header { background-color: var(--ecel-plum); }

.ecel-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 20px;
}

.ecel-header__brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	flex-shrink: 0;
}

.ecel-header__logo img { display: block; width: 52px; height: auto; }

.ecel-header__lockup { display: flex; flex-direction: column; line-height: 1.1; }

.ecel-header__name {
	font-family: var(--ecel-serif);
	font-size: 26px;
	font-weight: 600;
	color: #fff;
	letter-spacing: .3px;
}

.ecel-header__sub {
	font-family: var(--ecel-sans);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 3.2px;
	text-transform: uppercase;
	color: var(--ecel-gold);
	margin-top: 2px;
}

.ecel-header__right { display: flex; align-items: center; gap: 26px; }

.ecel-header__nav > ul {
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ecel-header__nav li { position: relative; list-style: none; }

.ecel-header__nav a {
	position: relative;
	display: block;
	padding: 6px 0;
	font-family: var(--ecel-sans);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--ecel-cream);
	text-decoration: none;
	transition: color .2s ease;
}

.ecel-underline-yes .ecel-header__nav .current-menu-item > a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background-color: var(--ecel-gold);
}

/* Sub menus */
.ecel-header__nav ul ul {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 210px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background-color: var(--ecel-burgundy);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s;
	z-index: 50;
}

.ecel-header__nav li:hover > ul,
.ecel-header__nav li:focus-within > ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.ecel-header__nav ul ul a { padding: 9px 18px; }

.ecel-header__btn { padding: 14px 26px; font-size: 12px; }

/* Hamburger */
.ecel-header__toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	background: none;
	color: var(--ecel-gold);
	cursor: pointer;
}

.ecel-header__bars,
.ecel-header__bars::before,
.ecel-header__bars::after {
	display: block;
	width: 22px;
	height: 2px;
	background-color: currentColor;
	transition: transform .25s ease, opacity .2s ease;
}

.ecel-header__bars {
	position: relative;
	margin: 0 auto;
}

.ecel-header__bars::before,
.ecel-header__bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.ecel-header__bars::before { top: -7px; }
.ecel-header__bars::after { top: 7px; }

.ecel-header__toggle[aria-expanded="true"] .ecel-header__bars { background-color: transparent; }
.ecel-header__toggle[aria-expanded="true"] .ecel-header__bars::before { transform: translateY(7px) rotate(45deg); }
.ecel-header__toggle[aria-expanded="true"] .ecel-header__bars::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------------- */
.ecel-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 88vh;
	padding: 120px 20px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.ecel-hero__overlay {
	position: absolute;
	inset: 0;
	background-color: var(--ecel-plum);
	opacity: .78;
	pointer-events: none;
}

.ecel-hero__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	z-index: 1;
}

.ecel-hero__text { max-width: 620px; }

.ecel-hero__eyebrow {
	display: block;
	margin-bottom: 14px;
	font-family: var(--ecel-serif);
	font-size: 22px;
	font-style: italic;
	font-weight: 500;
	color: var(--ecel-gold);
}

.ecel-hero__title {
	margin: 0 0 22px;
	font-family: var(--ecel-serif);
	font-size: 66px;
	font-weight: 600;
	line-height: 1.12;
	color: #fff;
}

.ecel-hero__desc {
	margin: 0 0 30px;
	font-family: var(--ecel-sans);
	font-size: 17px;
	line-height: 1.85;
	color: var(--ecel-on-dark);
}

.ecel-hero__actions { display: flex; flex-wrap: wrap; gap: 18px; }

/* ---------------------------------------------------------------------------
   Category Strip
   --------------------------------------------------------------------------- */
.ecel-strip { background-color: var(--ecel-burgundy); padding: 20px; }

.ecel-strip__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ecel-strip__li { display: inline-flex; align-items: center; gap: 22px; list-style: none; }

.ecel-strip__item {
	font-family: var(--ecel-sans);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2.2px;
	text-transform: uppercase;
	color: var(--ecel-gold-light);
	text-decoration: none;
	transition: color .2s ease;
}

.ecel-strip__sep { color: var(--ecel-gold); font-size: 10px; line-height: 1; }

/* ---------------------------------------------------------------------------
   Page Banner
   --------------------------------------------------------------------------- */
.ecel-banner {
	position: relative;
	display: flex;
	align-items: center;
	padding: 76px 20px 70px;
	background-color: var(--ecel-plum);
	background-position: center center;
	background-size: cover;
}

.ecel-banner__overlay { position: absolute; inset: 0; opacity: 0; pointer-events: none; }

.ecel-banner__inner { position: relative; z-index: 1; text-align: center; }

.ecel-banner__overline {
	display: block;
	font-family: var(--ecel-serif);
	font-size: 40px;
	font-weight: 400;
	letter-spacing: 9px;
	line-height: 1.1;
	text-transform: uppercase;
	color: var(--ecel-cream);
}

.ecel-banner__title {
	margin: 0;
	font-family: var(--ecel-serif);
	font-size: 76px;
	font-weight: 700;
	letter-spacing: 2px;
	line-height: 1;
	text-transform: uppercase;
	color: #fff;
}

.ecel-banner__tagline {
	margin: 0;
	font-family: var(--ecel-sans);
	font-size: 17px;
	color: var(--ecel-gold);
}

/* Ornament rule (line — diamond — line) */
.ecel-rule {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 190px;
	margin: 16px auto;
}

.ecel-rule__line { flex: 1; height: 1px; background-color: var(--ecel-gold); }

.ecel-rule__gem {
	width: 7px;
	height: 7px;
	background-color: var(--ecel-gold);
	transform: rotate(45deg);
	flex-shrink: 0;
}

/* ---------------------------------------------------------------------------
   Section Heading
   --------------------------------------------------------------------------- */
.ecel-secheading { text-align: center; }

.ecel-secheading__row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
}

.ecel-secheading__rule {
	width: 120px;
	height: 1px;
	background-color: var(--ecel-gold);
	flex-shrink: 1;
}

.ecel-secheading__label {
	margin: 0;
	font-family: var(--ecel-sans);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 3.4px;
	text-transform: uppercase;
	color: var(--ecel-gold-deep);
	white-space: nowrap;
}

.ecel-secheading__title {
	margin: 14px 0 0;
	font-family: var(--ecel-serif);
	font-size: 42px;
	font-weight: 500;
	line-height: 1.25;
	color: var(--ecel-burgundy);
}

/* ---------------------------------------------------------------------------
   Package Card
   --------------------------------------------------------------------------- */
.ecel-pkg {
	display: flex;
	flex-direction: column;
	height: 100%;
	background-color: var(--ecel-card);
	border: 1px solid var(--ecel-gold-light);
	overflow: hidden;
}

.ecel-pkg--has-media { flex-direction: row; align-items: stretch; }
.ecel-pkg--media-right { flex-direction: row-reverse; }

.ecel-pkg__media { flex: 0 0 33%; max-width: 33%; }

.ecel-pkg__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.ecel-pkg__body { display: flex; flex-direction: column; flex: 1 1 auto; min-width: 0; }

.ecel-pkg__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 24px 16px 18px;
	background-color: var(--ecel-burgundy);
	text-align: center;
}

.ecel-pkg__script {
	margin: 0;
	font-family: var(--ecel-script);
	font-size: 48px;
	font-weight: 400;
	line-height: 1.1;
	color: var(--ecel-gold-light);
}

.ecel-pkg__label {
	font-family: var(--ecel-sans);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--ecel-cream);
}

.ecel-pkg__badge {
	display: block;
	width: 78%;
	margin-top: 16px;
	padding: 8px 10px;
	background-color: var(--ecel-gold);
	font-family: var(--ecel-sans);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--ecel-plum);
}

.ecel-pkg__features {
	display: flex;
	flex-direction: column;
	gap: 14px;
	flex: 1 1 auto;
	margin: 0;
	padding: 26px 20px 22px;
	list-style: none;
}

.ecel-pkg__feature {
	display: flex;
	align-items: center;
	gap: 12px;
	list-style: none;
}

.ecel-pkg__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: var(--ecel-burgundy);
	color: var(--ecel-cream);
	flex-shrink: 0;
}

.ecel-pkg__icon i { font-size: 13px; }
.ecel-pkg__icon svg { width: 13px; height: 13px; fill: currentColor; }

.ecel-pkg__feature-text {
	font-family: var(--ecel-sans);
	font-size: 14px;
	line-height: 1.5;
	color: var(--ecel-body);
}

.ecel-pkg__foot {
	margin-top: auto;
	padding: 10px 12px;
	background-color: var(--ecel-gold);
	font-family: var(--ecel-sans);
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	color: var(--ecel-plum);
}

/* ---------------------------------------------------------------------------
   Add-Ons Bar
   --------------------------------------------------------------------------- */
.ecel-addons {
	background-color: var(--ecel-burgundy);
	padding: 40px 24px 34px;
	text-align: center;
}

.ecel-addons__title {
	margin: 0 0 16px;
	font-family: var(--ecel-sans);
	font-size: 21px;
	font-weight: 600;
	letter-spacing: 6px;
	text-transform: uppercase;
	color: var(--ecel-gold);
}

.ecel-addons__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.ecel-addons__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	list-style: none;
	border-left: 0 solid transparent;
}

.ecel-addons__item + .ecel-addons__item {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: rgba(199, 149, 66, .35);
}

.ecel-addons__icon { color: var(--ecel-gold); line-height: 1; }
.ecel-addons__icon i { font-size: 32px; }
.ecel-addons__icon svg { width: 32px; height: 32px; fill: currentColor; }

.ecel-addons__label {
	font-family: var(--ecel-sans);
	font-size: 13px;
	line-height: 1.6;
	color: var(--ecel-cream);
}

/* ---------------------------------------------------------------------------
   Contact Bar
   --------------------------------------------------------------------------- */
.ecel-contactbar { background-color: var(--ecel-plum); padding: 44px 20px; }

.ecel-contactbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.ecel-contactbar__brand { display: flex; flex-direction: column; }

.ecel-contactbar__logo img { display: block; width: 150px; height: auto; }

.ecel-contactbar__name {
	font-family: var(--ecel-serif);
	font-size: 34px;
	font-weight: 600;
	letter-spacing: 2px;
	line-height: 1.1;
	color: #fff;
}

.ecel-contactbar__sub {
	margin-top: 2px;
	font-family: var(--ecel-sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--ecel-gold);
}

.ecel-contactbar__tagline {
	margin: 0;
	font-family: var(--ecel-serif);
	font-size: 20px;
	font-style: italic;
	font-weight: 500;
	text-align: center;
	color: var(--ecel-cream);
}

.ecel-contactbar__heading {
	display: block;
	margin-bottom: 10px;
	font-family: var(--ecel-sans);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--ecel-gold);
}

.ecel-contactbar__rows {
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ecel-contactbar__rows li { list-style: none; }

.ecel-contactbar__row {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--ecel-sans);
	font-size: 14px;
	color: var(--ecel-cream);
	text-decoration: none;
	transition: color .2s ease;
}

.ecel-contactbar__row i { color: var(--ecel-gold); }
.ecel-contactbar__row svg { width: 15px; height: 15px; fill: var(--ecel-gold); }

/* ---------------------------------------------------------------------------
   Product Card
   --------------------------------------------------------------------------- */
.ecel-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	background-color: var(--ecel-card);
	overflow: hidden;
	transition: transform .3s ease, box-shadow .3s ease;
}

.ecel-hoverlift-yes.ecel-card:hover,
.ecel-hoverlift-yes .ecel-card:hover { transform: translateY(-5px); }

.ecel-card__media { position: relative; height: 260px; overflow: hidden; }

.ecel-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.ecel-zoom-yes .ecel-card:hover .ecel-card__media img,
.ecel-zoom-yes.ecel-card:hover .ecel-card__media img { transform: scale(1.06); }

.ecel-card__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 6px 12px;
	background-color: var(--ecel-gold);
	font-family: var(--ecel-sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--ecel-plum);
}

.ecel-card__body { flex: 1 1 auto; padding: 24px 22px 26px; }

.ecel-card__title {
	margin: 0 0 10px;
	font-family: var(--ecel-serif);
	font-size: 24px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--ecel-burgundy);
}

.ecel-card__desc {
	margin: 0;
	font-family: var(--ecel-sans);
	font-size: 15px;
	line-height: 1.8;
	color: var(--ecel-body);
}

.ecel-card__link {
	display: inline-block;
	margin-top: 14px;
	font-family: var(--ecel-sans);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--ecel-gold-deep);
	text-decoration: none;
}

.ecel-card__overlay-link { position: absolute; inset: 0; z-index: 2; }

/* ---------------------------------------------------------------------------
   Feature List
   --------------------------------------------------------------------------- */
.ecel-flist {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 14px;
	column-gap: 40px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ecel-flist__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	list-style: none;
}

.ecel-flist__icon {
	margin-top: 5px;
	color: var(--ecel-gold);
	line-height: 1;
	flex-shrink: 0;
}

.ecel-flist__icon i { font-size: 14px; }
.ecel-flist__icon svg { width: 14px; height: 14px; fill: currentColor; }

.ecel-flist__text {
	font-family: var(--ecel-sans);
	font-size: 15px;
	line-height: 1.7;
	color: var(--ecel-on-dark);
}

/* ---------------------------------------------------------------------------
   CTA
   --------------------------------------------------------------------------- */
.ecel-cta {
	position: relative;
	padding: 90px 20px;
	background-color: var(--ecel-plum);
	background-position: center center;
	background-size: cover;
}

.ecel-cta__overlay { position: absolute; inset: 0; opacity: 0; pointer-events: none; }

.ecel-cta__inner { position: relative; z-index: 1; text-align: center; }

.ecel-cta__eyebrow {
	display: block;
	margin-bottom: 12px;
	font-family: var(--ecel-sans);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--ecel-gold);
}

.ecel-cta__title {
	margin: 0 0 16px;
	font-family: var(--ecel-serif);
	font-size: 44px;
	font-weight: 500;
	line-height: 1.25;
	color: #fff;
}

.ecel-cta__desc {
	margin: 0 auto 26px;
	max-width: 720px;
	font-family: var(--ecel-sans);
	font-size: 16px;
	line-height: 1.9;
	color: var(--ecel-on-dark);
}

.ecel-cta__actions { display: flex; justify-content: center; }
.ecel-cta__inner[style*="left"] .ecel-cta__actions { justify-content: flex-start; }

.ecel-cta__signoff-wrap { margin-top: 30px; }

.ecel-cta__signoff {
	display: block;
	font-family: var(--ecel-sans);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 3.4px;
	text-transform: uppercase;
	color: #fff;
}

.ecel-cta__signoff-sub {
	display: block;
	margin-top: 6px;
	font-family: var(--ecel-serif);
	font-size: 19px;
	font-style: italic;
	color: var(--ecel-gold);
}

/* ---------------------------------------------------------------------------
   Gallery
   --------------------------------------------------------------------------- */
.ecel-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.ecel-gallery__item {
	position: relative;
	margin: 0;
	aspect-ratio: 1;
	overflow: hidden;
}

.ecel-gallery__item a { display: block; width: 100%; height: 100%; }

.ecel-gallery__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.ecel-gallery__item::after {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(38, 3, 10, .35);
	opacity: 0;
	transition: opacity .3s ease;
	pointer-events: none;
}

.ecel-gallery__item:hover::after { opacity: 1; }
.ecel-zoom-yes .ecel-gallery__item:hover img { transform: scale(1.06); }

/* ---------------------------------------------------------------------------
   Site Footer
   --------------------------------------------------------------------------- */
.ecel-footer { background-color: var(--ecel-plum); padding: 72px 20px 28px; }

.ecel-footer__cols { display: flex; flex-wrap: wrap; gap: 50px; }

.ecel-footer__col { flex: 1 1 200px; min-width: 0; }
.ecel-footer__col--brand { flex: 0 0 40%; max-width: 40%; }

.ecel-footer__logo img { display: block; width: 120px; height: auto; margin-bottom: 12px; }

.ecel-footer__name {
	display: block;
	font-family: var(--ecel-serif);
	font-size: 30px;
	font-weight: 600;
	line-height: 1.1;
	color: #fff;
}

.ecel-footer__tagline {
	display: block;
	margin-bottom: 12px;
	font-family: var(--ecel-serif);
	font-size: 15px;
	font-style: italic;
	color: var(--ecel-gold);
}

.ecel-footer__about {
	margin: 0 0 18px;
	font-family: var(--ecel-sans);
	font-size: 14px;
	line-height: 1.9;
	color: var(--ecel-on-dark);
}

.ecel-footer__coltitle {
	margin: 0 0 16px;
	font-family: var(--ecel-serif);
	font-size: 20px;
	font-weight: 500;
	color: #fff;
}

.ecel-footer__list,
.ecel-footer__social {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ecel-footer__list li,
.ecel-footer__social li { list-style: none; }

.ecel-footer__row {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--ecel-sans);
	font-size: 14px;
	color: var(--ecel-on-dark);
	text-decoration: none;
	transition: color .2s ease;
}

.ecel-footer__row i { color: var(--ecel-gold); font-size: 13px; }
.ecel-footer__row svg { width: 14px; height: 14px; fill: var(--ecel-gold); }

.ecel-footer__social { flex-direction: row; gap: 12px; }

.ecel-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--ecel-gold);
	border-radius: 50%;
	color: var(--ecel-gold);
	transition: background-color .25s ease, color .25s ease;
}

.ecel-footer__social a:hover { background-color: var(--ecel-gold); color: var(--ecel-plum); }
.ecel-footer__social svg { width: 15px; height: 15px; fill: currentColor; }

.ecel-footer__bottom {
	margin-top: 40px;
	padding-top: 22px;
	border-top: 1px solid rgba(199, 149, 66, .28);
}

.ecel-footer__copyright {
	margin: 0;
	font-family: var(--ecel-sans);
	font-size: 13px;
	text-align: center;
	color: var(--ecel-on-dark);
}

/* ---------------------------------------------------------------------------
   Responsive — tablet
   --------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.ecel-hero__title { font-size: 48px; }
	.ecel-banner__title { font-size: 56px; }
	.ecel-banner__overline { font-size: 30px; letter-spacing: 6px; }
	.ecel-cta__title { font-size: 34px; }
	.ecel-secheading__title { font-size: 32px; }
	.ecel-secheading__label { font-size: 15px; letter-spacing: 2.6px; white-space: normal; }

	.ecel-addons__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 24px; }
	.ecel-addons__item:nth-child(3n + 1) { border-left-width: 0; }

	.ecel-contactbar__inner { flex-direction: column; text-align: center; }
	.ecel-contactbar__brand { align-items: center; }

	.ecel-footer__col--brand { flex: 0 0 100%; max-width: 100%; }

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

	/* Header collapses to a drawer */
	.ecel-collapse-tablet .ecel-header__toggle { display: inline-flex; align-items: center; justify-content: center; order: 2; }

	.ecel-collapse-tablet .ecel-header__nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		padding: 10px 20px 18px;
		background-color: var(--ecel-drawer-bg, var(--ecel-burgundy));
		z-index: 60;
	}

	.ecel-collapse-tablet .ecel-header__nav.is-open { display: block; }
	.ecel-collapse-tablet .ecel-header__nav > ul { flex-direction: column; align-items: flex-start; gap: 4px; }
	.ecel-collapse-tablet .ecel-header__nav a { padding: 11px 0; width: 100%; }

	.ecel-collapse-tablet .ecel-header__nav ul ul {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		padding: 0 0 0 16px;
		background: none;
	}

	.ecel-collapse-tablet .ecel-header__inner { position: relative; flex-wrap: wrap; }
	.ecel-collapse-tablet .ecel-header__right { gap: 14px; }
}

/* ---------------------------------------------------------------------------
   Responsive — mobile
   --------------------------------------------------------------------------- */
@media (max-width: 767px) {
	.ecel-hero { padding: 80px 20px; min-height: 70vh; }
	.ecel-hero__title { font-size: 36px; }
	.ecel-hero__eyebrow { font-size: 18px; }
	.ecel-hero__desc { font-size: 15px; }
	.ecel-hero__actions { flex-direction: column; align-items: stretch; }
	.ecel-btn { width: 100%; padding: 16px 24px; }

	.ecel-banner { padding: 54px 20px 48px; }
	.ecel-banner__title { font-size: 38px; letter-spacing: 1px; }
	.ecel-banner__overline { font-size: 22px; letter-spacing: 4px; }
	.ecel-banner__tagline { font-size: 15px; }

	.ecel-strip__list { gap: 12px; }
	.ecel-strip__li { gap: 12px; }
	.ecel-strip__item { font-size: 11px; letter-spacing: 1.6px; }

	.ecel-secheading__row { flex-direction: column; gap: 12px; }
	.ecel-secheading__rule { width: 70px; }
	.ecel-secheading__title { font-size: 26px; }

	/* Package cards stack, photo panel goes on top */
	.ecel-pkg--has-media,
	.ecel-pkg--media-right { flex-direction: column; }
	.ecel-pkg__media { flex: 0 0 auto; max-width: 100%; min-height: 220px; }
	.ecel-pkg__script { font-size: 40px; }

	.ecel-addons__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ecel-addons__item { border-left-width: 0 !important; }
	.ecel-addons__title { font-size: 17px; letter-spacing: 4px; }

	.ecel-cta { padding: 60px 20px; }
	.ecel-cta__title { font-size: 28px; }

	.ecel-gallery { grid-template-columns: 1fr; }

	.ecel-footer { padding: 52px 20px 24px; }
	.ecel-footer__cols { gap: 34px; }
	.ecel-footer__col { flex: 0 0 100%; max-width: 100%; }

	.ecel-collapse-mobile .ecel-header__toggle { display: inline-flex; align-items: center; justify-content: center; }
	.ecel-collapse-mobile .ecel-header__nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		padding: 10px 20px 18px;
		background-color: var(--ecel-drawer-bg, var(--ecel-burgundy));
		z-index: 60;
	}
	.ecel-collapse-mobile .ecel-header__nav.is-open { display: block; }
	.ecel-collapse-mobile .ecel-header__nav > ul { flex-direction: column; align-items: flex-start; gap: 4px; }
	.ecel-collapse-mobile .ecel-header__inner { position: relative; }
	.ecel-collapse-mobile .ecel-header__btn { display: none; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
	.ecel-btn,
	.ecel-card,
	.ecel-card__media img,
	.ecel-gallery__item img,
	.ecel-gallery__item::after,
	.ecel-header__nav ul ul { transition: none; }
}
