/* Cuvée — Main stylesheet */

:root {
	--wine: #5a1b25;
	--wine-deep: #441319;
	--wine-light: #6f2630;
	--cream: #f3ead0;
	--cream-deep: #e9dcb6;
	--paper: #f8f4e8;
	--orange: #e07a35;
	--orange-deep: #c96526;
	--red: #d83838;
	--ink: #1c1612;
	--ink-soft: #4a3d36;
	--muted: #8a7d72;
	--rule: rgba(28, 22, 18, 0.12);
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
	--radius: 4px;
	--radius-lg: 8px;
	--max: 1280px;
	--gutter: clamp(20px, 4vw, 56px);
	--serif: "Fraunces", Georgia, "Times New Roman", serif;
	--sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.55;
	color: var(--ink);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--orange); }

h1, h2, h3, h4 {
	font-family: var(--serif);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -0.01em;
	margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.875rem); }
h4 { font-size: 1.25rem; }

h1 em, h2 em, h3 em { color: var(--orange); font-style: italic; }

p { margin: 0 0 1em; }
.cuvee-italic { color: var(--orange); font-style: italic; }
.cuvee-eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--muted);
	font-weight: 500;
	margin-bottom: 0.75rem;
}

.cuvee-container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.cuvee-section { padding: clamp(60px, 9vw, 120px) 0; }
.cuvee-section--wine { background: var(--wine); color: var(--cream); }
.cuvee-section--wine .cuvee-eyebrow { color: rgba(243, 234, 208, 0.7); }
.cuvee-section--cream { background: var(--cream); }
.cuvee-section--paper { background: var(--paper); }

/* ----- Header ----- */
.cuvee-header {
	position: absolute;
	top: 0; left: 0; right: 0;
	z-index: 50;
	padding: 24px 0;
}
.cuvee-header--solid {
	position: relative;
	background: var(--wine);
	color: var(--cream);
}
.cuvee-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}
.cuvee-header__logo { display: flex; align-items: center; }
.cuvee-header__logo .custom-logo-link { display: inline-block; }
.cuvee-header__logo .custom-logo { max-height: 44px; width: auto; display: block; }
.cuvee-logo--text {
	font-family: var(--serif);
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--cream);
}
.cuvee-header--solid .cuvee-logo--text { color: var(--cream); }
.cuvee-nav { display: flex; gap: 28px; align-items: center; list-style: none; padding: 0; margin: 0; }
.cuvee-nav li { list-style: none; padding: 0; margin: 0; }
.cuvee-nav a {
	color: var(--cream);
	font-size: 0.95rem;
	font-weight: 400;
	transition: opacity 0.2s;
}
.cuvee-nav a:hover { opacity: 0.7; color: var(--cream); }
.cuvee-nav .current-menu-item > a { font-weight: 600; }
.cuvee-header__actions { display: flex; gap: 12px; align-items: center; }
.cuvee-lang { color: var(--cream); font-size: 0.85rem; opacity: 0.7; }

.cuvee-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 999px;
	font-family: var(--sans);
	font-size: 0.9rem;
	font-weight: 500;
	background: var(--orange);
	color: white;
	border: none;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}
.cuvee-btn:hover { background: var(--orange-deep); color: white; transform: translateY(-1px); }
.cuvee-btn--ghost { background: transparent; color: inherit; border: 1px solid currentColor; }
.cuvee-btn--ghost:hover { background: rgba(255,255,255,0.1); }
.cuvee-btn--dark { background: var(--ink); }
.cuvee-btn--dark:hover { background: var(--wine); }
.cuvee-btn--full { width: 100%; justify-content: center; }

/* ----- Burger / mobile nav ----- */
.cuvee-burger { display: none; background: none; border: 0; cursor: pointer; color: inherit; padding: 8px; }
.cuvee-burger span { display: block; width: 22px; height: 2px; background: currentColor; margin: 4px 0; transition: 0.2s; }

