/* ==========================================================================
   AY OXFORD — visual system
   Single stylesheet for the whole site. Organised as: tokens, reset, layout,
   typography, components, page sections, WooCommerce views, responsive.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
	--c-bg: #F6F0E7;
	--c-surface: #FFFDFC;
	--c-primary: #74232C;
	--c-primary-dark: #5C1B23;
	--c-ink: #201816;
	--c-muted: #665B56;
	--c-border: #D8CEC3;
	--c-accent: #A67C52;
	--c-deep: #1A1210;

	--font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--font-body: "Karla", Arial, sans-serif;

	--w-main: 1200px;
	--w-hero: 620px;
	--w-intro: 680px;
	--w-policy: 760px;

	--pad: 32px;
	--section: 96px;
	--gap: 28px;

	--radius: 3px;
	--focus: 0 0 0 3px rgba(116, 35, 44, 0.28);
}

@media (max-width: 1023px) {
	:root {
		--pad: 24px;
		--section: 72px;
		--gap: 24px;
	}
}

@media (max-width: 767px) {
	:root {
		--pad: 18px;
		--section: 56px;
		--gap: 22px;
	}
}

/* --------------------------------------------------------------------------
   2. Reset and base
   -------------------------------------------------------------------------- */

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

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--c-bg);
	color: var(--c-ink);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	font-weight: 400;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--c-primary);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

a:hover {
	color: var(--c-primary-dark);
}

:focus-visible {
	outline: 2px solid var(--c-primary);
	outline-offset: 2px;
	border-radius: 2px;
}

button {
	font: inherit;
	cursor: pointer;
}

hr {
	border: 0;
	border-top: 1px solid var(--c-border);
	margin: 40px 0;
}

.ayx-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.ayx-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 200;
	background: var(--c-primary);
	color: #fff;
	padding: 12px 20px;
	font-size: 15px;
	text-decoration: none;
}

.ayx-skip:focus {
	left: 8px;
	top: 8px;
	color: #fff;
}

/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */

.ayx-container {
	width: 100%;
	max-width: calc(var(--w-main) + (var(--pad) * 2));
	margin-inline: auto;
	padding-inline: var(--pad);
}

.ayx-section {
	padding-block: var(--section);
}

.ayx-section--tight {
	padding-block: calc(var(--section) * 0.66);
}

.ayx-section--surface {
	background: var(--c-surface);
	border-block: 1px solid var(--c-border);
}

.ayx-section--deep {
	background: var(--c-deep);
	color: #EFE6DA;
}

.ayx-measure-hero {
	max-width: var(--w-hero);
}

.ayx-measure-intro {
	max-width: var(--w-intro);
}

.ayx-measure-policy {
	max-width: var(--w-policy);
}

/* --------------------------------------------------------------------------
   4. Typography
   -------------------------------------------------------------------------- */

h1,
h2,
h3,
h4 {
	font-family: var(--font-display);
	font-weight: 500;
	color: var(--c-ink);
	margin: 0 0 0.5em;
	letter-spacing: -0.005em;
}

h1 {
	font-size: clamp(40px, 4.5vw, 56px);
	line-height: 1.08;
}

.ayx-hero h1,
h1.ayx-hero__title {
	font-size: clamp(46px, 5vw, 64px);
	line-height: 1.05;
}

h2 {
	font-size: clamp(32px, 3.5vw, 44px);
	line-height: 1.14;
}

h3 {
	font-size: clamp(22px, 1.9vw, 26px);
	line-height: 1.25;
}

h4 {
	font-family: var(--font-body);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0;
}

p {
	margin: 0 0 1.15em;
}

p:last-child {
	margin-bottom: 0;
}

.ayx-eyebrow {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--c-accent);
	margin: 0 0 18px;
	line-height: 1.4;
}

.ayx-lead {
	font-size: 18px;
	line-height: 1.65;
	color: var(--c-muted);
}

.ayx-note {
	font-size: 14px;
	line-height: 1.6;
	color: var(--c-muted);
}

.ayx-section__head {
	margin-bottom: 44px;
}

.ayx-section__head h2 {
	margin-bottom: 16px;
}

.ayx-section__head p {
	color: var(--c-muted);
	max-width: var(--w-intro);
}

/* --------------------------------------------------------------------------
   5. Buttons and links
   -------------------------------------------------------------------------- */

.ayx-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 11px 26px;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.01em;
	text-decoration: none;
	border: 1px solid transparent;
	border-radius: var(--radius);
	transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.ayx-btn--primary {
	background: var(--c-primary);
	border-color: var(--c-primary);
	color: #FFF8F2;
}

.ayx-btn--primary:hover {
	background: var(--c-primary-dark);
	border-color: var(--c-primary-dark);
	color: #FFF8F2;
}

.ayx-btn--ghost {
	background: transparent;
	border-color: var(--c-border);
	color: var(--c-ink);
}

.ayx-btn--ghost:hover {
	border-color: var(--c-primary);
	color: var(--c-primary);
	background: rgba(116, 35, 44, 0.04);
}

.ayx-btn--onDeep {
	background: transparent;
	border-color: rgba(239, 230, 218, 0.45);
	color: #EFE6DA;
}

.ayx-btn--onDeep:hover {
	background: rgba(239, 230, 218, 0.1);
	border-color: #EFE6DA;
	color: #fff;
}

.ayx-btn--block {
	width: 100%;
}

.ayx-btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.ayx-link-arrow {
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(116, 35, 44, 0.35);
	padding-bottom: 2px;
}

.ayx-link-arrow::after {
	content: " \2192";
}

.ayx-link-arrow:hover {
	border-bottom-color: var(--c-primary);
}

.ayx-linkbtn {
	background: none;
	border: 0;
	padding: 0;
	color: inherit;
	font-size: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* --------------------------------------------------------------------------
   6. Utility strip and header
   -------------------------------------------------------------------------- */

.ayx-utility {
	margin: 0;
	background: var(--c-deep);
	color: #D9CCBD;
	font-size: 13px;
	line-height: 1.5;
	text-align: center;
	padding: 9px var(--pad);
	letter-spacing: 0.01em;
}

.ayx-utility__dot {
	margin-inline: 8px;
	color: var(--c-accent);
}

.ayx-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(246, 240, 231, 0.96);
	backdrop-filter: saturate(120%) blur(6px);
	border-bottom: 1px solid var(--c-border);
}

.ayx-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 74px;
}

.ayx-wordmark {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--c-ink);
	flex: 0 0 auto;
}

