/*
 * The Tipsy Rover — theme stylesheet.
 *
 * Implements the approved Claude Design system: tokens, typographic primitives,
 * shared chrome (top bar + sticky nav + footer) and the front-page sections.
 * Accessibility utilities, form/error styles and the lightbox are preserved from
 * the scaffold and live at the foot of the file. Plain CSS, no build step;
 * WP Rocket minifies/combines in production.
 *
 * Nav note: the design mock hardcoded bespoke .nav-dd markup. Here the menus are
 * driven by wp_nav_menu (standard <ul>/.sub-menu output) and styled to match,
 * which keeps the markup editable in wp-admin and accessible. A real mobile menu
 * (absent from the static export) is added.
 */

/* -------------------------------------------------------------------------- *
 * Design tokens
 * -------------------------------------------------------------------------- */
:root {
	--cream:      #F4EEE1;
	--cream-2:    #FBF7EE;
	--paper:      #FFFFFF;
	--green:      #1E2C21;
	--green-2:    #27382A;
	--green-deep: #16201A;
	--ink:        #211F19;
	--ink-soft:   rgba(33, 31, 25, 0.62);
	--ink-faint:  rgba(33, 31, 25, 0.40);
	--gold:       #BD9657;
	--gold-deep:  #9C7836;
	--line:       rgba(33, 31, 25, 0.14);
	--line-dark:  rgba(244, 238, 225, 0.16);

	--serif: "Playfair Display", Georgia, serif;
	--hand:  "Caveat", cursive;
	--sans:  "Geist", -apple-system, BlinkMacSystemFont, sans-serif;

	--wrap: 1320px;
	--pad: clamp(20px, 5vw, 76px);

	/* Sticky header height (top bar 40 + nav 94) — used to fit the hero to the viewport. */
	--nav-h: 134px;
}

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

body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.6;
	letter-spacing: -0.01em;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

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

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

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad); }

/* Generic image slot: real <img> tags sized by their container (object-fit). */
.slot { display: block; width: 100%; height: 100%; object-fit: cover; }

/* -------------------------------------------------------------------------- *
 * Typographic primitives
 * -------------------------------------------------------------------------- */
.eyebrow {
	font-family: var(--sans);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold-deep);
}
.eyebrow.on-dark { color: var(--gold); }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.04; letter-spacing: -0.015em; margin: 0; }

.display { font-size: clamp(48px, 8.2vw, 124px); line-height: 0.98; }
.section-title { font-size: clamp(34px, 5vw, 68px); line-height: 1.02; }

.hand {
	font-family: var(--hand);
	font-weight: 600;
	color: var(--gold-deep);
	letter-spacing: 0;
	font-style: normal;
	font-size: 1.08em;
}
.hand.on-dark { color: var(--gold); }
/* Caveat accent in any page hero heading (.display) runs a touch larger. */
.display .hand { font-size: 1.18em; }

p.lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-soft); max-width: 46ch; margin: 0; }

.ghost-word {
	position: absolute;
	font-family: var(--serif);
	font-weight: 600;
	line-height: 0.8;
	letter-spacing: -0.02em;
	pointer-events: none;
	white-space: nowrap;
	user-select: none;
}

.center-narrow { max-width: 760px; margin-inline: auto; text-align: center; }

/* -------------------------------------------------------------------------- *
 * Buttons / links
 * -------------------------------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--sans); font-size: 13px; font-weight: 600;
	letter-spacing: 0.12em; text-transform: uppercase;
	padding: 16px 28px; border-radius: 4px; border: 1px solid transparent;
	cursor: pointer; text-decoration: none; transition: all .25s ease;
	white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--green-deep); }
.btn-gold:hover { background: var(--gold-deep); color: var(--cream-2); }
.btn-dark { background: var(--green); color: var(--cream-2); }
.btn-dark:hover { background: var(--green-deep); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--cream-2); }
.btn-outline.on-dark { border-color: rgba(244,238,225,.5); color: var(--cream-2); }
.btn-outline.on-dark:hover { background: var(--cream-2); color: var(--green-deep); }
.btn:active { transform: scale(.97); }

.tlink {
	display: inline-flex; align-items: center; gap: 9px;
	font-family: var(--sans); font-size: 14px; font-weight: 600;
	text-decoration: none; color: var(--ink);
	letter-spacing: -0.01em;
}
.tlink::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-deep); flex: none; }
.tlink span { border-bottom: 1.5px solid currentColor; padding-bottom: 2px; transition: opacity .2s; }
.tlink:hover span { opacity: .55; }
.tlink.on-dark { color: var(--cream-2); }
.tlink.on-dark::before { background: var(--gold); }

/* -------------------------------------------------------------------------- *
 * Accessibility utilities (preserved)
 * -------------------------------------------------------------------------- */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	word-wrap: normal !important;
}
.screen-reader-text:focus {
	background-color: #fff;
	clip: auto !important;
	clip-path: none;
	color: #111;
	display: block;
	height: auto;
	left: 5px;
	top: 5px;
	padding: 0.75em 1em;
	width: auto;
	z-index: 100000;
}
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 5px; top: 5px; z-index: 100000; }
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 2px; }

/* -------------------------------------------------------------------------- *
 * Top utility bar
 * -------------------------------------------------------------------------- */
.topbar { background: var(--green); color: var(--cream-2); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.topbar-contact { display: flex; gap: 26px; }
.topbar-contact a { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 12.5px; letter-spacing: .01em; color: rgba(244,238,225,.82); text-decoration: none; white-space: nowrap; transition: color .2s; }
.topbar-contact a:hover { color: var(--cream-2); }
.topbar-contact svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; flex: none; }
.topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar-tag { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(244,238,225,.55); }
.topbar-social { display: flex; gap: 15px; align-items: center; }
.topbar-social a { color: rgba(244,238,225,.8); display: inline-flex; transition: color .2s; }
.topbar-social a:hover { color: var(--gold); }
.topbar-social svg { width: 15px; height: 15px; }
@media (max-width: 760px) { .topbar-tag { display: none; } }
@media (max-width: 600px) { .topbar-contact a:nth-child(2) { display: none; } .topbar-inner { height: 36px; } }

/* -------------------------------------------------------------------------- *
 * Primary navigation
 * -------------------------------------------------------------------------- */
header.nav {
	position: sticky; top: 0; z-index: 100;
	background: rgba(244, 238, 225, 0.82);
	backdrop-filter: saturate(160%) blur(14px);
	-webkit-backdrop-filter: saturate(160%) blur(14px);
	border-bottom: 1px solid var(--line);
}
.admin-bar header.nav { top: 32px; }
@media (max-width: 782px) { .admin-bar header.nav { top: 46px; } }

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 94px; }
.brand { display: flex; align-items: center; line-height: 1; text-decoration: none; color: var(--ink); flex: none; }
.brand-logo img { height: 64px; width: auto; display: block; }
@media (max-width: 600px) { .nav-inner { height: 78px; } .brand-logo img { height: 52px; } }

