:root {
  --gold: #BF9456;
  --gold-dark: #795E36;
  --gold-soft: #b9965e;
  --cream: #ECE8DE;
  --dark: #0b0b0d;
  --text: #222;
  --white: #fff;
  --footer-bg: #1a1a1a;
  --header-h: 120px;
  --max: 1170px;
  --font-body: "Open Sans", sans-serif;
  --font-display: "Abril Fatface", serif;
  --font-btn: "Oswald", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
  max-width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
video { max-width: none; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }
a.btn:hover { color: #f7f7f7 !important; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

[hidden] { display: none !important; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #fff;
  padding: .5rem 1rem;
  z-index: 10000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
}
.narrow { width: min(100% - 2rem, 900px); }
.font-display { font-family: var(--font-display); font-weight: 400; overflow-wrap: break-word; }
.text-center { text-align: center; }

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: #00000059;
  display: flex;
  align-items: center;
}
.page-inner .site-header {
  /* Same overlay as homepage so the gold logo sits on the page hero */
  position: absolute;
  background: #00000059;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  max-width: 100%;
  margin-inline: auto;
  min-width: 0;
  position: relative;
}
.header-inner > * { min-width: 0; }
.header-inner .mobile-toggle { min-width: 44px; min-height: 44px; }
.header-inner > .logo {
  min-width: 7.5rem;
  justify-self: center;
  flex-shrink: 0;
}

.logo {
  min-width: 7.5rem;
  max-width: 100%;
}
.logo img {
  display: block;
  width: 200px;
  height: auto;
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  background: transparent;
}
.logo picture { display: block; }

.nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav a {
  color: #fff;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
.nav a:hover { color: var(--gold); }
.nav-left { justify-content: flex-end; padding-right: 1rem; }
.nav-right { justify-content: flex-start; padding-left: 1rem; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  flex-shrink: 0;
}
.lang-switch a,
.lang-switch span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  padding: .15rem .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.lang-switch a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.lang-switch .is-active {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}
.nav .lang-switch a,
.nav .lang-switch span {
  font-size: .72rem;
  letter-spacing: .08em;
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 8px;
  cursor: pointer;
  justify-self: end;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  touch-action: manipulation;
}
.mobile-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 0;
  transition: transform .2s ease, opacity .2s ease;
  transform-origin: center;
}
.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: #111;
  z-index: 99;
  padding: 0.5rem 1.5rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  box-shadow: 0 12px 24px rgba(0,0,0,.35);
}
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.mobile-nav a {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: .35rem 0;
}
body.nav-open {
  overflow: hidden;
}
.page-home.nav-open .site-header,
.page-inner.nav-open .site-header {
  background: #111;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-btn);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: .85rem 2rem;
  min-height: 44px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #ffffff !important;
  transition: .25s ease;
  cursor: pointer;
  text-shadow: none;
  touch-action: manipulation;
}
.btn:hover,
.btn:focus {
  background: var(--gold-dark) !important;
  border-color: var(--gold-dark);
  color: #ffffff !important;
}
.btn-hero {
  font-size: 1.25rem;
  padding: .9rem 2.5rem;
  box-shadow: 0 10px 20px rgba(0,0,0,.35);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: #000;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: #000;
}
.hero-media picture {
  position: absolute;
  inset: 0;
  display: block;
}
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.15) 40%, rgba(0,0,0,.45) 100%);
  pointer-events: none;
  z-index: 2;
}
.hero-cta-wrap {
  position: relative;
  z-index: 3;
  padding-bottom: 2.2rem;
  animation: bounceIn .7s ease both;
}