.ayx-wordmark__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: var(--c-primary);
	color: #F6EDE2;
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.02em;
	border-radius: 2px;
}

.ayx-wordmark__text {
	font-family: var(--font-display);
	font-size: 23px;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1;
}

.ayx-nav__list {
	display: flex;
	align-items: center;
	gap: 26px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ayx-nav__list a {
	font-size: 15px;
	font-weight: 500;
	color: var(--c-ink);
	text-decoration: none;
	padding: 6px 0;
	border-bottom: 1px solid transparent;
	white-space: nowrap;
}

.ayx-nav__list a:hover,
.ayx-nav__list a[aria-current="page"] {
	color: var(--c-primary);
	border-bottom-color: var(--c-primary);
}

.ayx-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
}

.ayx-burger {
	display: none;
	align-items: center;
	gap: 9px;
	background: transparent;
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	padding: 9px 14px;
	min-height: 44px;
	color: var(--c-ink);
	font-size: 15px;
	font-weight: 600;
}

.ayx-burger__bars {
	display: inline-flex;
	flex-direction: column;
	justify-content: space-between;
	width: 17px;
	height: 11px;
}

.ayx-burger__bars span {
	display: block;
	height: 1.5px;
	background: var(--c-ink);
}

/* --------------------------------------------------------------------------
   7. Mobile drawer
   -------------------------------------------------------------------------- */

.ayx-drawer {
	position: fixed;
	inset: 0;
	z-index: 120;
	background: rgba(26, 18, 16, 0.5);
	display: flex;
	justify-content: flex-end;
}

.ayx-drawer[hidden] {
	display: none;
}

.ayx-drawer__panel {
	width: min(360px, 92vw);
	max-height: 100%;
	background: var(--c-bg);
	border-left: 1px solid var(--c-border);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.ayx-drawer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px var(--pad);
	border-bottom: 1px solid var(--c-border);
	position: sticky;
	top: 0;
	background: var(--c-bg);
}

.ayx-drawer__brand {
	font-family: var(--font-display);
	font-size: 21px;
	font-weight: 600;
	letter-spacing: 0.06em;
}

.ayx-drawer__close {
	background: transparent;
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	width: 44px;
	height: 44px;
	font-size: 22px;
	line-height: 1;
	color: var(--c-ink);
}

.ayx-drawer__nav {
	padding: 8px var(--pad);
}

.ayx-drawer__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ayx-drawer__list a {
	display: block;
	padding: 14px 0;
	font-size: 17px;
	font-weight: 500;
	color: var(--c-ink);
	text-decoration: none;
	border-bottom: 1px solid var(--c-border);
	min-height: 44px;
}

.ayx-drawer__list a[aria-current="page"] {
	color: var(--c-primary);
}

.ayx-drawer__foot {
	padding: 20px var(--pad) 32px;
	margin-top: auto;
}

.ayx-drawer__hours,
.ayx-drawer__contact {
	font-size: 14px;
	color: var(--c-muted);
	margin: 14px 0 0;
}

.ayx-drawer__contact a {
	color: var(--c-primary);
}

body.ayx-locked {
	overflow: hidden;
}

/* --------------------------------------------------------------------------
   8. Breadcrumbs
   -------------------------------------------------------------------------- */

.ayx-breadcrumbs {
	padding-top: 22px;
}

.ayx-breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 13px;
	color: var(--c-muted);
}

.ayx-breadcrumbs__list li + li::before {
	content: "/";
	margin-right: 8px;
	color: var(--c-border);
}

.ayx-breadcrumbs__list a {
	color: var(--c-muted);
	text-decoration: none;
}

.ayx-breadcrumbs__list a:hover {
	color: var(--c-primary);
	text-decoration: underline;
}

/* --------------------------------------------------------------------------
   9. Hero
   -------------------------------------------------------------------------- */

.ayx-hero {
	position: relative;
	padding-block: clamp(56px, 7vw, 104px);
	overflow: hidden;
}

.ayx-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(120% 90% at 78% 8%, rgba(166, 124, 82, 0.16), transparent 58%),
		radial-gradient(90% 70% at 4% 92%, rgba(116, 35, 44, 0.1), transparent 60%);
	pointer-events: none;
}

.ayx-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
	gap: clamp(36px, 5vw, 72px);
	align-items: start;
}

.ayx-hero__copy {
	max-width: var(--w-hero);
}

.ayx-hero__title {
	margin-bottom: 22px;
}

.ayx-hero__body {
	font-size: 18px;
	line-height: 1.65;
	color: var(--c-muted);
	max-width: var(--w-hero);
}

/* Tonight panel — practical facts sit beside the hero, not below the page. */
.ayx-tonight {
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	padding: 30px 30px 26px;
}

.ayx-tonight__title {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--c-accent);
	margin: 0 0 20px;
}

.ayx-tonight__list {
	margin: 0;
	display: grid;
	gap: 16px;
}

.ayx-tonight__list dt {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--c-muted);
	margin-bottom: 2px;
}

.ayx-tonight__list dd {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	color: var(--c-ink);
}

.ayx-tonight__list dd a {
	color: var(--c-primary);
	text-decoration: none;
	border-bottom: 1px solid rgba(116, 35, 44, 0.3);
}

.ayx-tonight__foot {
	margin-top: 24px;
	padding-top: 18px;
	border-top: 1px solid var(--c-border);
	font-size: 14px;
	color: var(--c-muted);
}

/* --------------------------------------------------------------------------
   10. Route cards (Wine / Cocktails / No & Low)
   -------------------------------------------------------------------------- */

.ayx-routes {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--gap);
}

.ayx-route {
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	padding: 30px 28px;
	display: flex;
	flex-direction: column;
}

.ayx-route__count {
	font-family: var(--font-display);
	font-size: 15px;
	color: var(--c-accent);
	margin: 0 0 10px;
	letter-spacing: 0.04em;
}

.ayx-route h3 {
	margin-bottom: 12px;
}

.ayx-route p {
	color: var(--c-muted);
	font-size: 15px;
}

.ayx-route__cta {
	margin-top: 22px;
	padding-top: 0;
}

.ayx-route > .ayx-route__cta {
	margin-top: auto;
	padding-top: 22px;
}

/* --------------------------------------------------------------------------
   11. Drink cards and grids
   -------------------------------------------------------------------------- */