/* ----- Hero ----- */
.cuvee-hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: flex-end;
	padding: 160px 0 80px;
	color: var(--cream);
	background: var(--wine);
	overflow: hidden;
}
.cuvee-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.cuvee-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(30, 30, 30, 0.25) 0%, rgba(30, 30, 30, 0.5) 100%);
	z-index: 1;
}
.cuvee-hero__inner { position: relative; z-index: 2; width: 100%; }
.cuvee-hero__title {
	max-width: 14ch;
	font-size: clamp(3rem, 7.5vw, 6.5rem);
	margin-bottom: 32px;
}
.cuvee-hero__lead {
	max-width: 52ch;
	font-size: 1.1rem;
	color: rgba(243, 234, 208, 0.85);
	margin-bottom: 32px;
}
.cuvee-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ----- Page hero (smaller, no video) ----- */
.cuvee-pagehero {
	background: var(--wine);
	color: var(--cream);
	padding: 20px 0 80px;
	position: relative;
}
.cuvee-pagehero__rule {
	display: inline-block;
	width: 60px;
	height: 3px;
	background: var(--red);
	margin-bottom: 24px;
}
.cuvee-pagehero h1 { margin-bottom: 24px; }
.cuvee-pagehero__lead {
	max-width: 60ch;
	font-size: 1.05rem;
	color: rgba(243, 234, 208, 0.85);
}
.cuvee-pagehero__lead + .cuvee-pagehero__lead { margin-top: 16px; }
.cuvee-pagehero__grid {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 48px;
	align-items: start;
}
.cuvee-pagehero__stat {
	border: 1px solid rgba(243, 234, 208, 0.3);
	border-radius: 4px;
	padding: 24px 32px;
	text-align: center;
	min-width: 180px;
	margin-top: 40px;
}
.cuvee-pagehero__stat .cuvee-eyebrow { color: var(--orange); }
.cuvee-pagehero__stat strong {
	display: block;
	font-family: 'Fraunces', serif;
	font-size: 2rem;
	line-height: 1.1;
	margin-top: 8px;
}
.cuvee-pagehero__stat-year {
	display: block;
	font-size: 1.05rem;
	color: rgba(243, 234, 208, 0.7);
	margin-top: 2px;
}
@media (max-width: 760px) {
	.cuvee-pagehero__grid { grid-template-columns: 1fr; gap: 24px; }
	.cuvee-pagehero__stat { margin-top: 0; justify-self: start; }
}

/* ----- Team card contact ----- */
.cuvee-team-card__contact {
	margin-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.cuvee-team-card__email,
.cuvee-team-card__phone {
	font-size: 0.85rem;
	color: var(--wine);
	text-decoration: none;
}
.cuvee-team-card__email:hover,
.cuvee-team-card__phone:hover { text-decoration: underline; }

/* ----- About principles ----- */
.cuvee-principle__num {
	display: block;
	font-family: 'Fraunces', serif;
	font-size: 0.95rem;
	color: var(--orange);
	margin-bottom: 12px;
}

/* ----- Section heading ----- */
.cuvee-section-heading { margin-bottom: 56px; }
.cuvee-section-title { max-width: 22ch; }

/* ----- Grids ----- */
.cuvee-grid { display: grid; gap: 28px; }
.cuvee-grid--4 { grid-template-columns: repeat(4, 1fr); }
.cuvee-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cuvee-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 960px) {
	.cuvee-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.cuvee-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.cuvee-grid--4, .cuvee-grid--3, .cuvee-grid--2 { grid-template-columns: 1fr; }
}

/* ----- Discipline card (component design) ----- */
.cuvee-discipline {
	background: var(--cream);
	border: none;
	border-radius: 6px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	position: relative;
	color: inherit;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
}
.cuvee-discipline:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: inherit; }
.cuvee-discipline__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 28px;
}
.cuvee-discipline__num {
	font-family: var(--sans);
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--ink-soft);
	letter-spacing: 0.1em;
}
.cuvee-discipline__arrow {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: var(--wine);
	color: var(--cream);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.2s, transform 0.2s;
}
.cuvee-discipline__arrow svg { display: block; }
.cuvee-discipline:hover .cuvee-discipline__arrow { background: var(--orange); transform: translate(2px, -2px); }
.cuvee-discipline h3 {
	font-family: var(--serif);
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0 0 6px;
	color: var(--ink);
}
.cuvee-discipline__subtitle {
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 24px;
	font-weight: 500;
}
.cuvee-discipline ul {
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
}
.cuvee-discipline li {
	font-size: 0.92rem;
	color: var(--ink-soft);
	padding-left: 16px;
	position: relative;
	margin-bottom: 10px;
	line-height: 1.4;
}
.cuvee-discipline li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 5px;
	height: 5px;
	border-radius: 999px;
	background: var(--wine);
}

