/* ==========================================================================
   WCC Header & Footer for Elementor  v1.0.0
   --------------------------------------------------------------------------
   ISOLATION CONTRACT
   1. Every selector begins with .wcchf-root. Nothing here can ever reach an
      Elementor widget, the theme, html, body or a bare element selector.
   2. Every selector doubles the root class (.wcchf-root.wcchf-root) so it
      out-specifies theme and Elementor "Theme Style" rules such as
      `.elementor a {}` or `.elementor-widget-container ul {}` without
      resorting to !important.
   3. Internal z-index never exceeds 90 and the root carries its own stacking
      context, so the header can never paint over Elementor's editor panels.
   ========================================================================== */

/* --------------------------------------------------------------- 1. ROOT  */

.wcchf-root {
	/* Palette — overridable per widget instance from the Elementor Style tab. */
	--wcchf-ink: #22322c;
	--wcchf-forest: #23403a;
	--wcchf-forest-2: #2e4f46;
	--wcchf-sage: #a9c0b0;
	--wcchf-sage-soft: #dce6dd;
	--wcchf-ivory: #f7f5ef;
	--wcchf-paper: #fffdf8;
	--wcchf-gold: #b98b4e;
	--wcchf-line: #e3ddd0;

	--wcchf-foot-bg: #23403a;
	--wcchf-foot-text: #c9d6c5;
	--wcchf-foot-link: #e9efe6;
	--wcchf-foot-head: #f4f1e6;

	--wcchf-serif: "Fraunces", Georgia, "Times New Roman", serif;
	--wcchf-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

	--wcchf-wrap: 1180px;
	--wcchf-gutter: 24px;
	--wcchf-logo: 76px;
	--wcchf-logo-sm: 56px;
	--wcchf-radius: 999px;

	/* Own stacking context: internal z-index cannot escape upward. */
	position: relative;
	z-index: 60;
	isolation: isolate;

	/* Typographic baseline, inherited by everything inside. */
	font-family: var(--wcchf-sans);
	font-size: 16.5px;
	line-height: 1.7;
	font-weight: 400;
	letter-spacing: normal;
	text-transform: none;
	text-align: left;
	color: var(--wcchf-ink);
	direction: ltr;

	display: block;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

/* ---------------------------------------------------- 2. DEFENSIVE RESET  */
/* Neutralises anything the active theme or Elementor pushes onto generic
   elements. Doubled root class keeps us above `.elementor x` selectors.     */

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

.wcchf-root.wcchf-root div,
.wcchf-root.wcchf-root span,
.wcchf-root.wcchf-root nav,
.wcchf-root.wcchf-root header,
.wcchf-root.wcchf-root footer,
.wcchf-root.wcchf-root section,
.wcchf-root.wcchf-root p,
.wcchf-root.wcchf-root ul,
.wcchf-root.wcchf-root ol,
.wcchf-root.wcchf-root li,
.wcchf-root.wcchf-root h1,
.wcchf-root.wcchf-root h2,
.wcchf-root.wcchf-root h3,
.wcchf-root.wcchf-root h4,
.wcchf-root.wcchf-root h5,
.wcchf-root.wcchf-root h6,
.wcchf-root.wcchf-root figure,
.wcchf-root.wcchf-root details,
.wcchf-root.wcchf-root summary {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	float: none;
	max-width: none;
	min-width: 0;
	text-transform: none;
	letter-spacing: normal;
	font-family: inherit;
}

.wcchf-root.wcchf-root ul,
.wcchf-root.wcchf-root ol {
	list-style: none;
}

.wcchf-root.wcchf-root li::before,
.wcchf-root.wcchf-root li::marker {
	content: none;
}

.wcchf-root.wcchf-root p {
	margin: 0 0 1.05em;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

/* Links carry !important because themes and page builders very commonly ship
   `a { color: x !important }`. The declarations stay inside .wcchf-root, so
   nothing outside this component can be reached by them. Component colours
   are re-asserted with !important in section 12. */
.wcchf-root.wcchf-root a {
	color: var(--wcchf-forest) !important;
	text-decoration: none !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	font-family: inherit !important;
	background: none;
	background-image: none !important;
	box-shadow: none;
	border: 0;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.wcchf-root.wcchf-root a:hover,
.wcchf-root.wcchf-root a:focus {
	text-decoration: none;
	box-shadow: none;
}

.wcchf-root.wcchf-root img,
.wcchf-root.wcchf-root svg {
	max-width: 100% !important;
	min-width: 0;
	height: auto;
	display: block;
	border: 0 !important;
	border-radius: 0;
	box-shadow: none;
	float: none;
	padding: 0;
	margin: 0;
}

.wcchf-root.wcchf-root button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	margin: 0;
	padding: 0;
	cursor: pointer;
	line-height: inherit;
	letter-spacing: inherit;
	text-transform: none;
	box-shadow: none;
	border-radius: 0;
	-webkit-appearance: none;
	appearance: none;
}

.wcchf-root.wcchf-root summary {
	display: block;
	cursor: pointer;
	list-style: none;
}

.wcchf-root.wcchf-root summary::-webkit-details-marker { display: none; }
.wcchf-root.wcchf-root summary::marker { content: ""; font-size: 0; }

/* Visible keyboard focus that the theme cannot strip. */
.wcchf-root.wcchf-root a:focus-visible,
.wcchf-root.wcchf-root button:focus-visible,
.wcchf-root.wcchf-root summary:focus-visible {
	outline: 2px solid var(--wcchf-gold);
	outline-offset: 2px;
	border-radius: 6px;
}

.wcchf-root.wcchf-root .wcchf-sr {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

/* ------------------------------------------------------------ 3. SHARED  */

.wcchf-root.wcchf-root .wcchf-wrap {
	width: 100%;
	max-width: var(--wcchf-wrap);
	margin: 0 auto;
	padding: 0 var(--wcchf-gutter);
}

.wcchf-root.wcchf-root .wcchf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--wcchf-forest);
	color: #fdfcf7;
	padding: 14px 26px;
	min-height: 46px;
	border-radius: var(--wcchf-radius);
	font-family: var(--wcchf-sans);
	font-weight: 600;
	font-size: 15px;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-align: center;
	white-space: nowrap;
	transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.wcchf-root.wcchf-root .wcchf-btn:hover,
.wcchf-root.wcchf-root .wcchf-btn:focus {
	background: var(--wcchf-forest-2);
	color: #fdfcf7;
	transform: translateY(-2px);
}

.wcchf-root.wcchf-root .wcchf-btn--ghost {
	background: transparent;
	color: var(--wcchf-forest);
	box-shadow: inset 0 0 0 1.5px var(--wcchf-forest);
}

.wcchf-root.wcchf-root .wcchf-btn--ghost:hover,
.wcchf-root.wcchf-root .wcchf-btn--ghost:focus {
	background: var(--wcchf-sage-soft);
	color: var(--wcchf-forest);
}

/* ------------------------------------------------------------ 4. TOPBAR  */

.wcchf-root.wcchf-root .wcchf-topbar {
	background: var(--wcchf-forest);
	color: #e8efe7;
	font-size: 13px;
	line-height: 1.5;
	padding: 8px 0;
}

.wcchf-root.wcchf-root .wcchf-topbar .wcchf-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.wcchf-root.wcchf-root .wcchf-topbar a {
	color: #fdfcf7;
	font-weight: 600;
}

.wcchf-root.wcchf-root .wcchf-topbar a:hover {
	color: #fff;
	text-decoration: underline;
}

.wcchf-root.wcchf-root .wcchf-tb-note {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
}

.wcchf-root.wcchf-root .wcchf-tb-addr {
	white-space: nowrap;
	flex: none;
}

/* ------------------------------------------------------------ 5. HEADER  */

.wcchf-root.wcchf-root .wcchf-hdr {
	background: var(--wcchf-paper);
	border-bottom: 1px solid var(--wcchf-line);
	position: relative;
	z-index: 2;
}

.wcchf-root.wcchf-root .wcchf-hdr-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	grid-template-areas: "call brand cta";
	align-items: center;
	gap: 0 20px;
	padding-top: 12px;
	padding-bottom: 12px;
}

.wcchf-root.wcchf-root .wcchf-call {
	grid-area: call;
	justify-self: start;
	font-weight: 700;
	font-size: 14.5px;
	color: var(--wcchf-forest);
	min-width: 0;
}

.wcchf-root.wcchf-root .wcchf-call a {
	color: var(--wcchf-forest);
}

.wcchf-root.wcchf-root .wcchf-call a:hover {
	color: var(--wcchf-gold);
}

.wcchf-root.wcchf-root .wcchf-brand {
	grid-area: brand;
	justify-self: center;
	display: block;
	line-height: 0;
}

.wcchf-root.wcchf-root .wcchf-brand img {
	width: var(--wcchf-logo-sm);
	height: var(--wcchf-logo-sm);
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 8px 20px rgba(34, 50, 44, 0.14);
}

.wcchf-root.wcchf-root .wcchf-brand-text {
	grid-area: brand;
	justify-self: center;
	font-family: var(--wcchf-serif);
	font-size: 20px;
	font-weight: 500;
	color: var(--wcchf-forest);
	text-align: center;
	line-height: 1.2;
}

.wcchf-root.wcchf-root .wcchf-cta {
	grid-area: cta;
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

/* Desktop nav (hidden until the breakpoint block below switches it on). */
.wcchf-root.wcchf-root .wcchf-navwrap {
	grid-area: nav;
	display: none;
	border-top: 1px solid var(--wcchf-line);
}

.wcchf-root.wcchf-root .wcchf-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2px;
	padding: 4px 0;
}

.wcchf-root.wcchf-root .wcchf-nav > li {
	position: relative;
}

.wcchf-root.wcchf-root .wcchf-nav > li > a {
	display: block;
	padding: 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--wcchf-ink);
	border-radius: 8px;
	white-space: nowrap;
}