.nav-links { display: flex; }
.primary-menu,
.primary-menu .sub-menu { list-style: none; margin: 0; padding: 0; }
.primary-menu { display: flex; align-items: center; gap: 34px; }
.primary-menu > li { position: relative; display: flex; align-items: center; }
.primary-menu a {
	font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
	text-transform: uppercase; color: var(--ink); text-decoration: none; transition: color .2s;
}
.primary-menu a[role="button"] { cursor: pointer; } /* non-navigating dropdown trigger */
/* Dropdown indicator chevron — desktop only (mobile uses the +/- disclosure toggle). */
.menu-arrow { display: inline-flex; align-items: center; margin-left: 6px; vertical-align: middle; }
.menu-arrow svg { width: 11px; height: 11px; transition: transform .2s ease; }
.primary-menu .menu-item-has-children:hover > a .menu-arrow svg,
.primary-menu .menu-item-has-children:focus-within > a .menu-arrow svg { transform: rotate(180deg); }
.primary-menu > li > a { position: relative; padding: 6px 0; }
.primary-menu > li > a::after {
	content: ""; position: absolute; left: 0; bottom: -3px; height: 1.5px; width: 100%;
	background: currentColor; transform: scaleX(0); transform-origin: left center;
	transition: transform .32s cubic-bezier(.22,.61,.36,1);
}
.primary-menu > li > a:hover,
.primary-menu > .current-menu-item > a,
.primary-menu > .current-menu-ancestor > a { color: var(--gold-deep); }
.primary-menu > li > a:hover::after,
.primary-menu > .current-menu-item > a::after { transform: scaleX(1); }

/* hover bridge so the dropdown does not vanish in the gap */
.primary-menu .menu-item-has-children::before { content: ""; position: absolute; top: 100%; left: -24px; right: -24px; height: 20px; }

.primary-menu .sub-menu {
	position: absolute; top: calc(100% + 16px); left: 50%;
	transform: translateX(-50%) translateY(8px);
	min-width: 232px; background: var(--cream-2); border: 1px solid var(--line);
	border-radius: 10px; padding: 12px; box-shadow: 0 18px 44px rgba(33,31,25,.14);
	display: flex; flex-direction: column; gap: 2px;
	opacity: 0; visibility: hidden;
	transition: opacity .22s ease, transform .22s cubic-bezier(.22,.61,.36,1);
	z-index: 200;
}
.primary-menu .menu-item-has-children:hover > .sub-menu,
.primary-menu .menu-item-has-children:focus-within > .sub-menu,
.primary-menu .menu-item-has-children.is-open > .sub-menu {
	opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.primary-menu .sub-menu a {
	padding: 11px 16px; font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
	text-transform: none; color: var(--ink); border-radius: 5px; white-space: nowrap;
	transition: background .18s ease, color .18s ease;
}
.primary-menu .sub-menu a:hover,
.primary-menu .sub-menu .current-menu-item > a { background: var(--cream); color: var(--gold-deep); }

.nav-book { flex: none; }

/* disclosure button injected by navigation.js; mobile-only */
.submenu-toggle { display: none; }

/* Mobile menu toggle (hamburger) */
.nav-toggle {
	display: none; flex: none; width: 46px; height: 46px;
	align-items: center; justify-content: center;
	background: none; border: 0; cursor: pointer; color: var(--ink);
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
	content: ""; display: block; width: 24px; height: 1.6px; background: currentColor;
	transition: transform .25s ease, opacity .2s ease; position: relative;
}
.nav-toggle-bars::before { position: absolute; top: -7px; left: 0; }
.nav-toggle-bars::after { position: absolute; top: 7px; left: 0; }
.nav-open .nav-toggle .nav-toggle-bars { background: transparent; }
.nav-open .nav-toggle .nav-toggle-bars::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle .nav-toggle-bars::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
	.nav-toggle { display: inline-flex; }
	.nav-book { display: none; }
	.nav-links {
		position: absolute; top: 100%; left: 0; right: 0;
		background: var(--cream-2); border-bottom: 1px solid var(--line);
		box-shadow: 0 18px 44px rgba(33,31,25,.12);
		padding: 8px var(--pad) 24px; max-height: calc(100vh - 100%); overflow-y: auto;
		display: none;
	}
	.nav-open .nav-links { display: block; }
	.primary-menu { flex-direction: column; gap: 0; align-items: stretch; }
	.primary-menu > li { display: block; position: relative; }
	.primary-menu > li > a { display: block; padding: 16px 2px; font-size: 15px; border-bottom: 1px solid var(--line); }
	.primary-menu > li > a::after { display: none; }
	.primary-menu .menu-item-has-children::before { display: none; }
	.menu-arrow { display: none; }
	.primary-menu .sub-menu {
		position: static; transform: none; opacity: 1; visibility: visible;
		min-width: 0; border: 0; box-shadow: none; border-radius: 0;
		background: transparent; padding: 4px 0 10px 14px; display: none; gap: 6px;
	}
	.primary-menu .menu-item-has-children.is-open > .sub-menu { display: flex; transform: none; }
	.primary-menu .sub-menu a { padding: 9px 4px; }
	/* disclosure toggle injected by navigation.js for parent items */
	.submenu-toggle {
		display: flex; align-items: center; justify-content: center;
		position: absolute; top: 0; right: 0; width: 56px; height: 54px;
		background: none; border: 0; cursor: pointer; color: var(--ink);
		font-size: 22px; line-height: 1; transition: transform .2s ease;
	}
	.menu-item-has-children.is-open > .submenu-toggle { transform: rotate(45deg); }
}

/* -------------------------------------------------------------------------- *
 * Hero
 * -------------------------------------------------------------------------- */
.hero { padding-top: clamp(48px, 7vw, 96px); position: relative; }
.hero-top { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: end; }
.hero h1 { margin: 22px 0 0; }
.hero-right { padding-bottom: 10px; }
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-figure { margin-top: clamp(36px, 5vw, 64px); }
.hero-figure .slot { width: 100%; height: clamp(360px, 56vw, 660px); border-radius: 6px; }
@media (max-width: 880px) { .hero-top { grid-template-columns: 1fr; align-items: start; } }

/* hero layout variants (used by interior pages) */
.hero h1.display { font-size: calc(clamp(46px, 8.2vw, 128px) * var(--hero-h1-scale, 1)); }
.hero .hand { color: var(--hero-accent, var(--gold-deep)); }
.hero[data-eyebrow="off"] .hero-left .eyebrow { display: none; }
.hero[data-layout="split"] { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(28px, 5vw, 72px); align-items: center; padding-bottom: clamp(40px, 6vw, 88px); }
.hero[data-layout="split"] .hero-top { grid-template-columns: 1fr; gap: 6px; }
.hero[data-layout="split"] .hero-right { padding-bottom: 0; margin-top: 14px; }
.hero[data-layout="split"] .hero-figure { margin-top: 0; }
.hero[data-layout="split"] .hero-figure .slot { height: clamp(420px, 52vw, 660px); }
@media (max-width: 880px) { .hero[data-layout="split"] { grid-template-columns: 1fr; } .hero[data-layout="split"] .hero-figure { order: 2; } }

