:root {
--ink: #17120f;
--ink-soft: #3b3028;
--paper: #f7f1e7;
--paper-soft: #fffaf2;
--line: rgba(23, 18, 15, 0.14);
--line-light: rgba(255, 250, 242, 0.22);
--gold: #b98b3e;
--gold-dark: #7a5521;
--jade: #214e45;
--rose: #8e3442;
--white: #ffffff;
--shadow: 0 24px 60px rgba(23, 18, 15, 0.16);
}

* {
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
overflow-x: hidden;
}

body {
margin: 0;
background: var(--paper);
color: var(--ink);
font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
font-size: 16px;
line-height: 1.55;
overflow-x: hidden;
}

body.menu-open {
overflow: hidden;
}

a {
color: inherit;
text-decoration: none;
}

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

button,
input {
font: inherit;
}

.skip-link {
position: fixed;
left: 16px;
top: 12px;
z-index: 1000;
transform: translateY(-150%);
background: var(--ink);
color: var(--white);
padding: 10px 14px;
border-radius: 4px;
}

.skip-link:focus {
transform: translateY(0);
}

.site-header {
position: fixed;
inset: 0 0 auto;
z-index: 50;
border-bottom: 1px solid rgba(255, 255, 255, 0.18);
background: rgba(15, 13, 12, 0.72);
color: var(--white);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
}

.header-inner {
width: min(1180px, calc(100% - 32px));
min-height: 110px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}

.brand {
display: inline-flex;
align-items: center;
min-width: 250px;
}

.brand img {
width: 248px;
height: 92px;
object-fit: contain;
}

.nav-toggle {
display: none;
width: 44px;
height: 44px;
border: 1px solid rgba(255, 255, 255, 0.24);
border-radius: 6px;
background: rgba(255, 255, 255, 0.08);
color: var(--white);
cursor: pointer;
}

.nav-toggle span {
display: block;
width: 18px;
height: 2px;
margin: 5px auto;
background: currentColor;
transition: transform 180ms ease, opacity 180ms ease;
}

body.menu-open .nav-toggle span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2) {
opacity: 0;
}

body.menu-open .nav-toggle span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
display: flex;
align-items: center;
gap: 6px;
}

.main-nav a {
border-radius: 4px;
color: rgba(255, 255, 255, 0.84);
font-size: 0.94rem;
padding: 10px 12px;
transition: background 180ms ease, color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
background: rgba(255, 255, 255, 0.1);
color: var(--white);
outline: 0;
}

.main-nav a.is-user-area,
.service-aside a.is-user-area,
.float-btn.is-user-area {
border-color: rgba(77, 224, 139, 0.85);
background: #0f8f56;
color: var(--white);
animation: user-area-pulse 1.35s ease-in-out infinite;
box-shadow: 0 0 0 rgba(77, 224, 139, 0);
}

.service-aside a.is-user-area strong,
.service-aside a.is-user-area span {
color: var(--white);
}

.main-nav a.is-user-area:hover,
.main-nav a.is-user-area:focus-visible,
.service-aside a.is-user-area:hover,
.service-aside a.is-user-area:focus-visible,
.float-btn.is-user-area:hover,
.float-btn.is-user-area:focus-visible {
background: #12a766;
color: var(--white);
}

@keyframes user-area-pulse {
0%, 100% {
box-shadow: 0 0 0 0 rgba(77, 224, 139, 0.55);
}
50% {
box-shadow: 0 0 0 9px rgba(77, 224, 139, 0);
}
}

.header-phone {
display: inline-flex;
align-items: center;
min-height: 42px;
border: 1px solid rgba(185, 139, 62, 0.55);
border-radius: 6px;
color: #f8d99a;
font-weight: 700;
padding: 0 14px;
}

.hero {
position: relative;
min-height: 86svh;
overflow: hidden;
color: var(--white);
background: #17120f;
}

.hero-slideshow {
position: absolute;
inset: 0;
}

.hero-slide {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
filter: saturate(0.98) contrast(1.05);
transform: scale(1.04);
transition: opacity 1300ms ease, transform 7200ms ease;
}

.hero-slide.is-active {
opacity: 1;
transform: scale(1.12);
}

