/* Základní vzhled webu. Vlastní změny patří do vlastni.css. */
:root {
  --ink:#202c25;
  --green:#173d2d;
  --green-light:#ebf1ec;
  --gold:#d6af65;
  --paper:#fff;
  --wash:#f6f7f3;
  --line:#d8ded6;
  --muted:#566258;
  --radius:5px;
  --body-font:Arial,Helvetica,sans-serif;
  --heading-font:Georgia,'Times New Roman',serif;
  --content-width:1200px;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:2rem;
}

body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--body-font);
  font-size:1rem;
  line-height:1.65;
}

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

a {
  color:inherit;
  text-underline-offset:5px;
}

a:hover {
  color:#477253;
}

button,input,textarea,select {
  font:inherit;
}

button,a,input,textarea,select {
  -webkit-tap-highlight-color:transparent;
}

button {
  cursor:pointer;
}

a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible {
  outline:3px solid #a77318;
  outline-offset:4px;
}

h1,h2,h3,h4,p {
  margin:0 0 1rem;
}

h1,h2 {
  font-family:var(--heading-font);
  font-weight:400;
  line-height:1.08;
  letter-spacing:-.035em;
}

h1 {
  font-size:clamp(2.65rem,5.3vw,5.3rem);
}

h2 {
  font-size:clamp(2rem,3.4vw,3.4rem);
}

h3 {
  font-size:1.3rem;
  line-height:1.35;
}

h4 {
  font-size:1rem;
  line-height:1.5;
  margin-bottom:.25rem;
}

.wrap {
  width:min(var(--content-width),calc(100% - 80px));
  margin-inline:auto;
}

.small,small {
  font-size:.875rem;
  line-height:1.6;
}

.muted {
  color:var(--muted);
}

.eyebrow {
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.8rem;
  font-weight:700;
  margin-bottom:1.2rem;
}

.lead {
  font-size:1.2rem;
  max-width:720px;
  color:var(--muted);
}

.topline {
  background:var(--green);
  color:white;
  font-size:.875rem;
}

.topline .wrap {
  display:flex;
  justify-content:space-between;
  padding-block:9px;
  gap:1rem;
}

.topline a {
  text-decoration:none;
}

.site-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
  min-height:104px;
}

.brand {
  width:228px;
  flex-shrink:0;
}

.brand img {
  width:100%;
  height:auto;
}

.site-header nav {
  display:flex;
  align-items:center;
  gap:1.5rem;
}

.site-header nav a {
  font-size:.94rem;
  text-decoration:none;
}

.site-header nav a[aria-current] {
  text-decoration:underline;
  text-decoration-thickness:2px;
}

.button,button.outline {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 24px;
  background:var(--green);
  color:white;
  text-decoration:none;
  border:1px solid var(--green);
  border-radius:var(--radius);
  font-weight:600;
  line-height:1.5;
  min-height:48px;
}

.button:hover {
  background:#28543b;
  color:white;
}

.button.light {
  background:#fff;
  color:var(--green);
  border-color:#fff;
}

.small-button {
  padding:11px 18px;
}

.outline,button.outline {
  background:transparent;
  color:var(--green);
}

.text-link {
  font-weight:600;
  text-decoration:underline;
}

.nav-toggle {
  display:none;
}

.skip {
  position:absolute;
  top:-100px;
  left:20px;
  background:#fff;
  padding:15px;
  z-index:100;
}

.skip:focus {
  top:10px;
}

.hero {
  display:grid;
  grid-template-columns:44% 56%;
  min-height:570px;
  background:var(--green);
  color:#fff;
}

.hero-copy {
  padding:65px max(40px,calc((100vw - 1200px)/2));
  padding-right:40px;
}

.hero-copy .eyebrow {
  color:#e8c889;
}

.hero h1 {
  font-size:clamp(3.2rem,5vw,5.6rem);
  margin-bottom:1.6rem;
}

.hero-copy>p:not(.eyebrow) {
  max-width:390px;
  color:#e6eee7;
}

