
@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --ink: #263029;
  --ink-soft: #536058;
  --paper: #f6f1e8;
  --paper-2: #ebe2d3;
  --white: #fffdf8;
  --leaf: #58735b;
  --leaf-dark: #26382b;
  --berry: #aa2036;
  --gold: #b89b65;
  --line: rgba(38,48,41,.16);
  --shadow: 0 24px 70px rgba(25,36,29,.18);
  --radius: 22px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: 'Manrope', Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  transform: translateY(-140%);
  z-index: 9999;
  background: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { transform: none; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(84px, 10vw, 150px) 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--leaf);
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: currentColor; }
.display-title {
  max-width: 880px;
  margin: 0;
  font-family: 'Lobster Two', Georgia, serif;
  font-size: clamp(3rem, 7.4vw, 7rem);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.035em;
}
.section-title {
  margin: 0 0 28px;
  font-size: clamp(2.2rem, 4.8vw, 4.5rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.045em;
}
.lead { font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.55; }
.muted { color: var(--ink-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--berry); color: white; box-shadow: 0 14px 35px rgba(170,32,54,.24); }
.btn-primary:hover { background: #8f182b; }
.btn-light { background: rgba(255,255,255,.92); color: var(--ink); }
.btn-outline { border-color: rgba(255,255,255,.55); color: white; background: rgba(255,255,255,.07); backdrop-filter: blur(12px); }
.btn svg { width: 18px; height: 18px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 92px;
  display: flex;
  align-items: center;
  color: white;
  transition: height .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  height: 76px;
  color: var(--ink);
  background: rgba(246,241,232,.92);
  box-shadow: 0 10px 35px rgba(30,40,33,.08);
  backdrop-filter: blur(16px);
}
.header-inner { width: var(--container); margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; flex-direction: column; text-decoration: none; line-height: .82; }
.brand-main { font-family: 'Lobster Two', Georgia, serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; }
.brand-sub { margin-left: 18px; font-family: 'Lobster Two', Georgia, serif; font-size: .96rem; font-weight: 400; }
.brand-heart { color: var(--berry); margin-left: 4px; }
.nav-wrap { display: flex; align-items: center; gap: 28px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { position: relative; text-decoration: none; font-size: .77rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.nav a:not(.btn)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: currentColor; transition: right .25s ease; }
.nav a:not(.btn):hover::after { right: 0; }
.lang-switch { display: flex; align-items: center; gap: 8px; padding-left: 18px; border-left: 1px solid currentColor; opacity: .9; }
.lang-switch a { text-decoration: none; font-size: .75rem; font-weight: 700; opacity: .55; }
.lang-switch a.active { opacity: 1; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: rgba(255,255,255,.14); color: inherit; cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor; content: ''; transition: .25s ease; }
.menu-open .menu-toggle span { opacity: 0; }
.menu-open .menu-toggle::before { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle::after { transform: translateY(-6px) rotate(-45deg); }
.menu-backdrop { position: fixed; inset: 0; z-index: 995; display: block; border: 0; padding: 0; background: rgba(20,29,23,.5); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .28s ease, visibility .28s ease; }
.menu-open .menu-backdrop { opacity: 1; visibility: visible; pointer-events: auto; }
.nav a:focus-visible, .lang-switch a:focus-visible, .menu-toggle:focus-visible, .btn:focus-visible { outline: 3px solid rgba(184,155,101,.75); outline-offset: 4px; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: #1f2a22;
}
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center 55%; animation: heroZoom 16s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.03); } to { transform: scale(1.12); } }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,16,12,.22), rgba(10,16,12,.15) 35%, rgba(10,16,12,.78) 100%); }
.hero-content { position: relative; z-index: 2; width: var(--container); margin: 0 auto; padding: 170px 0 clamp(70px, 9vw, 120px); }
.hero-title { max-width: 750px; text-shadow: 0 4px 35px rgba(0,0,0,.3); }
.hero-title .brand-line { display: block; }
.hero-title .small-line { display: block; margin: 6px 0 0 10%; font-size: .55em; }
.hero-copy { max-width: 630px; margin: 30px 0 38px; font-size: clamp(1rem, 1.7vw, 1.28rem); color: rgba(255,255,255,.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-scroll { position: absolute; z-index: 3; right: max(20px, calc((100% - 1180px)/2)); bottom: 42px; display: flex; align-items: center; gap: 12px; font-size: .67rem; letter-spacing: .14em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-scroll::after { content: ''; width: 1px; height: 62px; background: rgba(255,255,255,.65); }

.territory { position: relative; overflow: hidden; }
.territory::before { content: 'Liguria'; position: absolute; right: -3vw; top: 2%; font-family: 'Lobster Two', serif; font-size: min(22vw, 290px); line-height: 1; color: rgba(88,115,91,.055); pointer-events: none; }
.territory-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.2fr); gap: clamp(50px, 8vw, 110px); align-items: center; }
.territory-copy { position: relative; z-index: 1; }
.territory-copy .section-title { font-size: clamp(2.3rem, 4.5vw, 4.4rem); }
.photo-collage { position: relative; min-height: 720px; }
.photo-card { position: absolute; overflow: hidden; border: 0; padding: 0; cursor: zoom-in; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--paper-2); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.photo-card:hover img { transform: scale(1.035); }
.photo-card.one { width: 69%; height: 69%; left: 0; top: 0; }
.photo-card.two { width: 47%; height: 46%; right: 0; bottom: 0; }
.photo-card.three { width: 34%; height: 31%; right: 2%; top: 8%; border: 9px solid var(--paper); }

.story { background: var(--leaf-dark); color: white; overflow: hidden; }
.story-grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.story-visual { position: relative; }
.story-visual::before { content: ''; position: absolute; width: 70%; aspect-ratio: 1; left: -14%; top: -12%; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.story-sign { position: relative; border: 0; padding: 0; cursor: zoom-in; border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.32); transform: rotate(-2deg); }
.story-moment { width: 74%; border: 0; padding: 0; cursor: zoom-in; margin: -44px 0 0 auto; position: relative; border: 8px solid var(--leaf-dark); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.story .eyebrow { color: #c8d4c8; }
.story .muted { color: rgba(255,255,255,.72); }
.story-copy p { margin: 0 0 22px; }
.story-copy .btn { margin-top: 16px; }

.gallery-intro { display: grid; grid-template-columns: 1fr .7fr; gap: 40px; align-items: end; margin-bottom: 58px; }
.gallery-intro p { margin: 0 0 8px; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.gallery-item { position: relative; overflow: hidden; min-width: 0; border: 0; padding: 0; border-radius: 18px; background: #ddd; cursor: zoom-in; min-height: 300px; }
.gallery-item img { width: 100%; height: 100%; min-width: 0; object-fit: cover; transition: transform .65s ease, filter .65s ease; }
.gallery-item:hover img { transform: scale(1.045); filter: contrast(1.03); }
.gallery-item::after { content: '+'; position: absolute; right: 18px; bottom: 18px; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--ink); background: rgba(255,255,255,.9); font-size: 1.3rem; transform: scale(.85); opacity: 0; transition: .25s ease; }
.gallery-item:hover::after { transform: scale(1); opacity: 1; }
.gallery-item:nth-child(1) { grid-column: span 7; min-height: 520px; }
.gallery-item:nth-child(2) { grid-column: span 5; min-height: 520px; }
.gallery-item:nth-child(3) { grid-column: span 4; min-height: 400px; }
.gallery-item:nth-child(4) { grid-column: span 8; min-height: 400px; }
.gallery-item:nth-child(5) { grid-column: span 6; min-height: 440px; }
.gallery-item:nth-child(6) { grid-column: span 6; min-height: 440px; }
.gallery-item:nth-child(7) { grid-column: 1 / -1; min-height: 0; aspect-ratio: 2.15 / 1; }
.gallery-item:nth-child(7) img { object-position: center 44%; }

.visit { padding-top: 0; }
.visit-card { position: relative; overflow: hidden; border-radius: 32px; background: var(--white); box-shadow: var(--shadow); }
.visit-grid { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 610px; }
.visit-copy { padding: clamp(46px, 7vw, 90px); display: flex; flex-direction: column; justify-content: center; }
.contact-list { display: grid; gap: 18px; margin: 16px 0 34px; }
.contact-row { display: grid; grid-template-columns: 46px 1fr; gap: 14px; align-items: start; text-decoration: none; }
.contact-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); color: var(--berry); }
.contact-icon svg { width: 20px; height: 20px; }
.contact-label { display: block; color: var(--ink-soft); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.map-wrap { min-height: 480px; background: var(--paper-2); }
.map-wrap iframe { border: 0; width: 100%; height: 100%; min-height: 610px; filter: saturate(.8) contrast(.96); }


.careers { background: var(--paper-2); }
.careers-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(48px, 8vw, 110px); align-items: start; }
.careers-copy { position: static; }
.careers-copy .section-title { font-size: clamp(2.5rem, 5vw, 4.8rem); }
.careers-note { display: grid; gap: 3px; margin-top: 34px; padding: 22px 24px; border-left: 3px solid var(--berry); background: rgba(255,253,248,.64); }
.careers-note strong { font-size: .73rem; letter-spacing: .13em; text-transform: uppercase; }
.careers-note span { color: var(--ink-soft); font-size: .9rem; }
.career-form-card { padding: clamp(28px, 4vw, 54px); border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.form-field { display: grid; gap: 8px; min-width: 0; }
.form-field.full, .form-consent.full { grid-column: 1 / -1; }
.form-field label { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.form-field label span, .form-consent strong { color: var(--berry); }
.form-field input, .form-field textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink); font: inherit; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.form-field input { min-height: 52px; padding: 11px 14px; }
.form-field textarea { min-height: 140px; padding: 13px 14px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--leaf); box-shadow: 0 0 0 4px rgba(88,115,91,.12); }
.file-field input[type="file"] { min-height: 0; padding: 12px; background: var(--paper); cursor: pointer; }
.file-field input[type="file"]::file-selector-button { margin-right: 14px; padding: 10px 14px; border: 0; border-radius: 999px; background: var(--leaf-dark); color: white; font: inherit; font-size: .75rem; font-weight: 700; cursor: pointer; }
.file-field small { color: var(--ink-soft); font-size: .78rem; }
.form-consent { display: grid; grid-template-columns: 20px 1fr; gap: 11px; align-items: start; color: var(--ink-soft); font-size: .82rem; line-height: 1.5; cursor: pointer; }
.form-consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--berry); }
.form-submit { margin-top: 26px; border: 0; cursor: pointer; }
.form-status { display: none; margin-top: 22px; padding: 13px 15px; border-radius: 10px; font-size: .88rem; }
.form-status.show { display: block; }
.form-status.success { color: #234d2c; background: #e7f4e9; border: 1px solid #bad9bf; }
.form-status.error { color: #782335; background: #f9e8ec; border: 1px solid #e7bec7; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.final-cta { position: relative; padding: clamp(80px, 10vw, 140px) 0; text-align: center; color: white; background: var(--berry); overflow: hidden; }
.final-cta::before, .final-cta::after { content: ''; position: absolute; width: 320px; height: 320px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.final-cta::before { left: -120px; top: -140px; }
.final-cta::after { right: -130px; bottom: -180px; }
.final-cta .container { position: relative; z-index: 1; }
.final-cta .section-title { max-width: 720px; margin: 0 auto 30px; }

.site-footer { padding: 50px 0 95px; background: #1c251f; color: white; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.footer-meta { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 24px; font-size: .78rem; color: rgba(255,255,255,.6); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { color: rgba(255,255,255,.82); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; }
.footer-credit { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-credit a { color: rgba(255,255,255,.86); font-weight: 800; text-decoration: none; }
.footer-credit a:hover { color: white; }

.mobile-book { display: none; transition: opacity .22s ease, transform .22s ease, visibility .22s ease; }
.mobile-book.is-hidden, .menu-open .mobile-book { opacity: 0; visibility: hidden; transform: translateY(18px); pointer-events: none; }

.lightbox { position: fixed; inset: 0; z-index: 4000; display: none; place-items: center; padding: 28px; background: rgba(10,14,11,.94); }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1400px, 92vw); max-height: 88vh; width: auto; height: auto; border-radius: 14px; box-shadow: 0 30px 100px rgba(0,0,0,.5); }
.lightbox-close { position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: transparent; color: white; font-size: 1.7rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1140px) {
  :root { --container: min(100% - 36px, 1180px); }
  html { scroll-padding-top: 78px; }
  .site-header { height: 76px; }
  .site-header.scrolled { height: 70px; }
  .menu-open .site-header { color: var(--ink); background: rgba(246,241,232,.98); box-shadow: 0 10px 35px rgba(30,40,33,.08); backdrop-filter: blur(16px); }
  .header-inner { position: relative; z-index: 1010; }
  .brand-main { font-size: clamp(1.65rem, 4vw, 2.15rem); }
  .brand-sub { margin-left: 14px; font-size: .82rem; }
  .menu-toggle { position: relative; z-index: 1012; display: block; flex: 0 0 auto; background: rgba(255,255,255,.16); }
  .site-header.scrolled .menu-toggle, .menu-open .menu-toggle { background: rgba(38,48,41,.08); }
  .nav-wrap {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1008;
    width: min(88vw, 430px);
    padding: 104px 26px max(30px, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 26px;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--ink);
    background: var(--paper);
    box-shadow: -28px 0 80px rgba(18,28,21,.2);
    transform: translateX(104%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .34s cubic-bezier(.22,.8,.24,1), opacity .25s ease, visibility .34s ease;
  }
  .menu-open .nav-wrap { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
  .nav { display: grid; gap: 0; width: 100%; align-items: stretch; }
  .nav a { display: flex; align-items: center; min-height: 56px; width: 100%; border-bottom: 1px solid var(--line); font-size: .85rem; letter-spacing: .1em; }
  .nav a:not(.btn)::after { display: none; }
  .nav a:not(.btn)::before { content: '→'; margin-left: auto; order: 2; color: var(--berry); font-size: 1rem; transform: translateX(0); transition: transform .2s ease; }
  .nav a:not(.btn):hover::before { transform: translateX(4px); }
  .nav .btn { min-height: 56px; margin-top: 22px; border-bottom: 0; }
  .lang-switch { justify-content: flex-start; gap: 10px; padding: 0; border-left: 0; }
  .lang-switch a { display: grid; place-items: center; width: 46px; height: 42px; border: 1px solid var(--line); border-radius: 999px; }
  .lang-switch span { color: var(--ink-soft); }
  .territory-grid, .story-grid, .careers-grid { grid-template-columns: 1fr; }
  .careers-copy { position: static; max-width: 760px; }
  .territory-copy { max-width: 760px; }
  .photo-collage { min-height: 650px; }
  .story-copy { order: -1; }
  .gallery-intro { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .map-wrap iframe { min-height: 480px; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1180px); --radius: 16px; }
  html { scroll-padding-top: 72px; }
  .section { padding: 74px 0; }
  .site-header { height: 70px; }
  .site-header.scrolled { height: 66px; }
  .header-inner { gap: 12px; }
  .brand-main { font-size: 1.75rem; }
  .brand-sub { font-size: .76rem; }
  .menu-toggle { width: 43px; height: 43px; }
  .nav-wrap { width: min(92vw, 390px); padding: 92px 20px max(24px, env(safe-area-inset-bottom)); }
  .nav a { min-height: 52px; font-size: .8rem; }
  .nav .btn { min-height: 54px; }
  .site-header .header-book { display: none; }
  .hero { min-height: max(720px, 100svh); }
  .hero-content { padding-top: 130px; padding-bottom: 94px; }
  .hero-title { font-size: clamp(3.2rem, 16vw, 5.2rem); }
  .hero-copy { margin-top: 22px; font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-scroll { display: none; }
  .photo-collage { min-height: 480px; }
  .photo-card.one { width: 78%; height: 64%; }
  .photo-card.two { width: 55%; height: 43%; }
  .photo-card.three { width: 42%; height: 28%; border-width: 6px; }
  .story-moment { width: 82%; }
  .gallery-grid { gap: 12px; }
  .gallery-item, .gallery-item:nth-child(n) { grid-column: 1 / -1; min-height: 300px; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) { min-height: 390px; }
  .gallery-item:nth-child(7) { min-height: 0; aspect-ratio: 4 / 3; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full, .form-consent.full { grid-column: auto; }
  .career-form-card { padding: 28px 18px; border-radius: 20px; }
  .careers-note { padding: 18px; }
  .form-submit { width: 100%; }
  .visit-card { border-radius: 20px; }
  .visit-copy { padding: 42px 24px; }
  .map-wrap iframe { min-height: 390px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { justify-content: flex-start; gap: 12px 18px; }
  .site-footer { padding: 44px 0 94px; }
  .mobile-book {
    position: fixed;
    z-index: 900;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 150px;
    min-height: 52px;
    padding: 12px 22px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    background: var(--berry);
    color: white;
    text-decoration: none;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
    box-shadow: 0 16px 40px rgba(105,14,32,.34);
  }
}

@media (max-width: 390px) {
  .brand-sub { display: none; }
  .nav-wrap { width: 94vw; }
  .section-title { font-size: clamp(2rem, 11vw, 3.2rem); }
  .mobile-book { right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); min-width: 138px; min-height: 50px; padding-inline: 18px; }
}

/* Mobile navigation v4 — full-screen, spacious and conversion-oriented */
.mobile-menu-head,
.mobile-menu-actions,
.mobile-menu-bottom,
.nav-number,
.nav-arrow,
.nav-text small { display: none; }
.nav-text strong { font: inherit; }

@media (max-width: 1140px) {
  body.menu-open { overflow: hidden; touch-action: none; }

  .menu-open .site-header {
    height: 82px;
    color: var(--ink);
    background: rgba(246,241,232,.96);
    border-bottom: 1px solid rgba(38,48,41,.1);
    box-shadow: none;
    backdrop-filter: blur(18px);
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.22);
  }
  .menu-open .menu-toggle {
    border-color: rgba(38,48,41,.12);
    background: rgba(255,255,255,.72);
    box-shadow: 0 9px 25px rgba(31,45,35,.09);
  }

  .menu-backdrop { background: transparent; }

  .nav-wrap {
    inset: 0;
    width: 100%;
    height: 100dvh;
    padding: 116px max(26px, calc((100vw - 900px) / 2)) max(28px, env(safe-area-inset-bottom));
    gap: 24px;
    overflow-y: auto;
    color: var(--ink);
    background:
      radial-gradient(circle at 92% 8%, rgba(170,32,54,.12), transparent 28%),
      radial-gradient(circle at 7% 88%, rgba(88,115,91,.14), transparent 32%),
      var(--paper);
    box-shadow: none;
    transform: translateY(-18px) scale(.985);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .36s cubic-bezier(.22,.8,.24,1), opacity .28s ease, visibility .36s ease;
  }
  .nav-wrap::before {
    content: 'M';
    position: fixed;
    right: -30px;
    bottom: -90px;
    z-index: -1;
    font-family: 'Lobster Two', Georgia, serif;
    font-size: clamp(17rem, 48vw, 34rem);
    line-height: .8;
    color: rgba(88,115,91,.045);
    pointer-events: none;
  }
  .menu-open .nav-wrap {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu-head {
    display: block;
    max-width: 720px;
    animation: menuItemIn .45s .04s both;
  }
  .mobile-menu-kicker {
    display: block;
    margin-bottom: 4px;
    color: var(--berry);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .19em;
    text-transform: uppercase;
  }
  .mobile-menu-head p {
    margin: 0;
    font-family: 'Lobster Two', Georgia, serif;
    font-size: clamp(2.15rem, 5vw, 3.4rem);
    line-height: 1.05;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    width: 100%;
    max-width: 900px;
    align-items: stretch;
  }
  .nav a:not(.btn) {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 12px;
    min-height: 92px;
    padding: 17px 18px;
    border: 1px solid rgba(38,48,41,.12);
    border-radius: 18px;
    background: rgba(255,253,248,.72);
    box-shadow: 0 7px 24px rgba(31,45,35,.035);
    font-size: inherit;
    letter-spacing: normal;
    text-transform: none;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
    animation: menuItemIn .48s both;
  }
  .nav a:not(.btn):nth-child(1) { animation-delay: .07s; }
  .nav a:not(.btn):nth-child(2) { animation-delay: .10s; }
  .nav a:not(.btn):nth-child(3) { animation-delay: .13s; }
  .nav a:not(.btn):nth-child(4) { animation-delay: .16s; }
  .nav a:not(.btn):nth-child(5) { animation-delay: .19s; }
  .nav a:not(.btn)::before,
  .nav a:not(.btn)::after { display: none; }
  .nav a:not(.btn):hover,
  .nav a:not(.btn):focus-visible {
    transform: translateY(-2px);
    border-color: rgba(170,32,54,.34);
    background: var(--white);
    box-shadow: 0 14px 34px rgba(31,45,35,.08);
  }
  .nav-number {
    display: block;
    align-self: start;
    padding-top: 4px;
    color: var(--berry);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .12em;
  }
  .nav-text { display: grid; gap: 3px; min-width: 0; }
  .nav-text strong {
    display: block;
    font-size: clamp(1.02rem, 2vw, 1.2rem);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -.02em;
  }
  .nav-text small {
    display: block;
    color: var(--ink-soft);
    font-size: .72rem;
    line-height: 1.35;
    font-weight: 500;
  }
  .nav-arrow {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(170,32,54,.08);
    color: var(--berry);
    font-size: .9rem;
    transition: transform .22s ease, background .22s ease;
  }
  .nav a:hover .nav-arrow { transform: translate(2px,-2px); background: rgba(170,32,54,.14); }
  .nav .header-book { display: none; }

  .mobile-menu-actions {
    display: grid;
    grid-template-columns: minmax(240px, .72fr) minmax(320px, 1.28fr);
    gap: 13px;
    width: 100%;
    max-width: 900px;
    animation: menuItemIn .5s .22s both;
  }
  .mobile-menu-book {
    width: 100%;
    min-height: 68px;
    justify-content: space-between;
    padding-inline: 24px;
    border-radius: 17px;
    font-size: .8rem;
  }
  .mobile-menu-book span { font-size: 1.25rem; }
  .mobile-menu-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 13px;
  }
  .mobile-menu-contact a {
    display: grid;
    align-content: center;
    min-height: 68px;
    padding: 12px 18px;
    border: 1px solid rgba(38,48,41,.12);
    border-radius: 17px;
    background: rgba(255,253,248,.66);
    text-decoration: none;
  }
  .mobile-menu-contact span {
    color: var(--ink-soft);
    font-size: .63rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
  }
  .mobile-menu-contact strong { font-size: .88rem; line-height: 1.3; }

  .mobile-menu-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 900px;
    padding-top: 4px;
    animation: menuItemIn .5s .27s both;
  }
  .mobile-menu-bottom .lang-switch {
    display: flex;
    gap: 7px;
    padding: 0;
    border: 0;
  }
  .mobile-menu-bottom .lang-switch a {
    display: grid;
    place-items: center;
    width: auto;
    min-width: 86px;
    height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(38,48,41,.13);
    border-radius: 999px;
    background: rgba(255,255,255,.45);
    color: var(--ink);
    opacity: .55;
    font-size: .68rem;
  }
  .mobile-menu-bottom .lang-switch a.active {
    border-color: var(--leaf-dark);
    background: var(--leaf-dark);
    color: white;
    opacity: 1;
  }
  .mobile-menu-address {
    color: var(--ink-soft);
    font-size: .7rem;
    font-weight: 600;
  }

  @keyframes menuItemIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: none; }
  }
}

@media (max-width: 720px) {
  .menu-open .site-header { height: 76px; }
  .nav-wrap {
    padding: 96px 18px max(24px, env(safe-area-inset-bottom));
    gap: 19px;
  }
  .mobile-menu-head p { font-size: clamp(2.05rem, 10vw, 2.85rem); }
  .nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .nav a:not(.btn) {
    grid-template-columns: 30px minmax(0, 1fr) 28px;
    min-height: 78px;
    padding: 14px 15px;
    border-radius: 16px;
  }
  .nav-text strong { font-size: 1.02rem; }
  .nav-text small { font-size: .69rem; }
  .mobile-menu-actions { grid-template-columns: 1fr; gap: 10px; }
  .mobile-menu-book { min-height: 61px; border-radius: 15px; }
  .mobile-menu-contact { gap: 10px; }
  .mobile-menu-contact a { min-height: 61px; padding: 10px 14px; border-radius: 15px; }
  .mobile-menu-contact strong { font-size: .78rem; }
  .mobile-menu-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-top: 0;
  }
  .mobile-menu-address { padding-left: 2px; }
}

@media (max-width: 390px) {
  .nav-wrap { padding-inline: 14px; gap: 16px; }
  .mobile-menu-head p { font-size: 2rem; }
  .nav a:not(.btn) { min-height: 72px; padding: 12px 13px; }
  .nav-text small { display: none; }
  .mobile-menu-contact strong { font-size: .72rem; }
}

@media (max-width: 1140px) {
  .menu-open .brand { position: relative; z-index: 1012; }
}

@media (max-width: 390px) {
  .nav a:not(.btn) { min-height: 78px; }
  .nav-text small { display: block; font-size: .64rem; }
}