.ayx-grid {
	display: grid;
	gap: var(--gap);
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Featured six: 3 x 2 on desktop, 2 x 3 on tablet, single column on phones. */
.ayx-grid--featured {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Full menu of twenty: 4 x 5 with no orphan row. */
.ayx-grid--menu {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

/*
 * Ten drinks in four columns leaves two on the last row. An eight-track grid
 * with each card spanning two tracks lets those two keep full card width and
 * sit centred instead of hanging left.
 */
.ayx-grid--ten {
	grid-template-columns: repeat(8, minmax(0, 1fr));
}

.ayx-grid--ten > * {
	grid-column: span 2;
}

.ayx-grid--ten > *:nth-child(9) {
	grid-column: 3 / span 2;
}

.ayx-grid--ten > *:nth-child(10) {
	grid-column: 5 / span 2;
}

/* Related drinks: at most three. */
.ayx-grid--related {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ayx-card {
	display: flex;
	flex-direction: column;
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color 0.18s ease;
}

.ayx-card:hover {
	border-color: var(--c-accent);
}

.ayx-card__media {
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: #EDE3D6;
}

.ayx-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.ayx-card:hover .ayx-card__img {
	transform: scale(1.02);
}

.ayx-card__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 22px 22px 24px;
}

.ayx-card__style {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--c-accent);
	margin: 0 0 10px;
}

.ayx-card__title {
	font-size: 23px;
	line-height: 1.22;
	margin: 0 0 10px;
}

.ayx-card__title a {
	color: var(--c-ink);
	text-decoration: none;
}

.ayx-card:hover .ayx-card__title a {
	color: var(--c-primary);
}

.ayx-card__note {
	font-size: 15px;
	line-height: 1.55;
	color: var(--c-muted);
	margin: 0 0 16px;
}

.ayx-card__action {
	margin: 16px 0 0;
}

/* Price line sits directly above the action on every card. */
.ayx-price {
	margin: auto 0 0;
	padding-top: 4px;
	font-size: 16px;
	font-weight: 600;
	color: var(--c-ink);
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px;
}

.ayx-price__measure {
	font-weight: 400;
	font-size: 13px;
	color: var(--c-muted);
}

.ayx-price__sep {
	color: var(--c-border);
}

/* --------------------------------------------------------------------------
   12. Steps (How your visit works)
   -------------------------------------------------------------------------- */

.ayx-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--gap);
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: step;
}

.ayx-step {
	counter-increment: step;
	padding-top: 26px;
	border-top: 2px solid var(--c-primary);
}

.ayx-step::before {
	content: counter(step, decimal-leading-zero);
	display: block;
	font-family: var(--font-display);
	font-size: 30px;
	color: var(--c-accent);
	line-height: 1;
	margin-bottom: 14px;
}

.ayx-step h3 {
	font-size: 22px;
	margin-bottom: 10px;
}

.ayx-step p {
	color: var(--c-muted);
	font-size: 15px;
}

/* --------------------------------------------------------------------------
   13. Split panels (About / Visit)
   -------------------------------------------------------------------------- */

.ayx-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(36px, 5vw, 72px);
	align-items: start;
}

.ayx-split--narrow {
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.ayx-panel {
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	padding: 32px 30px;
}

.ayx-panel h3 {
	font-size: 22px;
	margin-bottom: 16px;
}

.ayx-deflist {
	margin: 0;
	display: grid;
	gap: 18px;
}

.ayx-deflist dt {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--c-muted);
	margin-bottom: 4px;
}

.ayx-deflist dd {
	margin: 0;
	font-size: 16px;
	line-height: 1.55;
}

.ayx-deflist dd a {
	color: var(--c-primary);
}

.ayx-registered {
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid var(--c-border);
	font-size: 14px;
	line-height: 1.6;
	color: var(--c-muted);
}

.ayx-registered strong {
	color: var(--c-ink);
	display: block;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 6px;
}

/* --------------------------------------------------------------------------
   14. FAQ
   -------------------------------------------------------------------------- */

.ayx-faq {
	max-width: var(--w-policy);
	border-top: 1px solid var(--c-border);
}

.ayx-faq__item {
	border-bottom: 1px solid var(--c-border);
}

.ayx-faq__item > summary {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 0;
	cursor: pointer;
	font-family: var(--font-display);
	font-size: 21px;
	line-height: 1.3;
	color: var(--c-ink);
	list-style: none;
	min-height: 44px;
}

.ayx-faq__item > summary::-webkit-details-marker {
	display: none;
}

.ayx-faq__item > summary::after {
	content: "+";
	font-family: var(--font-body);
	font-size: 22px;
	line-height: 1;
	color: var(--c-accent);
	flex: 0 0 auto;
	margin-top: 4px;
}

.ayx-faq__item[open] > summary::after {
	content: "\2013";
}

.ayx-faq__answer {
	padding: 0 0 22px;
	max-width: var(--w-policy);
	color: var(--c-muted);
}

.ayx-faq__answer a {
	color: var(--c-primary);
}

/* --------------------------------------------------------------------------
   15. Bottom CTA
   -------------------------------------------------------------------------- */

.ayx-cta {
	background: var(--c-deep);
	color: #EFE6DA;
	padding-block: var(--section);
}

.ayx-cta h2 {
	color: #FBF5EC;
	max-width: var(--w-intro);
}

.ayx-cta p {
	color: #C9BAAA;
	max-width: var(--w-intro);
}

.ayx-cta .ayx-eyebrow {
	color: var(--c-accent);
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */

.ayx-footer {
	background: var(--c-surface);
	border-top: 1px solid var(--c-border);
	padding-block: 64px 40px;
	font-size: 15px;
}

.ayx-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) minmax(0, 1fr);
	gap: 40px var(--gap);
}

.ayx-footer__wordmark {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 0.06em;
	margin: 0 0 10px;
}

.ayx-footer__line {
	color: var(--c-muted);
	max-width: 30ch;
}

.ayx-footer__facts {
	margin: 24px 0 0;
	display: grid;
	gap: 12px;
}

.ayx-footer__facts dt {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--c-muted);
}

.ayx-footer__facts dd {
	margin: 2px 0 0;
	font-size: 15px;
}

.ayx-footer__heading {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--c-muted);
	margin: 0 0 16px;
}

.ayx-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 9px;
}

.ayx-footer__list a {
	color: var(--c-ink);
	text-decoration: none;
	font-size: 15px;
}

.ayx-footer__list a:hover {
	color: var(--c-primary);
	text-decoration: underline;
}

.ayx-footer__legal {
	margin-top: 48px;
	padding-top: 26px;
	border-top: 1px solid var(--c-border);
	display: flex;
	flex-wrap: wrap;
	gap: 8px 28px;
	font-size: 14px;
	color: var(--c-muted);
}

.ayx-footer__legal p {
	margin: 0;
}

