/* ============================================================
   HLYNA — керамічна майстерня та повільна кава · Чернівці
   Handcrafted CSS. No frameworks, no component libraries.
   ============================================================ */

:root {
	--canvas: #F2EEE5;
	--surface: #E8E0D2;
	--ink: #20201E;
	--ink-2: #635E55;
	--terra: #B65338;
	--terra-ink: #9C4026;
	--terra-btn: #A64A2F;
	--cobalt: #244DA8;
	--line: rgba(32, 32, 30, 0.18);
	--line-strong: rgba(32, 32, 30, 0.45);
	--footer-bg: #201F1D;
	--footer-ink: #EDE8DC;
	--serif: "Literata", Georgia, "Times New Roman", serif;
	--sans: "Inter", -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--wrap-max: 1240px;
	--gutter: clamp(20px, 4vw, 48px);
	--grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.65;
	color: var(--ink);
	background: var(--canvas);
	overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

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

a { color: inherit; }

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

.serif { font-family: var(--serif); }

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

.visually-hidden {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

/* Focus */
:focus-visible {
	outline: 2px solid var(--cobalt);
	outline-offset: 2px;
}

.skip-link {
	position: absolute;
	top: -60px; left: 16px;
	z-index: 200;
	background: var(--ink);
	color: var(--canvas);
	padding: 12px 18px;
	text-decoration: none;
	transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* Grain — only on selected surfaces, very low opacity */
.grain { position: relative; }
.grain::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--grain);
	opacity: 0.05;
	pointer-events: none;
	z-index: 0;
}
.grain > * { position: relative; z-index: 1; }

/* ============ Buttons ============ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 10px 22px;
	border-radius: 6px;
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0.01em;
	text-decoration: none;
	transition: background-color .18s, color .18s, border-color .18s;
}
.btn-primary {
	background: var(--terra-btn);
	color: #FFF9F0;
}
.btn-primary:hover { background: #8F3E26; }
.btn-ghost {
	border: 1px solid var(--line-strong);
	background: transparent;
	color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(32,32,30,0.05); }
.btn-line {
	padding: 10px 8px;
	text-decoration: underline;
	text-underline-offset: 5px;
	text-decoration-thickness: 1px;
	text-decoration-color: var(--line-strong);
}
.btn-line:hover { text-decoration-color: var(--terra); color: var(--terra-ink); }
.btn-wide { width: 100%; }
.btn[disabled] {
	opacity: 0.45;
	cursor: not-allowed;
}
.btn-primary[disabled]:hover { background: var(--terra-btn); }

.icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	border: 1px solid var(--line);
	border-radius: 6px;
	transition: border-color .18s, background-color .18s;
}
.icon-btn:hover { border-color: var(--ink); }

/* ============ Header ============ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--canvas);
	border-bottom: 1px solid transparent;
	transition: border-color .2s;
}
.site-header.scrolled { border-bottom-color: var(--line); }

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 68px;
}

.wordmark {
	display: flex;
	align-items: baseline;
	gap: 10px;
	text-decoration: none;
}
.wordmark-name {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0.14em;
}
.wordmark-sub {
	font-size: 14px;
	letter-spacing: 0.06em;
	color: var(--ink-2);
	text-transform: uppercase;
}

.main-nav ul {
	display: flex;
	gap: 22px;
	list-style: none;
}
.main-nav a {
	display: inline-block;
	padding: 12px 12px;
	font-size: 15px;
	text-decoration: none;
	color: var(--ink-2);
	border-bottom: 2px solid transparent;
	transition: color .15s, border-color .15s;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a.is-active {
	color: var(--ink);
	border-bottom-color: var(--terra);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}
.my-booking-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 44px;
	padding: 8px 10px;
	font-size: 15px;
	color: var(--ink-2);
	text-decoration: underline;
	text-underline-offset: 5px;
	text-decoration-color: transparent;
	transition: color .15s, text-decoration-color .15s;
}
.my-booking-link:hover { color: var(--ink); text-decoration-color: var(--line-strong); }
.mb-dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--terra);
}

.burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 7px;
	width: 44px; height: 44px;
	padding: 10px;
	border: 1px solid var(--line);
	border-radius: 6px;
}
.burger-line {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--ink);
	transition: transform .2s, opacity .2s;
}
.burger[aria-expanded="true"] .burger-line:first-child { transform: translateY(4.5px) rotate(45deg); }
.burger[aria-expanded="true"] .burger-line:last-child { transform: translateY(-4.5px) rotate(-45deg); }

[hidden] { display: none !important; }

/* Mobile menu */
.mobile-menu {
	position: fixed;
	inset: 68px 0 0 0;
	z-index: 90;
	background: var(--canvas);
	padding: 28px var(--gutter) 32px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow-y: auto;
}
.mobile-menu ul { list-style: none; }
.mobile-menu nav a {
	display: flex;
	align-items: baseline;
	gap: 16px;
	padding: 16px 4px;
	font-family: var(--serif);
	font-size: 28px;
	text-decoration: none;
	border-bottom: 1px solid var(--line);
}
.mnav-num {
	font-family: var(--sans);
	font-size: 14px;
	color: var(--terra-ink);
	letter-spacing: 0.08em;
}
.mobile-menu-foot {
	display: grid;
	gap: 12px;
	margin-top: 32px;
}
.mobile-menu-contact {
	font-size: 14px;
	color: var(--ink-2);
	margin-top: 6px;
}

/* ============ Sections — shared ============ */
.section {
	padding-block: clamp(64px, 9vw, 120px);
	border-top: 1px solid var(--line);
}

.sec-label {
	font-size: 14px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--terra-ink);
	margin-bottom: 18px;
}