.hero-photo {
  position:relative;
  min-width:0;
}

.hero-photo img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  position:absolute;
}

.photo-caption {
  position:absolute;
  bottom:25px;
  left:25px;
  padding:8px 15px;
  background:#fff;
  color:var(--green);
  font-size:.875rem;
}

.actions {
  display:flex;
  gap:1.5rem;
  align-items:center;
  flex-wrap:wrap;
  margin-top:2rem;
}

.hero .text-link {
  color:#fff;
}

.quick-strip {
  display:flex;
  justify-content:space-between;
  gap:1.5rem;
  border-bottom:1px solid var(--line);
  padding-block:25px;
  font-size:.94rem;
}

.section {
  padding-block:80px;
}

.section-top {
  padding-top:25px;
}

.section-heading {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
  margin-bottom:25px;
}

.section-heading h2 {
  margin-bottom:0;
}

.section-heading .eyebrow {
  margin-bottom:.7rem;
}

.daily-list {
  border-top:2px solid var(--green);
}

.daily-row {
  display:grid;
  grid-template-columns:150px 1fr auto;
  gap:30px;
  padding:25px 0;
  border-bottom:1px solid var(--line);
}

.daily-row h3 {
  font-family:Georgia,serif;
  font-size:1.5rem;
  font-weight:400;
  margin-bottom:8px;
}

.daily-row p {
  margin-bottom:8px;
}

.day {
  font-size:.94rem;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
}

.day b {
  background:var(--green-light);
  color:var(--green);
  padding:3px 10px;
  font-size:.8rem;
}

.soup {
  color:var(--muted);
  font-size:.94rem;
}

.price {
  white-space:nowrap;
  font-size:1.1rem;
}

.empty {
  padding:30px 0;
}

.split-section {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
  margin-bottom:85px;
}

.split-section>img {
  width:100%;
  aspect-ratio:1.15;
  object-fit:cover;
  border-radius:var(--radius);
}

.split-section.reverse>img {
  order:2;
}

.split-section p {
  max-width:480px;
}

.split-section .button {
  margin-top:1rem;
}

.page-intro {
  padding-top:60px;
  padding-bottom:40px;
}

.page-intro h1 {
  max-width:960px;
}

.banner-image img {
  width:100%;
  max-height:470px;
  object-fit:cover;
}

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

.card {
  padding:30px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  overflow-wrap:anywhere;
}

.card h2 {
  font-size:2rem;
}

.card h3 {
  font-family:Georgia,serif;
  font-size:1.6rem;
  font-weight:400;
}

.card small {
  display:block;
}

.rooms {
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.rooms .card {
  padding:25px;
}

.room-price {
  font-size:1.8rem;
  font-family:Georgia,serif;
  margin-block:25px;
}

.room-price small {
  font-family:Arial,sans-serif;
  color:var(--muted);
}

.room-gallery {
  display:grid;
  grid-template-columns:2fr 1fr;
  grid-template-rows:220px 220px;
  gap:15px;
}

.room-gallery img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.room-gallery img:first-child {
  grid-row:span 2;
}

.notice {
  background:var(--green-light);
  padding:20px 25px;
  border-left:3px solid var(--green);
  margin-top:25px;
}

.menu-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px 70px;
}

.menu-category>h3 {
  font-family:Georgia,serif;
  font-size:1.8rem;
  border-bottom:2px solid var(--green);
  padding-bottom:15px;
}

.dish {
  display:flex;
  gap:20px;
  justify-content:space-between;
  padding:15px 0;
  border-bottom:1px solid var(--line);
}

.dish p {
  margin-bottom:0;
}

.space {
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
}

.space img {
  width:100%;
  height:250px;
  object-fit:cover;
}

.space>div {
  padding:28px;
}

.space h2 {
  font-size:2.1rem;
}

.space .eyebrow {
  margin-bottom:12px;
}

.contact-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:90px;
}

.contact-link {
  font-family:Georgia,serif;
  font-size:2rem;
}

