/* ==========================================================================
   Tomino – main stylesheet
   1. Tokens  2. Base  3. Layout  4. Components  5. Header  6. Home sections
   7. Inner pages  8. Forms  9. Footer  10. Utilities & motion
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */
:root {
	--c-wine: #5a1426;
	--c-wine-deep: #3d0c19;
	--c-gold: #b8894d;
	--c-gold-deep: #8c6431;
	--c-gold-light: #dcc19a;
	--c-dark: #1c0b10;
	--c-darker: #12060a;
	--c-ink: #221b19;
	--c-muted: #6c6360;
	--c-cream: #f8f5f1;
	--c-sand: #f0ebe4;
	--c-line: #e4dcd3;
	--c-white: #fff;
	--c-success: #1f6b3a;
	--c-error: #a1263a;

	--f-serif: "Playfair Display", Georgia, "Times New Roman", serif;
	--f-sans: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

	--container: 1240px;
	--gutter: clamp(16px, 4vw, 40px);
	--radius: 3px;
	--header-h: 84px;
	--shadow-sm: 0 2px 10px rgba(34, 14, 18, .06);
	--shadow: 0 18px 50px rgba(34, 14, 18, .12);
	--shadow-lg: 0 30px 80px rgba(20, 6, 10, .28);
	--ease: cubic-bezier(.2, .7, .2, 1);
}
@media (max-width: 960px) { :root { --header-h: 68px; } }

