/* ==========================================================================
   Clayton Hills — theme styles
   A faithful recreation of the approved seven-page design.
   ========================================================================== */

/* ------------------------------------------------------------------ Tokens */
:root {
	--ch-white: #fdfdfb;
	--ch-parchment: #f2ebdd;
	--ch-cream: #f3efe3;          /* wine & shop band */
	--ch-card: #fcfbf7;           /* wine card */
	--ch-ink: #191c16;
	--ch-footer: #101209;
	--ch-green-head: #26331f;
	--ch-green-body: #3f4a32;
	--ch-green-body-2: #4c563d;
	--ch-green-muted: #56624f;
	--ch-brand-green: #36492c;
	--ch-accent: #5a7444;
	--ch-sage: #6a7a4e;
	--ch-gold: #c2a35e;
	--ch-gold-2: #c4ac74;
	--ch-quote-ink: #2c3a22;
	--ch-dark: #191c16;
	--ch-dark-text: #f0efe6;
	--ch-dark-head: #f7f6ec;
	--ch-dark-muted: #b9bca8;
	--ch-rule-white: #e3e3db;
	--ch-rule-parch: #ddd6c4;
	--ch-rule-nav: #e8e8e2;
	--ch-nav-link: #43473e;

	--ch-font-display: 'Cinzel', 'Times New Roman', serif;
	--ch-font-body: 'Cabin', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--ch-font-serif: 'Cormorant Garamond', Georgia, serif;
}

/* -------------------------------------------------------------------- Base */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.ch-theme,
body {
	margin: 0;
	background: var(--ch-white);
	color: var(--ch-ink);
	font-family: var(--ch-font-body);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: clip;
}

body ::selection { background: var(--ch-ink); color: var(--ch-white); }

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

a { color: var(--ch-brand-green); }

.ch-main { display: block; }
.ch-no-hero .ch-main { padding-top: 92px; }

.ch-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 200;
	background: var(--ch-ink);
	color: var(--ch-white);
	padding: 12px 20px;
	border-radius: 0 0 6px 0;
	font-size: 14px;
	text-decoration: none;
}
.ch-skip-link:focus { left: 0; }

/* ------------------------------------------------------------- Typography */
.ch-kicker {
	font-family: var(--ch-font-serif);
	font-style: italic;
	color: var(--ch-sage);
	margin: 0 0 14px;
	font-size: clamp(19px, 2.2vw, 26px);
	line-height: 1.2;
}
.ch-h2 {
	font-family: var(--ch-font-display);
	font-weight: 500;
	font-size: 46px;
	letter-spacing: 0.04em;
	line-height: 1.05;
	margin: 0;
	color: var(--ch-green-head);
}
.ch-h3 {
	font-family: var(--ch-font-display);
	font-weight: 500;
	font-size: 19px;
	letter-spacing: 0.04em;
	margin: 0;
	color: var(--ch-green-head);
}
.ch-lead {
	font-family: var(--ch-font-serif);
	font-size: 24px;
	line-height: 1.55;
	color: var(--ch-quote-ink);
	margin: 0;
}
.ch-body {
	font-size: 16px;
	line-height: 1.85;
	color: var(--ch-green-body);
}
.ch-dot { color: var(--ch-accent); }