.hours-box {
  background:var(--wash);
  padding:35px;
}

.hours {
  margin:20px 0;
}

.hours>div {
  display:flex;
  justify-content:space-between;
  padding:9px 0;
  border-bottom:1px solid var(--line);
  gap:20px;
}

.hours dd {
  margin:0;
  font-weight:600;
}

.booking {
  display:flex;
  flex-direction:column;
}

.booking .button {
  margin-top:auto;
  margin-bottom:12px;
}

.number {
  font-family:Georgia,serif;
  font-size:2.5rem;
  color:#65806a;
  margin-bottom:20px;
}

.closing {
  margin-top:60px;
  padding:45px 0;
  background:var(--green);
  color:#fff;
}

.closing .wrap {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
}

.closing h2 {
  font-size:2.5rem;
  margin-bottom:0;
}

.closing .eyebrow {
  color:#e8c889;
  margin-bottom:10px;
}

.footer {
  padding-block:45px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
  font-size:.94rem;
}

.footer nav {
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  align-content:start;
  justify-content:flex-end;
}

.footer p {
  margin-bottom:4px;
}

.footer>small {
  grid-column:span 2;
  color:var(--muted);
}

.prose {
  max-width:800px;
}

.prose h2 {
  font-size:1.8rem;
  margin-top:30px;
}

@media(min-width:1500px) {
  .hero {
    grid-template-columns:45% 55%;
  }
  .hero-copy {
    padding-right:70px;
  }
}

@media(max-width:1000px) {
  .wrap {
    width:calc(100% - 48px);
  }
  .site-header {
    gap:20px;
  }
  .site-header nav {
    gap:15px;
  }
  .brand {
    width:190px;
  }
  .hero-copy {
    padding:45px 30px;
  }
  .hero {
    min-height:510px;
  }
  .cards.rooms {
    grid-template-columns:repeat(2,1fr);
  }
  .split-section {
    gap:40px;
  }
  .contact-grid {
    gap:35px;
  }
  .cards {
    gap:15px;
  }
  .card {
    padding:22px;
  }
  .hero .actions {
    gap:20px;
  }
  .menu-grid {
    gap:30px;
  }
}

@media(max-width:760px) {
  .wrap {
    width:calc(100% - 36px);
  }
  .topline .wrap {
    font-size:.8rem;
  }
  .topline span {
    display:none;
  }
  .site-header {
    min-height:85px;
    position:relative;
    flex-wrap:wrap;
    padding-block:15px;
  }
  .brand {
    width:195px;
  }
  .js .nav-toggle {
    display:block;
    border:1px solid var(--line);
    background:white;
    border-radius:4px;
    padding:8px 14px;
    min-height:44px;
  }
  .site-header nav {
    display:flex;
    flex-direction:column;
    align-items:stretch;
    width:100%;
    gap:0;
    padding-bottom:12px;
  }
  .js .site-header nav {
    display:none;
  }
  .js .site-header nav.is-open {
    display:flex;
  }
  .site-header nav a {
    padding:12px;
  }
  .hero {
    display:flex;
    flex-direction:column;
    min-height:0;
  }
  .hero-copy {
    padding:40px 25px;
  }
  .hero h1 {
    font-size:3.5rem;
  }
  .hero-photo {
    height:290px;
  }
  .photo-caption {
    left:18px;
    bottom:18px;
  }
  .quick-strip {
    flex-wrap:wrap;
    justify-content:center;
    font-size:.875rem;
    text-align:center;
    gap:8px 20px;
  }
  .section {
    padding-block:50px;
  }
  .section-heading {
    align-items:flex-start;
    gap:20px;
    flex-direction:column;
  }
  .daily-row {
    grid-template-columns:1fr auto;
    gap:12px;
  }
  .daily-row .day {
    grid-column:span 2;
    flex-direction:row;
    align-items:center;
  }
  .daily-row h3 {
    font-size:1.3rem;
  }
  .split-section {
    grid-template-columns:1fr;
    gap:25px;
    margin-bottom:55px;
  }
  .split-section>img {
    aspect-ratio:1.4;
  }
  .split-section.reverse>img {
    order:0;
  }
  .cards,.cards.rooms,.menu-grid,.contact-grid {
    grid-template-columns:1fr;
  }
  .room-gallery {
    grid-template-rows:240px 160px;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }
  .room-gallery img:first-child {
    grid-row:1;
    grid-column:span 2;
  }
  .page-intro {
    padding-top:35px;
    padding-bottom:25px;
  }
  .page-intro h1 {
    font-size:2.8rem;
  }
  .cards.rooms {
    grid-template-columns:1fr 1fr;
  }
  .rooms .card {
    padding:20px;
  }
  .rooms .card h3 {
    font-size:1.35rem;
  }
  .room-price {
    font-size:1.5rem;
  }
  .space img {
    height:250px;
  }
  .closing .wrap {
    align-items:flex-start;
    flex-direction:column;
  }
  .closing h2 {
    font-size:2rem;
  }
  .footer {
    grid-template-columns:1fr;
  }
  .footer nav {
    justify-content:flex-start;
  }
  .footer>small {
    grid-column:1;
  }
  .hours-box {
    padding:25px;
  }
  .lead {
    font-size:1.1rem;
  }
}

