/* ==========================================================================
   Adriatico — main stylesheet
   ========================================================================== */

:root {
	--wine:        #6e1f23;
	--wine-dark:   #511619;
	--terracotta:  #b6553a;
	--gold:        #c79a4b;
	--cream:       #f7f1e6;
	--cream-2:     #efe6d4;
	--ink:         #211c1a;
	--ink-soft:    #4b423d;
	--white:       #ffffff;
	--maxw:        1180px;
	--radius:      14px;
	--shadow:      0 18px 50px rgba(33, 28, 26, 0.14);
	--font-display: "Playfair Display", Georgia, serif;
	--font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--cream);
	line-height: 1.65;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
}

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

a { color: var(--wine); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--terracotta); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; color: var(--ink); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
	font-family: var(--font-body);
	text-transform: uppercase;
	letter-spacing: .22em;
	font-size: .74rem;
	font-weight: 600;
	color: var(--terracotta);
	margin: 0 0 .9rem;
}
.eyebrow--light { color: var(--gold); }

.section { padding: 96px 0; position: relative; }
.section__title { font-size: clamp(1.9rem, 4vw, 3rem); }
.section__head { text-align: center; margin-bottom: 56px; }
.section__cta { text-align: center; margin-top: 48px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .85rem 1.7rem;
	border-radius: 999px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: .92rem;
	letter-spacing: .02em;
	cursor: pointer;
	border: 1.5px solid transparent;
	transition: all .22s ease;
	white-space: nowrap;
}
.btn--primary { background: var(--wine); color: var(--white); }
.btn--primary:hover { background: var(--wine-dark); color: var(--white); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn--ghost:hover { background: var(--white); color: var(--ink); }
.btn--book { background: var(--gold); color: var(--ink); padding: .62rem 1.2rem; font-size: .85rem; }
.btn--book:hover { background: var(--terracotta); color: var(--white); }

/* ---------- Header ---------- */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
	padding: 10px 0;
}
.site-header__inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	gap: 24px;
}
.site-brand { display: flex; align-items: center; }
.site-brand__logo { height: 64px; width: auto; transition: height .3s ease; }
.site-nav { margin-left: auto; }
.nav-menu { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; }
.nav-menu a {
	color: var(--white);
	font-weight: 500;
	font-size: .95rem;
	letter-spacing: .02em;
	position: relative;
	padding: 6px 0;
}
.nav-menu a::after {
	content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
	background: var(--gold); transition: width .25s ease;
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu a:hover::after { width: 100%; }

/* Scrolled / non-hero header */
.site-header.is-scrolled,
body:not(.has-hero) .site-header {
	background: var(--cream);
	box-shadow: 0 6px 24px rgba(33,28,26,.08);
}
.site-header.is-scrolled .nav-menu a,
body:not(.has-hero) .nav-menu a { color: var(--ink); }
.site-header.is-scrolled .nav-menu a:hover,
body:not(.has-hero) .nav-menu a:hover { color: var(--wine); }
.site-header.is-scrolled .site-brand__logo,
body:not(.has-hero) .site-brand__logo { height: 52px; }
body:not(.has-hero) .site-header { position: sticky; }

.site-header__actions { display: flex; align-items: center; gap: 16px; margin-left: 4px; }
.site-nav__extra { display: none; }

/* Language switch readable over the dark hero (transparent header, not scrolled) */
.has-hero .site-header:not(.is-scrolled) .lang-switch__btn { color: rgba(247,241,230,.7); }
.has-hero .site-header:not(.is-scrolled) .lang-switch__btn.is-active { color: #fff; }
.has-hero .site-header:not(.is-scrolled) .lang-switch__sep { color: rgba(247,241,230,.4); }

/* Mobile nav toggle */
.nav-toggle { display: none; position: relative; z-index: 130; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s ease, opacity .25s ease, background .3s ease; }
.site-header.is-scrolled .nav-toggle span,
body:not(.has-hero) .nav-toggle span { background: var(--ink); }

/* Dim overlay behind the slide-in panel */
.nav-overlay {
	position: fixed; inset: 0; z-index: 80;
	background: rgba(20,12,12,.55);
	opacity: 0; visibility: hidden;
	transition: opacity .3s ease, visibility .3s ease;
}
body.nav-open .nav-overlay { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	color: var(--white);
}
.hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(33,20,18,.55) 0%, rgba(33,20,18,.35) 40%, rgba(33,20,18,.78) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 760px; padding: 0 24px; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: .3em; font-size: .8rem; font-weight: 600; color: var(--gold); margin-bottom: 1rem; }
.hero__title { font-size: clamp(3.2rem, 10vw, 6.5rem); color: var(--white); margin: 0 0 .2em; line-height: 1; letter-spacing: .01em; }
.hero__tagline { font-size: clamp(1.05rem, 2.4vw, 1.4rem); font-weight: 300; max-width: 600px; margin: 0 auto 2rem; color: rgba(255,255,255,.92); }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
	position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
	width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; z-index: 2;
}
.hero__scroll::before {
	content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
	width: 4px; height: 8px; background: #fff; border-radius: 2px; animation: scrolldot 1.6s infinite;
}
@keyframes scrolldot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 20px; } 100% { opacity: 0; } }