.sec-title {
	font-size: clamp(30px, 4.2vw, 46px);
	line-height: 1.12;
	font-weight: 500;
	letter-spacing: -0.01em;
	max-width: 16em;
}

.sec-head { margin-bottom: clamp(36px, 5vw, 56px); }
.sec-head-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.sec-aside {
	font-size: 14px;
	color: var(--ink-2);
	max-width: 26em;
}

/* ============ Hero ============ */
.hero {
	background: var(--canvas);
}
.hero-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(24px, 3vw, 40px);
	align-items: stretch;
	padding-top: clamp(36px, 5vw, 72px);
	padding-bottom: clamp(40px, 6vw, 80px);
}
.hero-text {
	grid-column: 1 / 7;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.hero-kicker {
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-2);
	padding-bottom: 18px;
	margin-bottom: 26px;
	border-bottom: 1px solid var(--line);
	max-width: 30em;
}
.hero-title {
	font-size: clamp(38px, 5.6vw, 66px);
	line-height: 1.06;
	font-weight: 500;
	letter-spacing: -0.015em;
	max-width: 10.5em;
}
.hero-lead {
	margin-top: 24px;
	font-size: clamp(16px, 1.4vw, 18px);
	max-width: 30em;
	color: var(--ink);
}
.hero-cta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 34px;
}
.hero-info {
	display: flex;
	gap: clamp(24px, 3vw, 48px);
	flex-wrap: wrap;
	margin-top: clamp(36px, 5vw, 64px);
	padding-top: 22px;
	border-top: 1px solid var(--line);
}
.hero-info-item dt {
	font-size: 14px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink-2);
	margin-bottom: 4px;
}
.hero-info-item dd { font-size: 15px; }
.hero-scroll {
	margin-top: clamp(28px, 4vw, 48px);
	font-size: 14px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink-2);
}
.hero-scroll-arrow { display: inline-block; margin-left: 6px; }

.hero-media {
	grid-column: 8 / 13;
	position: relative;
}
.hero-media figure { position: relative; }
.hero-media img {
	width: 100%;
	height: 100%;
	min-height: 460px;
	max-height: 78vh;
	object-fit: cover;
	object-position: 42% center;
}
.hero-caption {
	margin-top: 12px;
	font-size: 14px;
	line-height: 1.55;
	color: var(--ink-2);
	max-width: 340px;
}
.hero-caption::before {
	content: "";
	display: block;
	width: 36px;
	height: 2px;
	background: var(--terra);
	margin-bottom: 10px;
}

/* ============ Chips (filters, dates, times) ============ */
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 8px 18px;
	border: 1px solid var(--line-strong);
	border-radius: 6px;
	font-size: 14px;
	background: transparent;
	transition: background-color .15s, color .15s, border-color .15s;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--canvas);
}
.chip[disabled] {
	border-style: dashed;
	border-color: var(--line);
	color: var(--ink-2);
	cursor: not-allowed;
}
.chip[disabled]:hover { border-color: var(--line); }
.chip .chip-note { font-size: 14px; color: inherit; opacity: .75; }

