/**
 * Deliteful Cafe – Contact Widget
 * Black / cream / gold, scoped under .dcw, driven by CSS variables.
 */

.dcw {
	--dcw-gold: #B8862B;
	--dcw-gold-soft: rgba(184, 134, 43, 0.55);
	--dcw-ink: #1B2A26;
	--dcw-muted: #7C8A85;
	--dcw-line: rgba(0, 0, 0, 0.1);

	--dcw-font-head: "Playfair Display", Georgia, serif;
	--dcw-font-body: "Jost", system-ui, sans-serif;

	font-family: var(--dcw-font-body);
	color: var(--dcw-ink);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

.dcw h2,
.dcw h3,
.dcw p {
	margin: 0;
	padding: 0;
}

.dcw a {
	text-decoration: none;
	color: inherit;
	transition: color 0.2s ease;
}

/* Kicker */
.dcw-kicker {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--dcw-gold);
}

.dcw-kicker i {
	width: 30px;
	height: 2px;
	background: var(--dcw-gold);
	flex: none;
}

.dcw-kicker-center {
	justify-content: center;
}

.dcw-kicker-center i {
	order: -1;
}

.dcw-kicker-center::after {
	content: "";
	width: 30px;
	height: 2px;
	background: var(--dcw-gold);
}

.dcw-title {
	font-family: var(--dcw-font-head);
	font-weight: 700;
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.15;
	color: var(--dcw-ink);
}

.dcw-lead {
	color: var(--dcw-muted);
	font-weight: 300;
	font-size: 15.5px;
	max-width: 560px;
	margin: 12px auto 0;
}

/* =========================================================================
   Bouncing location pin
   ========================================================================= */

.dcw-pin {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: max-content;
	margin: 0 auto clamp(28px, 4vw, 44px);
	text-align: center;
}

.dcw-pin-mark {
	color: #E23B2E;
	animation: dcw-bounce 1.8s ease-in-out infinite;
	filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.22));
}

.dcw-pin-mark svg {
	width: 46px;
	height: 46px;
	fill: currentColor;
	stroke: currentColor;
	display: block;
}

.dcw-pin-shadow {
	width: 22px;
	height: 6px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.18);
	animation: dcw-shadow 1.8s ease-in-out infinite;
}

.dcw-pin-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--dcw-muted);
}

.dcw-pin:hover .dcw-pin-label {
	color: var(--dcw-gold);
}

@keyframes dcw-bounce {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-14px); }
}

@keyframes dcw-shadow {
	0%, 100% { transform: scaleX(1);   opacity: 0.6; }
	50%      { transform: scaleX(0.6); opacity: 0.3; }
}

/* =========================================================================
   Contact information
   ========================================================================= */

.dcw-info-head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
}

.dcw-info-head .dcw-title {
	margin-top: 12px;
}

.dcw-info-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(28px, 4vw, 52px);
	margin-top: clamp(38px, 5vw, 58px);
	text-align: center;
}

.dcw-info-col {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.dcw-info-ic {
	width: 66px;
	height: 66px;
	color: var(--dcw-ink);
	margin-bottom: 20px;
}

.dcw-info-ic svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.dcw-info-label {
	font-family: var(--dcw-font-head);
	font-size: 22px;
	font-weight: 700;
	color: var(--dcw-ink);
}

.dcw-info-lines {
	margin-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	color: var(--dcw-muted);
	font-size: 15px;
	font-weight: 300;
}

.dcw-info-lines a:hover {
	color: var(--dcw-gold);
}

/* Divider */
.dcw-divider {
	height: 1px;
	background: repeating-linear-gradient(90deg, var(--dcw-line) 0 6px, transparent 6px 12px);
	margin: clamp(40px, 6vw, 66px) 0;
}

/* =========================================================================
   Message form
   ========================================================================= */

.dcw-form-head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto clamp(28px, 4vw, 42px);
}

.dcw-form-head .dcw-title {
	margin-top: 12px;
}

.dcw-form {
	max-width: 960px;
	margin: 0 auto;
}

.dcw-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-bottom: 18px;
}

.dcw-form input,
.dcw-form textarea {
	width: 100%;
	font-family: var(--dcw-font-body);
	font-size: 15px;
	color: var(--dcw-ink);
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 6px;
	padding: 16px 18px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 2px 8px -6px rgba(0, 0, 0, 0.2);
}

.dcw-form input::placeholder,
.dcw-form textarea::placeholder {
	color: #9a958c;
}

.dcw-form input:focus,
.dcw-form textarea:focus {
	border-color: var(--dcw-gold);
	box-shadow: 0 0 0 3px rgba(184, 134, 43, 0.14);
}

.dcw-form textarea {
	resize: vertical;
	min-height: 140px;
	margin-bottom: 18px;
}

.dcw-form-foot {
	text-align: center;
	margin-top: 8px;
}

.dcw-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-family: var(--dcw-font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #fff;
	background: var(--dcw-gold);
	border: 1.5px solid var(--dcw-gold);
	border-radius: 4px;
	padding: 16px 40px;
	cursor: pointer;
	transition: filter 0.25s ease, transform 0.2s ease;
}

.dcw-btn:hover {
	filter: brightness(1.07);
	transform: translateY(-1px);
	color: #fff;
}

.dcw-btn[disabled] {
	opacity: 0.6;
	cursor: default;
	transform: none;
}