/* Overlay: full-bleed image with text on top */
.hero[data-layout="overlay"] { position: relative; max-width: none; margin-inline: 0; padding-inline: 0; padding-top: clamp(120px, 16vh, 200px); padding-bottom: clamp(54px, 7vw, 96px); min-height: clamp(580px, 90vh, 920px); display: flex; align-items: flex-end; }
.hero[data-layout="overlay"] .hero-figure { position: absolute; inset: 0; margin: 0; z-index: 0; }
.hero[data-layout="overlay"] .hero-figure .slot { height: 100%; width: 100%; border-radius: 0; }
.hero[data-layout="overlay"]::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(14,20,16,.18) 0%, rgba(14,20,16,.30) 42%, rgba(11,16,13,.95) 100%), linear-gradient(90deg, rgba(11,16,13,.66) 0%, rgba(11,16,13,.24) 48%, rgba(11,16,13,0) 78%); opacity: var(--hero-scrim, 1); }
.hero[data-layout="overlay"] .hero-top { position: relative; z-index: 2; max-width: var(--wrap); width: 100%; margin: 0 auto; padding-inline: var(--pad); grid-template-columns: 1fr; gap: 8px; align-items: start; }
.hero[data-layout="overlay"] .hero-right { padding-bottom: 0; margin-top: 16px; }
.hero[data-layout="overlay"] .hero-left h1, .hero[data-layout="overlay"] .lede { color: var(--cream-2); text-shadow: 0 2px 18px rgba(8,12,9,.6); }
.hero[data-layout="overlay"] .eyebrow { color: var(--gold); }
.hero[data-layout="overlay"] .hand { color: var(--hero-accent, #d8b271); text-shadow: 0 2px 18px rgba(8,12,9,.55); }
.hero[data-layout="overlay"] .btn-outline { border-color: rgba(244,238,225,.9) !important; color: var(--cream-2) !important; background: rgba(11,16,13,.55) !important; text-shadow: 0 2px 14px rgba(8,12,9,.7); }
.hero[data-layout="overlay"] .btn-outline:hover { background: var(--cream-2) !important; color: var(--green-deep) !important; text-shadow: none; }
/* On mobile, size the overlay hero to its content instead of ~90vh, which otherwise
   bottom-anchors the text and leaves a large band of empty image above it. */
@media (max-width: 899px) {
	.hero[data-layout="overlay"] { min-height: auto; padding-top: clamp(48px, 9vh, 96px); }
}

/* Hero + USP strip fit one viewport on desktop. .hero-stack is a viewport-height
   flex column (minus the sticky header); the hero fills the space left by the stats
   bar. Headline/padding trim a little so the content fits common laptop heights.
   Falls back to natural flow on shorter screens and on mobile. */
@media (min-width: 900px) and (min-height: 600px) {
	/* Fixed height (not min-height) so the USP bar is always pinned to the bottom of
	   the viewport; the hero takes the remaining space and absorbs any overflow. */
	.hero-stack { display: flex; flex-direction: column; height: calc(100svh - var(--nav-h)); }
	.admin-bar .hero-stack { height: calc(100svh - var(--nav-h) - 32px); }
	.hero-stack > .hero { flex: 1 1 auto; min-height: 0; overflow: hidden; }
	.hero-stack > .stats { flex: 0 0 auto; }
	.hero-stack .hero[data-layout="overlay"] { min-height: 0; align-items: center; padding-block: clamp(40px, 5vh, 84px); }
	.hero-stack .hero .display { font-size: clamp(36px, 4.6vw, 74px); }
	.hero-stack .hero .lede { font-size: clamp(15px, 1.3vw, 18px); }
	.hero-stack .hero .hero-cta { margin-top: 22px; }
	/* Slimmer USP strip on desktop frees height for the hero (which flexes to fill). */
	.hero-stack .stat { padding-block: clamp(20px, 2.4vh, 28px); }
	.hero-stack .stat .s-lab { margin-top: 7px; }
}

/* -------------------------------------------------------------------------- *
 * Stats
 * -------------------------------------------------------------------------- */
.stats { background: var(--green); color: var(--cream-2); border-top: 4px solid var(--gold); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 38px clamp(12px, 2vw, 28px); text-align: center; border-right: 1px solid var(--line-dark); }
.stat:last-child { border-right: none; }
.stat .s-num { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); font-weight: 500; line-height: 1; }
.stat .s-num .hand { color: var(--cream-2); font-size: 1.05em; }
.stat .s-lab { font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,238,225,.6); margin-top: 10px; }
@media (max-width: 760px) { .stats-inner { grid-template-columns: repeat(2, 1fr); } .stat:nth-child(2) { border-right: none; } .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-dark); } }

/* -------------------------------------------------------------------------- *
 * Section frame
 * -------------------------------------------------------------------------- */
section.block { padding-block: clamp(56px, 8vw, 120px); position: relative; }
.block.paper { background: var(--cream-2); }

/* Built for unforgettable */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 100px); align-items: center; }
.split .slot { width: 100%; height: clamp(380px, 44vw, 560px); border-radius: 6px; }
.feat-list { list-style: none; margin: 32px 0 34px; padding: 0; display: grid; gap: 14px; }
.feat-list li { display: flex; align-items: center; gap: 14px; font-size: 16px; }
.feat-list .tick { width: 22px; height: 22px; flex: none; border-radius: 50%; border: 1.5px solid var(--gold); display: grid; place-items: center; }
.feat-list .tick svg { width: 11px; height: 11px; stroke: var(--gold-deep); }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split .split-media { order: -1; } }

/* Occasion cards */
.occ-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: clamp(38px, 5vw, 64px); }
.occ-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.occ-card { position: relative; overflow: hidden; border-radius: 6px; }
.occ-card .slot { width: 100%; height: clamp(300px, 30vw, 420px); transition: transform .65s cubic-bezier(.22,.61,.36,1); }
.occ-card:hover .slot { transform: scale(1.06); }
.occ-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 16px; padding: 26px; background: linear-gradient(to top, rgba(22,32,26,.78) 0%, rgba(22,32,26,.05) 55%, transparent 100%); pointer-events: none; transition: background .45s ease; }
.occ-card:hover .occ-overlay { background: linear-gradient(to top, rgba(22,32,26,.88) 0%, rgba(22,32,26,.14) 60%, rgba(22,32,26,.04) 100%); }
.occ-overlay .o-name { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream-2); }
.occ-overlay .o-link { pointer-events: auto; font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-deep); background: var(--cream-2); padding: 9px 18px; text-decoration: none; transition: background .2s; }
.occ-overlay .o-link:hover { background: var(--gold); }
@media (max-width: 900px) { .occ-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .occ-grid { grid-template-columns: 1fr; } }

/* Drinks (dark) */
.drinks { background: var(--green); color: var(--cream-2); overflow: hidden; }
.drinks .ghost-word { color: rgba(244,238,225,.05); font-size: clamp(260px, 37vw, 540px); top: 50%; right: -3%; left: auto; bottom: auto; transform: translateY(-50%); }
.drinks-top { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: clamp(30px, 5vw, 70px); align-items: center; position: relative; z-index: 2; }
.drinks-cats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.dcat { text-align: center; transition: transform .35s cubic-bezier(.22,.61,.36,1); }
.dcat:hover { transform: translateY(-7px); }
.dcat .d-ico { height: 34px; display: grid; place-items: center; margin-bottom: 14px; }
.dcat .d-ico svg { height: 30px; width: 30px; stroke: var(--gold); fill: none; }
.dcat .d-lab { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,238,225,.62); margin-bottom: 16px; transition: color .3s ease; }
.dcat:hover .d-lab { color: var(--gold); }
.dcat .slot { width: 100%; height: clamp(150px, 15vw, 210px); border-radius: 6px; transition: filter .4s ease; }
.dcat:hover .slot { filter: brightness(1.07); }
@media (max-width: 920px) { .drinks-top { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .drinks-cats { grid-template-columns: repeat(2, 1fr); gap: 22px; } }

/* Action / booking / testimonial */
.triad { display: grid; grid-template-columns: 1.1fr 0.9fr 1fr; gap: clamp(34px, 5vw, 70px); }
.gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1.2fr 0.8fr; gap: 12px; }
.gallery .slot { width: 100%; height: 100%; min-height: 130px; border-radius: 6px; transition: filter .4s ease; }
.gallery .slot:hover { filter: brightness(1.06); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: none; }
.step .s-no { width: 34px; height: 34px; border-radius: 50%; background: var(--green); color: var(--cream-2); display: grid; place-items: center; line-height: 1; padding-bottom: 4px; font-family: var(--serif); font-size: 15px; font-weight: 600; }
.step .s-t { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.step .s-d { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }
.quote-card { background: var(--paper); padding: clamp(28px, 3vw, 40px); border: 1px solid var(--line); align-self: start; transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease; }
.quote-card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(33,31,25,.12); }
.stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; }
.quote-card blockquote { font-family: var(--serif); font-size: clamp(20px, 2vw, 26px); line-height: 1.32; font-style: italic; margin: 18px 0 22px; }
.quote-card .q-by { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; }
.quote-card .q-sub { font-size: 12px; color: var(--ink-soft); }
@media (max-width: 980px) { .triad { grid-template-columns: 1fr; } .gallery { max-width: 520px; } }