/* ----- Card (campaign / case / article) ----- */
.cuvee-card {
	background: white;
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s, box-shadow 0.2s;
	box-shadow: var(--shadow-sm);
}
.cuvee-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cuvee-card__media {
	aspect-ratio: 4 / 3;
	background: var(--cream-deep);
	position: relative;
	overflow: hidden;
}
.cuvee-card__media img { width: 100%; height: 100%; object-fit: cover; }
.cuvee-card__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--orange);
	color: white;
	padding: 4px 10px;
	border-radius: 3px;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.cuvee-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.cuvee-card__meta {
	display: flex;
	gap: 12px;
	font-size: 0.75rem;
	color: var(--muted);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.cuvee-card__title {
	font-family: var(--serif);
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 12px;
}
.cuvee-card__excerpt { font-size: 0.9rem; color: var(--ink-soft); margin: 0 0 16px; flex: 1; }
.cuvee-card__link {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--wine);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.cuvee-card__link::after { content: "→"; transition: transform 0.2s; }
.cuvee-card:hover .cuvee-card__link::after { transform: translateX(4px); }

/* Campaign card variant (cream background) */
.cuvee-card--cream { background: #ebe0b6; }
.cuvee-card--cream .cuvee-card__media { background: #d9cda3; }

/* ----- Featured article (large card) ----- */
.cuvee-featured-article {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	background: var(--cream);
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 56px;
}
.cuvee-featured-article__media { aspect-ratio: 4/3; }
.cuvee-featured-article__media img { width: 100%; height: 100%; object-fit: cover; }
.cuvee-featured-article__body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.cuvee-featured-article__title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; }
.cuvee-featured-article__excerpt { font-size: 1rem; color: var(--ink-soft); margin-bottom: 24px; }
.cuvee-featured-article__meta {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 0.8rem;
	color: var(--muted);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 24px;
}
@media (max-width: 840px) {
	.cuvee-featured-article { grid-template-columns: 1fr; }
	.cuvee-featured-article__body { padding: 32px; }
}

/* Badges */
.cuvee-badge {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 5px 10px;
	background: var(--cream);
	color: var(--wine);
	border-radius: 3px;
}
.cuvee-card__media .cuvee-badge { background: var(--ink); color: var(--cream); position: absolute; left: 16px; bottom: 16px; }

/* Filters */
.cuvee-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 32px;
	align-items: center;
}
.cuvee-filter {
	padding: 8px 16px;
	border: 1px solid var(--rule);
	border-radius: 999px;
	background: transparent;
	font-size: 0.85rem;
	cursor: pointer;
	color: var(--ink-soft);
	transition: all 0.2s;
}
.cuvee-filter.is-active, .cuvee-filter:hover {
	background: var(--ink);
	color: var(--cream);
	border-color: var(--ink);
}
.cuvee-filters__search {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--rule);
	border-radius: 999px;
	padding: 6px 14px;
	background: white;
}
.cuvee-filters__search input { border: none; background: transparent; outline: none; font-family: inherit; font-size: 0.85rem; min-width: 160px; }
.cuvee-filters__search-btn {
	border: none;
	background: transparent;
	cursor: pointer;
	color: var(--wine);
	font-size: 1rem;
	line-height: 1;
	padding: 0;
}

/* ----- Article single ----- */
.cuvee-article {
	background: var(--paper);
	padding: 100px 0 80px;
}
.cuvee-article__lead {
	max-width: 720px;
	margin: 0 auto 48px;
	text-align: left;
}
.cuvee-article__title { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 24px; }
.cuvee-article__intro { font-size: 1.15rem; color: var(--ink-soft); line-height: 1.6; }
.cuvee-article__hero {
	max-width: 1100px;
	margin: 0 auto 64px;
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.cuvee-article__hero img { width: 100%; height: auto; }

.cuvee-article__body {
	display: grid;
	grid-template-columns: 220px minmax(0, 720px) 220px;
	gap: 64px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 var(--gutter);
}
.cuvee-article__sidebar { font-size: 0.8rem; }
.cuvee-article__sidebar h4 { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; font-weight: 500; }
.cuvee-article__toc { list-style: none; padding: 0; margin: 0; }
.cuvee-article__toc li { margin-bottom: 8px; }
.cuvee-article__toc a { color: var(--ink-soft); font-size: 0.85rem; line-height: 1.4; }
.cuvee-article__toc a:hover { color: var(--orange); }

.cuvee-article__content {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--ink-soft);
}
.cuvee-article__content h2 { font-size: 1.75rem; color: var(--ink); }
.cuvee-article__content h3 { font-size: 1.35rem; color: var(--ink); }
.cuvee-article__content blockquote {
	border-left: 3px solid var(--orange);
	padding: 16px 0 16px 24px;
	font-family: var(--serif);
	font-size: 1.2rem;
	font-style: italic;
	color: var(--ink);
	margin: 32px 0;
}
.cuvee-article__content img { border-radius: var(--radius-lg); margin: 32px 0; }

@media (max-width: 1024px) {
	.cuvee-article__body { grid-template-columns: 1fr; }
	.cuvee-article__sidebar { display: none; }
}