.hero::after {
content: "";
position: absolute;
inset: 0;
z-index: 1;
background:
linear-gradient(90deg, rgba(12, 10, 8, 0.82) 0%, rgba(12, 10, 8, 0.48) 50%, rgba(12, 10, 8, 0.24) 100%),
linear-gradient(0deg, rgba(12, 10, 8, 0.62) 0%, rgba(12, 10, 8, 0.05) 42%, rgba(12, 10, 8, 0.5) 100%);
pointer-events: none;
}

.hero::before {
content: "";
position: absolute;
inset: 0;
z-index: 2;
background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 48%, transparent 62%);
transform: translateX(-120%);
animation: hero-sheen 8s ease-in-out infinite;
pointer-events: none;
}

@keyframes hero-sheen {
0%, 44% {
transform: translateX(-120%);
opacity: 0;
}
54% {
opacity: 1;
}
72%, 100% {
transform: translateX(120%);
opacity: 0;
}
}

.hero-inner {
position: relative;
z-index: 3;
width: min(1180px, calc(100% - 32px));
min-height: 86svh;
margin: 0 auto;
padding: 150px 0 70px;
display: grid;
align-content: center;
gap: 24px;
}

.eyebrow {
color: #f0c978;
font-size: 0.82rem;
font-weight: 800;
text-transform: uppercase;
}

h1,
h2,
h3,
p {
margin: 0;
}

h1,
h2,
h3 {
font-family: Georgia, "Times New Roman", serif;
font-weight: 500;
}

h1 {
max-width: 780px;
font-size: 4.7rem;
line-height: 0.95;
}

.hero-copy {
max-width: 640px;
color: rgba(255, 255, 255, 0.82);
font-size: 1.1rem;
}

.hero-copy-main {
max-width: 700px;
font-size: 1.18rem;
}

.hero-title-slider {
display: grid;
max-width: 820px;
min-height: 0.98em;
}

.hero-title {
grid-area: 1 / 1;
color: #f4d18a;
opacity: 0;
transform: translateY(18px);
transition: opacity 700ms ease, transform 700ms ease;
}

.hero-title.is-active {
opacity: 1;
transform: translateY(0);
}

.hero-message-slider {
display: grid;
max-width: 760px;
min-height: 3.2em;
}

.hero-message {
grid-area: 1 / 1;
opacity: 0;
transform: translateY(16px);
transition: opacity 700ms ease, transform 700ms ease;
}

.hero-message.is-active {
opacity: 1;
transform: translateY(0);
}

.actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
}