/* Packages / bespoke */
.pack-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(30px, 4vw, 56px); align-items: stretch; }
.pack-media .slot { width: 100%; height: 100%; min-height: 320px; border-radius: 6px; }
@media (max-width: 980px) { .pack-layout { grid-template-columns: 1fr; } .pack-media .slot { min-height: 300px; } }

/* Founder + Instagram */
.founder { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); }
.founder-card { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 26px; align-items: center; }
.founder-card .slot { width: 100%; height: clamp(240px, 26vw, 320px); border-radius: 6px; }
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 20px; }
.insta-grid .slot { width: 100%; height: clamp(90px, 11vw, 130px); border-radius: 6px; transition: filter .4s ease; }
.insta-grid a:hover .slot { filter: brightness(1.07); }
@media (max-width: 980px) { .founder { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .founder-card { grid-template-columns: 1fr; } }

/* FAQ accordion */
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.4fr; gap: clamp(36px, 6vw, 90px); }
.faq-big { font-family: var(--serif); font-size: clamp(80px, 13vw, 180px); font-weight: 600; line-height: 0.82; letter-spacing: -0.02em; }
.faq-list { display: grid; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 30px 4px; font-family: inherit; color: var(--ink); }
.faq-q .f-no { font-family: var(--sans); font-size: 14px; color: var(--ink-faint); letter-spacing: 0.04em; }
.faq-q .f-txt { font-family: var(--serif); font-size: clamp(20px, 2.2vw, 28px); font-weight: 500; transition: color .25s ease; }
.faq-q:hover .f-txt, .faq-item.open .f-txt { color: var(--gold-deep); }
.faq-q .f-ico { position: relative; width: 22px; height: 22px; flex: none; }
.faq-q .f-ico::before, .faq-q .f-ico::after { content: ""; position: absolute; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
.faq-q .f-ico::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-q .f-ico::after { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq-item.open .f-ico::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 0 30px 58px; max-width: 60ch; color: var(--ink-soft); font-size: 16px; }
@media (max-width: 760px) { .faq-layout { grid-template-columns: 1fr; } .faq-a-inner { padding-left: 0; } }

/* Final CTA */
.final { position: relative; background: var(--green-deep); color: var(--cream-2); overflow: hidden; }
.final .slot { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.final .final-veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,32,26,.92) 0%, rgba(22,32,26,.66) 55%, rgba(22,32,26,.5) 100%); z-index: 1; }
.final-inner { position: relative; z-index: 2; padding-block: clamp(60px, 8vw, 112px); }
.final h2 { font-size: clamp(38px, 5.6vw, 80px); max-width: 16ch; }
.final p { color: rgba(244,238,225,.78); margin: 22px 0 32px; max-width: 44ch; }

/* -------------------------------------------------------------------------- *
 * Footer
 * -------------------------------------------------------------------------- */
footer.foot { background: var(--green); color: var(--cream-2); padding-block: clamp(56px, 7vw, 96px); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(30px, 5vw, 70px); }
.foot-logo img { height: 96px; width: auto; display: block; margin-bottom: 4px; }
.foot-tag { color: rgba(244,238,225,.7); max-width: 34ch; margin-top: 20px; font-size: 15px; }
.foot-col h4 { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 0 0 20px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.foot-col a, .foot-col li { color: rgba(244,238,225,.82); text-decoration: none; font-size: 15px; }
.foot-col a:hover { color: var(--cream-2); }
.contact-row { display: flex; align-items: center; gap: 12px; }
.contact-row svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; flex: none; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: clamp(48px, 6vw, 80px); padding-top: 28px; border-top: 1px solid var(--line-dark); font-size: 12px; color: rgba(244,238,225,.55); flex-wrap: wrap; }
.foot-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-legal a { color: rgba(244,238,225,.7); text-decoration: none; }
.foot-legal a:hover { color: var(--cream-2); }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand-col { grid-column: 1 / -1; } }

/* -------------------------------------------------------------------------- *
 * Scroll reveal
 * -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
	html.js-reveal .reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,.61,.36,1); transition-delay: var(--rd, 0s); }
	html.js-reveal .reveal.is-in { opacity: 1; transform: none; }
}
@media print { html.js-reveal .reveal { opacity: 1 !important; transform: none !important; } }

/* -------------------------------------------------------------------------- *
 * Contact / enquiry page
 * -------------------------------------------------------------------------- */
.enq-hero { padding-top: clamp(48px, 7vw, 96px); }
.enq-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(34px, 5vw, 80px); align-items: start; }
@media (max-width: 900px) { .enq-layout { grid-template-columns: 1fr; gap: 44px; } .enq-formwrap { order: -1; } }

.enq-aside { position: sticky; top: 112px; display: grid; gap: clamp(30px, 4vw, 46px); }
@media (max-width: 900px) { .enq-aside { position: static; } }
.enq-line { display: flex; align-items: center; gap: 13px; text-decoration: none; color: var(--ink); font-size: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); transition: color .2s; }
.enq-line:first-of-type { border-top: 1px solid var(--line); margin-top: 16px; }
.enq-line.static { color: var(--ink-soft); }
.enq-line:not(.static):hover { color: var(--gold-deep); }
.enq-line svg { width: 18px; height: 18px; stroke: var(--gold-deep); fill: none; flex: none; }
.enq-line span { white-space: nowrap; }
.enq-socials { display: flex; gap: 18px; margin-top: 18px; }
.enq-socials a { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); text-decoration: none; transition: color .2s; }
.enq-socials a:hover { color: var(--gold-deep); }
.fest-list { list-style: none; margin: 16px 0 0; padding: 0; display: grid; }
.fest-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.fest-list .fest-place { font-family: var(--serif); font-size: 17px; }
.fest-list .fest-when { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-deep); white-space: nowrap; }

.enq-formwrap { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: clamp(24px, 3vw, 44px); }
.intent { margin-bottom: clamp(24px, 3vw, 34px); }
.intent-label { display: block; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; }
.seg { display: inline-grid; grid-auto-flow: column; gap: 4px; background: var(--cream); border: 1px solid var(--line); border-radius: 40px; padding: 4px; }
.seg-opt { position: relative; }
.seg-opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; margin: 0; }
.seg-opt span { display: block; font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .03em; color: var(--ink-soft); border-radius: 30px; padding: 11px 22px; cursor: pointer; transition: all .22s ease; white-space: nowrap; text-align: center; }
.seg-opt input:checked + span { background: var(--green); color: var(--cream-2); }
.seg-opt input:focus-visible + span { box-shadow: 0 0 0 3px rgba(189,150,87,.22); }
@media (max-width: 420px) { .seg { grid-auto-flow: row; border-radius: 12px; } .seg-opt span { border-radius: 8px; } }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.span-2 { grid-column: 1 / -1; }
.f-lab { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.f-lab i { color: var(--gold-deep); font-style: normal; }
.enq-form input, .enq-form select, .enq-form textarea { font-family: var(--sans); font-size: 16px; color: var(--ink); background: var(--cream-2); border: 1px solid var(--line); border-radius: 5px; padding: 13px 15px; width: 100%; transition: border-color .2s, box-shadow .2s; }
.enq-form textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.enq-form input::placeholder, .enq-form textarea::placeholder { color: var(--ink-faint); }
.enq-form input:focus, .enq-form select:focus, .enq-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(189,150,87,.16); }
.enq-form input[type="date"] { color: var(--ink-soft); }