/* ============ 01 Workshops ============ */
.ws-list { border-top: 1px solid var(--line); }
.ws-row {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(20px, 3vw, 44px);
	padding-block: clamp(32px, 4vw, 56px);
	border-bottom: 1px solid var(--line);
}
.ws-row.is-hidden { display: none; }
.ws-media { grid-column: 1 / 6; }
.ws-body { grid-column: 6 / 13; position: relative; }
.ws-row:nth-child(even) .ws-media { grid-column: 8 / 13; order: 2; }
.ws-row:nth-child(even) .ws-body { grid-column: 1 / 8; order: 1; }
.ws-media img {
	width: 100%;
	height: 100%;
	max-height: 400px;
	object-fit: cover;
}
.ws-row[data-ws="persha-chashka"] .ws-media img { object-position: center 60%; }
.ws-num {
	font-size: 15px;
	color: var(--terra-ink);
	margin-bottom: 10px;
}
.ws-title {
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 500;
	line-height: 1.1;
}
.ws-meta {
	margin-top: 10px;
	font-size: 14px;
	letter-spacing: 0.03em;
	color: var(--ink-2);
}
.ws-desc {
	margin-top: 16px;
	max-width: 34em;
}
.ws-dates {
	margin-top: 14px;
	font-size: 14px;
	color: var(--ink-2);
}
.ws-dates strong { color: var(--ink); font-weight: 500; }
.ws-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid var(--line);
}
.ws-price strong { font-size: 21px; font-weight: 600; }
.ws-price span { color: var(--ink-2); font-size: 14px; }
.ws-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.ws-empty {
	padding: clamp(40px, 6vw, 72px) 0;
	border-bottom: 1px solid var(--line);
	max-width: 34em;
}
.ws-empty .serif { font-size: 24px; margin-bottom: 10px; }
.ws-empty p:not(.serif) { color: var(--ink-2); margin-bottom: 20px; }

/* ============ 02 Process ============ */
.process-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(24px, 3vw, 44px);
}
.process-intro { grid-column: 1 / 6; }
.process-steps { grid-column: 7 / 13; list-style: none; }
.process-note {
	margin-top: 18px;
	color: var(--ink-2);
	max-width: 26em;
}
.process-figure { margin-top: clamp(28px, 4vw, 48px); max-width: 440px; }
.process-figure img { width: 100%; height: auto; }
.process-figure figcaption {
	margin-top: 10px;
	font-size: 14px;
	color: var(--ink-2);
}
.process-step {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 18px;
	padding-block: 26px;
	border-top: 1px solid var(--line);
}
.process-step:last-child { border-bottom: 1px solid var(--line); }
.step-num {
	font-size: 30px;
	color: var(--terra);
	line-height: 1;
	padding-top: 4px;
}
.step-title {
	font-size: 21px;
	font-weight: 500;
	margin-bottom: 8px;
}
.process-step p:not(.step-num) { max-width: 30em; color: var(--ink); }

/* ============ 03 Schedule ============ */
.section-schedule { background: var(--surface); }
.schedule-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(24px, 3vw, 44px);
	align-items: start;
}
.schedule-picker { grid-column: 1 / 8; }
.schedule-summary {
	grid-column: 9 / 13;
	position: sticky;
	top: 92px;
	background: var(--canvas);
	border: 1px solid var(--line);
	padding: 26px;
}
.sched-block {
	border: none;
	padding: 0;
	margin-bottom: 30px;
}
.sched-legend {
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-2);
	margin-bottom: 12px;
}
.sched-ws-list { display: grid; gap: 8px; }
.sched-ws-btn {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	min-height: 52px;
	padding: 12px 16px;
	border: 1px solid var(--line-strong);
	border-radius: 6px;
	text-align: left;
	transition: background-color .15s, color .15s, border-color .15s;
}
.sched-ws-btn:hover { border-color: var(--ink); }
.sched-ws-btn.is-active {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--canvas);
}
.sched-ws-name { font-weight: 500; }
.sched-ws-price { font-size: 14px; opacity: .75; white-space: nowrap; }
.sched-dates, .sched-times { display: flex; gap: 8px; flex-wrap: wrap; }
.sched-note { font-size: 14px; color: var(--ink-2); }