.ayx-footer__age {
	flex-basis: 100%;
}

/* --------------------------------------------------------------------------
   17. Drink detail
   -------------------------------------------------------------------------- */

.ayx-drink {
	padding-block: 44px var(--section);
}

.ayx-drink__top {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
	gap: clamp(32px, 4.5vw, 64px);
	align-items: start;
}

.ayx-drink__gallery {
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--c-surface);
}

.ayx-drink__gallery img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.ayx-drink__summary .ayx-price {
	font-size: 19px;
	margin: 0 0 20px;
}

.ayx-drink__short {
	font-size: 18px;
	line-height: 1.6;
	color: var(--c-muted);
	margin-bottom: 24px;
}

.ayx-drink__body {
	max-width: var(--w-policy);
	margin-top: 56px;
}

.ayx-drink__body h2 {
	font-size: clamp(26px, 2.4vw, 32px);
	margin-top: 40px;
}

.ayx-drink__body h2:first-child {
	margin-top: 0;
}

.ayx-notices {
	margin: 26px 0 0;
	padding: 20px 22px;
	list-style: none;
	background: rgba(116, 35, 44, 0.05);
	border-left: 2px solid var(--c-primary);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--c-ink);
	display: grid;
	gap: 8px;
}

.ayx-keydetails {
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 32px;
	padding: 26px 0 0;
	border-top: 1px solid var(--c-border);
}

.ayx-keydetails dt {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--c-muted);
	margin-bottom: 4px;
}

.ayx-keydetails dd {
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
}

/* --------------------------------------------------------------------------
   18. Long-form content (policies, About, support)
   -------------------------------------------------------------------------- */

.ayx-prose {
	max-width: var(--w-policy);
}

.ayx-prose h2 {
	font-size: clamp(26px, 2.4vw, 32px);
	margin-top: 44px;
	margin-bottom: 14px;
}

.ayx-prose h2:first-child {
	margin-top: 0;
}

.ayx-prose h3 {
	font-size: 21px;
	margin-top: 30px;
	margin-bottom: 10px;
}

.ayx-prose ul,
.ayx-prose ol {
	margin: 0 0 1.15em;
	padding-left: 22px;
}

.ayx-prose li {
	margin-bottom: 8px;
}

.ayx-prose table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 1.4em;
	font-size: 15px;
}

.ayx-prose th,
.ayx-prose td {
	text-align: left;
	padding: 12px 14px;
	border: 1px solid var(--c-border);
	vertical-align: top;
}

.ayx-prose th {
	background: rgba(216, 206, 195, 0.28);
	font-weight: 600;
}

.ayx-prose .ayx-callout {
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-left: 2px solid var(--c-accent);
	padding: 20px 22px;
	margin: 0 0 1.4em;
	font-size: 15px;
}

.ayx-pagehead {
	padding-block: 44px 0;
}

.ayx-pagehead h1 {
	margin-bottom: 18px;
}

.ayx-pagehead__lead {
	font-size: 18px;
	line-height: 1.65;
	color: var(--c-muted);
	max-width: var(--w-intro);
}

.ayx-pagehead__meta {
	margin-top: 18px;
	font-size: 14px;
	color: var(--c-muted);
}

/* --------------------------------------------------------------------------
   19. Contact form (Contact Form 7 markup)
   -------------------------------------------------------------------------- */

.ayx-formwrap {
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	padding: clamp(24px, 3vw, 38px);
}

.ayx-field {
	margin-bottom: 22px;
}

.ayx-field > label,
.ayx-field .ayx-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 7px;
	color: var(--c-ink);
}

.ayx-field .ayx-req {
	color: var(--c-primary);
}

.ayx-field .ayx-opt {
	font-weight: 400;
	color: var(--c-muted);
}

.ayx-hint {
	font-size: 13px;
	color: var(--c-muted);
	margin: 6px 0 0;
}

.ayx-formwrap input[type="text"],
.ayx-formwrap input[type="email"],
.ayx-formwrap input[type="tel"],
.ayx-formwrap input[type="date"],
.ayx-formwrap input[type="time"],
.ayx-formwrap input[type="number"],
.ayx-formwrap select,
.ayx-formwrap textarea {
	width: 100%;
	min-height: 46px;
	padding: 11px 13px;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	color: var(--c-ink);
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
}

.ayx-formwrap textarea {
	min-height: 150px;
	resize: vertical;
}

.ayx-formwrap input:focus,
.ayx-formwrap select:focus,
.ayx-formwrap textarea:focus {
	outline: none;
	border-color: var(--c-primary);
	box-shadow: var(--focus);
}

.ayx-field--row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.ayx-check {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: 15px;
	line-height: 1.55;
}

.ayx-check input[type="checkbox"] {
	margin-top: 4px;
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	accent-color: var(--c-primary);
}

.ayx-formwrap .wpcf7-list-item {
	margin: 0;
}

.ayx-formwrap .wpcf7-not-valid-tip {
	display: block;
	margin-top: 6px;
	font-size: 14px;
	color: #8A1C1C;
}

.ayx-formwrap .wpcf7-response-output {
	margin: 22px 0 0;
	padding: 14px 16px;
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	font-size: 15px;
}

.ayx-formwrap .wpcf7-spinner {
	display: none;
}

.ayx-formwrap input[type="submit"] {
	min-height: 48px;
	padding: 12px 30px;
	background: var(--c-primary);
	color: #FFF8F2;
	border: 1px solid var(--c-primary);
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
}

.ayx-formwrap input[type="submit"]:hover {
	background: var(--c-primary-dark);
}

/* --------------------------------------------------------------------------
   20. Cookie banner
   -------------------------------------------------------------------------- */

.ayx-cookie {
	position: fixed;
	z-index: 140;
	left: 50%;
	bottom: 18px;
	transform: translateX(-50%);
	width: min(760px, calc(100vw - 32px));
	max-height: min(76vh, 640px);
	display: flex;
	flex-direction: column;
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	box-shadow: 0 10px 34px rgba(26, 18, 16, 0.16);
}

.ayx-cookie[hidden] {
	display: none;
}

.ayx-cookie__scroll {
	overflow-y: auto;
	padding: 24px 26px 4px;
	-webkit-overflow-scrolling: touch;
}

.ayx-cookie__title {
	font-family: var(--font-display);
	font-size: 24px;
	margin: 0 0 10px;
}

.ayx-cookie__body {
	font-size: 15px;
	line-height: 1.6;
	color: var(--c-muted);
	margin: 0 0 4px;
}