/* Author card */
.cuvee-author {
	background: var(--wine);
	color: var(--cream);
	padding: 48px;
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	gap: 32px;
	margin: 64px auto;
	max-width: 1100px;
}
.cuvee-author__avatar { width: 80px; height: 80px; border-radius: 999px; background: var(--cream-deep); flex-shrink: 0; overflow: hidden; }
.cuvee-author__avatar img { width: 100%; height: 100%; object-fit: cover; }
.cuvee-author h4 { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 4px; color: var(--cream); }
.cuvee-author__role { font-size: 0.85rem; opacity: 0.7; }

/* ----- Team grid ----- */
.cuvee-team-card {
	background: var(--cream);
	border-radius: var(--radius-lg);
	padding: 28px;
	text-align: left;
}
.cuvee-team-card__photo { aspect-ratio: 4/3; background: var(--cream-deep); border-radius: var(--radius); margin-bottom: 20px; overflow: hidden; position: relative; }
.cuvee-team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.cuvee-team-card__rule { display: inline-block; width: 32px; height: 2px; background: var(--red); margin-bottom: 12px; }
.cuvee-team-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.cuvee-team-card__role { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.cuvee-team-card__quote { font-family: var(--serif); font-size: 0.95rem; font-style: italic; color: var(--ink-soft); }

/* ----- Process list (About) ----- */
.cuvee-process { background: var(--wine); color: var(--cream); }
.cuvee-process__list { list-style: none; padding: 0; margin: 0; max-width: 1000px; margin-inline: auto; }
.cuvee-process__item {
	display: grid;
	grid-template-columns: 60px 1fr 200px;
	gap: 32px;
	align-items: baseline;
	padding: 32px 0;
	border-bottom: 1px solid rgba(243, 234, 208, 0.15);
}
.cuvee-process__num { font-family: var(--serif); font-size: 1.5rem; color: var(--cream); }
.cuvee-process__item h3 { color: var(--cream); margin: 0; }
.cuvee-process__item p { color: rgba(243, 234, 208, 0.7); margin: 4px 0 0; font-size: 0.9rem; }
.cuvee-process__meta { font-size: 0.8rem; color: var(--orange); text-align: right; }
@media (max-width: 720px) {
	.cuvee-process__item { grid-template-columns: 40px 1fr; }
	.cuvee-process__meta { display: none; }
}

/* ----- KPI strip (case detail) ----- */
.cuvee-kpis {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	max-width: 900px;
	margin: 0 auto;
	padding: 56px var(--gutter);
}
.cuvee-kpi { text-align: center; }
.cuvee-kpi__value { font-family: var(--serif); font-size: 2.8rem; font-weight: 600; color: var(--wine); }
.cuvee-kpi__label { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
@media (max-width: 640px) { .cuvee-kpis { grid-template-columns: 1fr; } }

/* ----- Campaign product hero ----- */
/* Hero = fixed-height banner. Featured image is the background. Only the form shows.
   Recommended banner image size: 1920 × 600 px. */
.cuvee-campaign-hero {
	--hero-h: 600px;
	height: var(--hero-h);
	background: linear-gradient(180deg, #f5e7c8 0%, #ead8a8 100%);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	position: relative;
}
.cuvee-campaign-hero .cuvee-container {
	width: 100%;
	display: flex;
	justify-content: flex-start;
}
.cuvee-campaign-hero__form {
	background: white;
	border-radius: var(--radius-lg);
	padding: 28px;
	box-shadow: var(--shadow-md);
	width: 100%;
	max-width: 380px;
}
.cuvee-campaign-hero__form h3 { font-size: 1.05rem; margin-bottom: 8px; }
.cuvee-campaign-hero__form-lead { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 18px; }
.cuvee-campaign-hero__form input[type="email"],
.cuvee-campaign-hero__form input[type="tel"] {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--rule);
	border-radius: var(--radius);
	font-family: inherit;
	margin-bottom: 12px;
	font-size: 0.95rem;
}
.cuvee-campaign-hero__consent {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	font-size: 0.8rem;
	color: var(--ink-soft);
	margin-bottom: 16px;
	cursor: pointer;
}
.cuvee-campaign-hero__consent input { margin-top: 2px; flex-shrink: 0; }
.cuvee-campaign-hero__or {
	display: flex;
	align-items: center;
	text-align: center;
	color: var(--muted);
	font-size: 0.8rem;
	margin: 16px 0;
}
.cuvee-campaign-hero__or::before,
.cuvee-campaign-hero__or::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--rule);
}
.cuvee-campaign-hero__or span { padding: 0 12px; text-transform: lowercase; }
@media (max-width: 600px) {
	.cuvee-campaign-hero { height: auto; padding: 40px 0; }
}

/* ----- Campaign section 2: Gutenberg content ----- */
.cuvee-campaign-content {
	background: #F3EBD9;
	padding: clamp(48px, 7vw, 96px) 0;
}