.stepper { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.stepper-btn {
	width: 44px; height: 44px;
	border: 1px solid var(--line-strong);
	border-radius: 6px;
	font-size: 20px;
	line-height: 1;
	transition: border-color .15s, background-color .15s;
}
.stepper-btn:hover { border-color: var(--ink); }
.stepper-btn[disabled] { opacity: .35; cursor: not-allowed; }
.stepper-value {
	min-width: 52px;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
}
.stepper-note { font-size: 14px; color: var(--ink-2); margin-left: 10px; }

.summary-title { font-size: 22px; font-weight: 500; margin-bottom: 16px; }
.summary-list div {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 9px 0;
	border-bottom: 1px dotted var(--line);
	font-size: 14px;
}
.summary-list dt { color: var(--ink-2); }
.summary-list dd { text-align: right; }
.summary-total {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin: 16px 0 18px;
}
.summary-total strong { font-size: 24px; font-weight: 600; }
.summary-hint { margin-top: 12px; font-size: 14px; color: var(--ink-2); }

/* ============ 04 Story ============ */
.story-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(24px, 3vw, 48px);
	align-items: start;
}
.story-media { grid-column: 1 / 8; grid-row: 1; }
.story-media img { width: 100%; height: auto; }
.story-media figcaption { margin-top: 10px; font-size: 14px; color: var(--ink-2); }
.story-text { grid-column: 8 / 13; grid-row: 1; }
.story-text > p:not(.sec-label) { margin-top: 18px; }
.story-quote {
	margin-top: 28px;
	padding: 4px 0 4px 22px;
	border-left: 2px solid var(--terra);
}
.story-quote p {
	font-size: 19px;
	line-height: 1.5;
	font-style: italic;
}
.story-quote footer {
	margin-top: 12px;
	font-size: 14px;
	color: var(--ink-2);
}

/* ============ 05 Gallery ============ */
.gallery {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(14px, 1.6vw, 22px);
}
.g-item { position: relative; }
.g-a { grid-column: 1 / 6; }
.g-b { grid-column: 6 / 9; margin-top: clamp(24px, 4vw, 56px); }
.g-c { grid-column: 9 / 13; }
.g-d { grid-column: 1 / 4; margin-top: clamp(16px, 2vw, 32px); }
.g-e { grid-column: 4 / 9; }
.g-f { grid-column: 9 / 12; margin-top: clamp(24px, 4vw, 56px); }
.g-g { grid-column: 3 / 9; }
.g-btn {
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
	border-radius: 6px;
}
.g-btn img {
	width: 100%;
	height: auto;
	transition: transform .35s ease;
}
.g-btn:hover img { transform: scale(1.025); }
.g-item figcaption {
	margin-top: 8px;
	font-size: 14px;
	color: var(--ink-2);
}

/* ============ 06 Coffee ============ */
.section-coffee { background: var(--surface); }
.coffee-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(24px, 3vw, 48px);
}
.coffee-text { grid-column: 1 / 8; }
.coffee-media { grid-column: 9 / 13; position: relative; }
.coffee-media img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
}
.coffee-caption {
	margin-top: 12px;
	font-size: 14px;
	color: var(--ink-2);
	max-width: 340px;
}
.coffee-caption::before {
	content: "";
	display: block;
	width: 36px; height: 2px;
	background: var(--cobalt);
	margin-bottom: 10px;
}
.coffee-intro { margin-top: 18px; max-width: 32em; }
.coffee-filters { margin-top: 26px; }
.menu-list {
	list-style: none;
	margin-top: 26px;
	border-top: 1px solid var(--line);
	max-width: 560px;
}
.menu-item {
	display: flex;
	align-items: baseline;
	gap: 12px;
	padding: 13px 0;
	border-bottom: 1px solid var(--line);
}
.menu-item.is-hidden { display: none; }
.menu-name { font-size: 16px; }
.menu-dots {
	flex: 1;
	border-bottom: 1px dotted var(--line-strong);
	transform: translateY(-4px);
}
.menu-price { font-weight: 500; white-space: nowrap; }
.menu-note {
	margin-top: 18px;
	font-size: 14px;
	color: var(--ink-2);
	max-width: 32em;
}