.wcchf-root.wcchf-root .wcchf-nav > li > a:hover,
.wcchf-root.wcchf-root .wcchf-nav > li > a:focus {
	background: var(--wcchf-sage-soft);
	color: var(--wcchf-forest);
}

.wcchf-root.wcchf-root .wcchf-nav > li.wcchf-current > a {
	color: var(--wcchf-forest);
	background: var(--wcchf-sage-soft);
}

.wcchf-root.wcchf-root .wcchf-has > a::after {
	content: "\25BE";
	font-size: 9px;
	margin-left: 6px;
	opacity: 0.55;
	vertical-align: 2px;
}

/* Dropdown */
.wcchf-root.wcchf-root .wcchf-drop {
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--wcchf-paper);
	border: 1px solid var(--wcchf-line);
	border-radius: 14px;
	box-shadow: 0 18px 40px rgba(34, 50, 44, 0.12);
	min-width: 250px;
	padding: 10px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
	z-index: 10;
}

/* Flip the last couple of menus so they never run off the right edge. */
.wcchf-root.wcchf-root .wcchf-nav > li:nth-last-child(-n + 3) .wcchf-drop {
	left: auto;
	right: 0;
}

.wcchf-root.wcchf-root .wcchf-nav > li:hover > .wcchf-drop,
.wcchf-root.wcchf-root .wcchf-nav > li:focus-within > .wcchf-drop {
	opacity: 1;
	visibility: visible;
	transform: translateY(2px);
}