/* ----- Campaign section 3: product ----- */
.cuvee-product__grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr 1fr;
	gap: clamp(20px, 3vw, 40px);
	align-items: stretch;
}
.cuvee-product__crumbs { color: var(--wine); }
.cuvee-product__title { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 4px 0 14px; }
.cuvee-product__origin { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 6px; }
.cuvee-product__cc {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	border: 1px solid var(--rule);
	border-radius: 3px;
	padding: 1px 5px;
	margin-right: 8px;
	vertical-align: middle;
}
.cuvee-product__spec { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.02em; margin-bottom: 22px; }
.cuvee-product__artno { color: var(--ink-soft); font-weight: 600; }
.cuvee-product__price { display: flex; align-items: baseline; gap: 14px; margin: 18px 0 22px; }
.cuvee-product__price-amount {
	font-family: var(--serif);
	font-size: 3rem;
	font-weight: 700;
	color: var(--ink);
	line-height: 1;
}
.cuvee-product__price-amount span { font-weight: 400; }
.cuvee-product__price-meta { display: flex; flex-direction: column; font-size: 0.78rem; color: var(--muted); }
.cuvee-product__desc { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 24px; max-width: 42ch; }

.cuvee-pairings { display: flex; flex-wrap: wrap; gap: 28px; }
.cuvee-pairing { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cuvee-pairing__icon { width: 32px; height: 32px; object-fit: contain; }
.cuvee-pairing__icon--dot { border-radius: 999px; background: var(--ink); display: block; }
.cuvee-pairing__name {
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}

.cuvee-product__panel {
	background: var(--paper);
	border: 1px solid var(--rule);
	border-radius: var(--radius-lg);
	padding: 28px;
}
.cuvee-taste__dials {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin: 24px 0;
}
.cuvee-taste__dial { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.cuvee-taste__label {
	font-size: 0.62rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}
.cuvee-dial { color: var(--wine); }
.cuvee-taste__value { font-size: 0.8rem; color: var(--ink-soft); font-weight: 500; }
.cuvee-taste__stats {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding-top: 22px;
	margin-top: auto;
	border-top: 1px solid var(--rule);
}
.cuvee-taste__stat { display: flex; flex-direction: column; }
.cuvee-taste__stat-value { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--ink); }
.cuvee-taste__stat-label {
	font-size: 0.6rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}
.cuvee-taste { display: flex; flex-direction: column; }
.cuvee-product__bottle {
	background: #ededeb;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.cuvee-product__bottle img { max-height: 340px; width: auto; margin: 0 auto; object-fit: contain; }
@media (max-width: 900px) {
	.cuvee-product__grid { grid-template-columns: 1fr; }
	.cuvee-product__bottle { min-height: 300px; }
}

/* ----- Accordion / FAQ ----- */
.cuvee-faq__item {
	border-bottom: 1px solid var(--rule);
	padding: 20px 0;
}
.cuvee-faq__q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--serif);
	font-size: 1.05rem;
	font-weight: 500;
	cursor: pointer;
	color: var(--ink);
}
.cuvee-faq__q::after {
	content: "+";
	font-size: 1.4rem;
	color: var(--orange);
	transition: transform 0.2s;
}
.cuvee-faq__item.is-open .cuvee-faq__q::after { transform: rotate(45deg); }
.cuvee-faq__a {
	display: none;
	padding-top: 12px;
	color: var(--ink-soft);
	font-size: 0.95rem;
}
.cuvee-faq__item.is-open .cuvee-faq__a { display: block; }

/* Numbered accordion variant (campaign detailed info) */
.cuvee-faq--numbered .cuvee-faq__q { gap: 16px; }
.cuvee-faq--numbered .cuvee-faq__q::after {
	content: "";
	width: 10px;
	height: 10px;
	border-right: 1.5px solid var(--ink-soft);
	border-bottom: 1.5px solid var(--ink-soft);
	transform: rotate(45deg);
	transition: transform 0.2s;
	margin-left: auto;
	flex-shrink: 0;
}
.cuvee-faq--numbered .cuvee-faq__item.is-open .cuvee-faq__q::after { transform: rotate(-135deg); }
.cuvee-faq__num {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--orange);
	font-family: var(--sans);
}
.cuvee-faq--numbered .cuvee-faq__a { padding-left: 34px; }

/* ----- Newsletter card (component design) ----- */
.cuvee-newsletter-card {
	background: var(--cream);
	padding: 64px;
	border-radius: 6px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}
