:root {
  --ink: #17312a;
  --muted: #64726d;
  --pine: #1f493c;
  --pine-2: #2f6655;
  --sage: #dce7df;
  --paper: #f6f3ec;
  --white: #ffffff;
  --gold: #b5945d;
  --line: rgba(23, 49, 42, .15);
  --shadow: 0 24px 60px rgba(23, 49, 42, .13);
  --radius: 26px;
  --shell: min(1240px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  overflow-x: hidden;
}
body.menu-open, body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 96px 0; }
.section.compact { padding: 70px 0; }
.surface { background: var(--white); }
.soft { background: #e9eee8; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--pine-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.06; }
h1 { font-size: clamp(44px, 7vw, 92px); }
h2 { font-size: clamp(34px, 4.6vw, 62px); }
h3 { font-size: clamp(24px, 2.3vw, 34px); }
p { margin: 0; }
.lead { max-width: 820px; color: #40534d; font-size: clamp(18px, 2vw, 24px); line-height: 1.55; }
.prose { max-width: 840px; }
.prose p + p { margin-top: 18px; }
.prose ul, .prose ol { padding-left: 22px; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}
.section-head p:not(.eyebrow) { max-width: 560px; color: var(--muted); font-size: 17px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--pine-2); font-weight: 800; }
.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--pine);
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--pine-2); }
.button.light { background: var(--white); color: var(--ink); }
.button.outline { border-color: rgba(255,255,255,.55); background: rgba(15,35,29,.18); backdrop-filter: blur(12px); }
.button.ghost { border-color: var(--line); background: transparent; color: var(--ink); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 84px;
  border-bottom: 1px solid rgba(23, 49, 42, .1);
  background: rgba(246, 243, 236, .94);
  backdrop-filter: blur(18px);
}
.header-inner { display: grid; min-height: 84px; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
.brand-lockup { display: flex; min-width: 310px; align-items: center; gap: 18px; }
.hotel-logo { width: 230px; height: auto; }
.stayget-lockup { display: flex; min-width: 96px; flex-direction: column; align-items: center; gap: 2px; border-left: 1px solid var(--line); padding-left: 16px; }
.stayget-lockup img { width: 86px; height: auto; }
.stayget-lockup small { color: var(--muted); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 22px; }
.desktop-nav a { font-size: 14px; font-weight: 750; white-space: nowrap; }
.desktop-nav a:hover { color: var(--pine-2); }
.header-phone { display: flex; flex-direction: column; text-align: right; font-weight: 850; white-space: nowrap; }
.header-phone small { color: var(--muted); font-size: 11px; font-weight: 600; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 4px auto; background: var(--ink); }

.mobile-menu {
  position: fixed;
  z-index: 150;
  inset: 0;
  display: grid;
  visibility: hidden;
  background: rgba(11, 29, 23, .46);
  opacity: 0;
  transition: opacity .22s ease, visibility .22s ease;
}
.mobile-menu.is-open { visibility: visible; opacity: 1; }
.mobile-menu-panel {
  width: min(440px, 91vw);
  height: 100%;
  margin-left: auto;
  padding: 26px;
  overflow-y: auto;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform .24s ease;
}
.mobile-menu.is-open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.mobile-menu-head img { width: 210px; }
.menu-close { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 28px; line-height: 1; }
.mobile-nav { display: grid; margin: 22px 0; }
.mobile-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font: 500 26px/1.15 Georgia, serif; }
.mobile-contacts { display: grid; gap: 10px; }
.mobile-contacts .button { width: 100%; }
.mobile-email { padding: 12px 0 0; text-align: center; font-weight: 750; overflow-wrap: anywhere; }