.wcchf-root.wcchf-root .wcchf-drop a {
	display: block;
	padding: 9px 12px;
	font-size: 14px;
	line-height: 1.45;
	border-radius: 8px;
	color: var(--wcchf-ink);
}

.wcchf-root.wcchf-root .wcchf-drop a:hover,
.wcchf-root.wcchf-root .wcchf-drop a:focus {
	background: var(--wcchf-sage-soft);
	color: var(--wcchf-forest);
}

.wcchf-root.wcchf-root .wcchf-drop .wcchf-hub a {
	font-weight: 700;
	color: var(--wcchf-forest);
}

.wcchf-root.wcchf-root .wcchf-drop .wcchf-hub {
	border-bottom: 1px solid var(--wcchf-line);
	margin-bottom: 6px;
	padding-bottom: 4px;
}

/* --------------------------------------------- 6. BURGER + MOBILE DRAWER  */

.wcchf-root.wcchf-root .wcchf-burger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	flex: none;
	border: 1px solid var(--wcchf-line);
	border-radius: 10px;
	background: var(--wcchf-paper);
	position: relative;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.wcchf-root.wcchf-root .wcchf-burger:hover {
	background: var(--wcchf-sage-soft);
	border-color: var(--wcchf-sage);
}

.wcchf-root.wcchf-root .wcchf-burger i {
	position: relative;
	display: block;
	width: 21px;
	height: 2px;
	background: var(--wcchf-forest);
	border-radius: 2px;
	transition: background-color 0.2s ease;
}