.ayx-cookie__cats {
	margin: 18px 0 6px;
	display: grid;
	gap: 12px;
	border-top: 1px solid var(--c-border);
	padding-top: 18px;
}

.ayx-cookie[data-view="simple"] .ayx-cookie__cats {
	display: none;
}

.ayx-cookie__cat {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 15px;
}

.ayx-cookie__cat input {
	margin-top: 4px;
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	accent-color: var(--c-primary);
}

.ayx-cookie__cat span small {
	display: block;
	font-size: 13px;
	color: var(--c-muted);
	line-height: 1.5;
}

.ayx-cookie__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	padding: 18px 26px 20px;
	border-top: 1px solid var(--c-border);
	background: var(--c-surface);
}

/* Accept and Reject carry identical weight; Manage is the quieter control. */
.ayx-cookie__actions .ayx-btn--primary,
.ayx-cookie__actions .ayx-btn--equal {
	flex: 1 1 190px;
}

.ayx-btn--equal {
	background: var(--c-surface);
	border-color: var(--c-primary);
	color: var(--c-primary);
}

.ayx-btn--equal:hover {
	background: rgba(116, 35, 44, 0.07);
	color: var(--c-primary-dark);
	border-color: var(--c-primary-dark);
}

.ayx-cookie__manage {
	flex: 0 0 auto;
	font-size: 14px;
}

.ayx-cookie__policy {
	margin-left: auto;
	font-size: 14px;
}

/* --------------------------------------------------------------------------
   21. Search and 404
   -------------------------------------------------------------------------- */

.ayx-searchform {
	display: flex;
	gap: 10px;
	max-width: 520px;
	margin-top: 22px;
}

.ayx-searchform input[type="search"] {
	flex: 1 1 auto;
	min-height: 46px;
	padding: 11px 14px;
	font-family: var(--font-body);
	font-size: 16px;
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	background: #fff;
	color: var(--c-ink);
}

.ayx-searchform input[type="search"]:focus {
	outline: none;
	border-color: var(--c-primary);
	box-shadow: var(--focus);
}

.ayx-results {
	list-style: none;
	margin: 40px 0 0;
	padding: 0;
	max-width: var(--w-policy);
	border-top: 1px solid var(--c-border);
}

.ayx-results li {
	padding: 22px 0;
	border-bottom: 1px solid var(--c-border);
}

.ayx-results h2 {
	font-size: 23px;
	margin: 0 0 6px;
}

.ayx-results h2 a {
	color: var(--c-ink);
	text-decoration: none;
}

.ayx-results h2 a:hover {
	color: var(--c-primary);
}

.ayx-results p {
	margin: 0;
	color: var(--c-muted);
	font-size: 15px;
}

.ayx-results__kind {
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--c-accent);
	margin-bottom: 6px;
	display: block;
}

.ayx-helplinks {
	list-style: none;
	margin: 30px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
}

.ayx-helplinks a {
	font-size: 15px;
	font-weight: 600;
}

/* --------------------------------------------------------------------------
   22. Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1199px) {
	.ayx-grid--menu {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.ayx-grid--ten > *,
	.ayx-grid--ten > *:nth-child(9),
	.ayx-grid--ten > *:nth-child(10) {
		grid-column: auto;
	}
}

/* The desktop bar needs room for seven links plus the reservation button. */
@media (max-width: 1100px) {
	.ayx-nav {
		display: none;
	}

	.ayx-burger {
		display: inline-flex;
	}

	.ayx-header__cta {
		display: none;
	}
}

@media (max-width: 1023px) {
	.ayx-hero__inner {
		grid-template-columns: minmax(0, 1fr);
	}

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

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

	.ayx-routes > :nth-child(3) {
		grid-column: 1 / -1;
	}

	.ayx-steps {
		grid-template-columns: minmax(0, 1fr);
		gap: 26px;
	}

	.ayx-split,
	.ayx-split--narrow {
		grid-template-columns: minmax(0, 1fr);
	}

	.ayx-drink__top {
		grid-template-columns: minmax(0, 1fr);
	}

	.ayx-drink__gallery {
		max-width: 420px;
	}

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

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

@media (max-width: 767px) {
	body {
		font-size: 16px;
	}

	.ayx-utility {
		font-size: 12px;
		line-height: 1.55;
	}

	.ayx-header__inner {
		min-height: 64px;
	}

	.ayx-wordmark__text {
		font-size: 20px;
	}

	.ayx-grid--featured,
	.ayx-grid--menu,
	.ayx-grid--ten,
	.ayx-grid--related {
		grid-template-columns: minmax(0, 1fr);
	}

	.ayx-routes {
		grid-template-columns: minmax(0, 1fr);
	}

	.ayx-routes > :nth-child(3) {
		grid-column: auto;
	}

	.ayx-keydetails {
		grid-template-columns: minmax(0, 1fr);
	}

	.ayx-field--row {
		grid-template-columns: minmax(0, 1fr);
	}

	.ayx-btn-row .ayx-btn {
		width: 100%;
	}

	.ayx-footer__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 34px;
	}

	.ayx-cookie {
		left: 8px;
		right: 8px;
		bottom: 8px;
		transform: none;
		width: auto;
		max-height: 72vh;
	}

	.ayx-cookie__scroll {
		padding: 20px 18px 4px;
	}

	.ayx-cookie__actions {
		padding: 14px 18px 16px;
	}

	.ayx-cookie__actions .ayx-btn--primary,
	.ayx-cookie__actions .ayx-btn--equal {
		flex: 1 1 100%;
	}

	.ayx-cookie__policy {
		margin-left: 0;
	}

	.ayx-tonight {
		padding: 24px 20px 22px;
	}

	.ayx-panel {
		padding: 24px 20px;
	}

	.ayx-searchform {
		flex-direction: column;
	}

	.ayx-searchform .ayx-btn {
		width: 100%;
	}
}

/* 320 px is the narrowest supported width; keep type and targets comfortable. */
@media (max-width: 359px) {
	.ayx-wordmark__text {
		font-size: 18px;
		letter-spacing: 0.04em;
	}

	.ayx-burger__label {
		display: none;
	}

	.ayx-card__body {
		padding: 18px 16px 20px;
	}

	.ayx-footer__legal {
		gap: 8px 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}

	.ayx-card:hover .ayx-card__img {
		transform: none;
	}
}
/* ===== R2 Footer four-column desktop ===== */
.ayx-footer {
	background: #100e0c;
	color: #b8aea2;
	border-top: 0;
	padding-block: 72px 28px;
	font-size: 15px;
}

.ayx-footer a {
	color: #e8dfd2;
	text-decoration: none;
}