@media(max-width:380px) {
  .cards.rooms {
    grid-template-columns:1fr;
  }
  .hero h1 {
    font-size:3rem;
  }
  .topline .wrap {
    gap:8px;
  }
  .price {
    font-size:1rem;
  }
}

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

@media print {
  .topline,.site-header,.closing,.footer,.skip,button {
    display:none!important;
  }
  .wrap {
    width:100%;
  }
  .section {
    padding-block:20px;
  }
  .menu-grid {
    gap:20px;
  }
  .dish,.daily-row {
    break-inside:avoid;
  }
  body {
    font-size:11pt;
  }
  .page-intro {
    padding-top:0;
  }
  h1 {
    font-size:28pt;
  }
  h2 {
    font-size:23pt;
  }
  a {
    text-decoration:none;
  }
}

/* Version 2: clear decisions, visible prices and shorter paths to booking. */
.hero {
  min-height:390px;
  grid-template-columns:52% 48%;
}

.hero-copy {
  padding:42px 38px 42px max(30px,calc((100vw - 1200px)/2));
}

.hero h1 {
  font-size:clamp(2.6rem,4vw,4.1rem);
  line-height:1.12;
}

.hero-copy>p:not(.eyebrow) {
  max-width:540px;
}

.hero-secondary {
  background:transparent;
  border-color:#fff;
  color:#fff;
}

.hero .actions {
  margin-top:1.4rem;
}

.intent-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-bottom:1px solid var(--line);
  gap:0;
}

.intent-grid>a {
  padding:23px 26px;
  text-decoration:none;
  border-right:1px solid var(--line);
}

.intent-grid>a:first-child {
  padding-left:0;
}

.intent-grid>a:last-child {
  border:0;
}

.intent-grid strong {
  display:block;
  font-size:1.2rem;
}

.intent-grid span {
  font-size:.94rem;
  color:var(--muted);
}

.intent-grid>a:hover {
  background:var(--wash);
}

.section {
  padding-block:50px;
}

.offer-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.offer-grid article {
  border:1px solid var(--line);
  border-radius:6px;
  overflow:hidden;
}

.offer-grid article>img {
  width:100%;
  height:230px;
  object-fit:cover;
}

.offer-grid article>div {
  padding:28px;
}

.offer-grid h2 {
  font-size:2.2rem;
}

.review-card {
  margin:0;
  padding:25px;
  background:var(--wash);
  border-top:2px solid var(--green);
  display:flex;
  flex-direction:column;
  gap:16px;
}

.review-card figcaption span {
  display:block;
  color:var(--muted);
  font-size:.875rem;
}

.review-card blockquote {
  margin:0;
  font-family:Georgia,serif;
  font-size:1.3rem;
  line-height:1.5;
}