.wcchf-root.wcchf-root .wcchf-burger i::before,
.wcchf-root.wcchf-root .wcchf-burger i::after {
	content: "";
	position: absolute;
	left: 0;
	width: 21px;
	height: 2px;
	background: var(--wcchf-forest);
	border-radius: 2px;
	transition: transform 0.25s ease, top 0.2s ease;
}

.wcchf-root.wcchf-root .wcchf-burger i::before { top: -7px; }
.wcchf-root.wcchf-root .wcchf-burger i::after  { top: 7px; }

/* Burger morphs into an X while the drawer is open. */
.wcchf-root.wcchf-root .wcchf-burger[aria-expanded="true"] i { background: transparent; }

.wcchf-root.wcchf-root .wcchf-burger[aria-expanded="true"] i::before {
	top: 0;
	transform: rotate(45deg);
}

.wcchf-root.wcchf-root .wcchf-burger[aria-expanded="true"] i::after {
	top: 0;
	transform: rotate(-45deg);
}

/* Scrim */
.wcchf-root.wcchf-root .wcchf-scrim {
	position: fixed;
	inset: 0;
	background: rgba(24, 36, 31, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.28s ease, visibility 0.28s ease;
	z-index: 80;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}

/* Drawer */
.wcchf-root.wcchf-root .wcchf-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(400px, 88vw);
	max-width: 100%;
	background: var(--wcchf-paper);
	box-shadow: -20px 0 50px rgba(34, 50, 44, 0.22);
	transform: translateX(100%);
	transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 85;
	display: flex;
	flex-direction: column;
	visibility: hidden;
	overscroll-behavior: contain;
}

.wcchf-root.wcchf-root.wcchf-is-open .wcchf-scrim {
	opacity: 1;
	visibility: visible;
}

.wcchf-root.wcchf-root.wcchf-is-open .wcchf-drawer {
	transform: translateX(0);
	visibility: visible;
}

.wcchf-root.wcchf-root .wcchf-drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 20px;
	border-bottom: 1px solid var(--wcchf-line);
	flex: none;
}

.wcchf-root.wcchf-root .wcchf-drawer-head img {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	object-fit: cover;
}

.wcchf-root.wcchf-root .wcchf-drawer-title {
	font-family: var(--wcchf-serif);
	font-size: 16px;
	font-weight: 500;
	color: var(--wcchf-forest);
	line-height: 1.25;
	flex: 1 1 auto;
	min-width: 0;
}

.wcchf-root.wcchf-root .wcchf-close {
	width: 42px;
	height: 42px;
	flex: none;
	border: 1px solid var(--wcchf-line);
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	line-height: 1;
	color: var(--wcchf-forest);
	transition: background-color 0.2s ease;
}

.wcchf-root.wcchf-root .wcchf-close:hover {
	background: var(--wcchf-sage-soft);
}

.wcchf-root.wcchf-root .wcchf-drawer-body {
	flex: 1 1 auto;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	padding: 6px 20px 20px;
}

/* Accordion */
.wcchf-root.wcchf-root .wcchf-acc {
	border-bottom: 1px solid var(--wcchf-line);
}

.wcchf-root.wcchf-root .wcchf-acc > summary {
	position: relative;
	padding: 15px 44px 15px 2px;
	min-height: 52px;
	font-weight: 700;
	font-size: 15.5px;
	line-height: 1.4;
	color: var(--wcchf-forest);
	display: flex;
	align-items: center;
}

.wcchf-root.wcchf-root .wcchf-acc > summary::after {
	content: "";
	position: absolute;
	right: 10px;
	top: 50%;
	width: 11px;
	height: 11px;
	margin-top: -7px;
	border-right: 2px solid var(--wcchf-gold);
	border-bottom: 2px solid var(--wcchf-gold);
	transform: rotate(45deg);
	transition: transform 0.24s ease;
	pointer-events: none;
}