/* ============ 07 FAQ ============ */
.faq-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(24px, 3vw, 48px);
}
.faq-intro { grid-column: 1 / 5; }
.faq-list { grid-column: 5 / 13; border-top: 1px solid var(--line); }
.faq-note { margin-top: 16px; color: var(--ink-2); font-size: 14px; max-width: 22em; }
.faq-note a { color: var(--cobalt); text-underline-offset: 3px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { font: inherit; }
.faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	width: 100%;
	min-height: 60px;
	padding: 16px 2px;
	text-align: left;
	font-size: 17px;
	font-weight: 500;
	transition: color .15s;
}
.faq-q:hover { color: var(--terra-ink); }
.faq-icon {
	position: relative;
	flex: 0 0 16px;
	height: 16px;
}
.faq-icon::before, .faq-icon::after {
	content: "";
	position: absolute;
	top: 7px; left: 0;
	width: 16px; height: 2px;
	background: currentColor;
	transition: transform .2s;
}
.faq-icon::after { transform: rotate(90deg); }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: rotate(0deg); }
.faq-a {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .25s ease;
}
.faq-a-inner { overflow: hidden; }
.faq-a-inner p {
	padding: 0 2px 20px;
	max-width: 40em;
	color: var(--ink);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }

/* ============ 08 Contacts ============ */
.contacts-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(24px, 3vw, 48px);
	align-items: start;
}
.contacts-info { grid-column: 1 / 6; }
.contacts-map { grid-column: 7 / 13; }
.contacts-map svg { width: 100%; height: auto; border: 1px solid var(--line); }
.contacts-address { font-style: normal; margin-top: 22px; }
.contacts-street { font-size: 24px; font-weight: 500; }
.contacts-address p:last-child { color: var(--ink-2); font-size: 14px; margin-top: 4px; }
.hours-table {
	width: 100%;
	margin-top: 24px;
	border-collapse: collapse;
	font-size: 15px;
}
.hours-table th, .hours-table td {
	padding: 10px 0;
	border-bottom: 1px solid var(--line);
	text-align: left;
	font-weight: 400;
}
.hours-table th { color: var(--ink-2); padding-right: 18px; white-space: nowrap; }
.contacts-links { list-style: none; margin: 24px 0 28px; }
.contacts-links li {
	display: flex;
	gap: 16px;
	padding: 8px 0;
	font-size: 15px;
}
.contacts-links span {
	flex: 0 0 92px;
	color: var(--ink-2);
	font-size: 14px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding-top: 3px;
}
.contacts-links a { text-underline-offset: 4px; }
.contacts-links a:hover { color: var(--terra-ink); }