.review-card blockquote p {
  margin:0;
}

.review-card>a {
  margin-top:auto;
  font-size:.875rem;
}

.reviews .cards {
  grid-template-columns:repeat(auto-fit,minmax(min(100%,250px),1fr));
}

.reviews .small {
  margin-top:15px;
}

.faq {
  display:grid;
  grid-template-columns:1fr 1.5fr;
  gap:45px;
}

.faq details {
  border-bottom:1px solid var(--line);
  padding-block:18px;
}

.faq summary {
  font-weight:600;
  cursor:pointer;
  line-height:1.5;
}

.faq details p {
  margin:14px 0 0;
  color:var(--muted);
}

.breadcrumb {
  display:flex;
  gap:12px;
  padding-top:16px;
  color:var(--muted);
  font-size:.875rem;
  flex-wrap:wrap;
}

.page-intro {
  padding-top:25px;
  padding-bottom:18px;
}

.page-intro h1 {
  font-size:clamp(2.3rem,4vw,3.7rem);
}

.page-intro .eyebrow {
  margin-bottom:12px;
}

.booking-actions {
  margin:0 0 15px;
}

.room-gallery {
  margin-top:10px;
}

.menu-tools {
  display:none;
  background:var(--wash);
  padding:20px;
  margin-top:20px;
}

.js .menu-tools {
  display:block;
}

.menu-tools label {
  font-weight:600;
  display:block;
  margin-bottom:8px;
}

.menu-tools input {
  width:100%;
  max-width:460px;
  padding:12px;
  border:1px solid #9bac9d;
  border-radius:4px;
  font-size:1rem;
}

.menu-tools p {
  margin:8px 0 0;
}

.category-nav {
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-block:20px 32px;
}

.category-nav a {
  font-size:.875rem;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:4px;
  text-decoration:none;
}

.category-nav a:hover {
  background:var(--green-light);
}

.dish[hidden],.menu-category[hidden] {
  display:none;
}

.mobile-actions {
  display:none;
}

.review-sources p {
  margin-top:20px;
}

.site-header nav {
  gap:1.15rem;
}

.site-header .brand {
  width:205px;
}

.closing {
  margin-top:35px;
}

.faq h2 {
  font-size:2.4rem;
}

.review-sources h2 {
  font-size:2.3rem;
}

@media(max-width:1000px) {
  .hero-copy {
    padding:35px 26px;
  }
  .site-header nav {
    gap:12px;
  }
  .site-header .brand {
    width:180px;
  }
  .site-header nav a {
    font-size:.875rem;
  }
  .intent-grid>a {
    padding:18px;
  }
  .offer-grid h2 {
    font-size:1.9rem;
  }
}

@media(max-width:760px) {
  body {
    padding-bottom:78px;
  }
  .hero {
    display:flex;
    min-height:0;
  }
  .hero-copy {
    padding:30px 20px;
  }
  .hero h1 {
    font-size:2.7rem;
  }
  .hero-photo {
    height:215px;
  }
  .hero .actions {
    gap:12px;
  }
  .hero .button {
    padding:12px 16px;
  }
  .intent-grid {
    grid-template-columns:1fr;
  }
  .intent-grid>a,.intent-grid>a:first-child {
    padding:14px 0;
    border-right:0;
    border-bottom:1px solid var(--line);
  }
  .intent-grid strong {
    font-size:1.06rem;
  }
  .intent-grid span {
    font-size:.875rem;
  }
  .offer-grid {
    grid-template-columns:1fr;
    gap:24px;
  }
  .offer-grid article>img {
    height:200px;
  }
  .offer-grid article>div {
    padding:23px;
  }
  .section {
    padding-block:35px;
  }
  .faq {
    grid-template-columns:1fr;
    gap:0;
  }
  .faq h2 {
    font-size:2rem;
  }
  .page-intro h1 {
    font-size:2.35rem;
  }
  .mobile-actions {
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    z-index:30;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    padding:10px 12px calc(10px + env(safe-area-inset-bottom));
    background:#fff;
    border-top:1px solid var(--line);
  }
  .mobile-actions a {
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px 7px;
    min-height:45px;
    border:1px solid var(--green);
    border-radius:4px;
    text-decoration:none;
    font-size:.875rem;
    font-weight:600;
    background:#fff;
    color:var(--green);
  }
  .mobile-actions a:last-child {
    background:var(--green);
    color:#fff;
  }
  .booking-actions {
    gap:20px;
  }
  .category-nav {
    gap:6px;
  }
  .category-nav a {
    padding:7px 9px;
  }
  .breadcrumb {
    font-size:.8rem;
  }
  .review-card {
    padding:22px;
  }
}