/* Rich text output (wysiwyg) */
.ch-rte > :first-child { margin-top: 0; }
.ch-rte > :last-child { margin-bottom: 0; }
.ch-rte p { margin: 0 0 16px; font-size: 16px; line-height: 1.85; color: var(--ch-green-body); }
.ch-rte a { color: #36492c; }
.ch-rte strong { font-weight: 600; }
.ch-rte ul { margin: 0 0 16px; padding-left: 1.1em; }
.ch-rte li { margin: 0 0 8px; line-height: 1.8; }

/* --------------------------------------------------------------- Buttons */
.ch-btn-row { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-top: 32px; }
.ch-btn {
	text-decoration: none;
	display: inline-block;
	font-family: var(--ch-font-body);
	font-size: 14.5px;
	font-weight: 500;
	border-radius: 999px;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
	cursor: pointer;
	border: none;
}
.ch-btn--solid { padding: 13px 28px; }

/* Green (light backgrounds) */
.ch-btn--green.ch-btn--solid { background: var(--ch-brand-green); color: var(--ch-parchment); }
.ch-btn--green.ch-btn--solid:hover { background: #2a3a22; }
.ch-btn--underline.ch-btn--green {
	color: var(--ch-brand-green);
	font-family: var(--ch-font-serif);
	font-style: italic;
	font-size: 18px;
	border-radius: 0;
	padding: 0 0 2px;
}

/* Light (over dark photography) */
.ch-btn--light.ch-btn--solid { background: var(--ch-white); color: var(--ch-ink); padding: 13px 30px; }
.ch-btn--light.ch-btn--solid:hover { background: #e4e2d5; }
.ch-btn--underline.ch-btn--light {
	color: var(--ch-dark-text);
	font-family: var(--ch-font-serif);
	font-style: italic;
	font-size: 18px;
	border-radius: 0;
	padding: 0 0 2px;
	border-bottom: 1px solid rgba(240, 239, 230, 0.5);
}

/* Dark (dark sections / CTAs) */
.ch-btn--dark.ch-btn--solid { background: var(--ch-dark-text); color: var(--ch-ink); }
.ch-btn--dark.ch-btn--solid:hover { background: #d9d7c6; }
.ch-btn--underline.ch-btn--dark {
	color: var(--ch-parchment);
	font-family: var(--ch-font-serif);
	font-style: italic;
	font-size: 18px;
	border-radius: 0;
	padding: 0 0 2px;
	border-bottom: 1px solid var(--ch-gold);
}

/* Ink pill (nav / mobile) */
.ch-btn--ink.ch-btn--solid { background: var(--ch-ink); color: var(--ch-white); }
.ch-btn--ink.ch-btn--solid:hover { background: #3a3f35; }

/* --------------------------------------------------------------- Stars */
.ch-stars { display: flex; gap: 4px; }
.ch-stars svg { display: block; }

/* --------------------------------------------------------------- Motion */
@keyframes chRise {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: none; }
}
@keyframes chZoom {
	0% { transform: scale(1.02); }
	100% { transform: scale(1.08); }
}
@keyframes chBob {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(8px); }
}
.ch-reveal { animation: chRise 1s cubic-bezier(.2, .7, .2, 1) both; }
.ch-reveal--d1 { animation-delay: .06s; }
.ch-reveal--d2 { animation-delay: .12s; }
.ch-reveal--d3 { animation-delay: .18s; }
@media (prefers-reduced-motion: reduce) {
	.ch-reveal { animation: none; }
	.ch-hero__img { animation: none !important; }
	html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------- Layout */
.ch-section { position: relative; }
.ch-wrap { max-width: 1060px; margin: 0 auto; }
.ch-wrap--narrow { max-width: 960px; }
.ch-wrap--wide { max-width: 1240px; }
.ch-wrap--shop { max-width: 1180px; }
.ch-wrap--cards { max-width: 1200px; }

.alignfull { max-width: none; }

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.ch-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 40;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	background: rgba(253, 253, 251, 0.86);
	border-bottom: 1px solid var(--ch-rule-nav);
}
.ch-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px clamp(20px, 4.5vw, 60px);
}
.ch-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ch-ink); }
.ch-brand__mark { display: block; width: 54px; height: 54px; object-fit: contain; }
.ch-brand__name { font-family: var(--ch-font-display); font-weight: 600; letter-spacing: 0.24em; font-size: 15px; color: var(--ch-ink); }