/* 2. Base -------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; } /* overlays (search, drawer, dropdowns) must not block clicks while closed */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
	margin: 0;
	font-family: var(--f-sans);
	font-size: 16px;
	line-height: 1.7;
	color: var(--c-ink);
	background: var(--c-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img, svg, video { max-width: 100%; height: auto; }
img { display: block; }
a { color: var(--c-wine); text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color .2s; }
a:hover { color: var(--c-gold-deep); }
h1, h2, h3, h4, h5, h6 { font-family: var(--f-serif); font-weight: 500; line-height: 1.18; color: var(--c-ink); margin: 0 0 .5em; letter-spacing: -.005em; }
h1 { font-size: clamp(2.2rem, 4.2vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.3vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1.1em; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; }
::selection { background: var(--c-wine); color: #fff; }
hr { border: 0; border-top: 1px solid var(--c-line); margin: 2.5em 0; }
table { border-collapse: collapse; width: 100%; }

.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important; }
.skip-link:focus { clip: auto; clip-path: none; height: auto; width: auto; left: 12px; top: 12px; z-index: 1000; padding: 12px 18px; background: #fff; color: var(--c-wine); box-shadow: var(--shadow); }

/* 3. Layout -------------------------------------------------------------------- */
.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: calc(780px + var(--gutter) * 2); }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-cta { margin-top: clamp(36px, 5vw, 56px); text-align: center; }

/* 4. Components ------------------------------------------------------------------- */
.eyebrow {
	display: inline-flex; align-items: center; gap: 12px;
	margin: 0 0 14px;
	font-family: var(--f-sans); font-size: 12.5px; font-weight: 700;
	letter-spacing: .2em; text-transform: uppercase; color: var(--c-gold-deep);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .7; }
.eyebrow--light { color: var(--c-gold-light); }
.section-head { margin: 0 auto clamp(32px, 5vw, 56px); max-width: 720px; }
.section-head--center { text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::after { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .7; }
.section-head--left { margin-left: 0; }
.section-title { margin: 0; }
.lead { font-size: 1.1rem; color: var(--c-muted); line-height: 1.75; }

.btn {
	--btn-bg: var(--c-wine); --btn-fg: #fff; --btn-bd: var(--c-wine);
	display: inline-flex; align-items: center; justify-content: center; gap: 12px;
	min-height: 50px; padding: 14px 28px;
	font-family: var(--f-sans); font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; line-height: 1.2;
	color: var(--btn-fg); background: var(--btn-bg); border: 1px solid var(--btn-bd); border-radius: var(--radius);
	text-decoration: none; cursor: pointer;
	transition: background-color .25s, color .25s, border-color .25s, transform .25s var(--ease), box-shadow .25s;
}
.btn .icon { transition: transform .3s var(--ease); flex: none; }
.btn:hover { --btn-bg: var(--c-wine-deep); --btn-bd: var(--c-wine-deep); color: #fff; box-shadow: 0 10px 24px rgba(90, 20, 38, .22); }
.btn:hover .icon { transform: translateX(4px); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--c-wine); }
.btn--outline:hover { --btn-bg: var(--c-wine); --btn-bd: var(--c-wine); color: #fff; }
.btn--light { --btn-bg: #fff; --btn-fg: var(--c-ink); --btn-bd: #fff; }
.btn--light:hover { --btn-bg: var(--c-gold); --btn-bd: var(--c-gold); color: #fff; box-shadow: none; }
.btn--gold { --btn-bg: var(--c-gold); --btn-bd: var(--c-gold); }
.btn--gold:hover { --btn-bg: var(--c-gold-deep); --btn-bd: var(--c-gold-deep); }
.btn--whatsapp { --btn-bg: #1f7a4a; --btn-bd: #1f7a4a; }
.btn--whatsapp:hover { --btn-bg: #17603a; --btn-bd: #17603a; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; color: var(--c-wine); }
.link-arrow .icon { transition: transform .3s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }

.icon-btn {
	display: inline-flex; align-items: center; justify-content: center; position: relative;
	width: 44px; height: 44px; padding: 0; border: 0; border-radius: 50%;
	background: transparent; color: inherit; text-decoration: none; transition: background-color .2s, color .2s;
}
.icon-btn:hover { background: rgba(0, 0, 0, .06); color: inherit; }

.social { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid currentColor; color: inherit; opacity: .85; transition: all .2s; }
.social a:hover { background: var(--c-gold); border-color: var(--c-gold); color: #fff; opacity: 1; }
.social--dark { color: var(--c-wine); margin-top: 20px; }

.slider-dots { display: flex; gap: 10px; align-items: center; }
.slider-dot { width: 28px; height: 28px; padding: 0; border: 0; background: transparent; position: relative; }
.slider-dot::before { content: ""; position: absolute; left: 50%; top: 50%; width: 8px; height: 8px; margin: -4px 0 0 -4px; border-radius: 50%; background: rgba(255, 255, 255, .45); transition: all .3s; }
.slider-dot.is-active::before { background: var(--c-gold); transform: scale(1.35); }
.slider-dots--dark .slider-dot::before { background: var(--c-line); }
.slider-dots--dark .slider-dot.is-active::before { background: var(--c-gold); }
.slider-arrows { display: flex; gap: 1px; }
.slider-arrow { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border: 1px solid rgba(255, 255, 255, .35); background: rgba(20, 6, 10, .2); color: #fff; transition: all .25s; }
.slider-arrow:hover { background: #fff; color: var(--c-ink); border-color: #fff; }
.slider-arrow--round { border-radius: 50%; width: 46px; height: 46px; background: rgba(255, 255, 255, .92); color: var(--c-ink); border-color: transparent; box-shadow: var(--shadow-sm); }
.slider-arrow--round:hover { background: var(--c-gold); color: #fff; border-color: var(--c-gold); }

/* 5. Header ---------------------------------------------------------------------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	height: var(--header-h);
	background: rgba(255, 255, 255, .96);
	-webkit-backdrop-filter: saturate(160%) blur(10px); backdrop-filter: saturate(160%) blur(10px);
	border-bottom: 1px solid rgba(34, 27, 25, .08);
	color: var(--c-ink);
	transition: background-color .35s, color .35s, box-shadow .35s, border-color .35s;
}
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
@media (max-width: 600px) { .admin-bar .site-header { top: 0; } }
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(34, 14, 18, .08); }
.has-hero-header .site-header { position: fixed; left: 0; right: 0; background: transparent; border-color: transparent; color: #fff; -webkit-backdrop-filter: none; backdrop-filter: none; }
.has-hero-header .site-header::before { content: ""; position: absolute; inset: 0 0 -40px; background: linear-gradient(rgba(12, 3, 6, .55), transparent); pointer-events: none; transition: opacity .35s; }
.has-hero-header .site-header.is-scrolled { background: rgba(255, 255, 255, .97); color: var(--c-ink); border-color: rgba(34, 27, 25, .08); -webkit-backdrop-filter: saturate(160%) blur(10px); backdrop-filter: saturate(160%) blur(10px); }
.has-hero-header .site-header.is-scrolled::before { opacity: 0; }
.site-header__inner { position: relative; display: flex; align-items: center; gap: 24px; height: 100%; }
.site-header__brand { flex: 0 0 auto; }
.site-logo { display: inline-flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; }
.site-logo:hover { color: inherit; }
.site-logo__img { display: block; height: 48px; width: auto; max-width: 220px; object-fit: contain; }
.site-logo__textwrap { display: inline-flex; align-items: center; gap: 10px; }
.site-logo__img--auto-light { filter: brightness(0) invert(1); }
/* Header: normal logo on light backgrounds, light logo over the home slider. */
.site-logo--header .site-logo__img--light { display: none; }
.has-hero-header .site-header:not(.is-scrolled) .site-logo--header .site-logo__img--dark,
.has-hero-header .site-header:not(.is-scrolled) .site-logo--header .site-logo__textwrap--dark { display: none; }
.has-hero-header .site-header:not(.is-scrolled) .site-logo--header .site-logo__img--light { display: block; }
.site-footer .site-logo__img { height: 60px; }
@media (max-width: 960px) { .site-logo__img { height: 40px; max-width: 170px; } }
.site-logo__text { font-family: var(--f-serif); font-size: 28px; font-weight: 500; letter-spacing: .02em; line-height: 1; }
.site-logo__mark { color: var(--c-gold); display: inline-flex; }
.site-nav { flex: 1 1 auto; display: flex; justify-content: center; }
.site-nav .menu { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 34px); list-style: none; margin: 0; padding: 0; }
.site-nav .menu > li { position: relative; }
.site-nav .menu > li > a { display: inline-flex; align-items: center; height: var(--header-h); font-size: 13.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: inherit; text-decoration: none; position: relative; }
.site-nav .menu > li > a::after { content: ""; position: absolute; left: 0; right: 0; bottom: calc(50% - 16px); height: 1px; background: var(--c-gold); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.site-nav .menu > li > a:hover::after, .site-nav .menu > .current-menu-item > a::after, .site-nav .menu > .current-menu-ancestor > a::after, .site-nav .menu > .current_page_parent > a::after { transform: scaleX(1); }
.site-nav .menu-item-has-children > a { padding-right: 16px; }
.site-nav .menu-item-has-children > a::before { content: ""; position: absolute; right: 0; top: 50%; width: 6px; height: 6px; margin-top: -5px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); opacity: .7; }
.site-nav .sub-menu {
	position: absolute; top: calc(100% - 14px); left: -20px; min-width: 230px; margin: 0; padding: 12px 0; list-style: none;
	background: #fff; color: var(--c-ink); box-shadow: var(--shadow); border-top: 2px solid var(--c-gold);
	opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .25s var(--ease);
}
.site-nav li:hover > .sub-menu, .site-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.site-nav .sub-menu a { display: block; padding: 9px 22px; font-size: 14px; color: var(--c-ink); text-decoration: none; }
.site-nav .sub-menu a:hover { color: var(--c-wine); background: var(--c-cream); }
.site-header__tools { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.has-hero-header .site-header:not(.is-scrolled) .icon-btn:hover { background: rgba(255, 255, 255, .14); }
.nav-toggle { display: none; }
.cart-count { position: absolute; top: 4px; right: 2px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--c-gold); color: #fff; font-size: 11px; font-weight: 700; line-height: 18px; text-align: center; }
.cart-count.is-empty { display: none; }

.lang-switch { position: relative; }
.lang-switch__toggle { display: inline-flex; align-items: center; gap: 4px; height: 44px; padding: 0 10px; border: 0; background: transparent; font-size: 13px; font-weight: 700; letter-spacing: .1em; color: inherit; border-radius: 22px; }
.lang-switch__toggle:hover { background: rgba(0, 0, 0, .06); }
.has-hero-header .site-header:not(.is-scrolled) .lang-switch__toggle:hover { background: rgba(255, 255, 255, .14); }
.lang-switch__toggle[aria-expanded="true"] .icon { transform: rotate(180deg); }
.lang-switch__toggle .icon { transition: transform .2s; }
.lang-switch__menu { position: absolute; right: 0; top: calc(100% + 6px); min-width: 190px; margin: 0; padding: 8px 0; list-style: none; background: #fff; color: var(--c-ink); box-shadow: var(--shadow); border-top: 2px solid var(--c-gold); z-index: 5; }
.lang-switch__menu a { display: flex; align-items: center; gap: 12px; padding: 9px 18px; color: var(--c-ink); text-decoration: none; font-size: 14px; }
.lang-switch__menu a:hover, .lang-switch__menu a.is-current { background: var(--c-cream); color: var(--c-wine); }
.lang-switch__code { font-weight: 700; font-size: 12px; letter-spacing: .1em; width: 24px; }

@media (max-width: 1080px) {
	.site-nav { display: none; }
	.nav-toggle { display: inline-flex; }
	.site-header__tools .lang-switch { display: none; }
}
@media (max-width: 480px) { .icon-btn--account { display: none; } }

/* Drawer */
.drawer { position: fixed; inset: 0; z-index: 300; }
.drawer__backdrop { position: absolute; inset: 0; background: rgba(12, 3, 6, .55); opacity: 0; transition: opacity .3s; }
.drawer__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(380px, 88vw); background: var(--c-cream); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .35s var(--ease); overflow-y: auto; }
.drawer.is-open .drawer__backdrop { opacity: 1; }
.drawer.is-open .drawer__panel { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 12px 12px 12px 24px; border-bottom: 1px solid var(--c-line); color: var(--c-ink); }
.drawer__nav { padding: 12px 0; flex: 1; }
.drawer-menu, .drawer-menu .sub-menu { list-style: none; margin: 0; padding: 0; }
.drawer-menu > li { position: relative; border-bottom: 1px solid var(--c-line); }
.drawer-menu a { display: block; padding: 15px 56px 15px 24px; font-family: var(--f-serif); font-size: 21px; color: var(--c-ink); text-decoration: none; }
.drawer-menu .current-menu-item > a { color: var(--c-wine); }
.drawer-menu .sub-menu { display: none; padding-bottom: 10px; }
.drawer-menu .is-open > .sub-menu { display: block; }
.drawer-menu .sub-menu a { font-family: var(--f-sans); font-size: 15px; padding: 8px 24px 8px 40px; }
.submenu-toggle { position: absolute; right: 8px; top: 10px; width: 40px; height: 40px; border: 0; background: transparent; display: flex; align-items: center; justify-content: center; }
.submenu-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.drawer__foot { padding: 24px; display: grid; gap: 18px; }
.drawer__contact { display: inline-flex; align-items: center; gap: 10px; color: var(--c-ink); text-decoration: none; font-weight: 600; }
.drawer__foot .social { color: var(--c-wine); }
.lang-inline { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; }
.lang-inline a { display: inline-flex; align-items: center; justify-content: center; min-width: 48px; height: 40px; padding: 0 10px; border: 1px solid var(--c-line); font-size: 13px; font-weight: 700; letter-spacing: .1em; color: var(--c-ink); text-decoration: none; border-radius: var(--radius); }
.lang-inline a.is-current { background: var(--c-wine); border-color: var(--c-wine); color: #fff; }

/* Search overlay */
.search-overlay { position: fixed; inset: 0; z-index: 300; background: rgba(28, 11, 16, .97); color: #fff; display: flex; align-items: flex-start; padding-top: 18vh; opacity: 0; transition: opacity .3s; }
.search-overlay.is-open { opacity: 1; }
.search-overlay__inner { position: relative; max-width: 900px; }
.search-overlay__close { position: absolute; right: var(--gutter); top: -12vh; color: #fff; }
.search-overlay__close:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.search-overlay__form { display: flex; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, .35); }
.search-overlay__form input { flex: 1; min-width: 0; padding: 14px 0; border: 0; background: transparent; color: #fff; font-family: var(--f-serif); font-size: clamp(24px, 4vw, 44px); outline: none; }
.search-overlay__form input::placeholder { color: rgba(255, 255, 255, .45); }
.search-overlay__form .icon-btn { color: var(--c-gold-light); }
.search-overlay__form .icon-btn:hover { background: rgba(255, 255, 255, .1); color: #fff; }

/* 6. Home sections ---------------------------------------------------------------------- */

/* Hero */
.hero { position: relative; height: min(100svh, 920px); min-height: 600px; background: var(--c-dark); color: #fff; overflow: hidden; }
.hero__track, .hero__slide { position: absolute; inset: 0; }
.hero__slide { opacity: 0; visibility: hidden; transition: opacity 1.1s ease, visibility 0s linear 1.1s; display: flex; align-items: center; }
.hero__slide.is-active { opacity: 1; visibility: visible; transition: opacity 1.1s ease, visibility 0s; z-index: 1; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; transform: scale(1.06); transition: transform 8s ease-out; }
.hero__slide.is-active .hero__media img { transform: scale(1); }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14, 4, 8, .82) 0%, rgba(14, 4, 8, .5) 42%, rgba(14, 4, 8, 0) 75%); }
.hero__content { position: relative; z-index: 2; padding-top: var(--header-h); }
.hero__text { max-width: 620px; }
.hero__slide .hero__text > * { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.hero__slide.is-active .hero__text > * { opacity: 1; transform: none; }
.hero__slide.is-active .hero__text > :nth-child(2) { transition-delay: .12s; }
.hero__slide.is-active .hero__text > :nth-child(3) { transition-delay: .24s; }
.hero__slide.is-active .hero__text > :nth-child(4) { transition-delay: .36s; }
.hero__title { color: #fff; font-size: clamp(2.5rem, 5.4vw, 4.8rem); line-height: 1.06; margin-bottom: 22px; }
.hero__lead { font-size: clamp(1rem, 1.3vw, 1.18rem); color: rgba(255, 255, 255, .84); max-width: 520px; margin-bottom: 34px; }
.hero__controls { position: absolute; left: 0; right: 0; bottom: 34px; z-index: 3; display: flex; align-items: center; justify-content: space-between; }
.hero__scroll { position: absolute; left: 50%; bottom: 30px; z-index: 3; width: 26px; height: 42px; margin-left: -13px; border: 1.5px solid rgba(255, 255, 255, .6); border-radius: 14px; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 2px; background: #fff; animation: tomino-scroll 1.8s infinite; }
@keyframes tomino-scroll { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }
@media (max-width: 760px) {
	.hero { min-height: 560px; height: 88svh; }
	.hero__media img { object-position: 78% center; }
	.hero__media::after { background: linear-gradient(0deg, rgba(14, 4, 8, .9) 0%, rgba(14, 4, 8, .55) 55%, rgba(14, 4, 8, .25) 100%); }
	.hero__slide { align-items: flex-end; }
	.hero__content { padding-bottom: 110px; }
	.hero__scroll { display: none; }
	.hero__controls { bottom: 24px; }
	.slider-arrow { width: 44px; height: 44px; }
}

/* Categories */
.section--categories { background: var(--c-white); }
.cat-grid { display: grid; gap: clamp(16px, 2.4vw, 30px); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cat-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cat-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cat-card { display: block; text-decoration: none; color: inherit; text-align: center; }
.cat-card__media { position: relative; overflow: hidden; aspect-ratio: 16 / 13; background: var(--c-sand); }
.cat-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.cat-card__media::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255, 255, 255, .7); opacity: 0; transform: scale(1.04); transition: all .5s var(--ease); }
.cat-card:hover .cat-card__media img { transform: scale(1.06); }
.cat-card:hover .cat-card__media::after { opacity: 1; transform: none; }
.cat-card__body { padding: 22px 10px 0; }
.cat-card__title { margin: 0 0 4px; font-size: 1.45rem; color: var(--c-ink); transition: color .2s; }
.cat-card:hover .cat-card__title { color: var(--c-wine); }
.cat-card__desc { margin: 0 0 10px; font-size: 14px; color: var(--c-muted); }
.cat-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--c-gold-deep); }
@media (max-width: 900px) { .cat-grid, .cat-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .cat-grid, .cat-grid--2, .cat-grid--4 { grid-template-columns: 1fr; } }

/* About */
.section--about { background: var(--c-cream); overflow: hidden; }
.about { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.about__media { position: relative; }
.about__media img { position: relative; width: 100%; aspect-ratio: 1; object-fit: cover; box-shadow: var(--shadow); }
.about__circle { position: absolute; width: 58%; aspect-ratio: 1; border-radius: 50%; border: 1px solid var(--c-gold); left: -12%; bottom: -12%; }
.about__text .lead { margin-bottom: 30px; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 0 0 36px; padding: 26px 0; border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.stats__item dt { font-family: var(--f-serif); font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--c-wine); line-height: 1.1; }
.stats__item dd { margin: 6px 0 0; font-size: 13px; color: var(--c-muted); line-height: 1.4; }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; } .about__media { max-width: 560px; } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr 1fr; } }

/* Featured */
.section--featured { background: var(--c-white); }

/* Vineyard */
.section--vineyard { background: radial-gradient(120% 90% at 85% 10%, #4a1422 0%, var(--c-dark) 55%, var(--c-darker) 100%); color: #fff; overflow: hidden; }
.section--vineyard::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(115deg, rgba(255, 255, 255, .018) 0 2px, transparent 2px 22px); pointer-events: none; }
.vineyard { position: relative; display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: center; }
.vineyard__card { position: relative; z-index: 2; margin-right: -80px; padding: clamp(32px, 4vw, 56px); background: var(--c-darker); border: 1px solid rgba(220, 193, 154, .22); box-shadow: var(--shadow-lg); }
.vineyard__title { color: #fff; font-size: clamp(1.9rem, 3vw, 2.6rem); }
.vineyard__card p { color: rgba(255, 255, 255, .78); }
.vineyard__card .btn { margin-top: 10px; }
.vineyard__gallery { position: relative; }
.vineyard__track { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.vineyard__slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity .9s ease; }
.vineyard__slide.is-active { opacity: 1; z-index: 1; }
.vineyard__slide img { width: 100%; height: 100%; object-fit: cover; }
.vineyard__arrows { position: absolute; right: 20px; bottom: 20px; z-index: 3; display: flex; gap: 10px; }
@media (max-width: 900px) {
	.vineyard { grid-template-columns: 1fr; }
	.vineyard__card { margin: 0 16px -40px; order: 2; }
	.vineyard__gallery { order: 1; }
}

/* Club */
.section--club { background: var(--c-sand); }
.club { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); background: #fff; box-shadow: var(--shadow); }
.club__media { position: relative; min-height: 360px; }
.club__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.club__text { padding: clamp(32px, 5vw, 64px); align-self: center; }
.club__title { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.club__text p { color: var(--c-muted); }
.club__text .btn { margin-top: 12px; }
@media (max-width: 860px) { .club { grid-template-columns: 1fr; } .club__media { min-height: 0; aspect-ratio: 3 / 2; } }

/* Offer */
.section--offer { background: var(--c-white); }
.offer { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 4vw, 56px) clamp(28px, 5vw, 72px); }
.offer__intro .section-head { margin-bottom: 36px; }
.offer__features { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 4vw, 56px); padding-top: clamp(20px, 3vw, 36px); border-top: 1px solid var(--c-line); }
.feature__icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; margin-bottom: 16px; border-radius: 50%; background: var(--c-cream); color: var(--c-wine); }
.feature__title { font-size: 1.3rem; margin-bottom: 8px; }
.feature p { margin: 0; color: var(--c-muted); font-size: 15px; }
.promo { position: relative; min-height: 420px; display: flex; align-items: center; overflow: hidden; color: #fff; background: var(--c-wine); }
.promo__media { position: absolute; inset: 0; }
.promo__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.promo:hover .promo__media img { transform: scale(1.04); }
.promo__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(40, 10, 16, .9) 0%, rgba(40, 10, 16, .55) 48%, rgba(40, 10, 16, 0) 80%); }
.promo__body { position: relative; z-index: 1; max-width: 400px; padding: clamp(28px, 4vw, 52px); }
.promo__title { color: #fff; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.promo__body p { color: rgba(255, 255, 255, .82); margin-bottom: 26px; }
@media (max-width: 960px) { .offer { grid-template-columns: 1fr; } .offer__features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .offer__features { grid-template-columns: 1fr; } .promo { min-height: 380px; } .promo__media::after { background: linear-gradient(0deg, rgba(40, 10, 16, .92), rgba(40, 10, 16, .4)); } .promo { align-items: flex-end; } }

/* Testimonials */
.section--testimonials { background: linear-gradient(var(--c-cream) 0 46%, var(--c-wine-deep) 46% 100%); padding-bottom: 0; }
.testimonials__bg { position: absolute; left: 0; right: 0; bottom: 0; top: 46%; overflow: hidden; }
.testimonials__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; mix-blend-mode: luminosity; }
.testimonials { position: relative; display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(28px, 5vw, 80px); align-items: start; padding-bottom: clamp(64px, 9vw, 120px); }
.testimonials__card { position: relative; background: #fff; padding: clamp(32px, 4vw, 56px); box-shadow: var(--shadow-lg); }
.testimonials__quote-icon { position: absolute; right: 32px; top: -26px; display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: 50%; background: var(--c-gold); color: #fff; }
.testimonials__track { position: relative; display: grid; }
.testimonial { grid-area: 1 / 1; margin: 0; opacity: 0; visibility: hidden; transition: opacity .6s ease, visibility 0s linear .6s; }
.testimonial.is-active { opacity: 1; visibility: visible; transition: opacity .6s ease, visibility 0s; }
.testimonial blockquote { margin: 0 0 26px; }
.testimonial blockquote p { font-family: var(--f-serif); font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.6; color: var(--c-ink); margin: 0; }
.testimonial figcaption { display: flex; align-items: center; gap: 14px; }
.testimonial figcaption strong { display: block; font-size: 15px; }
.testimonial figcaption small { display: block; color: var(--c-muted); font-size: 13px; }
.testimonial__avatar { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 50%; background: var(--c-cream); color: var(--c-wine); font-family: var(--f-serif); font-size: 20px; flex: none; }
.testimonials__card .slider-dots { margin-top: 22px; margin-left: -9px; }
@media (max-width: 860px) {
	.section--testimonials { background: linear-gradient(var(--c-cream) 0 30%, var(--c-wine-deep) 30% 100%); }
	.testimonials__bg { top: 30%; }
	.testimonials { grid-template-columns: 1fr; }
}

/* Highlights */
.section--awards { background: var(--c-wine-deep); color: #fff; }
.section--testimonials + .section--awards { padding-top: 0; }
.section--awards .section-title { color: #fff; }
.section--awards .eyebrow { color: var(--c-gold-light); }
.highlights { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 2vw, 24px); list-style: none; margin: 0; padding: 0; }
.highlight { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; min-height: 180px; padding: 28px 16px; text-align: center; background: #fff; color: var(--c-ink); transition: transform .35s var(--ease), box-shadow .35s; }
.highlight:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.highlight__icon { color: var(--c-wine); }
.highlight__title { font-family: var(--f-serif); font-size: 1.15rem; line-height: 1.3; }
@media (max-width: 900px) { .highlights { grid-template-columns: 1fr 1fr; } }

/* Blog cards */
.section--blog { background: var(--c-white); }
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3vw, 40px); }
.post-card { display: flex; flex-direction: column; background: #fff; }
.post-card__media { position: relative; display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--c-sand); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--c-gold); }
.post-card__body { padding: 22px 0 0; display: flex; flex-direction: column; flex: 1; }
.post-card__title { font-size: 1.35rem; margin: 6px 0 10px; }
.post-card__title a { color: var(--c-ink); text-decoration: none; }
.post-card__title a:hover { color: var(--c-wine); }
.post-card__excerpt { color: var(--c-muted); font-size: 15px; margin-bottom: 18px; }
.post-card .link-arrow { margin-top: auto; }
.post-card--compact .post-card__media { aspect-ratio: 16 / 9; }
.post-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--c-gold-deep); margin: 0; }
.post-meta a { color: inherit; text-decoration: none; }
.post-meta a:hover { color: var(--c-wine); }
@media (max-width: 960px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .post-grid { grid-template-columns: 1fr; } }

/* 7. Inner pages ------------------------------------------------------------------------ */
.page-hero { position: relative; padding: clamp(56px, 8vw, 110px) 0 clamp(48px, 6vw, 80px); background: radial-gradient(90% 140% at 90% 0%, #5a1a2a 0%, var(--c-wine-deep) 45%, var(--c-dark) 100%); color: #fff; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%; border: 1px solid rgba(220, 193, 154, .25); pointer-events: none; }
.page-hero.has-image { padding: clamp(100px, 14vw, 180px) 0 clamp(56px, 7vw, 90px); }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20, 6, 10, .85), rgba(20, 6, 10, .45)); }
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__title { color: #fff; margin: 0; max-width: 900px; }
.page-hero__sub { margin-top: 16px; max-width: 680px; color: rgba(255, 255, 255, .8); font-size: 1.08rem; }
.page-hero__sub p:last-child { margin-bottom: 0; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 10px; margin: 0 0 18px; font-size: 13px; color: rgba(255, 255, 255, .65); }
.breadcrumbs a { color: rgba(255, 255, 255, .85); text-decoration: none; }
.breadcrumbs a:hover { color: var(--c-gold-light); }
.breadcrumbs .sep { opacity: .5; }
.breadcrumbs--dark { color: var(--c-muted); padding: 26px 0 0; margin-bottom: 30px; }
.breadcrumbs--dark a { color: var(--c-muted); }
.breadcrumbs--dark a:hover { color: var(--c-wine); }
.single-post__head .breadcrumbs { color: var(--c-muted); justify-content: center; }
.single-post__head .breadcrumbs a { color: var(--c-muted); }

/* Entry content */
.entry-content { font-size: 17px; }
.entry-content > * { max-width: 780px; margin-left: auto; margin-right: auto; }
.entry--full .entry-content > * { max-width: none; }
.entry-content > .alignwide { max-width: 1160px; }
.entry-content > .alignfull { max-width: none; width: 100vw; margin-left: calc(50% - 50vw); }
.entry-content h2, .entry-content h3 { margin-top: 1.6em; }
.entry-content .has-large-font-size { font-family: var(--f-serif); font-size: clamp(1.25rem, 2vw, 1.55rem) !important; line-height: 1.6; color: var(--c-ink); }
.entry-content ul, .entry-content ol { padding-left: 1.3em; }
.entry-content li { margin-bottom: .4em; }
.entry-content blockquote { margin: 2em auto; padding: 8px 0 8px 28px; border-left: 2px solid var(--c-gold); font-family: var(--f-serif); font-size: 1.3rem; line-height: 1.55; }
.entry-content blockquote cite { display: block; margin-top: 10px; font-family: var(--f-sans); font-size: 14px; font-style: normal; color: var(--c-muted); }
.entry-content figure { margin-top: 2em; margin-bottom: 2em; }
.entry-content figcaption { font-size: 14px; color: var(--c-muted); margin-top: 8px; text-align: center; }
.entry-content table td, .entry-content table th { padding: 10px 12px; border-bottom: 1px solid var(--c-line); text-align: left; }
.entry-content .wp-block-button__link { border-radius: var(--radius); background: var(--c-wine); padding: 14px 28px; font-size: 14px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.entry-content .wp-block-button.is-style-outline .wp-block-button__link { background: transparent; color: var(--c-wine); border: 1px solid var(--c-wine); }
.entry-content .wp-block-image img { height: auto; }
.entry-content .wp-block-cover { min-height: 420px; }

/* Single post */
.single-post__head { padding: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 48px); text-align: center; background: var(--c-cream); }
.single-post__head .post-meta { justify-content: center; margin-bottom: 14px; }
.single-post__title { font-size: clamp(2rem, 4vw, 3.2rem); }
.single-post__media { margin: 0 auto; transform: translateY(-1px); }
.single-post__media img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 40px 0 0; }
.post-tags a { padding: 6px 14px; border: 1px solid var(--c-line); font-size: 13px; color: var(--c-muted); text-decoration: none; border-radius: 20px; }
.post-tags a:hover { border-color: var(--c-wine); color: var(--c-wine); }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 48px 0 0; padding-top: 32px; border-top: 1px solid var(--c-line); }
.post-nav a { display: block; text-decoration: none; color: var(--c-ink); }
.post-nav small { display: block; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--c-gold-deep); margin-bottom: 4px; }
.post-nav span { font-family: var(--f-serif); font-size: 1.15rem; line-height: 1.35; }
.post-nav__next { text-align: right; grid-column: 2; }

/* Comments */
.comments { margin-top: 56px; }
.comment-list { list-style: none; padding: 0; }
.comment-list .comment { margin-bottom: 24px; }
.comment-body { padding: 20px 24px; background: var(--c-cream); }
.comment-author img { border-radius: 50%; float: left; margin-right: 12px; }
.comment-meta { font-size: 13px; color: var(--c-muted); margin-bottom: 10px; }
.comment-form input:not([type="checkbox"]):not([type="submit"]), .comment-form textarea { width: 100%; }
.comment-form .submit { background: var(--c-wine); color: #fff; border: 0; padding: 14px 28px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 13px; }

/* Pagination */
.pagination, .woocommerce-pagination { margin-top: 56px; }
.nav-links, .woocommerce-pagination ul.page-numbers { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; list-style: none; margin: 0; padding: 0; border: 0 !important; }
.page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 46px; height: 46px; padding: 0 12px; border: 1px solid var(--c-line); color: var(--c-ink); text-decoration: none; font-weight: 600; }
a.page-numbers:hover { border-color: var(--c-wine); color: var(--c-wine); }
.page-numbers.current { background: var(--c-wine); border-color: var(--c-wine); color: #fff; }
.woocommerce-pagination ul.page-numbers li { border: 0 !important; }

.search-again { max-width: 560px; margin: 0 auto 48px; }
.search-form { display: flex; border: 1px solid var(--c-line); background: #fff; }
.search-form__input { flex: 1; min-width: 0; padding: 14px 16px; border: 0; outline: none; }
.search-form__btn { width: 54px; border: 0; background: var(--c-wine); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.empty-state { text-align: center; padding: 40px 0; color: var(--c-muted); }
.empty-state .icon { color: var(--c-gold); margin: 0 auto 12px; }

/* 404 */
.not-found { padding: clamp(80px, 12vw, 160px) 0; text-align: center; background: var(--c-cream); }
.not-found__code { font-family: var(--f-serif); font-size: clamp(6rem, 18vw, 11rem); line-height: 1; margin: 0 0 10px; color: transparent; -webkit-text-stroke: 1px var(--c-gold); }
.not-found__search { max-width: 480px; margin: 28px auto; }
.not-found__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* Contact */
.contact { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.contact__intro { margin-bottom: 28px; }
.contact__intro > * { max-width: none; }
.contact-cards { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 14px; }
.contact-cards li { display: flex; gap: 18px; padding: 20px 22px; background: var(--c-cream); }
.contact-cards h3 { font-family: var(--f-sans); font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--c-gold-deep); margin: 2px 0 4px; }
.contact-cards p { margin: 0; }
.contact-cards a { color: var(--c-ink); text-decoration: none; }
.contact-cards a:hover { color: var(--c-wine); }
.contact-cards__icon { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: #fff; color: var(--c-wine); }
.contact__form { padding: clamp(28px, 4vw, 52px); background: #fff; box-shadow: var(--shadow); border-top: 3px solid var(--c-wine); }
.contact__title { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.contact__lead { color: var(--c-muted); margin-bottom: 26px; }
.contact-map { background: var(--c-sand); }
.contact-map iframe { display: block; width: 100%; height: 460px; border: 0; filter: grayscale(.35) contrast(1.05); }
.contact-map__consent { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; min-height: 300px; padding: 40px 20px; text-align: center; color: var(--c-muted); background: repeating-linear-gradient(45deg, var(--c-sand) 0 14px, var(--c-cream) 14px 28px); }
.contact-map__consent p { margin: 0; max-width: 440px; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }

/* 8. Forms ----------------------------------------------------------------------------- */
.tomino-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.tomino-form__field { margin: 0; }
.tomino-form__field--full { grid-column: 1 / -1; }
.tomino-form label { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 600; color: var(--c-ink); }
.tomino-form__req { color: var(--c-wine); }
.tomino-form input[type="text"], .tomino-form input[type="email"], .tomino-form input[type="tel"], .tomino-form input[type="number"], .tomino-form textarea,
.comment-form input:not([type="checkbox"]):not([type="submit"]), .comment-form textarea {
	width: 100%; padding: 13px 14px; border: 1px solid var(--c-line); border-radius: var(--radius); background: #fff; font-size: 15px; line-height: 1.4; transition: border-color .2s, box-shadow .2s;
}
.tomino-form textarea { resize: vertical; min-height: 120px; }
.tomino-form input:focus, .tomino-form textarea:focus, .comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--c-gold); box-shadow: 0 0 0 3px rgba(184, 137, 77, .18); }
.tomino-form__consent { margin: 18px 0 0; font-size: 13.5px; color: var(--c-muted); }
.tomino-form__consent label { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; font-size: 13.5px; color: var(--c-muted); cursor: pointer; }
.tomino-form__consent input { flex: none; width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--c-wine); }
.tomino-form__actions { margin: 22px 0 0; }
.tomino-form__submit { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 14px 30px; border: 0; border-radius: var(--radius); background: var(--c-wine); color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; transition: background-color .25s; }
.tomino-form__submit:hover { background: var(--c-wine-deep); }
.tomino-form.is-loading .tomino-form__submit { opacity: .6; cursor: wait; }
.tomino-form__hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.tomino-form__msg { margin-top: 16px; padding: 14px 16px; border-left: 3px solid; font-size: 14.5px; }
.tomino-form__msg.is-success { border-color: var(--c-success); background: #eef6f0; color: #154a28; }
.tomino-form__msg.is-error { border-color: var(--c-error); background: #fbeef0; color: #7a1a2a; }
.tomino-form__inline { display: flex; gap: 0; }
.tomino-form__inline input { flex: 1; min-width: 0; }
.tomino-form__inline .tomino-form__submit { flex: none; }
@media (max-width: 600px) { .tomino-form__grid { grid-template-columns: 1fr; } }

/* 9. Footer --------------------------------------------------------------------------------- */
.site-footer { background: var(--c-darker); color: rgba(255, 255, 255, .72); font-size: 15px; }
.site-footer a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.site-footer a:hover { color: var(--c-gold-light); }
.newsletter { background: var(--c-dark); border-bottom: 1px solid rgba(255, 255, 255, .08); }
.newsletter__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px 64px; align-items: center; padding-top: clamp(48px, 6vw, 72px); padding-bottom: clamp(48px, 6vw, 72px); }
.newsletter__title { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 8px; }
.newsletter__text p:last-child { margin: 0; }
.newsletter .tomino-form__inline input { padding: 16px 0; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .3); border-radius: 0; background: transparent; color: #fff; font-size: 16px; }
.newsletter .tomino-form__inline input:focus { border-color: var(--c-gold); box-shadow: none; }
.newsletter .tomino-form__inline input::placeholder { color: rgba(255, 255, 255, .5); }
.newsletter .tomino-form__submit { background: var(--c-gold); margin-left: 16px; }
.newsletter .tomino-form__submit:hover { background: var(--c-gold-deep); }
.newsletter .tomino-form__consent label { color: rgba(255, 255, 255, .6); font-size: 13px; }
.newsletter .tomino-form__consent a { color: var(--c-gold-light); text-decoration: underline; }
.newsletter .tomino-form__msg.is-success { background: rgba(31, 107, 58, .18); color: #cdebd6; }
.newsletter .tomino-form__msg.is-error { background: rgba(161, 38, 58, .2); color: #f6cbd2; }
@media (max-width: 860px) { .newsletter__inner { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .newsletter .tomino-form__inline { flex-direction: column; gap: 14px; } .newsletter .tomino-form__submit { margin-left: 0; } }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-top: clamp(56px, 7vw, 88px); padding-bottom: clamp(48px, 6vw, 72px); }
.footer-col .site-logo { color: #fff; margin-bottom: 18px; }
.footer-about { max-width: 320px; }
.footer-title { color: #fff; font-size: 1.2rem; margin: 6px 0 20px; }
.footer-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; }
.contact-list .icon { flex: none; color: var(--c-gold); margin-top: 3px; }
.social--footer { margin-top: 22px; }
.social--footer a { color: rgba(255, 255, 255, .8); border-color: rgba(255, 255, 255, .25); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); font-size: 13.5px; }
.footer-bottom__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 28px; padding-top: 22px; padding-bottom: 22px; }
.footer-bottom p { margin: 0; }
.footer-responsible { display: inline-flex; align-items: center; gap: 10px; }
.age-badge { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--c-gold); color: var(--c-gold-light); font-size: 11px; font-weight: 700; }
.legal-menu { display: flex; flex-wrap: wrap; gap: 6px 20px; list-style: none; margin: 0; padding: 0; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Age gate – theme typography */
.tomino-age__box { font-family: var(--f-sans); }
.tomino-age__title, .tomino-age__name { font-family: var(--f-serif); font-weight: 500; }

/* 10. Motion -------------------------------------------------------------------------------- */
.reveal-ready [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease) var(--d, 0ms), transform .9s var(--ease) var(--d, 0ms); }
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
@media print {
	.site-header, .site-footer, .drawer, .search-overlay, .tomino-age, .hero__controls { display: none !important; }
}