.radio-row { display: flex; flex-wrap: wrap; gap: 9px; }
.radio { position: relative; }
.radio input { position: absolute; opacity: 0; inset: 0; cursor: pointer; margin: 0; }
.radio span { display: inline-block; font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--ink-soft); background: var(--cream-2); border: 1px solid var(--line); border-radius: 30px; padding: 10px 18px; cursor: pointer; transition: all .2s ease; }
.radio input:checked + span { background: var(--green); border-color: var(--green); color: var(--cream-2); }
.radio input:focus-visible + span { box-shadow: 0 0 0 3px rgba(189,150,87,.22); }

.form-foot { display: flex; align-items: center; gap: 20px; margin-top: 26px; flex-wrap: wrap; }
.form-note { font-size: 13px; color: var(--ink-soft); }

/* Intent-based field visibility */
.enq-form[data-mode="booking"] .only-general { display: none; }
.enq-form[data-mode="general"] .only-booking { display: none; }

/* Inline errors */
.field-error { display: none; font-size: 13px; color: #b5552f; }
.field.error .field-error { display: block; }
.field.error input, .field.error select, .field.error textarea { border-color: #b5552f; box-shadow: 0 0 0 3px rgba(181,85,47,.14); }
.field.error.span-2 .radio span { border-color: #b5552f; }

/* Success panel */
.enq-success { text-align: center; padding: clamp(30px, 5vw, 60px) 10px; }
.enq-success[hidden] { display: none; }
.succ-mark { width: 64px; height: 64px; border-radius: 50%; background: var(--green); display: grid; place-items: center; margin: 0 auto 22px; }
.succ-mark svg { width: 30px; height: 30px; stroke: var(--gold); fill: none; }
.enq-success h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 36px); font-weight: 600; margin-bottom: 12px; }
.enq-success p { color: var(--ink-soft); max-width: 42ch; margin: 0 auto 22px; }
.enq-success .tlink { background: none; border: none; cursor: pointer; }
@media (max-width: 540px) { .field-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------- *
 * Booking form (private page)
 * -------------------------------------------------------------------------- */
.book-hero { max-width: 760px; margin-inline: auto; padding-inline: clamp(24px, 3.4vw, 48px); }
.book-wrap { max-width: 760px; margin-inline: auto; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: clamp(24px, 3.4vw, 48px); }
.book-form { display: block; }

.book-section { border: 0; padding: 0; margin: 0 0 clamp(26px, 3vw, 38px); min-width: 0; }
.book-section__title { font-family: var(--serif); font-size: clamp(20px, 2.4vw, 26px); font-weight: 600; color: var(--ink); padding: 0 0 14px; margin-bottom: 20px; border-bottom: 1px solid var(--line); width: 100%; }

/* Stacked radio list (drinks package) */
.radio-col { display: grid; gap: 9px; }
.radio.radio--block { display: block; }
.radio.radio--block span { display: block; width: 100%; border-radius: 8px; padding: 13px 18px; }

/* Consent checkbox */
.book-consent__box { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.book-consent__box input { flex: 0 0 auto; width: 20px; height: 20px; min-height: 0; padding: 0; margin-top: 2px; border-radius: 3px; accent-color: var(--green); cursor: pointer; }
.book-consent__box span { font-family: var(--sans); font-size: 15px; line-height: 1.5; color: var(--ink-soft); }
.book-consent.error .book-consent__box span { color: #b5552f; }
.book-datenote { font-size: 13px; color: var(--ink-faint); margin: 0; }

/* Deposit callout */
.book-deposit { background: var(--cream); border: 1px solid var(--line); border-radius: 8px; padding: clamp(18px, 2.4vw, 26px); margin: 0 0 clamp(26px, 3vw, 38px); }
.book-deposit__amount { display: flex; align-items: baseline; gap: 14px; margin-bottom: 8px; }
.book-deposit__amount strong { font-family: var(--serif); font-size: clamp(26px, 3vw, 34px); font-weight: 700; color: var(--ink); }
.book-deposit p { color: var(--ink-soft); font-size: 14px; margin: 0; max-width: 60ch; }

/* -------------------------------------------------------------------------- *
 * FAQs page
 * -------------------------------------------------------------------------- */
.faqp-hero { padding-top: clamp(56px, 8vw, 120px); max-width: 1000px; }
.faqp-hero .lede { max-width: 56ch; }
.faq-inline-link { color: var(--gold-deep); text-decoration: none; border-bottom: 1.5px solid currentColor; padding-bottom: 1px; }
.faq-inline-link:hover { opacity: .6; }
.faqp-layout { display: grid; grid-template-columns: 250px 1fr; gap: clamp(34px, 5vw, 80px); align-items: start; }
@media (max-width: 860px) { .faqp-layout { grid-template-columns: 1fr; gap: 30px; } }
.fcat-rail { position: sticky; top: 104px; display: flex; flex-direction: column; gap: 2px; }
.fcat-btn { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 14px 16px; border-radius: 6px; font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--ink-soft); transition: all .2s ease; }
.fcat-btn:hover { background: var(--cream-2); color: var(--ink); }
.fcat-btn.active { background: var(--green); color: var(--cream-2); }
.fcat-btn .fcat-n { font-family: var(--serif); font-size: 13px; opacity: .65; }
.fcat-btn.active .fcat-n { color: var(--gold); opacity: 1; }
@media (max-width: 860px) {
	.fcat-rail { position: static; flex-direction: row; flex-wrap: nowrap; gap: 8px; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
	.fcat-btn { width: auto; white-space: nowrap; border: 1px solid var(--line); border-radius: 40px; padding: 10px 16px; }
	.fcat-btn .fcat-n { display: none; }
}
.faq-panel { display: none; }
.faq-panel.active { display: block; animation: faqfade .4s ease; }
@keyframes faqfade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.faq-panel-title { font-family: var(--serif); font-size: clamp(24px, 3vw, 34px); font-weight: 600; margin-bottom: 6px; }

/* -------------------------------------------------------------------------- *
 * Legal pages (content-driven; auto TOC via site.js)
 * -------------------------------------------------------------------------- */
.legal-hero { padding-top: clamp(56px, 8vw, 120px); }
.legal-hero .updated { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; font-family: var(--sans); font-size: 13px; color: var(--ink-soft); }
.legal-hero .updated::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.legal-hero .lede { margin-top: 20px; max-width: 60ch; }
.legal-layout { display: grid; grid-template-columns: 248px 1fr; gap: clamp(34px, 5vw, 84px); align-items: start; }
@media (max-width: 880px) { .legal-layout { grid-template-columns: 1fr; gap: 14px; } }
.legal-toc { position: sticky; top: 104px; }
.legal-toc .toc-label { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 16px; }
.legal-toc ol { list-style: none; counter-reset: toc; display: grid; gap: 1px; margin: 0; padding: 0; }
.legal-toc a { counter-increment: toc; display: grid; grid-template-columns: 26px 1fr; gap: 8px; align-items: baseline; padding: 8px 10px; border-radius: 5px; text-decoration: none; color: var(--ink-soft); font-size: 14px; line-height: 1.35; transition: all .18s ease; }
.legal-toc a::before { content: counter(toc, decimal-leading-zero); font-family: var(--serif); font-size: 12px; color: var(--ink-faint); }
.legal-toc a:hover { background: var(--cream-2); color: var(--ink); }
.legal-toc a.active { background: var(--green); color: var(--cream-2); }
.legal-toc a.active::before { color: var(--gold); }
@media (max-width: 880px) { .legal-toc { display: none; } }
.legal-body { max-width: 70ch; counter-reset: legal; }
.legal-body > h2 { counter-increment: legal; font-family: var(--serif); font-size: clamp(23px, 2.6vw, 32px); font-weight: 600; line-height: 1.15; margin: clamp(34px, 4vw, 48px) 0 16px; padding-top: clamp(30px, 4vw, 44px); border-top: 1px solid var(--line); scroll-margin-top: 104px; }
.legal-body > h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-body > h2::before { content: counter(legal, decimal-leading-zero) "  "; font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--gold-deep); }
.legal-body p { color: var(--ink-soft); font-size: 16px; line-height: 1.72; margin: 0 0 14px; }
.legal-body ul { list-style: none; display: grid; gap: 11px; margin: 6px 0 16px; padding: 0; }
.legal-body ul li { position: relative; padding-left: 24px; color: var(--ink-soft); font-size: 16px; line-height: 1.6; }
.legal-body ul li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.legal-body a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }

/* -------------------------------------------------------------------------- *
 * Blog — archive grid + single post
 * -------------------------------------------------------------------------- */
.blog-hero { padding-top: clamp(56px, 8vw, 120px); max-width: 1100px; }
.blog-hero .lede { max-width: 56ch; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 44px); }
@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } }

.post-card { display: flex; flex-direction: column; }
.post-card .pc-media { display: block; overflow: hidden; border-radius: 6px; aspect-ratio: 3 / 2; background: var(--cream); }
.post-card .pc-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.22,.61,.36,1); }
.post-card:hover .pc-media img { transform: scale(1.04); }
.pc-media-fallback { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, var(--green), var(--green-deep)); }
.pc-body { padding-top: 18px; display: flex; flex-direction: column; flex: 1; }
.pc-meta { display: flex; align-items: center; gap: 12px; font-family: var(--sans); font-size: 12px; letter-spacing: .04em; color: var(--ink-soft); margin-bottom: 10px; }
.pc-cat { font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }
.pc-title { font-family: var(--serif); font-size: clamp(21px, 2vw, 27px); font-weight: 600; line-height: 1.18; margin: 0 0 10px; }
.pc-title a { color: var(--ink); text-decoration: none; }
.pc-title a:hover { color: var(--gold-deep); }
.pc-excerpt { font-family: var(--sans); font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 16px; }
.pc-link { margin-top: auto; font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--gold-deep); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.pc-link::after { content: "\2192"; transition: transform .25s ease; }
.post-card:hover .pc-link::after { transform: translateX(4px); }

/* Pagination */
.pagination { margin-top: clamp(40px, 5vw, 64px); }
.pagination .nav-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 14px; font-family: var(--sans); font-size: 14px; color: var(--ink); text-decoration: none; border: 1px solid var(--line); border-radius: 4px; transition: all .2s ease; }
.pagination .page-numbers:hover { border-color: var(--ink); }
.pagination .page-numbers.current { background: var(--green); border-color: var(--green); color: var(--cream-2); }
.pagination .page-numbers.dots { border: none; }

/* Single post */
.single-hero { padding-top: clamp(48px, 7vw, 104px); max-width: 820px; margin-left: auto; margin-right: auto; text-align: center; }
.single-hero .eyebrow { display: block; }
.single-crumbs { font-family: var(--sans); font-size: 12px; color: var(--ink-soft); margin-bottom: 18px; }
.single-crumbs a { color: var(--gold-deep); text-decoration: none; }
.single-title { font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 4vw, 52px); line-height: 1.08; margin: 16px 0 0; }
.single-meta { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 22px; font-family: var(--sans); font-size: 14px; color: var(--ink-soft); }

/* Two-column hero: title block + featured image side by side */
.single-hero--split { max-width: 1180px; text-align: left; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.single-hero--split .single-meta { justify-content: flex-start; }
.single-hero-media { margin: 0; }
.single-hero-media img { width: 100%; height: 100%; aspect-ratio: 4 / 3; max-height: 440px; object-fit: cover; border-radius: 8px; display: block; }
@media (max-width: 820px) {
	.single-hero--split { grid-template-columns: 1fr; text-align: center; gap: clamp(24px, 5vw, 36px); }
	.single-hero--split .single-meta { justify-content: center; }
}

/* Single-post content shares the hero's container so the body lines up under the title */
.single-content { max-width: 1180px; }

.post-body { max-width: 72ch; margin: clamp(40px, 5vw, 64px) 0 0; }
.post-body > * + * { margin-top: 20px; }
.post-body p { font-family: var(--sans); color: var(--ink-soft); font-size: 17px; line-height: 1.75; margin: 0; }
.post-body h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(25px, 3vw, 36px); line-height: 1.15; margin: clamp(36px, 4vw, 52px) 0 0; color: var(--ink); scroll-margin-top: 104px; }
.post-body h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(20px, 2.2vw, 26px); line-height: 1.2; margin: clamp(26px, 3vw, 38px) 0 0; color: var(--ink); }
.post-body ul, .post-body ol { margin: 0; padding-left: 0; display: grid; gap: 10px; list-style: none; }
.post-body ul li, .post-body ol li { position: relative; padding-left: 28px; font-family: var(--sans); font-size: 17px; line-height: 1.65; color: var(--ink-soft); }
.post-body ul li::before { content: ""; position: absolute; left: 6px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.post-body ol { counter-reset: post-ol; }
.post-body ol li { counter-increment: post-ol; }
.post-body ol li::before { content: counter(post-ol); position: absolute; left: 0; top: 0; font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--gold-deep); }
.post-body a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }
.post-body strong { color: var(--ink); }
.post-body img { max-width: 100%; height: auto; border-radius: 6px; }
.post-body blockquote { margin: 32px 0; padding-left: 24px; border-left: 3px solid var(--gold); font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.4vw, 26px); line-height: 1.4; color: var(--ink); }

/* Tables inside post body */
.post-body figure.wp-block-table, .post-body .table-scroll { overflow-x: auto; }
.post-body table { width: 100%; border-collapse: collapse; margin: 0; font-family: var(--sans); font-size: 14.5px; }
.post-body th, .post-body td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; line-height: 1.5; color: var(--ink-soft); }
.post-body th { font-weight: 600; color: var(--ink); background: var(--cream); letter-spacing: .02em; }
.post-body tr:last-child td { border-bottom: none; }

.post-tags { max-width: 72ch; margin: clamp(32px, 4vw, 48px) 0 0; font-family: var(--sans); font-size: 13px; color: var(--ink-soft); }
.post-tags .pt-label { font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-right: 10px; color: var(--gold-deep); }
.post-tags a { color: var(--ink-soft); }

.back-to-blog { display: inline-flex; margin: clamp(32px, 4vw, 48px) 0 0; }

.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: clamp(40px, 5vw, 64px); margin-bottom: clamp(56px, 8vw, 104px); }
.pn-item { display: flex; flex-direction: column; gap: 6px; padding: 22px 24px; border: 1px solid var(--line); border-radius: 6px; text-decoration: none; transition: border-color .2s ease, transform .2s ease; }
.pn-item:hover { border-color: var(--ink); transform: translateY(-2px); }
.pn-next { text-align: right; }
.pn-label { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); }
.pn-title { font-family: var(--serif); font-size: 18px; color: var(--ink); line-height: 1.2; }
@media (max-width: 600px) { .post-nav { grid-template-columns: 1fr; } .pn-next { text-align: left; } }

/* -------------------------------------------------------------------------- *
 * About + Construction pages
 * -------------------------------------------------------------------------- */