.app-downloads {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.store-link {
display: inline-grid;
grid-template-columns: 42px 1fr;
align-items: center;
gap: 11px;
min-width: 190px;
border: 1px solid rgba(255, 255, 255, 0.28);
border-radius: 6px;
background: rgba(255, 255, 255, 0.1);
color: var(--white);
padding: 9px 14px 9px 10px;
transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.store-link img {
width: 42px;
height: 42px;
object-fit: contain;
}

.store-copy {
display: grid;
gap: 2px;
}

.store-link:hover,
.store-link:focus-visible {
transform: translateY(-2px);
border-color: rgba(240, 201, 120, 0.68);
background: rgba(255, 255, 255, 0.16);
outline: 0;
}

.store-link .store-kicker {
color: rgba(255, 255, 255, 0.7);
font-size: 0.74rem;
font-weight: 700;
text-transform: uppercase;
}

.store-link strong {
color: #f4d18a;
font-size: 1rem;
}

.btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 48px;
border: 1px solid transparent;
border-radius: 6px;
cursor: pointer;
font-weight: 800;
padding: 0 18px;
transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
transform: translateY(-1px);
outline: 0;
}

.btn-primary {
background: var(--gold);
color: #17120f;
}

.btn-primary:hover,
.btn-primary:focus-visible {
background: #d2aa5d;
}

.btn-secondary {
border-color: rgba(255, 255, 255, 0.34);
background: rgba(255, 255, 255, 0.08);
color: var(--white);
}

.btn-dark {
background: var(--ink);
color: var(--white);
}

.btn-quiet {
border-color: var(--line);
background: var(--paper-soft);
color: var(--ink);
}

.hero-facts {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
max-width: 720px;
border: 1px solid rgba(255, 255, 255, 0.2);
background: rgba(18, 14, 12, 0.42);
backdrop-filter: blur(12px);
border-radius: 8px;
overflow: hidden;
}

.hero-fact {
padding: 17px 18px;
border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-fact:last-child {
border-right: 0;
}

.hero-fact strong {
display: block;
color: #f4d18a;
font-size: 1rem;
}

.hero-fact span {
display: block;
color: rgba(255, 255, 255, 0.75);
font-size: 0.86rem;
}

.reveal {
opacity: 0;
transform: translateY(34px);
transition: opacity 700ms ease, transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
transition-delay: var(--delay, 0ms);
will-change: opacity, transform;
}

.reveal.from-left {
transform: translateX(-70px);
}

.reveal.from-right {
transform: translateX(70px);
}

.reveal.in-view {
opacity: 1;
transform: translate(0, 0);
}

.section {
padding: 86px 0;
background: var(--paper);
}

.section.alt {
background: #efe5d7;
}

.section.dark {
background: #17120f;
color: var(--white);
}

.container {
width: min(1180px, calc(100% - 32px));
margin: 0 auto;
}

.section-head {
display: grid;
grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
align-items: end;
gap: 32px;
margin-bottom: 34px;
}

.section-head h2 {
font-size: 2.6rem;
line-height: 1.05;
}

.section-head p {
color: var(--ink-soft);
}

.section.dark .section-head p {
color: rgba(255, 255, 255, 0.72);
}

.quick-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 16px;
}

.quick-card,
.feature-card,
.price-card,
.promo-card {
border: 1px solid var(--line);
border-radius: 8px;
background: var(--paper-soft);
box-shadow: 0 12px 32px rgba(23, 18, 15, 0.08);
overflow: hidden;
}

.quick-card {
min-height: 250px;
display: grid;
grid-template-rows: 128px 1fr;
align-content: stretch;
transition: transform 180ms ease, box-shadow 180ms ease;
}

.quick-card:hover,
.quick-card:focus-visible {
transform: translateY(-3px);
box-shadow: var(--shadow);
outline: 0;
}

.quick-card img,
.feature-media img,
.promo-card img {
width: 100%;
height: 100%;
object-fit: cover;
}

.quick-card img {
grid-row: 1;
min-height: 0;
}

.quick-card-body {
display: grid;
gap: 8px;
grid-row: 2;
align-content: start;
position: relative;
z-index: 1;
min-height: 122px;
background: var(--paper-soft);
padding: 18px;
}

.quick-card-body strong {
font-family: Georgia, "Times New Roman", serif;
font-size: 1.25rem;
}

.quick-card-body span {
color: var(--ink-soft);
font-size: 0.94rem;
}

.feature-list {
display: grid;
gap: 22px;
}

.feature-card {
display: grid;
grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
min-height: 320px;
}

.feature-card:nth-child(even) {
grid-template-columns: minmax(320px, 0.72fr) minmax(0, 0.95fr);
}

.feature-card:nth-child(even) .feature-media {
order: -1;
}

.feature-copy {
padding: 42px;
display: grid;
align-content: center;
gap: 18px;
}

.feature-copy h3 {
font-size: 2.15rem;
line-height: 1.08;
}

.feature-copy p {
color: var(--ink-soft);
}

.feature-media {
min-height: 320px;
background: #2a211b;
}

.service-band {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
gap: 22px;
align-items: stretch;
}

.service-panel {
border: 1px solid var(--line-light);
border-radius: 8px;
background: rgba(255, 255, 255, 0.06);
padding: 34px;
}

.service-panel h2 {
font-size: 2.5rem;
line-height: 1.05;
margin-bottom: 14px;
}

.service-panel p {
color: rgba(255, 255, 255, 0.74);
margin-bottom: 22px;
}

.app-links {
display: flex;
flex-wrap: wrap;
gap: 12px;
}

.app-links a {
display: inline-grid;
gap: 2px;
align-content: center;
min-height: 48px;
border: 1px solid var(--line-light);
border-radius: 6px;
color: var(--white);
font-weight: 800;
padding: 9px 16px;
}

.app-links .store-mini {
grid-template-columns: 34px 1fr;
align-items: center;
gap: 10px;
padding-left: 10px;
}

.app-links .store-mini img {
width: 34px;
height: 34px;
object-fit: contain;
}

.app-links a span {
color: rgba(255, 255, 255, 0.62);
font-size: 0.72rem;
text-transform: uppercase;
}

.app-links .store-mini > span {
display: grid;
gap: 2px;
color: var(--white);
font-size: 1rem;
text-transform: none;
}

.app-links .store-mini > span > span {
color: rgba(255, 255, 255, 0.62);
font-size: 0.72rem;
text-transform: uppercase;
}

.app-links .store-mini strong {
color: var(--white);
font-size: 1rem;
}

.service-aside {
display: grid;
gap: 14px;
}

.service-aside a {
display: grid;
gap: 4px;
border: 1px solid var(--line-light);
border-radius: 8px;
background: rgba(255, 255, 255, 0.06);
padding: 20px;
}

.service-aside strong {
color: #f4d18a;
}

.service-aside span {
color: rgba(255, 255, 255, 0.7);
font-size: 0.92rem;
}

.price-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 16px;
}