.wcchf-root.wcchf-root .wcchf-acc[open] > summary::after {
	transform: rotate(-135deg);
	margin-top: -2px;
}

.wcchf-root.wcchf-root .wcchf-acc > summary:hover {
	color: var(--wcchf-gold);
}

.wcchf-root.wcchf-root .wcchf-sub {
	padding: 0 0 12px;
}

.wcchf-root.wcchf-root .wcchf-sub a {
	display: block;
	padding: 11px 2px;
	min-height: 44px;
	font-size: 14.5px;
	line-height: 1.45;
	color: var(--wcchf-ink);
	border-radius: 6px;
}

.wcchf-root.wcchf-root .wcchf-sub a:hover,
.wcchf-root.wcchf-root .wcchf-sub a:focus {
	color: var(--wcchf-forest);
	background: var(--wcchf-sage-soft);
	padding-left: 10px;
}

.wcchf-root.wcchf-root .wcchf-single {
	display: flex;
	align-items: center;
	padding: 15px 2px;
	min-height: 52px;
	font-weight: 700;
	font-size: 15.5px;
	color: var(--wcchf-forest);
	border-bottom: 1px solid var(--wcchf-line);
}

.wcchf-root.wcchf-root .wcchf-single:hover {
	color: var(--wcchf-gold);
}

/* Drawer footer (sticky CTAs + contact) */
.wcchf-root.wcchf-root .wcchf-drawer-foot {
	flex: none;
	padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid var(--wcchf-line);
	background: var(--wcchf-ivory);
	display: grid;
	gap: 10px;
}

.wcchf-root.wcchf-root .wcchf-drawer-foot .wcchf-btn {
	width: 100%;
}

.wcchf-root.wcchf-root .wcchf-drawer-tel {
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	color: var(--wcchf-forest);
	padding-top: 2px;
}

/* ------------------------------------------------------------ 7. FOOTER  */

.wcchf-root.wcchf-root .wcchf-foot {
	background: var(--wcchf-foot-bg);
	color: var(--wcchf-foot-text);
	padding: 70px 0 0;
	font-size: 14px;
	line-height: 1.7;
}

.wcchf-root.wcchf-root .wcchf-foot a {
	color: var(--wcchf-foot-link);
}

.wcchf-root.wcchf-root .wcchf-foot a:hover,
.wcchf-root.wcchf-root .wcchf-foot a:focus {
	color: #fff;
	text-decoration: underline;
}

.wcchf-root.wcchf-root .wcchf-foot h4 {
	font-family: var(--wcchf-serif);
	color: var(--wcchf-foot-head);
	font-size: 16.5px;
	font-weight: 500;
	margin: 0 0 16px;
	letter-spacing: 0.02em;
	line-height: 1.3;
}

.wcchf-root.wcchf-root .wcchf-foot-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 36px;
}

.wcchf-root.wcchf-root .wcchf-foot-grid > * {
	min-width: 0;
}

.wcchf-root.wcchf-root .wcchf-foot li {
	margin-bottom: 9px;
}

.wcchf-root.wcchf-root .wcchf-foot li:last-child {
	margin-bottom: 0;
}