/* ============ Footer ============ */
.site-footer {
	background: var(--footer-bg);
	color: var(--footer-ink);
	padding-top: clamp(48px, 6vw, 72px);
}
.footer-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(24px, 3vw, 48px);
	padding-bottom: clamp(36px, 5vw, 56px);
}
.footer-brand { grid-column: 1 / 6; }
.footer-nav { grid-column: 7 / 10; }
.footer-meta { grid-column: 10 / 13; }
.footer-wordmark {
	font-size: 26px;
	letter-spacing: 0.14em;
	font-weight: 600;
}
.footer-tag {
	margin-top: 12px;
	font-size: 14px;
	color: rgba(237, 232, 220, 0.72);
}
.footer-nav ul { list-style: none; }
.footer-nav a, .footer-meta a {
	display: inline-block;
	padding: 5px 0;
	color: rgba(237, 232, 220, 0.85);
	text-decoration: none;
	text-underline-offset: 4px;
}
.footer-nav a:hover, .footer-meta a:hover { color: #FFFFFF; text-decoration: underline; }
.footer-privacy-btn {
	margin-top: 12px;
	padding: 8px 0;
	min-height: 44px;
	color: rgba(237, 232, 220, 0.85);
	text-decoration: underline;
	text-underline-offset: 4px;
}
.footer-privacy-btn:hover { color: #FFFFFF; }
.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding-block: 22px;
	border-top: 1px solid rgba(237, 232, 220, 0.2);
	font-size: 14px;
	color: rgba(237, 232, 220, 0.65);
}
.footer-bottom a { color: rgba(237, 232, 220, 0.9); text-underline-offset: 3px; }
.footer-bottom a:hover { color: #FFFFFF; }

/* ============ Overlay / Drawer / Modal ============ */
.overlay {
	position: fixed;
	inset: 0;
	z-index: 110;
	background: rgba(32, 32, 30, 0.45);
	opacity: 0;
	transition: opacity .25s;
}
.overlay.is-visible { opacity: 1; }

.drawer {
	position: fixed;
	top: 0; right: 0; bottom: 0;
	z-index: 120;
	width: min(540px, 100%);
	background: var(--canvas);
	border-left: 1px solid var(--line);
	transform: translateX(100%);
	transition: transform .3s ease;
	display: flex;
	flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }
.drawer-head { transition: opacity .17s ease; }
.drawer-body { transition: opacity .17s ease, transform .17s ease; }
.drawer.is-swapping .drawer-head { opacity: 0; }
.drawer.is-swapping .drawer-body { opacity: 0; transform: translateY(10px); }
.drawer-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 24px 28px 18px;
	border-bottom: 1px solid var(--line);
}
.drawer-kicker {
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--terra-ink);
	margin-bottom: 6px;
}
.drawer-kicker:empty { display: none; }
.drawer-title { font-size: 26px; font-weight: 500; line-height: 1.15; }
.drawer-body {
	flex: 1;
	overflow-y: auto;
	padding: 24px 28px 36px;
}

.modal {
	position: fixed;
	top: 50%; left: 50%;
	z-index: 120;
	width: min(560px, calc(100% - 32px));
	max-height: min(80vh, 640px);
	transform: translate(-50%, -50%);
	background: var(--canvas);
	border: 1px solid var(--line);
	display: flex;
	flex-direction: column;
}
.modal-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 26px;
	border-bottom: 1px solid var(--line);
}
.modal-head h2 { font-size: 24px; font-weight: 500; }
.modal-body {
	padding: 22px 26px 30px;
	overflow-y: auto;
}
.modal-body p { margin-bottom: 14px; max-width: 42em; }
.modal-body p:last-child { margin-bottom: 0; }

/* ============ Drawer content: detail / form / success / my booking ============ */
.dw-meta { font-size: 14px; color: var(--ink-2); margin-bottom: 18px; }
.dw-img { width: 100%; height: 220px; object-fit: cover; margin-bottom: 20px; }
.dw-desc { margin-bottom: 22px; }
.dw-sub {
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-2);
	margin: 22px 0 10px;
}
.dw-includes { list-style: none; }
.dw-includes li {
	position: relative;
	padding: 7px 0 7px 22px;
	border-bottom: 1px dotted var(--line);
	font-size: 15px;
}
.dw-includes li::before {
	content: "";
	position: absolute;
	left: 2px; top: 16px;
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--terra);
}
.dw-slots { display: flex; flex-wrap: wrap; gap: 8px; }
.dw-actions { display: grid; gap: 10px; margin-top: 28px; }
.dw-price-line {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-top: 24px;
	padding-top: 16px;
	border-top: 1px solid var(--line);
}
.dw-price-line strong { font-size: 22px; }
.dw-price-line span { color: var(--ink-2); font-size: 14px; }