.ayx-footer a:hover,
.ayx-footer a:focus-visible {
	color: #fff8ec;
	text-decoration: underline;
	outline: none;
}

.ayx-footer__grid {
	display: grid;
	grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(180px, 1fr));
	gap: 40px 32px;
	align-items: start;
}

.ayx-footer__wordmark {
	font-family: "Cormorant Garamond", "Times New Roman", serif;
	font-size: 26px;
	font-weight: 600;
	letter-spacing: 0.08em;
	margin: 0 0 12px;
	color: #fff8ec;
}

.ayx-footer__line {
	color: #b8aea2;
	max-width: 36ch;
	line-height: 1.55;
	margin: 0;
}

.ayx-footer__facts {
	margin: 22px 0 0;
	display: grid;
	gap: 14px;
}

.ayx-footer__facts dt {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #b08a55;
}

.ayx-footer__facts dd {
	margin: 4px 0 0;
	font-size: 15px;
	color: #e8dfd2;
}

.ayx-footer__heading {
	font-family: "Karla", system-ui, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #b08a55;
	margin: 0 0 16px;
}

.ayx-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.ayx-footer__list a {
	font-size: 15px;
	color: #e8dfd2;
}

.ayx-footer__bar {
	margin-top: 48px;
	padding-top: 22px;
	border-top: 1px solid rgba(184, 174, 162, 0.22);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 24px;
	font-size: 14px;
	color: #b8aea2;
}

.ayx-footer__bar p {
	margin: 0;
}

.ayx-footer__age {
	margin: 14px 0 0;
	font-size: 13px;
	color: #8f857a;
}

.ayx-linkbtn {
	background: none;
	border: 0;
	padding: 0;
	color: #e8dfd2;
	font: inherit;
	cursor: pointer;
	text-decoration: underline;
}

.ayx-linkbtn:hover {
	color: #fff8ec;
}

body.home .ayx-footer {
	background: #100e0c;
}

@media (max-width: 1199px) {
	.ayx-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 767px) {
	.ayx-footer__grid {
		grid-template-columns: 1fr;
	}
}

/* ===== R2 Policy pages ===== */
.ayx-policy__hero {
	background: #171311;
	color: #fff8ec;
	padding: 48px 0 40px;
}

.ayx-policy__hero h1 {
	color: #fff8ec;
	margin: 0.4rem 0 0;
	font-family: "Cormorant Garamond", serif;
	font-weight: 500;
	font-size: clamp(2.2rem, 3.5vw, 3.2rem);
}

.ayx-policy__lead {
	margin: 0.9rem 0 0;
	max-width: 42rem;
	color: rgba(255, 248, 236, 0.88);
	font-size: 1.05rem;
}

.ayx-policy__meta {
	margin: 0.7rem 0 0;
	font-size: 0.9rem;
	color: #b8aea2;
}

.ayx-policy__body {
	background: #f3ede3;
	padding: 48px 0 64px;
}

.ayx-policy__layout {
	display: grid;
	grid-template-columns: minmax(240px, 280px) minmax(0, 760px);
	gap: 48px;
	justify-content: center;
	align-items: start;
}

.ayx-policy__toc {
	position: sticky;
	top: 96px;
	padding: 18px 18px 20px;
	background: #fff8ec;
	border: 1px solid rgba(23, 19, 17, 0.12);
	border-radius: 2px;
}

.ayx-policy__toc-title {
	margin: 0 0 12px;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #6f2028;
	font-weight: 700;
}

.ayx-policy__toc ol {
	margin: 0;
	padding: 0 0 0 1.1rem;
	display: grid;
	gap: 8px;
}

.ayx-policy__toc a {
	color: #1a1410;
	text-decoration: none;
	font-size: 0.95rem;
	line-height: 1.35;
}

.ayx-policy__toc a:hover {
	color: #6f2028;
	text-decoration: underline;
}

.ayx-policy__callout {
	margin: 0 0 1.5rem;
	padding: 1rem 1.1rem;
	border-left: 3px solid #6f2028;
	background: rgba(111, 32, 40, 0.06);
	color: #1a1410;
	font-size: 1rem;
	line-height: 1.55;
}

.ayx-prose--policy {
	font-size: 17.5px;
	line-height: 1.75;
	color: #1a1410;
	max-width: 72ch;
}

.ayx-prose--policy h2 {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.6rem, 2.2vw, 2rem);
	font-weight: 500;
	color: #171311;
	margin: 2.2rem 0 0.85rem;
	padding-top: 0.4rem;
	border-top: 1px solid rgba(23, 19, 17, 0.12);
}

.ayx-prose--policy h2:first-child {
	border-top: 0;
	padding-top: 0;
	margin-top: 0;
}

.ayx-prose--policy h3 {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.35rem;
	color: #171311;
	margin: 1.5rem 0 0.6rem;
}

.ayx-prose--policy p,
.ayx-prose--policy li {
	max-width: 70ch;
}

.ayx-policy__related {
	list-style: none;
	margin: 1.8rem 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem 1.1rem;
}

.ayx-policy__related a {
	font-size: 0.92rem;
	color: #6f2028;
}

@media (max-width: 1199px) {
	.ayx-policy__layout {
		grid-template-columns: 1fr;
	}
	.ayx-policy__toc {
		position: static;
	}
}

/* ===== R2 Product grid remainder auto-fill (12-col) ===== */
@media (min-width: 1200px) {
	.ayx-grid--menu,
	.ayx-grid--auto {
		display: grid;
		grid-template-columns: repeat(12, minmax(0, 1fr));
		gap: var(--gap, 24px);
	}

	.ayx-grid--menu > .ayx-card,
	.ayx-grid--auto > .ayx-card {
		grid-column: span 3;
		width: auto;
		max-width: none;
	}

	.ayx-grid--rem-3 > .ayx-card:nth-last-child(-n + 3) {
		grid-column: span 4;
	}

	.ayx-grid--rem-2 > .ayx-card:nth-last-child(-n + 2) {
		grid-column: span 6;
	}

	.ayx-grid--rem-1 > .ayx-card:last-child {
		grid-column: 4 / span 6;
		justify-self: stretch;
		max-width: none;
	}

	.ayx-grid--menu > .ayx-card .ayx-card__media img,
	.ayx-grid--auto > .ayx-card .ayx-card__media img,
	.ayx-card__img {
		aspect-ratio: 4 / 5;
		object-fit: cover;
		width: 100%;
		height: auto;
	}
}