.cuvee-newsletter-card__copy .cuvee-eyebrow { color: var(--orange); margin-bottom: 24px; font-size: 0.78rem; letter-spacing: 0.14em; }
.cuvee-newsletter-card__title {
	font-family: var(--serif);
	font-size: clamp(2rem, 3.6vw, 3rem);
	line-height: 1.05;
	margin: 0 0 28px;
	color: var(--ink);
}
.cuvee-newsletter-card__body {
	font-size: 0.95rem;
	color: var(--ink-soft);
	line-height: 1.6;
	max-width: 36ch;
	margin: 0;
}
.cuvee-newsletter-card__form { display: flex; flex-direction: column; gap: 14px; }
.cuvee-newsletter-card__form .cuvee-form-label {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-soft);
	margin: 4px 0 6px;
	font-weight: 500;
}
.cuvee-newsletter-card__form .cuvee-form-input {
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--rule);
	border-radius: 0;
	padding: 8px 0;
	font-size: 1rem;
	color: var(--ink);
}
.cuvee-newsletter-card__form .cuvee-form-input:focus {
	outline: none;
	border-bottom-color: var(--wine);
}
.cuvee-newsletter-card__form .cuvee-form-chips { gap: 8px; margin-bottom: 8px; }
.cuvee-newsletter-card__form .cuvee-form-chip {
	background: transparent;
	border: 1px solid var(--rule);
	color: var(--ink-soft);
	font-size: 0.85rem;
	padding: 8px 14px;
}
.cuvee-newsletter-card__form .cuvee-form-chip:has(input:checked),
.cuvee-newsletter-card__form .cuvee-form-chip.is-checked {
	background: var(--ink);
	color: var(--cream);
	border-color: var(--ink);
}
.cuvee-form-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.85rem;
	color: var(--ink-soft);
	margin: 8px 0 12px;
	cursor: pointer;
	line-height: 1.4;
}
.cuvee-form-consent input { margin-top: 3px; }
.cuvee-newsletter-card__form .cuvee-btn {
	background: var(--orange);
	padding: 16px 28px;
	font-weight: 500;
}
@media (max-width: 880px) {
	.cuvee-newsletter-card { grid-template-columns: 1fr; padding: 40px; gap: 32px; }
}

/* ----- Contact form ----- */
.cuvee-contact-form {
	background: var(--cream);
	border-radius: var(--radius-lg);
	padding: 48px;
	max-width: 760px;
	margin: -80px auto 0;
	position: relative;
	z-index: 5;
	box-shadow: var(--shadow-md);
}
.cuvee-contact-form h2 { margin-bottom: 24px; }
.cuvee-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.cuvee-form-row--full { grid-template-columns: 1fr; }
.cuvee-form-label { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; display: block; font-weight: 500; }
.cuvee-form-input, .cuvee-form-textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--rule);
	border-radius: var(--radius);
	background: white;
	font-family: inherit;
	font-size: 0.95rem;
}
.cuvee-form-textarea { min-height: 120px; resize: vertical; }
.cuvee-form-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.cuvee-form-chip {
	padding: 8px 14px;
	border: 1px solid var(--rule);
	border-radius: 999px;
	font-size: 0.85rem;
	cursor: pointer;
	user-select: none;
	background: white;
	transition: all 0.2s;
}
.cuvee-form-chip input { position: absolute; opacity: 0; pointer-events: none; }
.cuvee-form-chip.is-checked, .cuvee-form-chip:has(input:checked) {
	background: var(--wine);
	color: var(--cream);
	border-color: var(--wine);
}
.cuvee-form-message { margin-top: 16px; font-size: 0.9rem; }
.cuvee-form-message.is-success { color: #1d7d3a; }
.cuvee-form-message.is-error { color: var(--red); }

/* ----- Studios (contact) ----- */
.cuvee-studios { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.cuvee-studio { background: white; border-radius: var(--radius-lg); overflow: hidden; }
.cuvee-studio__map { aspect-ratio: 16/9; background: #ddd7c4; }
.cuvee-studio__body { padding: 24px; }
.cuvee-studio__body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.cuvee-studio__body address { font-style: normal; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 12px; }
@media (max-width: 720px) { .cuvee-studios { grid-template-columns: 1fr; } }

/* ----- Footer ----- */
.cuvee-footer {
	background: var(--wine-deep);
	color: var(--cream);
	padding: 64px 0 32px;
	font-size: 0.9rem;
}
.cuvee-footer__top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(243, 234, 208, 0.15);
	margin-bottom: 32px;
}
.cuvee-footer__brand {
	font-family: var(--serif);
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	margin-bottom: 12px;
	color: var(--cream);
}
.cuvee-footer__address {
	font-style: normal;
	color: rgba(243, 234, 208, 0.7);
	line-height: 1.6;
}
.cuvee-footer h4 { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(243, 234, 208, 0.6); margin-bottom: 16px; font-weight: 500; }
.cuvee-footer ul { list-style: none; padding: 0; margin: 0; }
.cuvee-footer li { margin-bottom: 8px; }
.cuvee-footer a { color: var(--cream); opacity: 0.8; }
.cuvee-footer a:hover { opacity: 1; }
.cuvee-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.8rem;
	color: rgba(243, 234, 208, 0.5);
}
@media (max-width: 840px) { .cuvee-footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .cuvee-footer__top { grid-template-columns: 1fr; } }

/* ----- Placeholders ----- */
.cuvee-placeholder {
	width: 100%;
	height: 100%;
	background: var(--cream-deep);
	display: flex;
	align-items: center;
	justify-content: center;
}
.cuvee-placeholder__icon { font-size: 2rem; opacity: 0.4; }

/* ----- Mobile ----- */
@media (max-width: 880px) {
	.cuvee-nav { display: none; }
	.cuvee-burger { display: inline-block; }
	.cuvee-nav.is-open {
		display: flex;
		position: absolute;
		top: 100%;
		left: 0; right: 0;
		flex-direction: column;
		background: var(--wine);
		padding: 24px var(--gutter);
		gap: 16px;
	}
}

/* ----- Article inner archive (Articles page) ----- */
.cuvee-articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 960px) { .cuvee-articles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cuvee-articles-grid { grid-template-columns: 1fr; } }