.hero { position: relative; min-height: 720px; color: var(--white); overflow: hidden; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.hero-shade { background: linear-gradient(90deg, rgba(8,27,21,.82) 0%, rgba(8,27,21,.47) 48%, rgba(8,27,21,.1) 75%), linear-gradient(0deg, rgba(8,27,21,.55), transparent 45%); }
.hero-content { position: relative; z-index: 2; display: flex; min-height: 720px; max-width: 760px; flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 76px 150px; }
.hero .eyebrow { color: #dce8d7; }
.hero h1 { max-width: 740px; }
.hero p:not(.eyebrow) { max-width: 650px; margin-top: 24px; color: rgba(255,255,255,.88); font-size: clamp(18px,2vw,24px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-facts span { padding: 8px 13px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: rgba(255,255,255,.09); font-size: 13px; font-weight: 750; backdrop-filter: blur(10px); }

.booking-zone { position: relative; z-index: 5; margin-top: -98px; }
.booking-card { padding: 32px; border: 1px solid rgba(23,49,42,.1); border-radius: 30px; background: var(--white); box-shadow: var(--shadow); }
.booking-intro { display: grid; grid-template-columns: 1fr minmax(240px, 420px); align-items: end; gap: 24px; margin-bottom: 22px; }
.booking-intro h2 { font-size: clamp(32px,4vw,50px); }
.booking-intro p { color: var(--muted); }
.booking-host { min-height: 370px; }

.hotel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hotel-card { position: relative; min-height: 560px; overflow: hidden; border-radius: var(--radius); color: var(--white); }
.hotel-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.hotel-card:hover > img { transform: scale(1.03); }
.hotel-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(9,31,24,.9), rgba(9,31,24,.08) 75%); }
.hotel-card-content { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 36px; }
.hotel-card small { display: inline-flex; margin-bottom: 12px; color: #e8efe9; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hotel-card p { max-width: 590px; margin: 14px 0 24px; color: rgba(255,255,255,.84); }

.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 50px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--line); }
.fact { min-height: 150px; padding: 26px; background: var(--paper); }
.fact b { display: block; margin-bottom: 8px; font: 500 clamp(30px,3vw,46px)/1 Georgia,serif; }
.fact span { color: var(--muted); }

.room-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.room-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.room-card-image { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--sage); }
.room-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room-card:hover img { transform: scale(1.035); }
.photo-count { position: absolute; right: 12px; bottom: 12px; padding: 6px 10px; border-radius: 999px; background: rgba(12,30,24,.75); color: #fff; font-size: 12px; font-weight: 800; backdrop-filter: blur(8px); }
.room-card-body { padding: 24px; }
.room-card-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; color: var(--pine-2); font-size: 13px; font-weight: 800; }
.room-card h3 { font-size: 29px; }
.room-card p { margin: 14px 0 18px; color: var(--muted); }
.room-card .button { width: 100%; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.feature-icon { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 24px; border-radius: 50%; background: var(--sage); font-size: 23px; }
.feature-card h3 { font-size: 27px; }
.feature-card p { margin-top: 12px; color: var(--muted); }

.split { display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 70px; }
.split.reverse { grid-template-columns: .94fr 1.06fr; }
.split-media { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.split-media img { width: 100%; height: 100%; min-height: 230px; object-fit: cover; border-radius: 18px; }
.split-media img:first-child { grid-row: span 2; min-height: 480px; }
.split-copy p:not(.eyebrow) { margin-top: 22px; color: var(--muted); font-size: 18px; }
.split-copy .button { margin-top: 28px; }
.tick-list { display: grid; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.tick-list li { position: relative; padding-left: 28px; }
.tick-list li::before { position: absolute; top: 0; left: 0; color: var(--pine-2); content: "✓"; font-weight: 900; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 12px; }
.gallery-button { position: relative; padding: 0; overflow: hidden; border: 0; border-radius: 16px; background: var(--sage); cursor: zoom-in; }
.gallery-button:nth-child(7n+1), .gallery-button:nth-child(11n+4) { grid-column: span 2; grid-row: span 2; }
.gallery-button img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-button:hover img { transform: scale(1.04); }

.location-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 24px; }
.map-shell { position: relative; min-height: 540px; overflow: hidden; border-radius: 24px; background: #d8e0d7; }
.map-shell iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-shield { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; height: 54px; background: transparent; cursor: default; }
.contact-card { display: flex; flex-direction: column; justify-content: space-between; padding: 34px; border-radius: 24px; background: var(--pine); color: #fff; }
.contact-card p { margin: 18px 0 28px; color: rgba(255,255,255,.76); }
.contact-list { display: grid; gap: 14px; }
.contact-list a, .contact-list span { overflow-wrap: anywhere; }
.contact-card .button { width: 100%; margin-top: 10px; }

.reviews-shell { position: relative; height: 650px; max-width: 920px; margin-inline: auto; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--white); }
.reviews-shell iframe { width: 100%; height: calc(100% + 24px); border: 0; pointer-events: none; }
.reviews-blocker { position: absolute; z-index: 3; inset: 0; cursor: default; }

.page-hero { position: relative; min-height: 500px; color: var(--white); overflow: hidden; }
.page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(9,30,23,.82), rgba(9,30,23,.22)), linear-gradient(0deg, rgba(9,30,23,.55), transparent 55%); }
.page-hero .shell { position: relative; z-index: 2; display: flex; min-height: 500px; flex-direction: column; align-items: flex-start; justify-content: end; padding-bottom: 72px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; color: rgba(255,255,255,.8); font-size: 13px; }
.page-hero p:not(.eyebrow) { max-width: 720px; margin-top: 18px; color: rgba(255,255,255,.84); font-size: 20px; }
.room-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); gap: 54px; }
.room-copy h2 { margin-bottom: 24px; }
.room-copy p { color: #40534d; font-size: 18px; }
.room-sticky { position: sticky; top: 112px; align-self: start; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: 0 14px 35px rgba(23,49,42,.08); }
.room-sticky h2 { font-size: 34px; }
.room-sticky .meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 15px 0 22px; }
.room-sticky .meta span { padding: 7px 10px; border-radius: 999px; background: var(--sage); font-size: 13px; font-weight: 800; }
.room-sticky .button { width: 100%; }
.equipment { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 34px; padding: 0; list-style: none; }
.equipment li { padding: 16px 16px 16px 42px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); position: relative; }
.equipment li::before { position: absolute; top: 15px; left: 16px; color: var(--pine-2); content: "✓"; font-weight: 900; }
.room-gallery { margin-top: 70px; }