.price-card {
padding: 24px;
}

.price-card .label {
color: var(--rose);
font-weight: 900;
text-transform: uppercase;
font-size: 0.78rem;
}

.price-card strong {
display: block;
margin: 10px 0;
font-family: Georgia, "Times New Roman", serif;
font-size: 2rem;
color: var(--jade);
}

.price-card p {
color: var(--ink-soft);
font-size: 0.95rem;
}

.note {
margin-top: 18px;
color: var(--ink-soft);
font-size: 0.95rem;
}

.promo-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 16px;
}

.promo-card {
display: grid;
grid-template-rows: 190px 1fr;
align-content: stretch;
}

.promo-card img {
grid-row: 1;
min-height: 0;
}

.promo-card-body {
grid-row: 2;
padding: 22px;
display: grid;
gap: 10px;
align-content: start;
position: relative;
z-index: 1;
min-height: 230px;
background: var(--paper-soft);
}

.promo-card-body h3 {
font-size: 1.4rem;
}

.promo-card-body p {
color: var(--ink-soft);
font-size: 0.94rem;
}

.hours-layout {
display: grid;
grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.62fr);
gap: 30px;
align-items: center;
}

.hours-box {
border-left: 4px solid var(--gold);
padding-left: 24px;
}

.hours-box h2 {
font-size: 2.5rem;
line-height: 1.05;
margin-bottom: 18px;
}

.hours-list {
display: grid;
gap: 12px;
margin: 0;
padding: 0;
list-style: none;
}

.hours-list li {
display: grid;
grid-template-columns: 120px 1fr;
gap: 14px;
border-bottom: 1px solid var(--line);
padding-bottom: 12px;
}

.hours-list strong {
color: var(--jade);
}

.hours-image {
border-radius: 8px;
min-height: 360px;
overflow: hidden;
box-shadow: var(--shadow);
}

.hours-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.footer {
background: #100d0b;
color: var(--white);
padding: 54px 0 32px;
}

.footer-grid {
display: grid;
grid-template-columns: minmax(0, 0.9fr) repeat(2, minmax(180px, 0.35fr));
gap: 28px;
border-bottom: 1px solid var(--line-light);
padding-bottom: 30px;
}

.footer h2,
.footer h3 {
color: #f4d18a;
}

.footer h2 {
font-size: 2rem;
margin-bottom: 10px;
}

.footer h3 {
font-size: 1.1rem;
margin-bottom: 12px;
}

.footer p,
.footer a {
color: rgba(255, 255, 255, 0.74);
}

.footer-links {
display: grid;
gap: 8px;
}

.footer-bottom {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 16px;
color: rgba(255, 255, 255, 0.54);
font-size: 0.9rem;
padding-top: 24px;
}

.floating-actions {
position: fixed;
right: 18px;
bottom: 18px;
z-index: 60;
display: grid;
gap: 10px;
}

.float-btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 58px;
min-height: 58px;
border: 1px solid rgba(255, 255, 255, 0.34);
border-radius: 8px;
background: rgba(16, 13, 11, 0.86);
color: var(--white);
box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
font-size: 0.78rem;
font-weight: 900;
padding: 8px 10px;
text-align: center;
backdrop-filter: blur(12px);
}

.float-btn.chat {
background: var(--gold);
color: #17120f;
}

.float-btn.whatsapp {
background: #1f7f55;
}

.cookie-banner {
position: fixed;
left: 16px;
right: 16px;
bottom: 16px;
z-index: 70;
display: grid;
grid-template-columns: 1fr;
gap: 14px;
align-items: center;
max-width: 920px;
margin: 0 auto;
border: 1px solid var(--line);
border-radius: 8px;
background: var(--paper-soft);
box-shadow: var(--shadow);
padding: 16px;
}