/* Kill hard-coded ten-item centering */
.ayx-grid--ten > *:nth-child(9),
.ayx-grid--ten > *:nth-child(10) {
	grid-column: auto;
}
/* ===== R2.1 Hero video ===== */
.ayx-r4-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #100e0c;
  z-index: 0;
}

.ayx-r4-hero__media video,
.ayx-r4-hero__media img,
.ayx-r4-hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.ayx-r4-hero__media video {
  z-index: 1;
}

.ayx-r4-hero__poster {
  z-index: 0;
}

.ayx-r4-hero__shade {
  background:
    linear-gradient(90deg, rgba(16, 12, 10, 0.88) 0%, rgba(16, 12, 10, 0.62) 38%, rgba(16, 12, 10, 0.28) 68%, rgba(16, 12, 10, 0.45) 100%),
    linear-gradient(180deg, rgba(16, 12, 10, 0.55) 0%, transparent 28%, transparent 62%, rgba(16, 12, 10, 0.72) 100%);
  z-index: 2;
}

.ayx-r4-hero__main,
.ayx-r4-hero__strip {
  position: relative;
  z-index: 3;
}

body.home .ayx-header {
  position: relative;
  z-index: 40;
}

@media (max-width: 1199px), (prefers-reduced-motion: reduce) {
  .ayx-r4-hero__media video {
    display: none !important;
  }
}

/* ===== R2.1 About page ===== */
.ayx-about-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  color: #fff8ec;
  background: #100e0c;
  overflow: hidden;
}

.ayx-about-hero__media {
  position: absolute;
  inset: 0;
}

.ayx-about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ayx-about-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 12, 10, 0.86) 0%, rgba(16, 12, 10, 0.45) 55%, rgba(16, 12, 10, 0.35) 100%),
    linear-gradient(180deg, rgba(16, 12, 10, 0.35) 0%, transparent 40%, rgba(16, 12, 10, 0.7) 100%);
}

.ayx-about-hero__copy {
  position: relative;
  z-index: 1;
  padding: 96px 0 64px;
  max-width: 40rem;
}

.ayx-about-hero h1 {
  color: #fff8ec;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  margin: 0.35rem 0 0;
  line-height: 1.05;
}

.ayx-about-hero__lead {
  margin: 1rem 0 0;
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(255, 248, 236, 0.9);
  max-width: 34rem;
}

.ayx-about .ayx-eyebrow {
  color: #b08a55;
  letter-spacing: 0.14em;
}

.ayx-about-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.7fr);
  gap: 48px 56px;
  align-items: start;
}

.ayx-about-intro__text h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  color: #171311;
  margin: 0.4rem 0 1rem;
}

.ayx-about-intro__text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2a221c;
  max-width: 58ch;
}

.ayx-about-intro__aside {
  background: #171311;
  color: #e8dfd2;
  padding: 28px 26px;
  border-radius: 2px;
}

.ayx-about-intro__stat-label {
  margin: 0 0 4px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b08a55;
  font-weight: 700;
}

.ayx-about-intro__stat {
  margin: 0 0 1.15rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  color: #fff8ec;
}

.ayx-about-intro__stat:last-child {
  margin-bottom: 0;
}

.ayx-about-philosophy__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px 56px;
  align-items: center;
}

.ayx-about-philosophy__media {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
}

.ayx-about-philosophy__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.ayx-about-philosophy__copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(2rem, 2.8vw, 2.7rem);
  color: #171311;
  margin: 0.35rem 0 1rem;
}

.ayx-about-philosophy__copy p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 52ch;
  color: #2a221c;
}

.ayx-about-room {
  background: #171311;
  color: #e8dfd2;
}

.ayx-about-room h2 {
  color: #fff8ec;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(2rem, 2.8vw, 2.7rem);
  margin: 0.35rem 0 1rem;
}

.ayx-about-room p {
  color: rgba(255, 248, 236, 0.88);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 48ch;
}

.ayx-about-room__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 40px 48px;
  align-items: center;
}

.ayx-about-room__media {
  margin: 0;
  overflow: hidden;
}

.ayx-about-room__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.ayx-about-audience__head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.ayx-about-audience__head h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  color: #171311;
  margin: 0.35rem 0 0;
}

.ayx-about-audience__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 24px;
}

.ayx-about-audience__grid li {
  padding: 22px 20px 24px;
  border-top: 2px solid #6f2028;
  background: #fff8ec;
}

.ayx-about-audience__grid h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: #171311;
  margin: 0 0 0.55rem;
}

.ayx-about-audience__grid p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #3a322c;
}

.ayx-about-company__inner {
  max-width: 52rem;
}

.ayx-about-company__inner p {
  font-size: 1rem;
  line-height: 1.65;
  color: #2a221c;
}

@media (max-width: 1199px) {
  .ayx-about-intro__grid,
  .ayx-about-philosophy__grid,
  .ayx-about-room__grid,
  .ayx-about-audience__grid {
    grid-template-columns: 1fr;
  }
}
/* ===== Account & layout R1 ===== */

/* Hours & contact contrast */
main.ayx-home-r4 .ayx-r4-visit__panel h2 {
	color: #fff8ec;
}
main.ayx-home-r4 .ayx-r4-visit__panel .ayx-r4-eyebrow,
main.ayx-home-r4 .ayx-r4-visit__panel .ayx-eyebrow {
	color: #d4b896;
}
main.ayx-home-r4 .ayx-r4-visit__panel,
main.ayx-home-r4 .ayx-r4-visit__panel p,
main.ayx-home-r4 .ayx-r4-visit-hours,
main.ayx-home-r4 .ayx-r4-visit-contact,
main.ayx-home-r4 .ayx-r4-visit-contact a {
	color: #fff8ec;
}
main.ayx-home-r4 .ayx-r4-visit-quiet {
	color: rgba(255, 248, 236, 0.82);
}

/* Signature layout breakpoints — keep asset, fix over-scale */
.ayx-r4-sig-feature img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center;
	transform: none !important;
	filter: none !important;
	will-change: auto !important;
	background-attachment: scroll !important;
}

@media (min-width: 900px) and (max-width: 1199px) {
	main.ayx-home-r4 .ayx-r4-signature {
		display: grid !important;
		grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr) !important;
		gap: 1.75rem;
		align-items: start;
	}
	main.ayx-home-r4 .ayx-r4-sig-feature {
		max-width: none;
	}
	main.ayx-home-r4 .ayx-r4-sig-feature img {
		max-height: 640px;
		width: 100%;
		object-fit: cover;
	}
}