/* ---------- Welcome ---------- */
.welcome { background: var(--cream); text-align: center; }
.welcome__inner { max-width: 820px; margin: 0 auto; }
.welcome__lead { font-size: 1.12rem; color: var(--ink-soft); }

/* ---------- Signature cards ---------- */
.signatures { background: var(--cream-2); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(33,28,26,.18); }
.card__media { height: 230px; background-size: cover; background-position: center; }
.card__body { padding: 28px 26px 32px; }
.card__title { font-size: 1.5rem; margin-bottom: .4rem; color: var(--wine); }
.card__text { color: var(--ink-soft); font-size: .98rem; margin: 0; }

/* ---------- About ---------- */
.about { background: var(--wine); color: var(--cream); }
.about .eyebrow { color: var(--gold); }
.about .section__title { color: var(--white); }
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; max-height: 520px; }
.about__text p { color: rgba(247,241,230,.9); }
.about__sign { font-family: var(--font-display); font-style: italic; color: var(--gold); font-size: 1.15rem; margin-top: 1.4rem; }

/* ---------- Visit ---------- */
.visit { background: var(--cream); }
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.visit__contact { font-size: 1.15rem; margin-bottom: 1.6rem; }
.visit .hero__actions { justify-content: flex-start; }
.visit .btn--ghost { color: var(--wine); border-color: var(--wine); }
.visit .btn--ghost:hover { background: var(--wine); color: var(--white); }

/* ---------- Hours list ---------- */
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid rgba(33,28,26,.12); }
.hours-list li span:first-child { font-weight: 500; }
.hours-list--lg li { font-size: 1.08rem; padding: 14px 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
	position: relative;
	padding: 200px 0 90px;
	text-align: center;
	color: var(--white);
	background: var(--wine-dark) center/cover no-repeat;
}
.page-hero--menu { background-image: url('../img/menu-hero.jpg'), linear-gradient(var(--wine-dark), var(--wine)); }
.page-hero--inner { padding: 180px 0 70px; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(33,20,18,.6), rgba(33,20,18,.82)); }
.page-hero__content { position: relative; z-index: 2; }
.page-hero__title { font-size: clamp(2.4rem, 6vw, 4rem); color: var(--white); }
.page-hero__sub { color: rgba(255,255,255,.9); font-weight: 300; font-size: 1.1rem; }