.cookie-banner p {
color: var(--ink-soft);
font-size: 0.94rem;
}

.cookie-banner strong {
color: var(--ink);
}

.cookie-actions {
display: flex;
flex-wrap: wrap;
gap: 10px;
align-items: center;
}

.cookie-more {
border: 1px solid var(--line);
border-radius: 8px;
background: rgba(23, 18, 15, 0.04);
color: var(--ink-soft);
font-size: 0.9rem;
padding: 12px;
}

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

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

.back-top {
position: fixed;
left: 18px;
bottom: 18px;
z-index: 60;
width: 48px;
height: 48px;
border: 1px solid rgba(255, 255, 255, 0.34);
border-radius: 8px;
background: rgba(16, 13, 11, 0.86);
color: var(--white);
cursor: pointer;
opacity: 0;
pointer-events: none;
transition: opacity 180ms ease;
}

.back-top.is-visible {
opacity: 1;
pointer-events: auto;
}

@media (max-width: 1040px) {
h1 {
font-size: 3.7rem;
}

.quick-grid,
.price-grid,
.promo-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-band,
.section-head,
.hours-layout {
grid-template-columns: 1fr;
}

.feature-card,
.feature-card:nth-child(even) {
grid-template-columns: 1fr;
}

.feature-card:nth-child(even) .feature-media {
order: 0;
}
}

@media (max-width: 860px) {
.header-inner {
min-height: 88px;
}

.brand {
min-width: 184px;
}

.brand img {
width: 182px;
height: 70px;
}

.nav-toggle {
display: block;
}

.main-nav {
position: fixed;
inset: 88px 0 auto;
display: none;
grid-template-columns: 1fr;
gap: 0;
border-top: 1px solid rgba(255, 255, 255, 0.14);
background: rgba(15, 13, 12, 0.96);
padding: 10px 16px 18px;
}

body.menu-open .main-nav {
display: grid;
}

.main-nav a {
min-height: 46px;
display: flex;
align-items: center;
}

.header-phone {
display: none;
}
}

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

h1 {
font-size: 2.8rem;
}

.hero-inner {
padding-top: 124px;
padding-bottom: 84px;
}

.hero-copy-main {
font-size: 1.06rem;
}

.hero-message-slider {
min-height: 5.2em;
}

.hero-title-slider {
min-height: 2.05em;
}

.hero-facts,
.quick-grid,
.price-grid,
.promo-grid,
.footer-grid {
grid-template-columns: 1fr;
}

.hero-fact {
border-right: 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-fact:last-child {
border-bottom: 0;
}

.section {
padding: 58px 0;
}

.section-head h2,
.service-panel h2,
.hours-box h2 {
font-size: 2rem;
}

.feature-copy,
.service-panel {
padding: 26px;
}

.app-downloads {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.store-link {
min-width: 0;
}

.hours-list li {
grid-template-columns: 1fr;
gap: 2px;
}

.floating-actions {
left: 12px;
right: 12px;
bottom: 12px;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 8px;
}

.float-btn {
min-width: 0;
min-height: 48px;
font-size: 0.72rem;
padding: 7px 6px;
}

.back-top {
display: none;
}

.cookie-banner {
grid-template-columns: 1fr;
}
}

@media (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto;
}

.hero-slide,
.reveal,
.btn,
.store-link,
.quick-card {
transition: none;
}

.hero::before {
animation: none;
}

.reveal,
.reveal.from-left,
.reveal.from-right {
opacity: 1;
transform: none;
}
}

/* Picture wrappers preserve the existing grid and image geometry. */
.home-picture { display: contents; }
.home-picture > source { display: none; }
.hero.is-paused::before { animation-play-state: paused; }
@media (max-width: 680px) {
.cookie-banner { left: 12px; right: 12px; bottom: calc(76px + env(safe-area-inset-bottom, 0px)); padding: 12px; gap: 10px; max-height: calc(100vh - 176px); max-height: calc(100svh - 176px); overflow-y: auto; }
.cookie-banner p { font-size: .875rem; line-height: 1.45; }
.cookie-actions .btn { padding: 10px 14px; min-height: 44px; }
.floating-actions { bottom: calc(12px + env(safe-area-inset-bottom, 0px)); }
}