.ch-nav-wrap { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 32px); }
.ch-nav {
	list-style: none; margin: 0; padding: 0;
	display: flex; align-items: center; gap: clamp(14px, 2.2vw, 32px);
	font-size: 13.5px; letter-spacing: 0.03em;
}
.ch-nav li { position: relative; }
.ch-nav a { text-decoration: none; color: var(--ch-nav-link); display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
.ch-nav a:hover { color: var(--ch-ink); }
.ch-nav > .current-menu-item > a,
.ch-nav > .current_page_item > a,
.ch-nav > .current-menu-ancestor > a,
.ch-nav > .current-page-ancestor > a { color: var(--ch-ink); font-weight: 600; }

.ch-nav .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 6px; height: 6px;
	border-right: 1.4px solid currentColor;
	border-bottom: 1.4px solid currentColor;
	transform: rotate(45deg) translate(-1px, -2px);
}
/* invisible hover bridge over the 12px gap */
.ch-nav .menu-item-has-children::before {
	content: "";
	position: absolute;
	left: -20px; right: -20px; top: 100%;
	height: 16px;
}
.ch-nav .sub-menu {
	display: none;
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%);
	margin: 0; padding: 8px 0;
	list-style: none;
	min-width: 190px;
	background: rgba(253, 253, 251, 0.97);
	border: 1px solid var(--ch-rule-nav);
	box-shadow: 0 18px 40px -24px rgba(20, 22, 18, 0.35);
	z-index: 50;
}
.ch-nav .menu-item-has-children:hover > .sub-menu,
.ch-nav .menu-item-has-children:focus-within > .sub-menu { display: block; }
.ch-nav .sub-menu li { display: block; }
.ch-nav .sub-menu a {
	display: block;
	padding: 11px 22px;
	color: var(--ch-nav-link);
	font-size: 13.5px;
	letter-spacing: 0.03em;
}
.ch-nav .sub-menu a::after { content: none; }
.ch-nav .sub-menu a:hover { background: #f2f1e9; color: var(--ch-ink); }

.ch-nav__cta {
	text-decoration: none;
	color: var(--ch-white);
	background: var(--ch-ink);
	padding: 9px 20px;
	border-radius: 999px;
	font-weight: 500;
	font-size: 13.5px;
	letter-spacing: 0.03em;
	transition: background .2s;
	white-space: nowrap;
}
.ch-nav__cta:hover { background: #3a3f35; }

/* Burger + mobile nav */
.ch-burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}
.ch-burger span { display: block; width: 26px; height: 2px; background: var(--ch-ink); transition: transform .25s, opacity .25s; }
.ch-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ch-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.ch-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ch-mobile-nav {
	position: fixed;
	top: 82px; left: 0; right: 0; bottom: 0;
	z-index: 39;
	background: rgba(253, 253, 251, 0.98);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 24px clamp(20px, 5vw, 40px) 60px;
	overflow-y: auto;
}
.ch-mobile-nav[hidden] { display: none; }
.ch-mobile-nav__menu { list-style: none; margin: 0 0 24px; padding: 0; }
.ch-mobile-nav__menu li { border-bottom: 1px solid var(--ch-rule-nav); }
.ch-mobile-nav__menu a { display: block; padding: 16px 4px; text-decoration: none; color: var(--ch-green-head); font-family: var(--ch-font-display); font-size: 18px; letter-spacing: 0.04em; }
.ch-mobile-nav__menu .sub-menu { list-style: none; margin: 0; padding: 0 0 8px 16px; }
.ch-mobile-nav__menu .sub-menu a { font-family: var(--ch-font-body); font-size: 15px; padding: 10px 4px; color: var(--ch-nav-link); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.ch-footer {
	background: var(--ch-footer);
	color: #dfdfd2;
	padding: clamp(56px, 7vw, 90px) clamp(20px, 4.5vw, 60px) 42px;
}
.ch-footer__grid {
	max-width: 1180px; margin: 0 auto;
	display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr;
	gap: clamp(26px, 4vw, 48px);
}
.ch-footer__lockup { display: flex; align-items: center; gap: 12px; }
.ch-footer__lockup img { display: block; width: 44px; height: 44px; object-fit: contain; }
.ch-footer__name { font-family: var(--ch-font-display); letter-spacing: 0.22em; font-size: 15px; color: var(--ch-dark-text); }
.ch-footer__strap { margin: 16px 0 0; max-width: 280px; color: #9a9c8a; line-height: 1.7; font-family: var(--ch-font-serif); font-style: italic; font-size: 17px; }
.ch-footer__heading { font-family: var(--ch-font-display); font-weight: 500; letter-spacing: 0.08em; font-size: 13px; color: var(--ch-gold-2); margin: 0 0 14px; }
.ch-foot-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.ch-foot-links a { text-decoration: none; color: #c6c8b6; }
.ch-foot-links a:hover { color: var(--ch-dark-text); }
.ch-footer__address, .ch-footer__address p { margin: 0; color: #c6c8b6; line-height: 1.9; font-size: 14px; }
.ch-footer__bar {
	max-width: 1180px; margin: 44px auto 0; padding-top: 20px;
	border-top: 1px solid rgba(223, 223, 210, 0.14);
	display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
	color: #7e8071; font-size: 12.5px;
}
.ch-footer__motto { font-family: var(--ch-font-serif); font-style: italic; font-size: 14px; }

/* ==========================================================================
   BLOCK: HERO
   ========================================================================== */
.ch-hero { position: relative; overflow: hidden; color: var(--ch-white); }
.ch-hero--full { min-height: 100vh; }
.ch-hero--tall { height: 78vh; min-height: 560px; }
.ch-hero--short { height: 64vh; min-height: 480px; }
.ch-hero__media { position: absolute; inset: 0; overflow: hidden; }
.ch-hero__img {
	display: block; width: 100%; height: 100%; object-fit: cover;
	filter: grayscale(1) contrast(1.05);
	animation: chZoom 22s linear infinite alternate;
	transform-origin: center;
}
.ch-hero__grad {
	position: absolute; inset: 0; pointer-events: none;
	background: linear-gradient(180deg, rgba(253, 253, 251, 0.1), rgba(20, 22, 18, 0.16) 55%, rgba(20, 22, 18, 0.62));
}
.ch-hero__grain { position: absolute; inset: 0; pointer-events: none; mix-blend-mode: overlay; opacity: 0.6; }
.ch-hero__grain svg { width: 100%; height: 100%; }
.ch-hero__torn { position: absolute; left: 0; right: 0; bottom: -1px; height: 60px; pointer-events: none; z-index: 4; }
.ch-hero__torn svg { display: block; width: 100%; height: 100%; }
.ch-hero__tear { position: absolute; left: -2%; bottom: -2px; width: 104%; height: clamp(44px, 5.5vw, 80px); display: block; pointer-events: none; z-index: 4; }

/* bottom-left layout */
.ch-hero__content {
	position: absolute;
	left: clamp(20px, 4.5vw, 60px);
	right: clamp(20px, 4.5vw, 60px);
	bottom: clamp(72px, 8vw, 110px);
	z-index: 2;
}
.ch-hero__kicker { font-family: var(--ch-font-serif); font-style: italic; font-size: clamp(19px, 2.2vw, 26px); margin: 0 0 12px; color: #e8e6da; }
.ch-hero__title {
	font-family: var(--ch-font-display); font-weight: 500;
	font-size: clamp(38px, 6vw, 84px); line-height: 0.98; letter-spacing: 0.06em;
	margin: 0; max-width: 16ch; color: var(--ch-white);
}
.ch-hero__row { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; margin-top: 26px; }
.ch-hero__row .ch-btn-row { margin-top: 0; }
.ch-hero__text { max-width: 440px; margin: 0; font-size: 15.5px; line-height: 1.7; color: #e3e2d6; }

/* centred layout */
.ch-hero--centre {
	min-height: 100vh;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	text-align: center; padding: 120px 24px 110px;
}
.ch-hero--centre .ch-hero__grad {
	background: linear-gradient(180deg, rgba(20, 24, 18, 0.34), rgba(20, 24, 18, 0.18) 42%, rgba(20, 24, 18, 0.66));
}
.ch-hero__centre { position: relative; z-index: 2; }
.ch-hero__crest { display: block; width: 200px; height: 200px; object-fit: contain; margin: 0 auto 30px; filter: drop-shadow(0 4px 18px rgba(20, 24, 18, 0.5)); }
.ch-hero__title--centre {
	max-width: none; letter-spacing: 0.18em; font-size: clamp(40px, 8vw, 104px);
	color: #fcfbf7; text-shadow: 0 2px 30px rgba(20, 24, 18, 0.45);
}
.ch-hero__tagline { font-family: var(--ch-font-serif); font-style: italic; font-size: clamp(19px, 2.4vw, 28px); color: #e9e4cf; margin: 22px 0 0; letter-spacing: 0.01em; }
.ch-hero__text--centre { max-width: 430px; margin: 18px auto 0; color: #dcdcce; }
.ch-hero__scroll {
	position: absolute; z-index: 3; bottom: 58px; left: 50%; transform: translateX(-50%);
	text-decoration: none; color: #e4e2d2; display: flex; flex-direction: column; align-items: center; gap: 8px;
	font-size: 11.5px; letter-spacing: 0.22em;
}
.ch-hero__scroll span:last-child { display: inline-block; animation: chBob 2.4s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .ch-hero__scroll span:last-child { animation: none; } }

/* ==========================================================================
   BLOCK: THREE-QUARTER TEXT
   ========================================================================== */
.ch-text { padding: clamp(56px, 7vw, 100px) clamp(24px, 5vw, 72px); }
.ch-text--white { background: var(--ch-white); }
.ch-text--parchment { background: var(--ch-parchment); }
.ch-text--shadow { box-shadow: 0 18px 40px -28px rgba(36, 48, 25, 0.35); }
.ch-text__col { width: 75%; min-width: min(100%, 560px); }
.ch-text__heading { margin: 0 0 20px; }
.ch-text__lead { margin: 0 0 18px; }
.ch-text .ch-rte p:last-child { margin-bottom: 0; }
.ch-text--centre { text-align: center; padding: clamp(80px, 12vw, 170px) 24px; }
.ch-text--centre .ch-text__col { width: 100%; max-width: 880px; margin: 0 auto; min-width: 0; }
.ch-text--centre .ch-text__lead { font-family: var(--ch-font-serif); font-size: clamp(26px, 4vw, 46px); line-height: 1.4; color: #27361f; margin: 0; }
.ch-text--centre .ch-text__lead:not(:last-child) { margin-bottom: 18px; }

/* ==========================================================================
   BLOCK: TEXT & IMAGE
   ========================================================================== */
.ch-ti { padding: clamp(64px, 9vw, 130px) clamp(20px, 4.5vw, 60px); }
.ch-ti--parchment { background: var(--ch-parchment); }
.ch-ti--white { background: var(--ch-white); }
.ch-ti__grid {
	max-width: 1240px; margin: 0 auto;
	display: grid; grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(28px, 4.5vw, 70px); align-items: center;
}
.ch-ti--image-left .ch-ti__grid { grid-template-columns: 0.95fr 1.05fr; }
.ch-ti--image-left .ch-ti__media { order: -1; }
.ch-ti__heading { font-size: 46px; line-height: 1.02; letter-spacing: 0.01em; margin: 0; }
.ch-ti__lead { max-width: 440px; margin: 26px 0 0; }
.ch-ti__body { max-width: 440px; margin: 16px 0 0; }
.ch-ti__body p { color: var(--ch-green-body-2); line-height: 1.75; }
.ch-ti__media { position: relative; }
.ch-ti__frame {
	position: relative; aspect-ratio: 4 / 5; border-radius: 4px; overflow: hidden;
	box-shadow: 0 24px 60px -28px rgba(40, 55, 30, 0.5);
}
.ch-ti__hills { display: block; position: absolute; inset: 0; width: 100%; height: 100%; }
.ch-ti__shade { position: absolute; inset: 0; mix-blend-mode: multiply; background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(54, 73, 44, 0.18)); }
.ch-ti__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ch-ti__photo--gray { filter: grayscale(1) contrast(1.05); }
.ch-ti__wash { position: absolute; inset: 0; pointer-events: none; mix-blend-mode: multiply; background: radial-gradient(120% 90% at 40% 20%, rgba(146, 168, 111, 0), rgba(60, 79, 44, 0.34)); filter: url(#chWc); }
.ch-ti__caption { position: absolute; left: 0; bottom: -30px; padding: 10px 18px 0 0; font-family: var(--ch-font-serif); font-style: italic; font-size: 16px; color: #6a6f60; }

/* ==========================================================================
   BLOCK: THREE CARDS
   ========================================================================== */
.ch-cards { padding: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 64px); }
.ch-cards--white { background: var(--ch-white); }
.ch-cards--parchment { background: var(--ch-parchment); }
.ch-cards__head { text-align: center; }
.ch-cards__heading { text-align: center; letter-spacing: 0.12em; margin: 0 0 14px; }
.ch-cards__intro { text-align: center; color: var(--ch-green-muted); max-width: 520px; margin: 0 auto clamp(48px, 7vw, 80px); line-height: 1.7; font-size: 15.5px; }
.ch-cards__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(28px, 3.5vw, 52px); }
.ch-card { }
.ch-card__media { position: relative; border-radius: 6px; overflow: hidden; aspect-ratio: 4 / 5; background: #e7ecdd; }
.ch-card__img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(1) contrast(1.05); }
.ch-card__wash { position: absolute; inset: 0; pointer-events: none; mix-blend-mode: multiply; filter: url(#chCardWc); }
.ch-card__wash--green { background: linear-gradient(180deg, rgba(125, 154, 107, 0.10), rgba(63, 90, 57, 0.30)); }
.ch-card__wash--gold { background: linear-gradient(180deg, rgba(196, 172, 116, 0.12), rgba(63, 90, 57, 0.28)); }
.ch-card__edge { position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(63, 90, 57, 0.18); border-radius: 6px; }
.ch-card__title { font-family: var(--ch-font-display); font-weight: 500; letter-spacing: 0.06em; font-size: 21px; margin: 22px 0 8px; color: var(--ch-ink); }
.ch-card__text { margin: 0; color: var(--ch-green-muted); line-height: 1.7; font-size: 14.5px; }

/* ==========================================================================
   BLOCK: WINE & SHOP
   ========================================================================== */
.ch-wine { position: relative; z-index: 2; background: var(--ch-cream); padding: clamp(64px, 8vw, 120px) clamp(20px, 4.5vw, 60px); }
.ch-wine__head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: clamp(36px, 5vw, 56px); }
.ch-wine__heading { font-family: var(--ch-font-display); font-weight: 500; font-size: 46px; letter-spacing: 0.03em; margin: 0; color: var(--ch-green-head); }
.ch-wine__intro { margin: 0; font-family: var(--ch-font-serif); font-style: italic; font-size: 18px; color: var(--ch-sage); }
.ch-wine__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(22px, 3vw, 40px); }
.ch-wine-card {
	background: var(--ch-card); border: 1px solid #e6dfcc; border-radius: 8px;
	padding: 30px 26px; text-align: center;
	transition: transform .25s ease, box-shadow .25s ease;
}
.ch-wine-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px -26px rgba(40, 55, 30, 0.45); }
.ch-wine-card__bottle { position: relative; height: 270px; display: flex; align-items: flex-end; justify-content: center; }
.ch-wine-card__vintage { font-family: var(--ch-font-serif); font-style: italic; color: #8a7a4a; font-size: 16px; margin-top: 16px; }
.ch-wine-card__name { font-family: var(--ch-font-display); font-weight: 500; font-size: 20px; letter-spacing: 0.04em; margin: 4px 0 6px; color: var(--ch-ink); }
.ch-wine-card__desc { margin: 0 0 16px; color: #66705a; font-size: 14px; line-height: 1.6; }
.ch-wine-card__foot { display: flex; align-items: center; justify-content: center; gap: 16px; }
.ch-wine-card__price { font-family: var(--ch-font-display); font-size: 19px; color: var(--ch-ink); }
.ch-wine-card__btn { text-decoration: none; color: #3f5a39; border: 1.5px solid #3f5a39; padding: 9px 22px; border-radius: 999px; font-size: 13.5px; font-weight: 500; transition: all .2s; }
.ch-wine-card__btn:hover { background: #3f5a39; color: var(--ch-card); }
.ch-wine__footnote { margin: 26px 0 0; text-align: center; color: #7c8468; font-family: var(--ch-font-serif); font-style: italic; font-size: 16px; }

/* ==========================================================================
   BLOCK: GALLERY — CONTACT SHEET
   ========================================================================== */
.ch-gallery { background: var(--ch-dark); color: var(--ch-dark-text); padding: clamp(64px, 8vw, 120px) clamp(24px, 4vw, 60px); }
.ch-gallery__head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.ch-gallery__heading { font-family: var(--ch-font-display); font-weight: 500; font-size: 46px; letter-spacing: 0.04em; margin: 0; color: var(--ch-dark-head); }
.ch-gallery__sub { margin: 0; font-family: var(--ch-font-serif); font-style: italic; font-size: 18px; color: var(--ch-dark-muted); }
.ch-gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ch-frame { margin: 0; }
.ch-frame__inner { border: 1px solid #34382e; padding: 8px; background: #111410; }
.ch-frame__img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: grayscale(1) contrast(1.05); transition: filter .5s ease; cursor: pointer; }
.ch-frame__img:hover { filter: grayscale(0) contrast(1); }
.ch-frame__cap { display: flex; justify-content: space-between; margin-top: 10px; font-size: 11.5px; letter-spacing: 0.12em; color: #8e927f; }

.ch-lightbox { display: none; position: fixed; inset: 0; z-index: 100; background: rgba(12, 14, 10, 0.92); align-items: center; justify-content: center; padding: clamp(20px, 4vw, 60px); cursor: zoom-out; }
.ch-lightbox.is-open { display: flex; }
.ch-lightbox__fig { margin: 0; max-width: min(1100px, 92vw); width: 100%; }
.ch-lightbox__box { border: 1px solid #34382e; padding: 12px; background: #111410; box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8); }
.ch-lightbox__img { display: block; width: 100%; max-height: 74vh; object-fit: contain; }
.ch-lightbox__cap { display: flex; justify-content: space-between; margin-top: 14px; font-size: 13px; letter-spacing: 0.12em; color: var(--ch-dark-muted); }
.ch-lightbox__close { position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; border-radius: 999px; border: 1px solid #4a4e42; background: rgba(17, 20, 16, 0.7); color: var(--ch-dark-text); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }

/* ==========================================================================
   BLOCK: FAQ ROWS
   ========================================================================== */
.ch-faq { padding: clamp(56px, 7vw, 100px) clamp(24px, 5vw, 72px); }
.ch-faq--white { background: var(--ch-white); }
.ch-faq--parchment { background: var(--ch-parchment); }
.ch-faq__heading { margin: 0 0 clamp(26px, 3vw, 40px); }
.ch-faq__rows { display: flex; flex-direction: column; }
.ch-faq__row {
	display: grid; grid-template-columns: minmax(200px, 300px) 1fr;
	gap: clamp(16px, 3vw, 44px); padding: 24px 0; align-items: start;
	border-top: 1px solid var(--ch-rule-white);
}
.ch-faq--parchment .ch-faq__row { border-top-color: var(--ch-rule-parch); }
.ch-faq__row:last-child { border-bottom: 1px solid var(--ch-rule-white); }
.ch-faq--parchment .ch-faq__row:last-child { border-bottom-color: var(--ch-rule-parch); }
.ch-faq__q { font-family: var(--ch-font-display); font-weight: 500; font-size: 19px; letter-spacing: 0.03em; margin: 0; color: var(--ch-green-head); }
.ch-faq__a { margin: 0; font-size: 15.5px; line-height: 1.75; color: var(--ch-green-body); }
.ch-faq__a p { margin: 0 0 12px; font-size: 15.5px; line-height: 1.75; color: var(--ch-green-body); }
.ch-faq__a p:last-child { margin-bottom: 0; }
.ch-faq__a a { color: #36492c; }

/* ==========================================================================
   BLOCK: TWO-COLUMN TEXT
   ========================================================================== */
.ch-twocol { padding: clamp(56px, 7vw, 100px) clamp(24px, 5vw, 72px); }
.ch-twocol--white { background: var(--ch-white); }
.ch-twocol--parchment { background: var(--ch-parchment); }
.ch-twocol__heading { margin: 0 0 clamp(28px, 4vw, 44px); }
.ch-twocol__grid { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); }
.ch-twocol__grid--split { grid-template-columns: minmax(220px, 0.9fr) 1.1fr; align-items: start; }
.ch-twocol__col-heading { font-family: var(--ch-font-display); font-weight: 500; letter-spacing: 0.03em; font-size: 22px; margin: 0 0 12px; color: var(--ch-green-head); }
.ch-twocol__col .ch-rte p { font-size: 15.5px; line-height: 1.8; }
.ch-twocol__col .ch-btn-row { margin-top: 8px; }
.ch-twocol__lead-heading { font-size: 46px; line-height: 1.08; margin: 0; }
.ch-twocol__subline { margin: 16px 0 0; font-family: var(--ch-font-serif); font-style: italic; font-size: 19px; color: var(--ch-sage); }
.ch-twocol__items { display: flex; flex-direction: column; gap: 26px; }
.ch-twocol__item-heading { font-family: var(--ch-font-display); font-weight: 500; letter-spacing: 0.03em; font-size: 22px; margin: 0 0 8px; color: var(--ch-green-head); }

/* ==========================================================================
   BLOCK: NUMBERED LIST
   ========================================================================== */
.ch-numbered { padding: clamp(56px, 7vw, 100px) clamp(24px, 5vw, 72px); }
.ch-numbered--white { background: var(--ch-white); }
.ch-numbered--parchment { background: var(--ch-parchment); }
.ch-numbered__intro { width: 75%; min-width: min(100%, 560px); margin-bottom: clamp(36px, 5vw, 56px); }
.ch-numbered__heading { margin: 0 0 20px; }
.ch-numbered__heading--solo { margin: 0 0 clamp(30px, 4vw, 50px); }
.ch-numbered__lead { margin: 0; }
.ch-numbered__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(26px, 3.5vw, 52px); }
.ch-numbered__num { font-family: var(--ch-font-serif); font-style: italic; font-size: 46px; color: var(--ch-accent); line-height: 1; }
.ch-numbered__title { font-family: var(--ch-font-display); font-weight: 500; font-size: 22px; letter-spacing: 0.03em; margin: 8px 0 10px; color: var(--ch-ink); }
.ch-numbered__text { margin: 0; font-size: 15px; line-height: 1.75; color: var(--ch-green-body); }

/* ==========================================================================
   BLOCK: FIELD NOTES
   ========================================================================== */
.ch-notes { padding: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 64px); background: var(--ch-white); }
.ch-notes .ch-wrap--narrow { max-width: 1100px; }
.ch-notes__heading { letter-spacing: 0.12em; margin: 0 0 clamp(40px, 6vw, 68px); }
.ch-notes__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(24px, 3vw, 44px); }
.ch-notes__item { border-top: 1px solid #d9d3c2; padding-top: 20px; }
.ch-notes__date { font-family: var(--ch-font-serif); font-style: italic; color: #8a7a4a; font-size: 15px; }
.ch-notes__title { font-family: var(--ch-font-display); font-weight: 500; font-size: 19px; letter-spacing: 0.04em; margin: 8px 0 10px; color: var(--ch-ink); }
.ch-notes__text { margin: 0; color: var(--ch-green-muted); line-height: 1.7; font-size: 14.5px; }

/* ==========================================================================
   BLOCK: DARK CTA
   ========================================================================== */
.ch-ctadark { position: relative; overflow: hidden; background: var(--ch-dark); color: var(--ch-dark-text); }
.ch-ctadark__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.34; filter: grayscale(1); }
.ch-ctadark__inner { position: relative; text-align: center; padding: clamp(80px, 11vw, 150px) 24px; }
.ch-ctadark__kicker { font-family: var(--ch-font-serif); font-style: italic; font-size: clamp(20px, 2.6vw, 28px); color: #cfd2bd; margin: 0 0 12px; }
.ch-ctadark__heading { font-family: var(--ch-font-display); font-weight: 500; font-size: 46px; letter-spacing: 0.06em; margin: 0 0 26px; color: var(--ch-dark-head); }
.ch-ctadark .ch-btn-row { justify-content: center; margin-top: 0; }
.ch-ctadark .ch-btn--solid { padding: 14px 36px; font-size: 15px; }

/* ==========================================================================
   BLOCK: DARK CTA WITH REVIEWS
   ========================================================================== */
.ch-ctarev { background: var(--ch-dark); color: var(--ch-dark-text); padding: clamp(56px, 7vw, 100px) clamp(24px, 5vw, 72px); box-shadow: 0 18px 40px -28px rgba(36, 48, 25, 0.5); }
.ch-ctarev__grid { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 4vw, 72px); align-items: center; }
.ch-ctarev__heading { font-family: var(--ch-font-display); font-weight: 500; letter-spacing: 0.04em; font-size: 46px; line-height: 1.1; margin: 0 0 16px; color: var(--ch-dark-head); }
.ch-ctarev__heading .ch-dot { color: var(--ch-gold); }
.ch-ctarev__body { margin: 0 0 28px; font-size: 15.5px; line-height: 1.8; color: #c9ccba; max-width: 440px; }
.ch-ctarev .ch-btn-row { margin-top: 0; }
.ch-ctarev__panel { border-left: 1px solid rgba(242, 235, 221, 0.2); padding-left: clamp(24px, 3vw, 48px); }
.ch-ctarev__panel .ch-stars { margin-bottom: 14px; }
.ch-ctarev__quote { margin: 0 0 16px; font-family: var(--ch-font-serif); font-style: italic; font-size: 21px; line-height: 1.5; color: var(--ch-dark-text); }
.ch-ctarev__attr { font-size: 13.5px; letter-spacing: 0.06em; color: var(--ch-dark-muted); }
.ch-ctarev__rating { margin-top: 6px; font-size: 13px; color: #8e927f; }

/* ==========================================================================
   BLOCK: TESTIMONIAL
   ========================================================================== */
.ch-testi { padding: clamp(56px, 7vw, 100px) clamp(24px, 5vw, 72px); text-align: center; }
.ch-testi--parchment { background: var(--ch-parchment); box-shadow: 0 18px 40px -28px rgba(36, 48, 25, 0.35); }
.ch-testi--white { background: var(--ch-white); box-shadow: 0 18px 40px -28px rgba(36, 48, 25, 0.35); }
.ch-testi--dark { background: var(--ch-dark); box-shadow: 0 18px 40px -28px rgba(36, 48, 25, 0.5); }
.ch-testi__inner { max-width: 820px; margin: 0 auto; }
.ch-testi__heading { margin: 0 0 clamp(24px, 3vw, 36px); }
.ch-testi--dark .ch-testi__heading { color: var(--ch-dark-head); }
.ch-testi--dark .ch-testi__heading .ch-dot { color: var(--ch-gold); }
.ch-testi__stars { justify-content: center; margin-bottom: 20px; }
.ch-testi__quote { margin: 0 0 22px; font-family: var(--ch-font-serif); font-style: italic; font-size: clamp(22px, 2.8vw, 30px); line-height: 1.5; color: var(--ch-quote-ink); }
.ch-testi--dark .ch-testi__quote { color: var(--ch-dark-text); }
.ch-testi__attr { font-size: 13.5px; letter-spacing: 0.08em; color: #6b7560; }
.ch-testi--dark .ch-testi__attr { color: var(--ch-dark-muted); }

/* ==========================================================================
   BLOCK: CONTACT FORM
   ========================================================================== */
.ch-contact { background: var(--ch-parchment); padding: clamp(56px, 7vw, 100px) clamp(24px, 5vw, 72px); }
.ch-contact__grid { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: minmax(240px, 0.85fr) 1.15fr; gap: clamp(30px, 4vw, 72px); align-items: start; }
.ch-contact__heading { font-family: var(--ch-font-display); font-weight: 500; letter-spacing: 0.04em; font-size: 46px; line-height: 1.08; margin: 0; color: var(--ch-green-head); }
.ch-contact__lead { margin: 16px 0 0; font-family: var(--ch-font-serif); font-style: italic; font-size: 19px; color: var(--ch-sage); }
.ch-contact__guidance { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; font-size: 15px; color: var(--ch-green-body); }
.ch-contact__guidance p { margin: 0; line-height: 1.75; }
.ch-contact__guidance strong { font-weight: 600; }
.ch-contact__guidance a { color: #36492c; }
.ch-form { display: flex; flex-direction: column; gap: 16px; }
.ch-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ch-field { width: 100%; background: var(--ch-white); border: 1px solid var(--ch-rule-parch); padding: 13px 16px; font-family: var(--ch-font-body); font-size: 14.5px; color: var(--ch-ink); border-radius: 4px; }
.ch-field:focus { outline: none; border-color: var(--ch-brand-green); }
select.ch-field { color: #5c6153; }
textarea.ch-field { resize: vertical; }
.ch-form__submit { background: var(--ch-brand-green); color: var(--ch-parchment); border: none; padding: 14px 34px; border-radius: 999px; font-family: var(--ch-font-body); font-size: 14.5px; font-weight: 500; cursor: pointer; transition: background .2s; }
.ch-form__submit:hover { background: #2a3a22; }
.ch-form__note { margin: 0; font-family: var(--ch-font-serif); font-style: italic; font-size: 15px; color: #8a8d7c; }
.ch-form__thanks { background: #fff; border: 1px solid var(--ch-rule-parch); padding: 24px; border-radius: 4px; font-size: 15.5px; line-height: 1.7; color: var(--ch-green-body); }

/* ==========================================================================
   BLOCK: IMAGE BAND
   ========================================================================== */
.ch-band { display: block; width: 100%; overflow: hidden; }
.ch-band__img { display: block; width: 100%; height: 44vh; min-height: 320px; object-fit: cover; }
.ch-band--tall .ch-band__img { height: 62vh; min-height: 460px; }
.ch-band--gray .ch-band__img { filter: grayscale(1) contrast(1.05); }

/* ==========================================================================
   Editor tweaks
   ========================================================================== */
.editor-styles-wrapper .ch-hero--full,
.editor-styles-wrapper .ch-hero--centre { min-height: 70vh; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
	.ch-nav, .ch-nav__cta { display: none; }
	.ch-burger { display: flex; }
	.ch-ti__grid,
	.ch-ti--image-left .ch-ti__grid { grid-template-columns: 1fr; }
	.ch-ti--image-left .ch-ti__media { order: 0; }
	.ch-ti__caption { position: static; margin-top: 12px; }
	.ch-ctarev__grid { grid-template-columns: 1fr; }
	.ch-ctarev__panel { border-left: none; padding-left: 0; border-top: 1px solid rgba(242, 235, 221, 0.2); padding-top: 28px; }
	.ch-contact__grid { grid-template-columns: 1fr; }
	.ch-gallery__grid { grid-template-columns: repeat(2, 1fr); }
	.ch-twocol__grid,
	.ch-twocol__grid--split { grid-template-columns: 1fr; }
	.ch-text__col,
	.ch-numbered__intro { width: 100%; }
}
@media (max-width: 560px) {
	.ch-h2, .ch-ti__heading, .ch-wine__heading, .ch-gallery__heading,
	.ch-ctadark__heading, .ch-ctarev__heading, .ch-contact__heading,
	.ch-twocol__lead-heading, .ch-cards__heading { font-size: 34px; }
	.ch-form__row { grid-template-columns: 1fr; }
	.ch-faq__row { grid-template-columns: 1fr; gap: 8px; }
	.ch-hero__title { font-size: clamp(34px, 11vw, 52px); }
}