.legal-wrap { display: grid; grid-template-columns: minmax(210px, .3fr) minmax(0, 1fr); gap: 50px; padding-block: 70px 110px; }
.legal-nav { position: sticky; top: 110px; align-self: start; display: grid; gap: 8px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.legal-nav a { padding: 10px 12px; border-radius: 10px; font-weight: 750; }
.legal-nav a:hover { background: var(--sage); }
.legal-content { min-width: 0; }
.legal-content h1 { margin-bottom: 12px; font-size: clamp(40px,5vw,66px); }
.legal-content h2 { margin: 48px 0 16px; font-size: 32px; }
.legal-content h3 { margin: 30px 0 12px; font-size: 24px; }
.legal-content p, .legal-content li { color: #40534d; }
.legal-content p + p { margin-top: 15px; }
.legal-content ul, .legal-content ol { padding-left: 24px; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 22px 0; }
.legal-content td, .legal-content th { padding: 13px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-content td:first-child { width: 34%; font-weight: 800; }
.doc-note { margin: 24px 0; padding: 20px; border-left: 4px solid var(--gold); border-radius: 0 14px 14px 0; background: #efe9dc; }

.cta { padding: 42px; border-radius: 28px; background: var(--pine); color: var(--white); }
.cta-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; }
.cta h2 { font-size: clamp(34px,4vw,54px); }
.cta p { max-width: 650px; margin-top: 14px; color: rgba(255,255,255,.75); }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }

.site-footer { padding: 66px 0 110px; background: #102a22; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .75fr .75fr .8fr; gap: 42px; }
.footer-brand .hotel-logo { width: 260px; }
.footer-brand p { max-width: 360px; margin-top: 18px; color: rgba(255,255,255,.65); }
.footer-col strong { display: block; margin-bottom: 16px; color: #dce8d7; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.footer-col { display: grid; align-content: start; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.78); overflow-wrap: anywhere; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.55); font-size: 13px; }

.floating-contacts { position: fixed; z-index: 90; right: 18px; bottom: 22px; display: grid; gap: 10px; }
.floating-contacts a { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; background: var(--pine); color: white; box-shadow: 0 10px 25px rgba(15,41,32,.25); font-weight: 900; }
.floating-contacts a:nth-child(2) { background: #1f6fc7; }
.floating-contacts a:nth-child(3) { background: #111; }

.cookie-banner { position: fixed; z-index: 200; right: 18px; bottom: 18px; left: 18px; display: none; width: min(820px, calc(100vw - 36px)); margin-inline: auto; padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow); }
.cookie-banner.is-visible { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px; }
.cookie-banner p { color: var(--muted); font-size: 14px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-actions button { min-height: 42px; padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; font-weight: 800; }
.cookie-actions button:first-child { border-color: var(--pine); background: var(--pine); color: #fff; }

.lightbox { position: fixed; z-index: 250; inset: 0; display: none; place-items: center; padding: 30px; background: rgba(6,18,14,.94); }
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(1400px, 96vw); max-height: 90vh; border-radius: 12px; object-fit: contain; }
.lightbox-close { position: absolute; top: 18px; right: 22px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: rgba(0,0,0,.25); color: #fff; font-size: 30px; cursor: pointer; }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: block; }
  .room-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 30px, 720px); --radius: 20px; }
  .section { padding: 72px 0; }
  .header-inner { min-height: 74px; gap: 10px; }
  .site-header { min-height: 74px; }
  .brand-lockup { min-width: 0; gap: 10px; }
  .hotel-logo { width: 178px; }
  .stayget-lockup { min-width: 72px; padding-left: 9px; }
  .stayget-lockup img { width: 66px; }
  .stayget-lockup small { font-size: 6px; }
  .header-phone { display: none; }
  .hero, .hero-content { min-height: 650px; }
  .hero-content { padding-block: 64px 130px; }
  .hero h1 { font-size: clamp(43px,12vw,68px); }
  .booking-zone { margin-top: -78px; }
  .booking-card { padding: 20px 14px; border-radius: 22px; }
  .booking-intro { grid-template-columns: 1fr; padding-inline: 8px; }
  .hotel-grid, .split, .split.reverse, .location-grid, .room-layout, .legal-wrap { grid-template-columns: 1fr; }
  .hotel-card { min-height: 480px; }
  .facts { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .split { gap: 36px; }
  .split.reverse .split-media { order: -1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .room-sticky { position: static; order: -1; }
  .legal-nav { position: static; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner.is-visible { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .brand-lockup { gap: 7px; }
  .hotel-logo { width: 148px; }
  .stayget-lockup { padding-left: 7px; }
  .stayget-lockup img { width: 56px; }
  .hero { min-height: 620px; }
  .hero-content { min-height: 620px; padding-bottom: 115px; }
  .hero-actions .button { width: 100%; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .room-grid, .feature-grid, .facts { grid-template-columns: 1fr; }
  .hotel-card-content { padding: 24px; }
  .fact { min-height: 120px; }
  .split-media { grid-template-columns: 1fr; }
  .split-media img, .split-media img:first-child { grid-row: auto; min-height: 250px; }
  .gallery-grid { grid-auto-rows: 145px; }
  .gallery-button:nth-child(7n+1), .gallery-button:nth-child(11n+4) { grid-column: span 2; grid-row: span 2; }
  .equipment { grid-template-columns: 1fr; }
  .cta { padding: 28px 22px; }
  .cta-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .floating-contacts { right: 10px; bottom: 12px; }
  .floating-contacts a { width: 46px; height: 46px; }
  .cookie-banner { right: 10px; bottom: 10px; left: 10px; width: calc(100vw - 20px); }
  .cookie-actions { display: grid; }
  .booking-host { min-height: 430px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* SOFRINO-UI-FIX-BEGIN */
.site-header .header-inner{gap:20px}
.site-header .desktop-nav{gap:16px}
.site-header .brand-lockup{min-width:0}
.site-header .stayget-lockup{min-width:0;flex-shrink:0}
.site-header .stayget-lockup img{width:144px;height:auto}
.site-header .stayget-lockup small{display:none}
@media(max-width:1240px){
 .site-header .desktop-nav{display:none}
 .site-header .menu-toggle{display:block}
 .site-header .header-inner{grid-template-columns:minmax(0,1fr) auto auto}
}
@media(max-width:820px){
 .site-header .header-inner{grid-template-columns:minmax(0,1fr) auto;gap:10px}
 .site-header .stayget-lockup img{width:108px}
}
@media(max-width:560px){.site-header .stayget-lockup img{width:96px}}
@media(max-width:360px){
 .site-header .hotel-logo{width:124px}
 .site-header .stayget-lockup img{width:82px}
}
/* SOFRINO-UI-FIX-END */