.story-layout { display: grid; grid-template-columns: 0.78fr 1.32fr; gap: clamp(36px, 6vw, 96px); align-items: start; }
.story-aside { position: sticky; top: 116px; }
.story-copy > p { font-size: 18px; line-height: 1.72; color: var(--ink-soft); margin-bottom: 22px; max-width: 62ch; }
.story-copy .story-lead { font-family: var(--serif); font-weight: 400; font-size: clamp(21px, 2.1vw, 27px); line-height: 1.5; color: var(--ink); margin-bottom: 30px; }
.story-copy .pull { font-family: var(--serif); font-style: italic; font-size: clamp(23px, 2.9vw, 34px); line-height: 1.32; color: var(--ink); margin: 38px 0; padding-left: 28px; border-left: 3px solid var(--gold); }
@media (max-width: 860px) { .story-layout { grid-template-columns: 1fr; } .story-aside { position: static; } }

.about-break { margin: 0 auto; }
.about-break .slot { width: 100%; height: clamp(340px, 48vw, 600px); border-radius: 6px; }
.about-break figcaption { margin-top: 16px; font-size: 13px; letter-spacing: .04em; color: var(--ink-soft); }

.traits { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px); }
.trait .t-no { font-family: var(--serif); font-size: 32px; font-weight: 600; color: var(--gold-deep); }
.trait h3 { font-family: var(--serif); font-size: 23px; font-weight: 600; margin: 12px 0 10px; }
.trait p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
@media (max-width: 760px) { .traits { grid-template-columns: 1fr; gap: 30px; } }

.follow { background: var(--green); color: var(--cream-2); }
.social-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.social-link { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border: 1px solid var(--line-dark); border-radius: 4px; text-decoration: none; color: var(--cream-2); transition: all .25s ease; }
.social-link:hover { background: var(--cream-2); color: var(--green-deep); border-color: var(--cream-2); }
.social-link svg { width: 21px; height: 21px; stroke: currentColor; fill: none; }
.creds { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.cred-badge { padding: 11px 18px; border: 1px dashed var(--line-dark); border-radius: 6px; font-size: 12px; letter-spacing: .04em; color: rgba(244,238,225,.7); }
.creds-label { flex-basis: 100%; font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(244,238,225,.5); margin-bottom: 2px; }
.cred-logo { display: inline-flex; align-items: center; background: var(--cream-2); border-radius: 8px; padding: 10px 16px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.cred-logo:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.22); }
.cred-logo img { height: 26px; width: auto; display: block; }

/* Where you can find us — upcoming events / festivals band */
.find-us { text-align: center; }
.find-us-title { font-family: var(--serif); font-weight: 500; letter-spacing: -0.015em; font-size: clamp(34px, 5vw, 68px); line-height: 1.02; color: var(--ink); }
.find-us-grid { list-style: none; margin: clamp(34px, 4.5vw, 60px) auto 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); align-items: start; gap: clamp(24px, 3vw, 48px); }
.find-us-item { min-width: 0; }
.fu-logo { height: clamp(58px, 7vw, 92px); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.fu-logo img { max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.fu-name { font-family: var(--serif); font-size: clamp(20px, 2vw, 26px); line-height: 1.1; color: var(--ink); }
.fu-loc { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); }
.fu-date { font-family: var(--sans); font-size: 15px; color: var(--ink-soft); margin-top: 4px; }
@media (max-width: 760px) { .find-us-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; } }
@media (max-width: 420px) { .find-us-grid { grid-template-columns: 1fr; } }

/* Construction build journey */
.build-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 30px); margin-top: clamp(40px, 5vw, 76px); align-items: start; }
.build-card { display: flex; flex-direction: column; }
.bc-media { position: relative; overflow: hidden; border-radius: 6px; }
.bc-media .slot { width: 100%; height: clamp(190px, 20vw, 248px); transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.build-card:hover .bc-media .slot { transform: scale(1.05); }
.bc-media--placeholder { height: clamp(190px, 20vw, 248px); background: linear-gradient(135deg, var(--cream-2), var(--cream)); border: 1px solid var(--line); display: grid; place-items: center; }
.bc-media--placeholder span { font-family: var(--sans); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.bc-no { position: absolute; top: 12px; left: 12px; min-width: 34px; height: 34px; padding: 0 9px; border-radius: 17px; background: rgba(20,28,22,.78); color: var(--cream-2); display: grid; place-items: center; font-family: var(--serif); font-size: 14px; font-weight: 600; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 2; }
.bc-title { font-family: var(--serif); font-size: 18px; font-weight: 600; margin: 15px 0 7px; line-height: 1.2; }
.bc-cap { font-size: 14px; line-height: 1.55; color: var(--ink-soft); }
@media (max-width: 980px) { .build-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .build-grid { gap: 16px 12px; } .bc-media .slot, .bc-media--placeholder { height: 150px; } .bc-title { font-size: 15px; margin: 11px 0 5px; } .bc-cap { font-size: 12.5px; line-height: 1.5; } }

/* -------------------------------------------------------------------------- *
 * Service pages
 * -------------------------------------------------------------------------- */
.svc-hero { padding-top: clamp(48px, 6vw, 92px); display: grid; grid-template-columns: 1.06fr 0.94fr; gap: clamp(30px, 5vw, 76px); align-items: center; }
.svc-hero .lede { margin-top: 20px; }
.svc-hero .hero-cta { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.svc-hero .slot { width: 100%; height: clamp(360px, 46vw, 580px); border-radius: 6px; }
@media (max-width: 880px) { .svc-hero { grid-template-columns: 1fr; } .svc-hero .svc-hero-media { order: -1; } }
/* Desktop forces "receptions." onto its own line; on mobile it flows up beside "unforgettable". */
.svc-hero .svc-title-line { display: block; }
@media (max-width: 880px) { .svc-hero .svc-title-line { display: inline; } }
.svc-intro { max-width: 760px; margin-bottom: clamp(38px, 5vw, 60px); }
.svc-offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-offers--two { grid-template-columns: repeat(2, 1fr); max-width: 920px; }
/* Four-item sections (offers / packs): cards left, intro text right — mirrors the text-left hero. */
.svc-split { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.svc-split > .svc-offers,
.svc-split > .svc-packs { order: 1; }
.svc-split .svc-offers--two { max-width: none; }
.svc-split .svc-packs { margin-top: 0; }
.svc-split .svc-intro { order: 2; max-width: none; margin-bottom: 0; }
@media (max-width: 880px) {
	.svc-split { grid-template-columns: 1fr; }
	.svc-split > .svc-offers,
	.svc-split > .svc-packs,
	.svc-split .svc-intro { order: 0; }
	.svc-split .svc-intro { margin-bottom: clamp(32px, 5vw, 48px); }
}
.svc-card { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: clamp(24px, 2.4vw, 34px); display: flex; flex-direction: column; gap: 12px; transition: transform .25s ease, box-shadow .25s ease; }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(33,31,25,.09); }
.svc-card .sc-no { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--gold-deep); }
.svc-card h3 { font-family: var(--serif); font-size: 21px; font-weight: 600; line-height: 1.15; }
.svc-card p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
@media (max-width: 900px) { .svc-offers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-offers { grid-template-columns: 1fr; } }
.svc-cred { background: var(--green); color: var(--cream-2); }
.svc-cred-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.svc-cred-grid .slot { width: 100%; height: clamp(300px, 34vw, 440px); border-radius: 6px; object-position: top; }
.svc-cred-grid .lede { color: rgba(244,238,225,.78); }
.svc-cred-grid p { color: rgba(244,238,225,.72); margin-top: 16px; font-size: 16px; line-height: 1.7; }
@media (max-width: 880px) { .svc-cred-grid { grid-template-columns: 1fr; } .svc-cred-grid .svc-cred-media { order: -1; } }
/* Sustainability band: image left, text right (light background variant of the cred grid). */
.svc-sustain { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.svc-sustain .svc-sustain-media { order: -1; }
.svc-sustain .slot { width: 100%; height: clamp(300px, 34vw, 440px); border-radius: 6px; }
@media (max-width: 880px) { .svc-sustain { grid-template-columns: 1fr; } .svc-sustain .svc-sustain-media { order: 0; } }
.svc-feature { list-style: none; margin: 30px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; }
.svc-feature li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; line-height: 1.5; }
.svc-feature .tick { width: 22px; height: 22px; flex: none; margin-top: 2px; border-radius: 50%; border: 1.5px solid var(--gold); display: grid; place-items: center; }
.svc-feature .tick svg { width: 11px; height: 11px; stroke: var(--gold-deep); }
@media (max-width: 620px) { .svc-feature { grid-template-columns: 1fr; } }
.svc-packs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: clamp(34px, 4vw, 52px); }
.svc-pack { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: clamp(22px, 2.2vw, 30px); }
.svc-pack h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.svc-pack p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
@media (max-width: 620px) { .svc-packs { grid-template-columns: 1fr; } }
.svc-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: clamp(34px, 4vw, 52px); }
.svc-step .ss-no { width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: var(--cream-2); display: grid; place-items: center; font-family: var(--serif); font-size: 16px; font-weight: 600; line-height: 1; padding-bottom: 4px; margin-bottom: 14px; }
.svc-step h3 { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.svc-step p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 760px) { .svc-steps { grid-template-columns: 1fr 1fr; } }