.dcw-form-msg {
	text-align: center;
	margin-top: 16px;
	font-size: 14.5px;
	min-height: 20px;
	color: var(--dcw-gold);
}

.dcw-form-msg.is-error {
	color: #c0553b;
}

/* =========================================================================
   Responsive
   ========================================================================= */

@media (max-width: 1024px) {
	.dcw-info-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}

@media (max-width: 767px) {

	.dcw-form-row {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-bottom: 14px;
	}

	.dcw-btn {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {

	.dcw-pin-mark,
	.dcw-pin-shadow {
		animation: none;
	}

	.dcw * {
		transition-duration: 0.01ms !important;
	}
}

/* =========================================================================
   Contact Hero — full-width dark map background + title block
   ========================================================================= */

.dcw-hero {
	position: relative;
	width: 100%;
	min-height: 560px;
	display: flex;
	align-items: center;
	overflow: hidden;
	isolation: isolate;
}

/* The interactive map fills the whole background */
.dcw-hero-map {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.dcw-hero-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	filter: none;
}

/* Map looks — pick via the Map Look control */
.dcw-hero.mapstyle-daytime .dcw-hero-map iframe {
	filter: grayscale(0.15) brightness(1) contrast(1.02) saturate(1.05);
}

.dcw-hero.mapstyle-dimmed .dcw-hero-map iframe {
	filter: grayscale(0.4) brightness(0.9) contrast(1.02);
}

.dcw-hero.mapstyle-grayscale .dcw-hero-map iframe {
	filter: grayscale(1) brightness(0.98) contrast(1.02);
}

.dcw-hero.mapstyle-none .dcw-hero-map iframe {
	filter: none;
}

/* Legacy fallback (if no style class): gentle dim */
.dcw-hero.is-dark .dcw-hero-map iframe {
	filter: grayscale(0.35) brightness(0.92) contrast(1.02);
}

.dcw-hero.mapstyle-daytime.is-dark .dcw-hero-map iframe {
	filter: grayscale(0.15) brightness(1) contrast(1.02) saturate(1.05);
}

.dcw-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(12, 14, 15, 0.55);
	pointer-events: none;
}

/* Centre red pin marker (decorative, hovers over the map) */
.dcw-hero-pin {
	position: absolute;
	left: 62%;
	top: 44%;
	z-index: 2;
	color: #E23B2E;
	pointer-events: none;
	animation: dcw-bounce 1.8s ease-in-out infinite;
	filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.4));
}

.dcw-hero-pin svg {
	width: 42px;
	height: 42px;
	fill: currentColor;
	stroke: currentColor;
	display: block;
}

/* Content block */
.dcw-hero-inner {
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px clamp(20px, 5vw, 60px);
	pointer-events: none;
}

.dcw-hero-box {
	max-width: 520px;
	pointer-events: auto;
}

.dcw-hero .dcw-kicker {
	color: var(--dcw-gold);
}

.dcw-hero-title {
	font-family: var(--dcw-font-head);
	font-weight: 700;
	font-size: clamp(44px, 7vw, 88px);
	line-height: 1.05;
	color: #fff;
	margin: 18px 0 0;
	letter-spacing: 0.01em;
}

.dcw-hero-sub {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 300;
	font-size: 16px;
	line-height: 1.6;
	margin: 18px 0 0;
	max-width: 420px;
}

/* Breadcrumb pill */
.dcw-crumb {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 30px;
	background: var(--dcw-gold);
	border-radius: 4px;
	padding: 15px 26px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #fff;
}

.dcw-crumb a {
	color: #fff;
	transition: opacity 0.2s ease;
}

.dcw-crumb a:hover {
	opacity: 0.85;
}

.dcw-crumb-sep {
	display: inline-flex;
}

.dcw-crumb-sep svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: 0.85;
}

.dcw-crumb-current {
	color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 767px) {

	.dcw-hero {
		min-height: 420px;
	}

	.dcw-hero-pin {
		left: auto;
		right: 12%;
		top: 26%;
	}

	.dcw-hero-title {
		font-size: clamp(40px, 13vw, 60px);
	}

	.dcw-hero-inner {
		padding: 44px 22px;
	}
}

/* =========================================================================
   Hero map — lock appearance (no scroll/hover darkening from theme)
   ========================================================================= */

/* Keep the map perfectly still and evenly lit regardless of scroll effects,
   entrance animations, or hover states the theme might apply. */
.dcw-hero,
.dcw-hero * {
	transition: none !important;
}

.dcw-hero .dcw-hero-map,
.dcw-hero .dcw-hero-map iframe {
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
	animation: none !important;
	will-change: auto !important;
}

/* Don't let the map dim on hover — each look keeps its own filter */
.dcw-hero.mapstyle-daytime:hover .dcw-hero-map iframe {
	filter: grayscale(0.15) brightness(1) contrast(1.02) saturate(1.05);
}

.dcw-hero.mapstyle-dimmed:hover .dcw-hero-map iframe {
	filter: grayscale(0.4) brightness(0.9) contrast(1.02);
}

.dcw-hero.mapstyle-grayscale:hover .dcw-hero-map iframe {
	filter: grayscale(1) brightness(0.98) contrast(1.02);
}

.dcw-hero.mapstyle-none:hover .dcw-hero-map iframe {
	filter: none;
}

/* The bouncing pin is the only intentional motion — keep it */
.dcw-hero .dcw-hero-pin {
	transition: none !important;
}