/* ---------- Menu page ---------- */
.menu-section { padding-top: 72px; }
.menu-columns { columns: 2; column-gap: 64px; }
.menu-group { break-inside: avoid; margin-bottom: 48px; }
.menu-group__title {
	font-size: 1.6rem; color: var(--wine);
	padding-bottom: 10px; margin-bottom: 18px;
	border-bottom: 2px solid var(--gold);
}
.menu-items { list-style: none; margin: 0; padding: 0; }
.menu-item { margin-bottom: 22px; break-inside: avoid; }
.menu-item__head { display: flex; align-items: baseline; gap: 8px; }
.menu-item__name { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; color: var(--ink); }
.menu-item__dots { flex: 1; border-bottom: 1px dotted rgba(33,28,26,.3); transform: translateY(-4px); }
.menu-item__price { font-weight: 600; color: var(--wine); white-space: nowrap; }
.menu-item__desc { margin: 3px 0 2px; color: var(--ink-soft); font-size: .96rem; }
.menu-item__allergens { margin: 0; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--terracotta); }

.menu-divider {
	text-align: center; font-size: clamp(1.8rem,4vw,2.6rem); color: var(--wine);
	margin: 32px 0 44px; position: relative;
}
.menu-divider::before, .menu-divider::after {
	content: ""; display: inline-block; width: 60px; height: 2px; background: var(--gold);
	vertical-align: middle; margin: 0 18px;
}
.menu-legend {
	margin-top: 32px; padding: 24px; background: var(--cream-2);
	border-radius: var(--radius); font-size: .9rem; color: var(--ink-soft); text-align: center;
}
.menu-legend__note { margin: 8px 0 0; font-style: italic; }