@media (max-width: 899px) {
	main.ayx-home-r4 .ayx-r4-signature {
		display: grid !important;
		grid-template-columns: 1fr !important;
	}
	main.ayx-home-r4 .ayx-r4-sig-feature {
		max-width: 560px;
		margin-inline: auto;
		width: 100%;
	}
}

@media (min-width: 1200px) {
	main.ayx-home-r4 .ayx-r4-signature {
		display: grid !important;
		grid-template-columns: 0.95fr 1.05fr !important;
	}
}

/* Footer heading alignment */
.ayx-footer__grid {
	align-items: start;
}
.ayx-footer__brand,
.ayx-footer__col {
	margin-top: 0;
	padding-top: 0;
}
.ayx-footer__heading-slot {
	min-height: 48px;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: flex-start;
}
.ayx-footer__wordmark {
	margin-top: 0;
	margin-bottom: 12px;
	line-height: 1.15;
}
.ayx-footer__heading {
	margin-top: 0;
	margin-bottom: 16px;
	line-height: 1.15;
	padding-top: 0.55rem; /* optically align uppercase with larger wordmark */
}

/* Header Account */
.ayx-header__actions {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}
.ayx-header__account {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: inherit;
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0.35rem 0.2rem;
	border-bottom: 1px solid transparent;
}
.ayx-header__account:hover,
.ayx-header__account:focus-visible {
	border-bottom-color: currentColor;
	outline: none;
}
.ayx-header__account-icon {
	display: inline-block;
	width: 1.05rem;
	height: 1.05rem;
	border: 1.5px solid currentColor;
	border-radius: 50%;
	position: relative;
}
.ayx-header__account-icon::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 28%;
	width: 0.35rem;
	height: 0.35rem;
	border: 1.5px solid currentColor;
	border-radius: 50%;
	transform: translateX(-50%);
	box-sizing: border-box;
}
.ayx-header__account-icon::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 12%;
	width: 0.62rem;
	height: 0.32rem;
	border: 1.5px solid currentColor;
	border-bottom: 0;
	border-radius: 0.4rem 0.4rem 0 0;
	transform: translateX(-50%);
	box-sizing: border-box;
}
body.home .ayx-header__account {
	color: #fff8ec;
}

.ayx-drawer__account {
	display: inline-flex;
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Account page */
.ayx-account__hero {
	background: #171311;
	color: #fff8ec;
	padding: 48px 0 40px;
}
.ayx-account__hero h1 {
	color: #fff8ec;
	font-family: "Cormorant Garamond", serif;
	font-weight: 500;
	font-size: clamp(2.4rem, 4vw, 3.4rem);
	margin: 0.35rem 0 0;
}
.ayx-account__lead {
	margin: 0.9rem 0 0;
	max-width: 40rem;
	color: rgba(255, 248, 236, 0.88);
	font-size: 1.05rem;
	line-height: 1.55;
}
.ayx-account__body {
	background: #f3ede3;
	padding: 48px 0 72px;
}
.ayx-auth {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px 48px;
	align-items: start;
}
.ayx-auth__col h2 {
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	font-weight: 500;
	color: #171311;
	margin: 0 0 1.2rem;
}
.ayx-auth__form .ayx-field {
	margin: 0 0 1rem;
}
.ayx-auth__form label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
	color: #171311;
}
.ayx-auth__form .input-text,
.ayx-auth__form input[type="email"],
.ayx-auth__form input[type="password"],
.ayx-auth__form input[type="text"] {
	width: 100%;
	max-width: 100%;
	min-height: 2.85rem;
	padding: 0.55rem 0.75rem;
	border: 1px solid rgba(23, 19, 17, 0.22);
	border-radius: 2px;
	background: #fff;
	font: inherit;
	color: #171311;
}
.ayx-auth__form .input-text:focus,
.ayx-auth__form input:focus {
	outline: 2px solid #6f2028;
	outline-offset: 2px;
	border-color: #6f2028;
}
.ayx-password-wrap {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0.5rem;
	align-items: center;
}
.ayx-password-toggle {
	min-height: 2.85rem;
	padding: 0 0.75rem;
	border: 1px solid rgba(23, 19, 17, 0.22);
	background: #fff8ec;
	cursor: pointer;
	font: inherit;
	font-size: 0.85rem;
}
.ayx-password-hint {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.85rem;
	color: #4a4138;
}
.ayx-field--check .ayx-check {
	display: flex;
	gap: 0.55rem;
	align-items: flex-start;
	font-weight: 400;
}
.ayx-field--check input {
	margin-top: 0.2rem;
}
.ayx-auth__notice {
	font-size: 0.9rem;
	color: #4a4138;
	line-height: 1.5;
}
.ayx-auth__lost {
	display: inline-block;
	margin-left: 0.85rem;
	font-size: 0.92rem;
	color: #6f2028;
}
.ayx-hp {
	position: absolute !important;
	left: -9999px !important;
	height: 0 !important;
	overflow: hidden !important;
}
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
	border-radius: 2px;
	padding: 0.9rem 1rem;
	margin: 0 0 1.25rem;
	list-style: none;
	border-left: 3px solid #6f2028;
	background: rgba(111, 32, 40, 0.08);
	color: #171311;
}
.ayx-account-dash__actions {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}
.woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
	border-bottom: 1px solid rgba(23, 19, 17, 0.12);
	padding-bottom: 0.85rem;
}
.woocommerce-MyAccount-navigation a {
	color: #171311;
	text-decoration: none;
	font-size: 0.92rem;
	letter-spacing: 0.04em;
}
.woocommerce-MyAccount-navigation .is-active a {
	color: #6f2028;
	font-weight: 700;
	border-bottom: 2px solid #6f2028;
}
.ayx-account-password {
	border: 1px solid rgba(23, 19, 17, 0.14);
	padding: 1rem 1.1rem 0.4rem;
	margin: 1.5rem 0;
}
.ayx-account-password legend {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.25rem;
	padding: 0 0.35rem;
}

@media (max-width: 899px) {
	.ayx-auth {
		grid-template-columns: 1fr;
	}
}


/* Completion R1 — mobile overflow guard */
@media (max-width: 480px) {
  html, body { overflow-x: clip; }
  .ayx-header__inner, .ayx-utility, .ayx-r4-wrap, .ayx-container { max-width: 100%; }
  .ayx-header__account-icon + span { /* keep Account label */ }
  .ayx-nav { /* drawer handles nav */ }
}

/* ayx-completion-overflow-hard */
@media (max-width: 480px) {
  html, body { overflow-x: clip; max-width: 100vw; }
  .ayx-header, .ayx-header__inner, .ayx-utility { max-width: 100vw; overflow-x: clip; }
}