@keyframes bounceIn {
  0% { opacity: 0; transform: translateY(24px) scale(.96); }
  60% { opacity: 1; transform: translateY(-6px) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}

/* Intro strip — full viewport width, columns edge-to-edge */
.intro-strip {
  background: #111;
  width: 100%;
  max-width: none;
  padding-inline: 0;
  margin-inline: 0;
  overflow: hidden;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  max-width: none;
  min-height: 320px;
  margin: 0;
  padding: 0;
  gap: 0;
}
.intro-card {
  padding: 3rem 1.5rem;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.intro-card h2 {
  margin: 0 0 .75rem;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}
.intro-book {
  background: #0b0b0d url("../img/bg/book-banner.png") center/cover no-repeat;
  padding: 150px 15px;
}
.intro-book h2 {
  color: #fff;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 2.5rem;
}
.intro-sub {
  font-size: 1.25rem;
  margin: 0 0 1.5rem;
}
.intro-about {
  background: #b9965e;
}
.intro-about p { margin: .25rem 0; }
.intro-hours {
  background: url("../img/bg/hours-bg.jpg") center/cover no-repeat;
  padding: 15px 20px;
}
.hours-box {
  border: 3px solid var(--gold-soft);
  border-radius: 5px;
  background: rgba(0,0,0,.53);
  padding: 1rem 1.25rem;
  width: 100%;
  max-width: 280px;
}
.hours-box p { margin: .2rem 0; color: #fff; }
.intro-book > [data-animate] {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Scroll-in animations — same set as live WPBakery / animate.css */
[data-animate]:not(.is-in) { opacity: 0; }
[data-animate].is-in {
  animation-duration: 1s;
  animation-fill-mode: both;
}
[data-animate="fadeIn"].is-in { animation-name: fadeIn; }
[data-animate="fadeInLeft"].is-in { animation-name: fadeInLeft; }
[data-animate="fadeInRight"].is-in { animation-name: fadeInRight; }
[data-animate="fadeInUpBig"].is-in { animation-name: fadeInUpBig; }
[data-animate="bounceInRight"].is-in { animation-name: bounceInRight; }
[data-animate="flipInX"].is-in {
  animation-name: flipInX;
  backface-visibility: visible;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translate3d(-100%, 0, 0); }
  to { opacity: 1; transform: translateZ(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translate3d(100%, 0, 0); }
  to { opacity: 1; transform: translateZ(0); }
}
@keyframes fadeInUpBig {
  from { opacity: 0; transform: translate3d(0, 2000px, 0); }
  to { opacity: 1; transform: translateZ(0); }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% { opacity: 0; transform: translate3d(3000px, 0, 0); }
  60% { opacity: 1; transform: translate3d(-25px, 0, 0); }
  75% { transform: translate3d(10px, 0, 0); }
  90% { transform: translate3d(-5px, 0, 0); }
  100% { transform: translateZ(0); }
}
@keyframes flipInX {
  0% { transform: perspective(400px) rotateX(90deg); animation-timing-function: ease-in; opacity: 0; }
  40% { transform: perspective(400px) rotateX(-20deg); animation-timing-function: ease-in; }
  60% { transform: perspective(400px) rotateX(10deg); opacity: 1; }
  80% { transform: perspective(400px) rotateX(-5deg); }
  100% { transform: perspective(400px); }
}

/* Sections */
.section { padding: 3rem 0; }
.section-title {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 1.25rem 0;
}
.story { padding-top: 2.2rem; }
.story-text {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.55;
  margin: 1.25rem 1.875rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  align-items: stretch;
}
.service-card {
  background: var(--cream);
  border: 5px solid var(--gold);
  border-radius: 5px;
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.service-card h3,
.service-card h4 {
  margin: .5rem 0 .75rem;
}
.service-card h3 { font-size: 1.5rem; }
.service-card h4 { font-size: 1.15rem; }
.service-card p { margin: .4rem 0 1rem; }
.service-card hr {
  border: 0;
  border-top: 1px solid #000;
  margin: .75rem 0;
}

/* Relax — match live WPBakery tightness (no 150px spacer, no stacked .section 3rem) */
.section.services { padding-bottom: 1.5rem; }
.section.relax {
  padding-top: 0.25rem;
  padding-bottom: 0;
}
.section.relax + .section.gallery { padding-top: 1.25rem; }
.relax .thick {
  border: 0;
  border-top: 2px solid #2A2A2A;
  margin: 0 0 1.15rem;
}
.relax h2.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 0.35rem;
}
.relax-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  align-items: center;
}
.relax-copy {
  text-align: center;
  padding: 0;
}
.relax-copy h3 {
  line-height: 1.35;
  font-size: 1.5rem;
  margin: 0 0 1rem;
}
.relax-copy p {
  font-size: 1.125rem;
  line-height: 1.55;
  margin: 0;
}
.relax-video {
  max-width: 250px;
  margin: 1.875rem auto;
}
.relax-video video {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  object-fit: cover;
}

/* Gallery — WPBakery media grid default: 4 per row, 5px gap */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
.gallery-item {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: #eee;
}
.gallery-item picture {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* Shop */
.shop-intro {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.55;
  margin: 1.25rem 3rem 2rem;
}
.shop-sliders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.shop-slider {
  position: relative;
  background: #f7f7f7;
}
.shop-slider .slides {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.shop-slider .slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.shop-slider .slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
.shop-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-slider .slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.slider-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  inset: 40% 0 auto;
  padding: 0 .5rem;
  pointer-events: none;
}
.slider-nav button {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  touch-action: manipulation;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: .4rem;
  padding: .75rem 0;
}
.slider-dots button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  touch-action: manipulation;
}
.slider-dots button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  transform: translate(-50%, -50%);
}
.slider-dots button.is-active::after { background: var(--gold); }

/* Contacts */
.contacts {
  background: var(--gold);
  padding: 50px 0 2rem;
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.location-card {
  text-align: center;
  color: #000;
}
.location-card h3 {
  margin-top: 0;
  font-size: 1.5rem;
}
.map-wrap {
  margin: 1rem 0;
  background: #fff;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 16 / 10;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  border: 0;
}
.location-card a { color: #000; text-decoration: underline; }
.location-card a:hover { color: #222; }

/* Footer */
.site-footer { background: var(--footer-bg); color: #ddd; }
.footer-info {
  padding: 2.5rem 0;
  border-bottom: 1px solid #333;
}
.footer-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.info-block p { margin: .5rem 0 0; }
.info-block a { color: var(--gold); font-weight: 600; }
.info-icon { font-size: 1.5rem; opacity: .85; }

.footer-copyright { padding: 1.5rem 0 2rem; }
.footer-copy-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.copy-text { margin: 0; font-size: .9rem; }
.copy-text a { color: #ddd; }
.footer-logo {
  display: flex;
  justify-content: center;
  min-width: 7.5rem;
}
.footer-logo img {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  background: transparent;
}
.footer-logo picture { display: block; }
.social {
  display: flex;
  gap: .75rem;
  justify-content: flex-end;
}
.social a {
  width: 44px;
  height: 44px;
  border: 1px solid #555;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  text-transform: lowercase;
}
.social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Back to top */
.back-to-top {
  position: fixed;
  left: max(16px, env(safe-area-inset-left, 0px));
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  width: 44px;
  height: 44px;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 14l5-5 5 5'/%3E%3C/svg%3E") center/28px no-repeat;
  border: 0;
  cursor: pointer;
  z-index: 999;
}
.back-to-top:hover { background-color: var(--gold-dark); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.lightbox[hidden] {
  display: none !important;
}
.lightbox img {
  max-height: 90vh;
  max-width: 95vw;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: .5rem;
  right: .5rem;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  width: 48px;
  height: 48px;
  touch-action: manipulation;
}

/* Inner pages */
.page-hero {
  background: #111 url("../img/hero/hero-poster.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 5rem 1rem 4rem;
  padding-top: calc(var(--header-h) + 3.5rem);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.page-inner main > .section:first-child {
  padding-top: calc(var(--header-h) + 2.5rem);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.page-hero .container { position: relative; z-index: 1; min-width: 0; max-width: 100%; }
.page-hero h1 { margin: 0 0 .5rem; font-size: clamp(1.85rem, 8vw, 2.8rem); max-width: 100%; overflow-wrap: break-word; }
.page-hero p {
  margin: 0 auto;
  max-width: min(36rem, 100%);
  padding: 0 .25rem;
  overflow-wrap: break-word;
}

.apply-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
.apply-form-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .apply-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.apply-form label {
  display: grid;
  gap: .4rem;
  font-weight: 600;
  font-size: .95rem;
}
.apply-form input,
.apply-form textarea {
  font: inherit;
  font-size: 16px;
  padding: .75rem .9rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}
.apply-form input[type="file"] {
  padding: .55rem .7rem;
  background: #fafafa;
}
.apply-form input:focus,
.apply-form textarea:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}
.apply-form .field-hint {
  font-weight: 400;
  font-size: .8rem;
  color: #666;
}
.apply-form .checkbox {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-weight: 400;
}
.apply-form .checkbox input { width: auto; margin-top: .25rem; }
.apply-home-wrap {
  margin: 1.5rem 0 0;
  text-align: center;
}
.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.alert {
  padding: 1rem 1.25rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.alert:focus { outline: 2px solid var(--gold); outline-offset: 3px; }
.alert-success { background: #e8f5e9; color: #1b5e20; }
.alert-error { background: #fdecea; color: #b71c1c; }

.apply-success {
  background: #f7f4ee;
  border: 1px solid var(--gold-soft);
  border-radius: 6px;
  padding: 1.5rem 1.35rem;
  margin-bottom: 1.25rem;
}
.apply-success h2 {
  margin: 0 0 .5rem;
  font-size: 1.35rem;
  color: #111;
}
.apply-success p { margin: 0 0 .75rem; }
.apply-success p:last-child { margin-bottom: 0; }
.apply-success a { color: var(--gold-dark); text-decoration: underline; font-weight: 600; }
#candidatura { scroll-margin-top: calc(var(--header-h) + 0.75rem); }

/* Responsive */
@media (max-width: 1100px) {
  .nav { display: none; }
  .mobile-toggle { display: flex; }
  .header-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-inline: 12px;
    gap: 0;
    box-sizing: border-box;
  }
  .lang-switch {
    position: relative;
    z-index: 2;
    margin-right: auto;
  }
  .header-inner > .logo,
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    min-width: 0;
    max-width: calc(100% - 168px);
  }
  .mobile-toggle {
    position: relative;
    z-index: 2;
    flex: 0 0 44px;
    background: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 6px;
  }
  .mobile-toggle span { background: #111; }
  .page-home .site-header,
  .page-inner .site-header {
    background: rgba(0, 0, 0, 0.82);
  }
  .logo img { width: 160px; max-height: 78px; }
}

@media (max-width: 992px) {
  :root { --header-h: 88px; }
  .logo img { width: 148px; max-height: 72px; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-book { padding: 80px 15px; }
  .services-grid,
  .contacts-grid,
  .footer-info-grid,
  .relax-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-copy-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social { justify-content: center; }
  .shop-intro { margin-inline: 1rem; }
  .story-text { margin-inline: 0.75rem; }
  .footer-logo img { width: 160px; }
}

@media (max-width: 600px) {
  :root { --header-h: 76px; }
  .logo img { width: 128px; max-height: 58px; }
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-cta-wrap { padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px)); }
  .btn-hero { font-size: 1rem; padding: .75rem 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-sliders { grid-template-columns: 1fr; }
  .intro-book h2 { font-size: 1.85rem; }
  .intro-sub { font-size: 1.05rem; }
  .section { padding: 2.25rem 0; }
  .section.services { padding-bottom: 1.25rem; }
  .section.relax {
    padding-top: 0.25rem;
    padding-bottom: 0;
  }
  .section.relax + .section.gallery { padding-top: 1rem; }
  .relax-grid { gap: 0.75rem; }
  .page-hero { padding: 3.5rem 1rem 3rem; }
  .page-inner .page-hero { padding-top: calc(var(--header-h) + 2.25rem); }
  .page-inner main > .section:first-child { padding-top: calc(var(--header-h) + 1.75rem); }
  .page-hero p { font-size: 0.95rem; padding-inline: 0.5rem; }
  .shop-intro { margin: 1rem 0.5rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] { opacity: 1 !important; }
}