/* ----- Clients strip ----- */
.cuvee-clients {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(32px, 5vw, 80px);
	padding: 32px 0;
}
.cuvee-clients__title {
	width: 100%;
	text-align: center;
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 24px;
	font-weight: 500;
}
.cuvee-client {
	flex: 0 0 auto;
	opacity: 0.55;
	filter: grayscale(100%);
	transition: opacity 0.2s, filter 0.2s;
}
.cuvee-client:hover { opacity: 1; filter: grayscale(0%); }
.cuvee-client img { max-height: 44px; width: auto; object-fit: contain; }

/* ----- Journal split layout (component design) ----- */
.cuvee-journal-split {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 56px;
	align-items: start;
}
.cuvee-journal-feature {
	display: block;
	background: var(--cream-deep);
	border-radius: 6px;
	overflow: hidden;
	position: relative;
}
.cuvee-journal-feature__media {
	aspect-ratio: 4 / 3;
	background: var(--cream-deep);
	position: relative;
	overflow: hidden;
}
.cuvee-journal-feature__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cuvee-journal-feature__tag {
	position: absolute;
	left: 24px;
	top: 24px;
	background: var(--orange);
	color: white;
	padding: 6px 12px;
	border-radius: 3px;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.cuvee-journal-feature__body {
	padding: 28px 8px 8px;
}
.cuvee-journal-feature__meta {
	display: flex;
	gap: 14px;
	align-items: center;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 14px;
}
.cuvee-journal-feature__title {
	font-family: var(--serif);
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 14px;
	color: var(--ink);
}
.cuvee-journal-feature__excerpt {
	font-size: 0.95rem;
	color: var(--ink-soft);
	margin: 0;
	max-width: 56ch;
}
.cuvee-journal-list { display: flex; flex-direction: column; gap: 0; }
.cuvee-journal-item {
	display: grid;
	grid-template-columns: 92px 1fr;
	gap: 20px;
	padding: 24px 0;
	border-bottom: 1px solid var(--rule);
}
.cuvee-journal-item:last-child { border-bottom: 0; }
.cuvee-journal-item__media {
	aspect-ratio: 1;
	background: var(--cream-deep);
	border-radius: 4px;
	overflow: hidden;
}
.cuvee-journal-item__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cuvee-journal-item__meta {
	display: flex;
	gap: 12px;
	align-items: center;
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 6px;
}
.cuvee-journal-item__meta .cuvee-journal-item__topic { color: var(--red); }
.cuvee-journal-item__title {
	font-family: var(--serif);
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1.25;
	margin: 0;
	color: var(--ink);
}
.cuvee-journal-item__title a:hover { color: var(--orange); }

.cuvee-section-heading--row {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 24px;
}
.cuvee-section-heading--row .cuvee-link {
	font-size: 0.85rem;
	color: var(--ink);
	font-weight: 500;
}
.cuvee-link::after { content: " →"; }

@media (max-width: 880px) {
	.cuvee-journal-split { grid-template-columns: 1fr; gap: 32px; }
}

/* ----- Cases (large alternating cards) ----- */
.cuvee-case-card {
	background: var(--cream);
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 32px;
	position: relative;
}
.cuvee-case-card__media {
	aspect-ratio: 16/8;
	position: relative;
	overflow: hidden;
}
.cuvee-case-card__media img { width: 100%; height: 100%; object-fit: cover; }
.cuvee-case-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
}
.cuvee-case-card__overlay {
	position: absolute;
	left: 32px;
	bottom: 32px;
	color: var(--cream);
	z-index: 2;
}
.cuvee-case-card__client { font-family: var(--serif); font-style: italic; color: var(--cream); font-size: 1.4rem; margin: 0; }
.cuvee-case-card__body {
	padding: 28px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.cuvee-case-card__body h3 { font-size: 1.3rem; margin: 0 0 8px; }
.cuvee-case-card__body p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); }
.cuvee-case-card__cta {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: var(--ink);
	color: var(--cream);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.cuvee-case-card__cta:hover { background: var(--orange); color: white; }

/* ----- Single case ----- */
.cuvee-case-intro {
	background: var(--cream);
	padding: clamp(120px, 14vw, 160px) 0 clamp(32px, 5vw, 56px);
}
.cuvee-case-intro__client { color: var(--wine); }
.cuvee-case-intro__title { font-size: clamp(2.4rem, 5.5vw, 4.2rem); margin: 6px 0 18px; }
.cuvee-case-intro__subtitle {
	font-family: var(--serif);
	font-style: italic;
	font-size: clamp(1.15rem, 2.2vw, 1.6rem);
	color: var(--ink-soft);
	max-width: 60ch;
	margin-bottom: 32px;
}
.cuvee-case-facts {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(28px, 5vw, 56px);
	padding-top: 24px;
	border-top: 1px solid var(--rule);
}
.cuvee-case-fact { display: flex; flex-direction: column; gap: 4px; }
.cuvee-case-fact strong { font-family: var(--serif); font-size: 1.1rem; }

.cuvee-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.cuvee-tag {
	font-size: 0.7rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink-soft);
	background: rgba(28, 22, 18, 0.06);
	border-radius: 999px;
	padding: 4px 12px;
}
a.cuvee-tag { text-decoration: none; transition: background 0.2s; }
a.cuvee-tag:hover { background: rgba(28, 22, 18, 0.12); }