.wcchf-root.wcchf-root .wcchf-fb {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.wcchf-root.wcchf-root .wcchf-fb img {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
	flex: none;
}

.wcchf-root.wcchf-root .wcchf-legal {
	border-top: 1px solid rgba(233, 239, 230, 0.18);
	margin-top: 54px;
	padding: 22px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	color: #a7bba2;
}

.wcchf-root.wcchf-root .wcchf-legal ul {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.wcchf-root.wcchf-root .wcchf-legal li {
	margin-bottom: 0;
}

/* -------------------------------------------------- 8. STICKY (optional)  */

.wcchf-root.wcchf-sticky .wcchf-hdr {
	position: sticky;
	top: 0;
}

body.admin-bar .wcchf-root.wcchf-sticky .wcchf-hdr { top: 32px; }

@media screen and (max-width: 782px) {
	body.admin-bar .wcchf-root.wcchf-sticky .wcchf-hdr { top: 46px; }
}

.wcchf-root.wcchf-sticky.wcchf-scrolled .wcchf-hdr {
	box-shadow: 0 10px 30px rgba(34, 50, 44, 0.10);
}

/* -------------------------------------------------- 9. BREAKPOINT SWITCH  */
/* Base state above is the mobile layout. Each block below promotes the
   desktop layout at the breakpoint chosen in the widget settings.          */

@media (min-width: 993px) {
	.wcchf-root.wcchf-bp-992 .wcchf-hdr-inner {
		grid-template-areas: "call brand cta" "nav nav nav";
		padding-bottom: 0;
	}
	.wcchf-root.wcchf-bp-992 .wcchf-brand img {
		width: var(--wcchf-logo);
		height: var(--wcchf-logo);
	}
	.wcchf-root.wcchf-bp-992 .wcchf-brand { padding-bottom: 10px; }
	.wcchf-root.wcchf-bp-992 .wcchf-navwrap { display: block; }
	.wcchf-root.wcchf-bp-992 .wcchf-burger,
	.wcchf-root.wcchf-bp-992 .wcchf-scrim,
	.wcchf-root.wcchf-bp-992 .wcchf-drawer { display: none; }
}

@media (min-width: 1081px) {
	.wcchf-root.wcchf-bp-1080 .wcchf-hdr-inner {
		grid-template-areas: "call brand cta" "nav nav nav";
		padding-bottom: 0;
	}
	.wcchf-root.wcchf-bp-1080 .wcchf-brand img {
		width: var(--wcchf-logo);
		height: var(--wcchf-logo);
	}
	.wcchf-root.wcchf-bp-1080 .wcchf-brand { padding-bottom: 10px; }
	.wcchf-root.wcchf-bp-1080 .wcchf-navwrap { display: block; }
	.wcchf-root.wcchf-bp-1080 .wcchf-burger,
	.wcchf-root.wcchf-bp-1080 .wcchf-scrim,
	.wcchf-root.wcchf-bp-1080 .wcchf-drawer { display: none; }
}

@media (min-width: 1201px) {
	.wcchf-root.wcchf-bp-1200 .wcchf-hdr-inner {
		grid-template-areas: "call brand cta" "nav nav nav";
		padding-bottom: 0;
	}
	.wcchf-root.wcchf-bp-1200 .wcchf-brand img {
		width: var(--wcchf-logo);
		height: var(--wcchf-logo);
	}
	.wcchf-root.wcchf-bp-1200 .wcchf-brand { padding-bottom: 10px; }
	.wcchf-root.wcchf-bp-1200 .wcchf-navwrap { display: block; }
	.wcchf-root.wcchf-bp-1200 .wcchf-burger,
	.wcchf-root.wcchf-bp-1200 .wcchf-scrim,
	.wcchf-root.wcchf-bp-1200 .wcchf-drawer { display: none; }
}

/* ------------------------------------------------- 10. SMALLER SCREENS   */

@media (min-width: 601px) {
	.wcchf-root.wcchf-root .wcchf-foot-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 901px) {
	.wcchf-root.wcchf-root .wcchf-foot-grid {
		grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.wcchf-root { --wcchf-gutter: 18px; }

	.wcchf-root.wcchf-root .wcchf-topbar { font-size: 12.5px; }
	.wcchf-root.wcchf-root .wcchf-tb-note { display: none; }
	.wcchf-root.wcchf-root .wcchf-topbar .wcchf-wrap { justify-content: center; }
	.wcchf-root.wcchf-root .wcchf-tb-addr { white-space: normal; text-align: center; }

	.wcchf-root.wcchf-root .wcchf-foot { padding-top: 52px; }
	.wcchf-root.wcchf-root .wcchf-foot-grid { gap: 30px; }
	.wcchf-root.wcchf-root .wcchf-legal {
		margin-top: 36px;
		justify-content: center;
		text-align: center;
	}
	.wcchf-root.wcchf-root .wcchf-legal ul { justify-content: center; }
}

@media (max-width: 540px) {
	/* Phone: logo moves left, burger right, desktop CTA hides in favour of
	   the drawer's own book buttons so nothing ever wraps or overflows. */
	.wcchf-root.wcchf-root .wcchf-hdr-inner {
		grid-template-columns: auto minmax(0, 1fr);
		grid-template-areas: "brand cta";
		gap: 0 12px;
	}
	.wcchf-root.wcchf-root .wcchf-call { display: none; }
	.wcchf-root.wcchf-root .wcchf-brand { justify-self: start; }
	.wcchf-root.wcchf-root .wcchf-brand-text { justify-self: start; text-align: left; font-size: 17px; }
	.wcchf-root.wcchf-root .wcchf-cta .wcchf-btn { display: none; }
	.wcchf-root.wcchf-root .wcchf-cta .wcchf-tel-sm {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 46px;
		height: 46px;
		border: 1px solid var(--wcchf-line);
		border-radius: 10px;
		color: var(--wcchf-forest);
		font-size: 18px;
		flex: none;
	}
}

/* The small phone-call button only exists below 540px. */
.wcchf-root.wcchf-root .wcchf-tel-sm { display: none; }

@media (max-width: 380px) {
	.wcchf-root.wcchf-root .wcchf-drawer { width: 100vw; }
	.wcchf-root.wcchf-root .wcchf-brand img {
		width: 48px;
		height: 48px;
	}
}

/* ------------------------------------------------- 11. A11Y / PRINT      */

@media (prefers-reduced-motion: reduce) {
	.wcchf-root.wcchf-root .wcchf-drawer,
	.wcchf-root.wcchf-root .wcchf-scrim,
	.wcchf-root.wcchf-root .wcchf-drop,
	.wcchf-root.wcchf-root .wcchf-btn,
	.wcchf-root.wcchf-root .wcchf-burger i,
	.wcchf-root.wcchf-root .wcchf-burger i::before,
	.wcchf-root.wcchf-root .wcchf-burger i::after,
	.wcchf-root.wcchf-root .wcchf-acc > summary::after {
		transition: none !important;
	}
	.wcchf-root.wcchf-root .wcchf-btn:hover { transform: none; }
}

@media print {
	.wcchf-root.wcchf-root .wcchf-burger,
	.wcchf-root.wcchf-root .wcchf-drawer,
	.wcchf-root.wcchf-root .wcchf-scrim,
	.wcchf-root.wcchf-root .wcchf-topbar { display: none; }
	.wcchf-root.wcchf-root .wcchf-foot {
		background: none;
		color: #000;
	}
	.wcchf-root.wcchf-root .wcchf-foot a { color: #000; }
}

/* ============================================================ 12. HARDENING
   The link reset in section 2 uses !important so that themes shipping
   `a { color: x !important }` cannot repaint our menus. That means our own
   link colours must be re-asserted at the same weight. Everything below is
   still confined to .wcchf-root and cannot affect the page around it.
   ========================================================================= */

/* Default link colour inside each region */
.wcchf-root.wcchf-root .wcchf-nav > li > a,
.wcchf-root.wcchf-root .wcchf-drop a,
.wcchf-root.wcchf-root .wcchf-sub a { color: var(--wcchf-ink) !important; }

.wcchf-root.wcchf-root .wcchf-nav > li > a:hover,
.wcchf-root.wcchf-root .wcchf-nav > li > a:focus,
.wcchf-root.wcchf-root .wcchf-nav > li.wcchf-current > a,
.wcchf-root.wcchf-root .wcchf-drop a:hover,
.wcchf-root.wcchf-root .wcchf-drop a:focus,
.wcchf-root.wcchf-root .wcchf-sub a:hover,
.wcchf-root.wcchf-root .wcchf-sub a:focus,
.wcchf-root.wcchf-root .wcchf-drop .wcchf-hub a,
.wcchf-root.wcchf-root .wcchf-call a,
.wcchf-root.wcchf-root .wcchf-single,
.wcchf-root.wcchf-root .wcchf-close,
.wcchf-root.wcchf-root .wcchf-tel-sm,
.wcchf-root.wcchf-root .wcchf-drawer-tel a { color: var(--wcchf-forest) !important; }

.wcchf-root.wcchf-root .wcchf-call a:hover,
.wcchf-root.wcchf-root .wcchf-single:hover,
.wcchf-root.wcchf-root .wcchf-acc > summary:hover { color: var(--wcchf-gold) !important; }

/* Buttons */
.wcchf-root.wcchf-root .wcchf-btn { color: #fdfcf7 !important; }
.wcchf-root.wcchf-root .wcchf-btn:hover,
.wcchf-root.wcchf-root .wcchf-btn:focus { color: #fdfcf7 !important; }
.wcchf-root.wcchf-root .wcchf-btn--ghost,
.wcchf-root.wcchf-root .wcchf-btn--ghost:hover,
.wcchf-root.wcchf-root .wcchf-btn--ghost:focus { color: var(--wcchf-forest) !important; }

/* Top bar + footer sit on dark backgrounds */
.wcchf-root.wcchf-root .wcchf-topbar a { color: #fdfcf7 !important; }
.wcchf-root.wcchf-root .wcchf-topbar a:hover { color: #ffffff !important; text-decoration: underline !important; }

.wcchf-root.wcchf-root .wcchf-foot a,
.wcchf-root.wcchf-root .wcchf-legal a { color: var(--wcchf-foot-link) !important; }
.wcchf-root.wcchf-root .wcchf-foot a:hover,
.wcchf-root.wcchf-root .wcchf-foot a:focus,
.wcchf-root.wcchf-root .wcchf-legal a:hover { color: #ffffff !important; text-decoration: underline !important; }

/* Round brand images survive `img { border-radius: 0 !important }` themes */
.wcchf-root.wcchf-root .wcchf-brand img,
.wcchf-root.wcchf-root .wcchf-drawer-head img,
.wcchf-root.wcchf-root .wcchf-fb img {
	border-radius: 50% !important;
	object-fit: cover !important;
}

.wcchf-root.wcchf-root .wcchf-brand img {
	width: var(--wcchf-logo-sm) !important;
	height: var(--wcchf-logo-sm) !important;
	max-width: none !important;
	box-shadow: 0 8px 20px rgba(34, 50, 44, 0.14) !important;
}

.wcchf-root.wcchf-root .wcchf-drawer-head img {
	width: 46px !important;
	height: 46px !important;
	max-width: none !important;
}

.wcchf-root.wcchf-root .wcchf-fb img {
	width: 64px !important;
	height: 64px !important;
	max-width: none !important;
}

/* Desktop logo size, re-applied above the hardening rules. */
@media (min-width: 993px) {
	.wcchf-root.wcchf-bp-992 .wcchf-brand img {
		width: var(--wcchf-logo) !important;
		height: var(--wcchf-logo) !important;
	}
}

@media (min-width: 1081px) {
	.wcchf-root.wcchf-bp-1080 .wcchf-brand img {
		width: var(--wcchf-logo) !important;
		height: var(--wcchf-logo) !important;
	}
}

@media (min-width: 1201px) {
	.wcchf-root.wcchf-bp-1200 .wcchf-brand img {
		width: var(--wcchf-logo) !important;
		height: var(--wcchf-logo) !important;
	}
}

@media (max-width: 380px) {
	.wcchf-root.wcchf-root .wcchf-brand img {
		width: 48px !important;
		height: 48px !important;
	}
}

/* ========================================================= 13. SCROLL LOCK
   The only rules that leave the component scope. They are reversible classes
   the plugin adds and removes on <html>.

   Critically, each lock is tied to its own breakpoint. If the viewport grows
   past the breakpoint while the drawer is open, the drawer is hidden by the
   rules in section 9 and this lock stops applying on its own — the page
   cannot be left unscrollable even if no resize or matchMedia event ever
   fires. CSS is the failsafe; the JS listeners are the tidy-up.
   ========================================================================= */

@media (max-width: 992px) {
	html.wcchf-locked.wcchf-lock-992,
	html.wcchf-locked.wcchf-lock-992 body {
		overflow: hidden !important;
		touch-action: none;
	}
}

@media (max-width: 1080px) {
	html.wcchf-locked.wcchf-lock-1080,
	html.wcchf-locked.wcchf-lock-1080 body {
		overflow: hidden !important;
		touch-action: none;
	}
}

@media (max-width: 1200px) {
	html.wcchf-locked.wcchf-lock-1200,
	html.wcchf-locked.wcchf-lock-1200 body {
		overflow: hidden !important;
		touch-action: none;
	}
}