@media print {
  .mobile-actions,.intent-grid,.menu-tools,.category-nav,.breadcrumb {
    display:none!important;
  }
  .dish[hidden],.menu-category[hidden] {
    display:flex;
  }
  .menu-category[hidden] {
    display:block;
  }
  body {
    padding:0;
  }
  .faq details p {
    display:block;
  }
  .review-card {
    break-inside:avoid;
  }
}

/* Verze 3: prodejní stránka penzionu a srozumitelná typografie. */
.preserve-lines, .hero h1 {
  white-space: pre-line;
}
.stay-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding-block: 18px 40px;
}
.stay-hero h1 {
  font-size: clamp(2.35rem, 3.65vw, 3.8rem);
  line-height: 1.13;
}
.stay-copy .lead {
  font-size: 1.08rem;
}
.stay-copy .actions {
  gap: 14px 22px;
  margin-bottom: 15px;
}
.stay-price {
  margin-block: 22px;
  font-size: 1.05rem;
}
.stay-price strong {
  font-size: 1.7rem;
  color: var(--green);
}
.stay-photo {
  min-width: 0;
}
.stay-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.15;
  object-fit: cover;
  border-radius: var(--radius);
}
.stay-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding-block: 17px;
  border-block: 1px solid var(--line);
}
.stay-nav a {
  font-weight: 600;
  text-decoration: none;
  padding-block: 4px;
}
.cards.rooms .card {
  display: flex;
  flex-direction: column;
}
.cards.rooms .room-price {
  margin-top: auto;
  padding-top: 14px;
}
.cards.rooms .button {
  font-size: .9rem;
  padding-inline: 10px;
}
.stay-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-block: 28px;
  border-block: 1px solid var(--line);
}
.breakfast-section {
  padding-top: 70px;
}
.stay-gallery {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 310px;
}
.stay-gallery img:first-child {
  grid-column: auto;
  grid-row: auto;
}
.closing p:last-child {
  margin: 12px 0 0;
}
.news-title {
  font-size: 1.5rem;
  line-height: 1.3;
}
.menu-tools {
  display: none;
}
.js .menu-tools {
  display: block;
}
.button, .text-link, h1, h2, h3, p, a {
  overflow-wrap: anywhere;
}
@media (max-width: 1000px) {
  .stay-hero {
    gap: 28px;
  }
  .stay-hero h1 {
    font-size: 2.6rem;
  }
}
@media (max-width: 760px) {
  .stay-hero {
    grid-template-columns: 1fr;
    padding-block: 12px 28px;
  }
  .stay-hero h1 {
    font-size: clamp(2.15rem, 8.5vw, 3rem);
  }
  .stay-photo img {
    max-height: 330px;
    aspect-ratio: 1.4;
  }
  .stay-nav {
    gap: 10px 24px;
  }
  .stay-benefits {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .breakfast-section {
    padding-top: 45px;
  }
  .stay-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 230px 230px;
  }
  .stay-gallery img:first-child {
    grid-column: auto;
    grid-row: auto;
  }
  .mobile-actions {
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }
}
@media print {
  .stay-nav, .mobile-actions, .stay-photo, .actions, .js .menu-tools {
    display: none !important;
  }
  .stay-hero, .stay-benefits {
    display: block;
  }
}