/* Featured media (image or video) directly under the intro */
.cuvee-case-media { background: var(--cream); padding: 0 0 clamp(48px, 7vw, 88px); }
.cuvee-case-media__frame {
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--cream-deep);
}
.cuvee-case-media__frame img,
.cuvee-case-media__video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Contact person */
.cuvee-case-contact { background: var(--cream); }
.cuvee-case-contact__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}
.cuvee-case-contact__title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.cuvee-case-contact__lead { color: var(--ink-soft); font-size: 1.05rem; max-width: 46ch; margin-bottom: 24px; }
.cuvee-person-card {
	display: flex;
	align-items: center;
	gap: 20px;
	background: var(--paper);
	border: 1px solid var(--rule);
	border-radius: var(--radius-lg);
	padding: 24px;
}
.cuvee-person-card__avatar img { width: 72px; height: 72px; border-radius: 999px; display: block; }
.cuvee-person-card__name { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; }
.cuvee-person-card__role { font-size: 0.85rem; color: var(--muted); margin-bottom: 4px; }
.cuvee-person-card__email,
.cuvee-person-card__phone { display: block; font-size: 0.85rem; color: var(--wine); }
@media (max-width: 760px) {
	.cuvee-case-contact__grid { grid-template-columns: 1fr; }
}

/* ----- Age gate (25+) ----- */
html.cuvee-agegate-open,
html.cuvee-agegate-open body { overflow: hidden; }
.cuvee-agegate {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(40, 12, 16, 0.92);
	backdrop-filter: blur(6px);
}
.cuvee-agegate__box {
	background: var(--paper);
	color: var(--ink, #2b1416);
	max-width: 460px;
	width: 100%;
	padding: 48px 40px;
	border-radius: 6px;
	text-align: center;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.cuvee-agegate__logo {
	display: block;
	font-family: var(--serif);
	font-size: 1.3rem;
	color: var(--wine);
	margin-bottom: 24px;
}
.cuvee-agegate__title {
	font-family: var(--serif);
	font-size: 1.8rem;
	margin-bottom: 12px;
}
.cuvee-agegate__text {
	color: var(--ink-soft, #6b4b4b);
	margin-bottom: 28px;
}
.cuvee-agegate__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}
.cuvee-agegate__actions .cuvee-btn { width: 100%; }
.cuvee-agegate__no {
	background: none;
	border: none;
	color: var(--muted);
	font-size: 0.9rem;
	cursor: pointer;
	text-decoration: underline;
	padding: 8px;
}
.cuvee-agegate__no:hover { color: var(--wine); }