/* ---------- Generic content ---------- */
.content-area { max-width: 760px; margin: 0 auto; }
.content-area img { border-radius: var(--radius); margin: 1.5rem 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding: 72px 0 0; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.site-footer__brand { font-size: 2rem; color: var(--white); margin-bottom: .3rem; }
.site-footer__tag { color: var(--gold); font-family: var(--font-display); font-style: italic; margin: 0 0 1rem; }
.site-footer__small { color: rgba(247,241,230,.7); font-size: .95rem; }
.site-footer h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 1rem; }
.site-footer a { color: var(--cream); }
.site-footer a:hover { color: var(--gold); }
.site-footer .hours-list li { border-color: rgba(247,241,230,.14); }
.site-footer__contact { font-style: normal; line-height: 2; }
.site-footer__bar { border-top: 1px solid rgba(247,241,230,.12); padding: 22px 0; text-align: center; }
.site-footer__bar p { margin: 0; font-size: .85rem; color: rgba(247,241,230,.6); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
	.cards { grid-template-columns: 1fr 1fr; }
	.about__grid, .visit__grid { grid-template-columns: 1fr; gap: 40px; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
	.section { padding: 64px 0; }
	.site-brand__logo { height: 46px; }
	.site-header__inner { gap: 10px; padding: 0 18px; }
	.nav-toggle { display: flex; }
	.site-header__actions .site-header__cta,
	.site-header__actions .lang-switch { display: none; }

	/* Slide-in panel */
	.site-nav {
		position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
		background: var(--wine); padding: 92px 26px 40px; margin: 0;
		display: flex; flex-direction: column; overflow-y: auto;
		transform: translateX(100%);
		transition: transform .34s cubic-bezier(.4, 0, .2, 1);
	}
	body.nav-open .site-nav { transform: translateX(0); box-shadow: -24px 0 70px rgba(0,0,0,.35); }
	body.nav-open { overflow: hidden; }

	.nav-menu { flex-direction: column; gap: 0; align-items: stretch; width: 100%; }
	.nav-menu li { border-bottom: 1px solid rgba(247,241,230,.14); }
	.nav-menu a,
	.site-header.is-scrolled .nav-menu a {
		color: var(--cream); font-size: 1.12rem; display: block; padding: 16px 2px;
	}
	.nav-menu a::after { display: none; }
	.nav-menu a:hover,
	.site-header.is-scrolled .nav-menu a:hover { color: var(--gold); }

	/* Language + Book a Table inside the panel */
	.site-nav__extra { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; margin-top: 30px; }
	.site-nav__extra .lang-switch { font-size: 1rem; margin: 0; }
	.site-nav__extra .lang-switch__btn { color: rgba(247,241,230,.6); }
	.site-nav__extra .lang-switch__btn.is-active { color: var(--cream); }
	.site-nav__extra .lang-switch__sep { color: rgba(247,241,230,.35); }
	.site-nav__extra .btn--book { width: 100%; text-align: center; padding: .9rem 1.2rem; font-size: .98rem; }

	/* Hamburger → X */
	body.nav-open .nav-toggle span { background: var(--cream); }
	body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
	body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

	/* Layout */
	.cards { grid-template-columns: 1fr; }
	.menu-columns { columns: 1; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 36px; }
	.hero__actions { flex-direction: column; align-items: center; gap: 14px; }
	.hero__actions .btn { width: 100%; max-width: 290px; text-align: center; }
	.visit .hero__actions { justify-content: center; }
	.hero__title { font-size: clamp(3rem, 17vw, 5rem); }
	.page-hero__title { font-size: clamp(2.3rem, 12vw, 3.8rem); }
}

@media (max-width: 430px) {
	.section { padding: 52px 0; }
	.container { padding: 0 18px; }
	.hero__tagline, .page-hero__sub { font-size: 1rem; }
	.section__title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
}

/* ---------- Reservation page ---------- */
.reserve__grid {
	display: grid;
	grid-template-columns: 1.55fr 1fr;
	gap: 56px;
	align-items: start;
}
.reserve__form-col { min-width: 0; }

.form-notice {
	padding: 16px 20px;
	border-radius: 10px;
	margin-bottom: 28px;
	font-size: .96rem;
	line-height: 1.5;
}
.form-notice--ok  { background: #edf7ee; border: 1px solid #bfe0c2; color: #1f6b2c; }
.form-notice--err { background: #fbecec; border: 1px solid #f0c4c4; color: #9a2b2b; }

.reservation-form .form-row { display: grid; gap: 20px; }
.reservation-form .form-row--2 { grid-template-columns: 1fr 1fr; }
.reservation-form .form-row--3 { grid-template-columns: 1fr 1fr 1fr; }
.reservation-form .form-field { margin-bottom: 20px; }
.reservation-form label {
	display: block;
	font-family: var(--font-body, 'Inter', sans-serif);
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--ink);
	margin-bottom: 8px;
}
.reservation-form .req { color: var(--terracotta); }
.reservation-form input,
.reservation-form select,
.reservation-form textarea {
	width: 100%;
	padding: 13px 15px;
	border: 1px solid #d9cfc0;
	border-radius: 9px;
	background: #fff;
	font: inherit;
	font-size: 1rem;
	color: var(--ink);
	transition: border-color .2s ease, box-shadow .2s ease;
}
.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
	outline: none;
	border-color: var(--wine);
	box-shadow: 0 0 0 3px rgba(110, 31, 35, .12);
}
.reservation-form textarea { resize: vertical; }
.reserve__submit { margin-top: 6px; width: 100%; justify-content: center; cursor: pointer; border: none; }

/* Honeypot — hide from people, keep in DOM for bots. */
.hp-field {
	position: absolute !important;
	left: -9999px !important;
	width: 1px; height: 1px; overflow: hidden;
}

/* Contact aside */
.reserve__aside {
	background: var(--cream);
	border: 1px solid #e7dcca;
	border-radius: 16px;
	padding: 30px;
}
.reserve__aside h3 { margin: 0 0 6px; }
.reserve__aside > p { margin: 0 0 22px; color: #6b5f54; font-size: .95rem; }
.reserve__contact {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	border-radius: 12px;
	background: #fff;
	border: 1px solid #e7dcca;
	margin-bottom: 14px;
	text-decoration: none;
	color: var(--ink);
	transition: transform .15s ease, box-shadow .15s ease;
}
.reserve__contact:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(33,28,26,.1); }
.reserve__contact-ic {
	flex: 0 0 44px;
	width: 44px; height: 44px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: var(--wine);
	color: #fff;
}
.reserve__contact--wa .reserve__contact-ic { background: #25d366; }
.reserve__contact strong { display: block; font-size: 1rem; }
.reserve__contact em { font-style: normal; color: #6b5f54; font-size: .9rem; }
.reserve__hours { margin-top: 24px; }
.reserve__hours h4 { margin: 0 0 12px; }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 900;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	display: grid;
	place-items: center;
	box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
	transition: transform .18s ease, box-shadow .18s ease;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 12px 30px rgba(37, 211, 102, .55); }

/* ---------- Admin reservation badges (front-end fallback, harmless) ---------- */
.res-badge { padding: 2px 8px; border-radius: 999px; font-size: .8em; }

@media (max-width: 880px) {
	.reserve__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
	.reservation-form .form-row--2,
	.reservation-form .form-row--3 { grid-template-columns: 1fr; }
	.wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* ---------- Location / map ---------- */
.location { padding-bottom: 0; }
.location__addr { margin-top: 8px; font-size: 1.05rem; }
.location__addr a { color: var(--wine); border-bottom: 1px solid rgba(110,31,35,.35); }
.location__map {
	margin-top: 40px;
	line-height: 0;
	border-top: 4px solid var(--gold);
}
.location__map iframe { display: block; filter: saturate(.95); }

/* ---------- Language switcher ---------- */
.lang-switch {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-left: 6px;
	font-family: var(--font-body, 'Inter', sans-serif);
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .04em;
}
.lang-switch__btn { color: var(--ink); opacity: .55; text-decoration: none; transition: opacity .15s ease; }
.lang-switch__btn:hover { opacity: 1; }
.lang-switch__btn.is-active { opacity: 1; color: var(--wine); }
.lang-switch__sep { opacity: .3; }
.site-header.is-scrolled .lang-switch__btn { color: var(--ink); }

/* ---------- Reviews ---------- */
.reviews { background: var(--cream); }
.reviews__summary {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 14px;
	font-size: 1rem;
	color: #6b5f54;
}
.reviews__score { font-family: var(--font-display, 'Playfair Display', serif); font-size: 1.6rem; color: var(--wine); font-weight: 700; }
.star { color: #d9cfc0; font-size: 1.05rem; line-height: 1; }
.star--on { color: var(--gold); }
.reviews__stars { letter-spacing: 2px; }
.reviews__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 44px;
}
.review-card {
	margin: 0;
	background: #fff;
	border: 1px solid #e7dcca;
	border-radius: 16px;
	padding: 26px 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	box-shadow: 0 8px 24px rgba(33,28,26,.05);
}
.review-card__stars { letter-spacing: 2px; }
.review-card__text {
	margin: 0;
	font-size: .98rem;
	line-height: 1.6;
	color: var(--ink);
	font-style: italic;
}
.review-card__meta { display: flex; flex-direction: column; gap: 2px; margin-top: auto; }
.review-card__name { font-weight: 600; color: var(--wine); }
.review-card__source { font-size: .82rem; color: #9a8c7c; }
.btn--ghost-dark { border-color: var(--wine); color: var(--wine); }
.btn--ghost-dark:hover { background: var(--wine); color: #fff; }

@media (max-width: 980px) {
	.reviews__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
	.reviews__grid { grid-template-columns: 1fr; }
}

/* ---------- Reserve: contact-only (booking form disabled) ---------- */
.reserve--contact { text-align: center; }
.reserve__contact-only { max-width: 540px; margin: 0 auto; }
.reserve__contact-only .section__title { margin-bottom: 10px; }
.reserve__lead { color: #6b5f54; margin: 0 auto 28px; max-width: 440px; }
.reserve__cards { display: grid; gap: 14px; text-align: left; }
.reserve__contact-only .reserve__contact { background: var(--cream); border-color: #e7dcca; }
.reserve__contact-only .reserve__hours { max-width: 380px; margin: 30px auto 0; text-align: left; }

/* ---------- Booking form: phone with country code ---------- */
.phone-group { display: flex; gap: 8px; }
.phone-group .phone-cc { flex: 0 0 auto; width: auto; max-width: 46%; padding-right: 30px; }
.phone-group input[type="tel"] { flex: 1 1 auto; min-width: 0; }

/* Booking form note (spam reminder) */
.reserve__form-note { margin-top: 14px; font-size: .85rem; color: #8a7d6f; line-height: 1.5; }