/* Booking form */
.bf-field { margin-bottom: 18px; }
.bf-label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 6px;
}
.bf-label .opt { color: var(--ink-2); font-weight: 400; }
.bf-input, .bf-select, .bf-textarea {
	width: 100%;
	min-height: 48px;
	padding: 10px 14px;
	border: 1px solid var(--line-strong);
	border-radius: 6px;
	background: #FBF9F3;
	font: inherit;
	color: var(--ink);
	transition: border-color .15s;
}
.bf-textarea { min-height: 90px; resize: vertical; }
.bf-input:focus, .bf-select:focus, .bf-textarea:focus {
	outline: 2px solid var(--cobalt);
	outline-offset: 0;
	border-color: var(--cobalt);
}
.bf-field.has-error .bf-input,
.bf-field.has-error .bf-select { border-color: #A3341C; }
.bf-error {
	display: none;
	margin-top: 6px;
	font-size: 14px;
	color: #A3341C;
}
.bf-field.has-error .bf-error { display: block; }
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bf-check {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin: 22px 0 6px;
}
.bf-check input {
	width: 20px; height: 20px;
	margin-top: 3px;
	accent-color: var(--terra-btn);
	flex: 0 0 auto;
}
.bf-check label { font-size: 14px; }
.bf-check .bf-error { margin-top: 4px; }
.bf-check-wrap.has-error .bf-error { display: block; }
.bf-submit { margin-top: 18px; }
.bf-demo-note {
	margin-top: 14px;
	font-size: 14px;
	color: var(--ink-2);
}

/* Spinner */
.spinner {
	width: 18px; height: 18px;
	border: 2px solid rgba(255, 249, 240, 0.4);
	border-top-color: #FFF9F0;
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Success */
.success-mark {
	width: 56px; height: 56px;
	margin-bottom: 18px;
}
.success-ref {
	display: inline-block;
	margin: 6px 0 18px;
	padding: 8px 14px;
	border: 1px dashed var(--line-strong);
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.08em;
}
.success-note {
	margin-top: 20px;
	padding: 14px 16px;
	background: var(--surface);
	border-left: 2px solid var(--cobalt);
	font-size: 14px;
	color: var(--ink);
}
.booking-summary { list-style: none; margin-top: 8px; }
.booking-summary li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 9px 0;
	border-bottom: 1px dotted var(--line);
	font-size: 14px;
}
.booking-summary li span:first-child { color: var(--ink-2); }
.booking-summary li span:last-child { text-align: right; }

/* My booking */
.mybk-empty { padding-top: 6px; }
.mybk-empty .serif { font-size: 22px; margin-bottom: 10px; }
.mybk-empty p:not(.serif) { color: var(--ink-2); margin-bottom: 22px; max-width: 26em; }
.mybk-status {
	display: inline-block;
	font-size: 14px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--terra-ink);
	border: 1px solid var(--terra);
	padding: 4px 10px;
	margin-bottom: 16px;
}
.mybk-confirm {
	margin-top: 20px;
	padding: 16px;
	border: 1px solid var(--line-strong);
	background: var(--surface);
}
.mybk-confirm p { font-weight: 500; margin-bottom: 14px; }
.mybk-confirm .dw-actions { margin-top: 0; }
.mybk-edit-block { margin-top: 8px; }