/* -------------------------------------------------------------------------- *
 * Gallery page + lightbox
 * -------------------------------------------------------------------------- */
.gal-hero { padding-top: clamp(56px, 8vw, 120px); max-width: 1100px; }
.gal-hero .lede { max-width: 56ch; }

.gal-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(28px, 3.5vw, 48px); }
.gf-pill { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); background: transparent; border: 1px solid var(--line); border-radius: 40px; padding: 11px 22px; cursor: pointer; transition: all .22s ease; }
.gf-pill:hover { border-color: var(--ink); color: var(--ink); }
.gf-pill.active { background: var(--green); border-color: var(--green); color: var(--cream-2); }

.gal-grid { columns: 3; column-gap: clamp(14px, 1.6vw, 24px); }
.g-item { display: block; width: 100%; break-inside: avoid; margin: 0 0 clamp(14px, 1.6vw, 24px); padding: 0; border: none; background: none; cursor: pointer; position: relative; overflow: hidden; border-radius: 6px; -webkit-appearance: none; text-align: left; }
.g-item img { width: 100%; height: auto; display: block; object-fit: cover; }
.g-item .g-cap { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; gap: 3px; padding: 20px; background: linear-gradient(to top, rgba(16,22,18,.82) 0%, rgba(16,22,18,.18) 46%, transparent 72%); opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease; pointer-events: none; }
.g-item:hover .g-cap, .g-item:focus-visible .g-cap { opacity: 1; transform: translateY(0); }
.g-item .g-tag { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.g-item .g-name { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--cream-2); line-height: 1.15; margin-top: 2px; }
.g-item .g-sub { font-family: var(--sans); font-size: 12.5px; color: rgba(244,238,225,.78); }
.g-item.is-hidden { display: none; }

.g-video { display: block; break-inside: avoid; margin: 0 0 clamp(14px, 1.6vw, 24px); border-radius: 6px; overflow: hidden; background: var(--green); box-shadow: 0 12px 36px -22px rgba(16,22,18,.5); }
.g-video video { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.g-video.is-hidden { display: none; }
@media (max-width: 900px) { .gal-grid { columns: 2; } .g-item .g-cap { opacity: 1; transform: none; padding: 14px; } .g-item .g-name { font-size: 16px; } }
@media (max-width: 460px) { .gal-grid { columns: 1; } }

.lb { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; background: rgba(12,16,13,.92); padding: clamp(16px, 4vw, 56px); opacity: 0; transition: opacity .28s ease; }
.lb.open { display: flex; opacity: 1; }
.lb img { max-width: 100%; max-height: 82vh; border-radius: 6px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lb-cap { position: absolute; bottom: clamp(18px, 4vw, 40px); left: 0; right: 0; text-align: center; color: var(--cream-2); }
.lb-cap .lc-name { font-family: var(--serif); font-size: clamp(18px, 2.4vw, 26px); }
.lb-cap .lc-sub { font-family: var(--sans); font-size: 13px; color: rgba(244,238,225,.7); margin-top: 4px; }
.lb-close { position: absolute; top: clamp(16px, 3vw, 30px); right: clamp(16px, 3vw, 30px); width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(244,238,225,.4); background: rgba(0,0,0,.3); color: var(--cream-2); font-size: 22px; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: all .2s ease; }
.lb-close:hover { background: var(--cream-2); color: var(--green-deep); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(244,238,225,.35); background: rgba(0,0,0,.3); color: var(--cream-2); font-size: 22px; cursor: pointer; display: grid; place-items: center; transition: all .2s ease; }
.lb-nav:hover { background: var(--cream-2); color: var(--green-deep); }
.lb-prev { left: clamp(10px, 3vw, 34px); }
.lb-next { right: clamp(10px, 3vw, 34px); }
@media (max-width: 640px) { .lb-nav { width: 42px; height: 42px; } }
body.lb-open { overflow: hidden; }

/* -------------------------------------------------------------------------- *
 * Forms — honeypot, fields, inline errors, status (preserved from scaffold)
 * -------------------------------------------------------------------------- */
.tipsyrover-form__hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.tipsyrover-field { margin-bottom: 1.25rem; }
.tipsyrover-field__label,
.tipsyrover-field__group .tipsyrover-field__label { display: block; font-weight: 600; margin-bottom: 0.35rem; }
.tipsyrover-field__required { color: #b3261e; }
.tipsyrover-field__control { display: block; width: 100%; padding: 0.6rem 0.75rem; font: inherit; border: 1px solid #8a8a8a; border-radius: 4px; background: #fff; }
.tipsyrover-field__control:focus { border-color: #111; outline: 2px solid currentColor; outline-offset: 1px; }
.tipsyrover-field__group { border: 0; margin: 0; padding: 0; }
.tipsyrover-field__option { display: flex; align-items: center; gap: 0.5rem; font-weight: 400; margin-bottom: 0.35rem; }
.tipsyrover-field__error { display: block; min-height: 1px; margin-top: 0.35rem; color: #b3261e; font-size: 0.9rem; }
.tipsyrover-field.has-error .tipsyrover-field__control { border-color: #b3261e; }
.tipsyrover-form__status { margin-bottom: 1rem; }
.tipsyrover-form__status:empty { display: none; }
.tipsyrover-form__status.is-success { padding: 0.75rem 1rem; border-radius: 4px; background: #e6f4ea; color: #14532d; }
.tipsyrover-form__status.is-error { padding: 0.75rem 1rem; border-radius: 4px; background: #fce8e6; color: #8c1d18; }
.tipsyrover-form.is-submitting .tipsyrover-form__submit { opacity: 0.7; cursor: progress; }

/* -------------------------------------------------------------------------- *
 * Lightbox (preserved from scaffold)
 * -------------------------------------------------------------------------- */
.tipsyrover-lightbox { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem; background: rgba(0, 0, 0, 0.9); }
.tipsyrover-lightbox[hidden] { display: none; }
.tipsyrover-lightbox__figure { margin: 0; max-width: 90vw; max-height: 90vh; }
.tipsyrover-lightbox__figure img { max-width: 90vw; max-height: 80vh; height: auto; }
.tipsyrover-lightbox__figure figcaption { color: #fff; text-align: center; margin-top: 0.5rem; }
.tipsyrover-lightbox button { background: transparent; border: 0; color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; padding: 0.25rem 0.6rem; }
.tipsyrover-lightbox__close { position: absolute; top: 0.5rem; right: 0.75rem; }
body.tipsyrover-lightbox-open { overflow: hidden; }