/* ============ Lightbox ============ */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 130;
	background: rgba(24, 23, 21, 0.93);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 64px clamp(16px, 6vw, 96px);
}
.lb-figure {
	max-width: min(1040px, 100%);
	max-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.lb-figure img {
	max-width: 100%;
	max-height: calc(100vh - 180px);
	width: auto;
	height: auto;
	object-fit: contain;
}
.lb-figure figcaption {
	margin-top: 14px;
	color: rgba(242, 238, 229, 0.85);
	font-size: 14px;
	text-align: center;
}
.lightbox .icon-btn {
	position: absolute;
	color: #F2EEE5;
	border-color: rgba(242, 238, 229, 0.4);
	background: rgba(24, 23, 21, 0.5);
}
.lightbox .icon-btn:hover { border-color: #F2EEE5; }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); }

/* ============ Reveal on scroll ============ */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============ Noscript ============ */
.noscript-note {
	padding: 16px var(--gutter);
	background: var(--surface);
	border-top: 1px solid var(--line);
	font-size: 14px;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
	.hero-text { grid-column: 1 / 7; }
	.hero-media { grid-column: 7 / 13; }
	.ws-media { grid-column: 1 / 6; }
	.ws-body { grid-column: 6 / 13; }
	.process-intro { grid-column: 1 / 13; }
	.process-steps { grid-column: 1 / 13; }
	.process-figure { max-width: 380px; }
	.schedule-picker { grid-column: 1 / 13; }
	.schedule-summary { grid-column: 1 / 13; position: static; }
	.story-media { grid-column: 1 / 13; grid-row: auto; }
	.story-text { grid-column: 1 / 11; grid-row: auto; }
	.coffee-text { grid-column: 1 / 13; }
	.coffee-media { grid-column: 1 / 9; margin-top: 8px; }
	.coffee-media img { min-height: 0; max-height: 440px; }
	.faq-intro { grid-column: 1 / 13; }
	.faq-list { grid-column: 1 / 13; }
	.contacts-info { grid-column: 1 / 7; }
	.contacts-map { grid-column: 7 / 13; }
	.footer-brand { grid-column: 1 / 13; }
	.footer-nav { grid-column: 1 / 7; }
	.footer-meta { grid-column: 7 / 13; }
}

@media (max-width: 900px) {
	.main-nav { display: none; }
	.my-booking-link { display: none; }
	.burger { display: flex; }
	.btn-book { min-height: 44px; padding: 8px 16px; font-size: 14px; }
}

@media (max-width: 760px) {
	body { font-size: 15px; }

	.hero-grid { grid-template-columns: repeat(4, 1fr); padding-top: 28px; }
	.hero-text { grid-column: 1 / -1; }
	.hero-media { grid-column: 1 / -1; margin-top: 34px; }
	.hero-media img { min-height: 0; height: 62vh; max-height: 520px; }
	.hero-info { flex-direction: column; gap: 14px; }
	.hero-scroll { display: none; }

	.sec-head-row { flex-direction: column; align-items: flex-start; gap: 18px; }

	.ws-row { grid-template-columns: repeat(4, 1fr); gap: 18px; }
	.ws-media, .ws-body,
	.ws-row:nth-child(even) .ws-media,
	.ws-row:nth-child(even) .ws-body { grid-column: 1 / -1; order: initial; }
	.ws-media img { max-height: 300px; aspect-ratio: 3 / 2; }
	.ws-foot { flex-direction: column; align-items: flex-start; gap: 14px; }
	.ws-actions { width: 100%; }
	.ws-actions .btn-ghost { flex: 1; }

	.process-step { grid-template-columns: 44px 1fr; gap: 14px; }
	.step-num { font-size: 24px; }

	.story-text { grid-column: 1 / 13; }

	.gallery { grid-template-columns: repeat(4, 1fr); gap: 14px; }
	.g-a, .g-e, .g-g { grid-column: 1 / -1; margin-top: 0; }
	.g-b, .g-d { grid-column: 1 / 3; margin-top: 0; }
	.g-c, .g-f { grid-column: 3 / 5; margin-top: 0; }

	.coffee-media { grid-column: 1 / 13; }

	.contacts-info { grid-column: 1 / 13; }
	.contacts-map { grid-column: 1 / 13; }

	.footer-nav { grid-column: 1 / 13; }
	.footer-meta { grid-column: 1 / 13; }
	.footer-bottom { flex-direction: column; gap: 8px; }

	.drawer-head { padding: 20px 20px 16px; }
	.drawer-body { padding: 20px 20px 32px; }
	.bf-row { grid-template-columns: 1fr; }

	.lightbox { padding: 72px 12px 84px; }
	.lb-prev { left: 12px; top: auto; bottom: 16px; transform: none; }
	.lb-next { right: 12px; top: auto; bottom: 16px; transform: none; }
	.lb-figure img { max-height: calc(100vh - 220px); }
}

@media (max-width: 400px) {
	.hero-title { font-size: 34px; }
	.hero-cta .btn { width: 100%; }
	.wordmark-sub { display: none; }
	.chip { padding: 8px 14px; }
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
	.reveal { opacity: 1; transform: none; }
	.g-btn:hover img { transform: none; }
}

/* ============ Hit-area sizing (min 44px targets) ============ */
.wordmark { display: inline-flex; align-items: baseline; min-height: 44px; align-items: center; }
.main-nav a { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; min-width: 44px; padding: 0 8px; margin: 0 -8px; }
.footer-nav a { display: inline-flex; align-items: center; min-height: 44px; min-width: 44px; padding-right: 8px; }
.footer-meta p a { display: inline-block; padding-block: 11px; margin-block: -11px; }
.footer-meta p { line-height: 3; }
.contacts-links a { display: inline-flex; align-items: center; min-height: 44px; }
.faq-note a { display: inline-block; padding-block: 13px; margin-block: -13px; }
.footer-bottom a { display: inline-block; padding-block: 14px; margin-block: -14px; }

/* ============ Map embed ============ */
.map-embed { display: block; width: 100%; aspect-ratio: 7 / 5; border: 0; border-radius: 6px; background: var(--surface); }
