:root {
  --ivory: #e4dcd5;
  --wine: #44141e;
  --green: #1e3638;
  --sand: #d0c4b8;
  --ink: #221b1b;
  --muted: #766b68;
  --white: #fffaf6;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "ExyleC", Georgia, "Times New Roman", serif;
  line-height: 1.55;
}

body.nav-locked {
  overflow: hidden;
}

body.modal-locked {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(130px, 210px) 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 58px;
  padding: 7px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(30, 54, 56, .82), rgba(30, 54, 56, 0));
  transition: background .2s ease, box-shadow .2s ease;
}

.header-dark.is-scrolled,
.header-dark.menu-open {
  background: rgba(30, 54, 56, .96);
  box-shadow: 0 10px 30px rgba(20, 14, 14, .18);
}

.header-light {
  position: sticky;
  background: rgba(228, 220, 213, .96);
  color: var(--wine);
  border-bottom: 1px solid rgba(68, 20, 30, .12);
}

.brand {
  position: relative;
  z-index: 31;
  display: block;
  width: 187px;
  height: 49px;
  overflow: hidden;
}

.brand img {
  width: 357px;
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: center;
  transform: translate(-85px, -153px);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .18));
}

.header-dark .brand {
  width: 187px;
  height: 49px;
}

.header-dark .brand img {
  transform: translate(-85px, -153px);
}

.menu-toggle {
  display: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 24px);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 6px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
  content: "";
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.mobile-nav-contacts {
  display: none;
}

.header-phone {
  font-size: 14px;
  white-space: nowrap;
}

.header-actions-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.header-booking {
  min-height: 36px;
  padding: 0 14px;
  font-size: 11px;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 118px clamp(22px, 7vw, 96px) 9vh;
  color: var(--white);
}

.video-slider,
.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-video.active {
  opacity: 1;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(30, 54, 56, .78), rgba(30, 54, 56, .22) 48%, rgba(68, 20, 30, .45)),
    linear-gradient(0deg, rgba(20, 14, 14, .55), rgba(20, 14, 14, .05));
}

.hero-content {
  position: relative;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--wine);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--sand);
}

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(68px, 15vw, 168px);
  line-height: .82;
  font-weight: 400;
}

.hero-slogan {
  margin-bottom: 20px;
  color: var(--sand);
  font-size: clamp(25px, 4vw, 52px);
  line-height: 1.05;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 32px;
  font-family: Arial, sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--wine);
  border-radius: var(--radius);
  background: transparent;
  color: var(--wine);
  font: 700 13px Arial, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--wine);
  color: var(--white);
}

.button.ghost {
  border-color: var(--sand);
  color: var(--white);
}

.button.small {
  min-height: 40px;
  padding: 0 16px;
}

.section-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .78fr);
  gap: clamp(28px, 7vw, 96px);
  padding: 92px 0;
  align-items: center;
}

.intro h2,
.services h2,
.contact-layout h2 {
  color: var(--wine);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  font-weight: 400;
}

.intro-text p,
.service-item p,
.contact-details p,
.contact-details a,
.room-info dd {
  font-family: Arial, sans-serif;
}

.intro-text {
  align-self: center;
  padding-top: 16px;
  border-top: 1px solid rgba(68, 20, 30, .24);
}

.intro-text p {
  margin-bottom: 22px;
  color: var(--green);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  color: var(--wine);
  font: 700 13px Arial, sans-serif;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}

.services {
  padding: 76px 0 84px;
  background: var(--green);
  color: var(--white);
}

.services .eyebrow,
.services h2 {
  color: var(--sand);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.service-item {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 3vw, 30px);
  border-radius: var(--radius);
  isolation: isolate;
  background: var(--wine);
  transition: transform .25s ease;
}

.service-item:hover {
  transform: translateY(-4px);
}

.service-item::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(30, 54, 56, .01), rgba(30, 54, 56, .12) 42%, rgba(20, 12, 14, .46)),
    linear-gradient(90deg, rgba(68, 20, 30, .16), rgba(68, 20, 30, .02));
  content: "";
}

.service-item img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.service-item:hover img {
  transform: scale(1.045);
}

.service-item h3 {
  margin-bottom: 12px;
  color: var(--ivory);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.02;
  font-weight: 400;
}

.service-item p {
  margin-bottom: 0;
  color: rgba(255, 250, 246, .9);
}

.travel-stories {
  padding: 84px 0 96px;
  background: var(--ivory);
}

.travel-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.travel-heading h2 {
  color: var(--wine);
  font-size: clamp(42px, 6vw, 74px);
  line-height: .98;
}

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

.travel-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: clamp(22px, 3vw, 30px);
  border-radius: var(--radius);
  color: var(--ivory);
  background: var(--green);
  isolation: isolate;
}

.travel-card.wide {
  grid-column: span 2;
}

.travel-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(30, 54, 56, .04), rgba(30, 54, 56, .24) 42%, rgba(20, 12, 14, .8)),
    linear-gradient(90deg, rgba(68, 20, 30, .42), rgba(68, 20, 30, .05));
  content: "";
}

.travel-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.travel-card:hover img {
  transform: scale(1.045);
}

.travel-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--sand);
  font: 700 12px/1.2 Arial, sans-serif;
  text-transform: uppercase;
}

.travel-card h3 {
  margin: 0;
  color: var(--ivory);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  font-weight: 400;
}

.page-hero {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: end;
  padding: 120px clamp(22px, 7vw, 96px) 56px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(30, 54, 56, .84), rgba(68, 20, 30, .38)),
    url("rooms/FR/584A0770-HDR_resized.jpg?v=9a168119") center/cover;
}

.page-hero > :not(.hero-carousel):not(.hero-carousel-dots) {
  position: relative;
  z-index: 2;
}

.page-hero > .hero-carousel-dots {
  z-index: 3;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(42px, 8vw, 84px);
  line-height: .96;
}

.coffee-hero h1 {
  max-width: 980px;
}

.coffee-hero-text {
  max-width: 780px;
  margin-top: 22px;
  display: grid;
  gap: 10px;
  color: rgba(255, 250, 239, .9);
  font: 17px/1.55 Arial, sans-serif;
}

.coffee-hero-text p {
  margin: 0;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(30, 54, 56, .84), rgba(68, 20, 30, .38)),
    url("rooms/FR/584A7508-HDR_resized.jpg?v=beef8d05") center/cover;
}

.travels-hero {
  background:
    linear-gradient(90deg, rgba(30, 54, 56, .84), rgba(68, 20, 30, .34)),
    url("assets/travels/blog-10.jpg?v=59e8c8d7") center/cover;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(30, 54, 56, .84), rgba(68, 20, 30, .34)),
    url("rooms/FR/584A7488-HDR_resized.jpg?v=343815bc") center/cover;
}

.coffee-hero {
  min-height: 620px;
  padding-bottom: 92px;
  background: var(--green);
}

.coffee-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(30, 54, 56, .78), rgba(68, 20, 30, .28));
  pointer-events: none;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1200ms ease, transform 6800ms ease;
}

.hero-carousel img.active {
  opacity: 1;
  transform: scale(1);
}

.hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  display: flex;
  gap: 10px;
  align-items: center;
  transform: translateX(-50%);
}

.hero-carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.hero-carousel-dots button:hover,
.hero-carousel-dots button.active {
  background: var(--ivory);
  border-color: var(--ivory);
  transform: scale(1.22);
}

.coffee-intro {
  display: block;
  padding: 42px 0 34px;
}

.coffee-intro h2 {
  max-width: 980px;
  color: var(--wine);
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1;
}

.coffee-intro p {
  max-width: 980px;
  margin: 0 0 10px;
}

.coffee-intro p:last-child {
  margin-bottom: 0;
}

.coffee-menu {
  padding-top: 35px;
  padding-bottom: 70px;
}

.coffee-menu-heading {
  max-width: 780px;
  margin-bottom: 24px;
}

.coffee-menu-heading h2 {
  color: var(--wine);
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1;
}

.coffee-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.menu-card {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(68, 20, 30, .13);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-card h3 {
  margin: 0 0 18px;
  color: var(--wine);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  font-weight: 400;
}

.menu-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-card li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding: 10px 0;
  border-top: 1px solid rgba(68, 20, 30, .1);
  font: 15px/1.35 Arial, sans-serif;
}

.menu-card li:first-child {
  border-top: 0;
  padding-top: 0;
}

.menu-card li:last-child {
  padding-bottom: 0;
}

.menu-card b {
  color: var(--green);
  white-space: nowrap;
}

.coffee-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: 14px;
  padding-bottom: 84px;
}

.coffee-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.coffee-gallery .large {
  grid-column: span 2;
  grid-row: span 2;
}

.coffee-note {
  padding: 58px 0;
  background: var(--green);
  color: var(--ivory);
}

.coffee-note .section-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.coffee-note p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 250, 246, .88);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.2;
}

.about-intro,
.about-location {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 82px);
  padding: 74px 0;
}

.about-intro h2,
.about-location h2,
.legal-heading h2 {
  color: var(--wine);
  font-size: clamp(38px, 6vw, 68px);
  line-height: .98;
}

.about-intro p,
.about-location p {
  margin: 0 0 16px;
  color: var(--ink);
}

.about-band {
  padding: 72px 0;
  background: var(--green);
  color: var(--ivory);
}

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

.about-service-grid article {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 250, 246, .16);
  border-radius: var(--radius);
  background: rgba(255, 250, 246, .06);
}

.about-service-grid h3 {
  margin: 18px 0 12px;
  color: var(--ivory);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.about-service-grid p {
  margin: 0;
  color: rgba(255, 250, 246, .86);
}

.about-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 250, 246, .12);
  color: var(--sand);
}

.about-icon::before {
  width: 22px;
  height: 22px;
  background: currentColor;
  content: "";
}

.icon-bed::before {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 4v16'/%3E%3Cpath d='M22 12v8'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M4 12V8a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v4'/%3E%3Cpath d='M12 12V9h6a4 4 0 0 1 4 4'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-route::before {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='19' r='3'/%3E%3Ccircle cx='18' cy='5' r='3'/%3E%3Cpath d='M12 19h1a5 5 0 0 0 5-5V8'/%3E%3Cpath d='M6 16v-1a5 5 0 0 1 5-5h1'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-service::before {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s-7-4.35-9.33-9.1A5.5 5.5 0 0 1 12 6.1a5.5 5.5 0 0 1 9.33 5.8C19 16.65 12 21 12 21Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.about-photo {
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legal-section {
  padding: 0 0 98px;
}

.legal-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.legal-grid a {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(68, 20, 30, .13);
  border-radius: var(--radius);
  background: var(--white);
}

.legal-grid b {
  color: var(--wine);
  font: 700 13px/1.2 Arial, sans-serif;
  text-transform: uppercase;
}

.legal-grid span {
  color: var(--green);
}

.travel-detail-list {
  display: grid;
  gap: 42px;
  padding: 74px 0 98px;
}

.travel-detail {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(0, 1fr);
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(68, 20, 30, .13);
  background: var(--white);
}

.travel-detail:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .92fr);
}

.travel-detail:nth-child(even) .travel-detail-media {
  order: 2;
}

.travel-detail-media {
  min-height: 420px;
  background: var(--sand);
}

.travel-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-detail-copy {
  padding: clamp(24px, 5vw, 48px);
}

.travel-detail-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font: 700 12px/1.2 Arial, sans-serif;
  text-transform: uppercase;
}

.travel-detail-copy h2 {
  margin-bottom: 22px;
  color: var(--wine);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.travel-detail-copy p {
  margin: 0 0 14px;
  color: var(--ink);
}

.room-list {
  display: grid;
  gap: 34px;
  padding: 72px 0 96px;
}

.room-card {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(0, 1fr);
  background: var(--white);
  border: 1px solid rgba(68, 20, 30, .13);
}

.room-media {
  min-height: 460px;
  background: var(--sand);
}

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

.room-info {
  padding: clamp(24px, 5vw, 48px);
}

.room-floor {
  margin-bottom: 8px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

.room-info h2 {
  margin-bottom: 6px;
  color: var(--wine);
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1;
  font-weight: 400;
}

.price {
  margin-bottom: 28px;
  color: var(--green);
  font: 700 24px Arial, sans-serif;
}

.price-action {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0;
}

.price-action:hover {
  color: var(--wine);
}

dl {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
}

dl div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 16px;
  border-bottom: 1px solid rgba(68, 20, 30, .12);
  padding-bottom: 12px;
}

dt {
  color: var(--wine);
  font: 700 13px Arial, sans-serif;
  text-transform: uppercase;
}

dd {
  margin: 0;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-row img {
  aspect-ratio: 1.35;
  cursor: zoom-in;
}

.room-gallery-strip {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 10px;
  align-items: stretch;
}

.room-gallery-next {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 246, .28);
  border-radius: var(--radius);
  background: rgba(30, 54, 56, .16);
  color: var(--ivory);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease;
}

.room-gallery-next::after {
  position: absolute;
  inset: -12px;
  z-index: 0;
  background:
    linear-gradient(rgba(30, 54, 56, .08), rgba(30, 54, 56, .16)),
    var(--next-photo) center/cover;
  filter: blur(5px);
  transform: scale(1.12);
  opacity: .95;
  content: "";
}

.room-gallery-next::before {
  position: relative;
  z-index: 1;
  display: block;
  text-shadow: 0 6px 18px rgba(20, 14, 14, .38);
  font: 46px/1 Arial, sans-serif;
  content: "›";
}

.room-gallery-next:hover {
  border-color: rgba(255, 250, 246, .56);
  transform: translateX(2px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  padding: 74px 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  color: var(--green);
}

.contact-details h2 {
  margin-bottom: 14px;
}

.contact-list {
  display: grid;
  gap: 12px;
  width: 100%;
}

.contact-item,
.accreditation-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(68, 20, 30, .12);
  border-radius: var(--radius);
  background: rgba(255, 250, 246, .52);
}

.contact-item b,
.accreditation-card b {
  display: block;
  margin-bottom: 3px;
  color: var(--wine);
  font: 700 12px/1.2 Arial, sans-serif;
  text-transform: uppercase;
}

.contact-item small {
  display: block;
  color: var(--green);
  font: 15px/1.35 Arial, sans-serif;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(68, 20, 30, .08);
  color: var(--wine);
}

.contact-icon::before {
  display: block;
  width: 19px;
  height: 19px;
  background: currentColor;
  content: "";
}

.contact-icon.icon-phone::before {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.35 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.35 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.contact-icon.icon-mail::before {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E") center/contain no-repeat;
}

.contact-icon.icon-wa::before {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12.04 2a9.9 9.9 0 0 0-8.53 14.94L2.2 22l5.19-1.25A9.9 9.9 0 1 0 12.04 2Zm0 2a7.9 7.9 0 1 1-3.93 14.75l-.35-.2-2.61.63.66-2.54-.23-.37A7.9 7.9 0 0 1 12.04 4Zm-3.33 3.93c-.18 0-.46.07-.7.34-.24.26-.93.91-.93 2.22 0 1.31.96 2.58 1.09 2.76.13.18 1.86 2.98 4.58 4.06 2.26.9 2.72.72 3.21.67.49-.04 1.58-.64 1.8-1.27.22-.62.22-1.15.16-1.27-.07-.11-.24-.18-.51-.31-.27-.13-1.58-.78-1.82-.87-.25-.09-.43-.13-.61.13-.18.27-.7.87-.85 1.05-.16.18-.31.2-.58.07-.27-.13-1.14-.42-2.17-1.34-.8-.71-1.34-1.59-1.5-1.86-.16-.27-.02-.41.12-.54.12-.12.27-.31.4-.47.13-.16.18-.27.27-.45.09-.18.04-.34-.02-.47-.07-.13-.61-1.47-.84-2.01-.22-.53-.44-.45-.61-.46h-.52Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.contact-icon.icon-instagram::before {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='black' stroke='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

.contact-icon.icon-location::before {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center/contain no-repeat;
}

.contact-icon.icon-certificate::before {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 3H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8Z'/%3E%3Cpath d='M14 3v6h6'/%3E%3Cpath d='M9 15l2 2 4-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.accreditation-card {
  align-items: start;
  background: rgba(68, 20, 30, .06);
}

.accreditation-card p {
  margin: 0 0 8px;
  color: var(--green);
  font: 15px/1.45 Arial, sans-serif;
}

.contact-form {
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid rgba(68, 20, 30, .13);
}

.contact-form h2 {
  margin-bottom: 26px;
  font-size: clamp(30px, 4vw, 46px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--wine);
  font: 700 13px Arial, sans-serif;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(68, 20, 30, .22);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: 16px Arial, sans-serif;
}

textarea {
  resize: vertical;
}

.contact-consent {
  display: flex !important;
  grid-template-columns: none !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px !important;
  text-transform: none !important;
  font-weight: 400 !important;
}

.contact-consent input {
  width: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
}

.contact-captcha {
  display: grid;
  grid-template-columns: 1fr 120px auto;
  align-items: end;
  gap: 10px;
  margin: 18px 0;
}

.form-errors {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(68, 20, 30, .09);
  color: var(--wine);
  font: 14px Arial, sans-serif;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.map-section {
  margin-bottom: 78px;
  height: 460px;
  overflow: hidden;
  border: 1px solid rgba(68, 20, 30, .13);
  border-radius: var(--radius);
  background: var(--sand);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(22px, 5vw, 72px);
  background: var(--green);
  color: var(--ivory);
}

.footer-logo {
  display: block;
  width: 153px;
  height: 37px;
  overflow: hidden;
}

.footer-logo img {
  width: 289px;
  height: auto;
  max-width: none;
  object-fit: contain;
  transform: translate(-68px, -124px);
}

.scroll-top-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 15;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 250, 246, .28);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(30, 54, 56, .88);
  box-shadow: 0 18px 38px rgba(30, 54, 56, .24);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.scroll-top-button::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  margin: auto;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m18 15-6-6-6 6'/%3E%3C/svg%3E") center/contain no-repeat;
}

.scroll-top-button.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-button:hover {
  background: rgba(68, 20, 30, .92);
}

.booking-widget-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 14, 14, .68);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.booking-widget-modal.visible {
  opacity: 1;
  pointer-events: auto;
}

.booking-widget-panel {
  position: relative;
  width: min(1060px, 100%);
  max-height: min(86vh, 820px);
  overflow: auto;
  padding: clamp(22px, 4vw, 38px);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 26px 80px rgba(20, 14, 14, .28);
}

.booking-widget-modal.calendar-mode .booking-widget-panel {
  width: min(440px, 100%);
}

.booking-widget-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--ivory);
  background: var(--green);
  cursor: pointer;
  font: 28px/1 Arial, sans-serif;
}

.booking-widget-header {
  margin: 0 44px 22px 0;
}

.booking-widget-header h2 {
  margin: 6px 0 0;
  color: var(--wine);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  font-weight: 400;
}

.booking-widget-container {
  min-height: 360px;
}

.booking-widget-modal.calendar-mode .booking-widget-container {
  width: 100%;
  max-width: 336px;
  min-height: 506px;
  margin: 0 auto;
  overflow: hidden;
}

.booking-widget-loading,
.booking-widget-container > p {
  display: block;
  padding: 28px;
  border: 1px solid rgba(68, 20, 30, .12);
  border-radius: var(--radius);
  font: 15px/1.45 Arial, sans-serif;
}

.booking-widget-container.loaded .booking-widget-loading {
  display: none;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, auto));
  gap: 8px 26px;
  font: 13px/1.35 Arial, sans-serif;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: currentColor;
}

.footer-icon.icon-phone {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.35 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.35 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.footer-icon.icon-mail {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E") center/contain no-repeat;
}

.footer-icon.icon-wa {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12.04 2a9.9 9.9 0 0 0-8.53 14.94L2.2 22l5.19-1.25A9.9 9.9 0 1 0 12.04 2Zm0 2a7.9 7.9 0 1 1-3.93 14.75l-.35-.2-2.61.63.66-2.54-.23-.37A7.9 7.9 0 0 1 12.04 4Zm-3.33 3.93c-.18 0-.46.07-.7.34-.24.26-.93.91-.93 2.22 0 1.31.96 2.58 1.09 2.76.13.18 1.86 2.98 4.58 4.06 2.26.9 2.72.72 3.21.67.49-.04 1.58-.64 1.8-1.27.22-.62.22-1.15.16-1.27-.07-.11-.24-.18-.51-.31-.27-.13-1.58-.78-1.82-.87-.25-.09-.43-.13-.61.13-.18.27-.7.87-.85 1.05-.16.18-.31.2-.58.07-.27-.13-1.14-.42-2.17-1.34-.8-.71-1.34-1.59-1.5-1.86-.16-.27-.02-.41.12-.54.12-.12.27-.31.4-.47.13-.16.18-.27.27-.45.09-.18.04-.34-.02-.47-.07-.13-.61-1.47-.84-2.01-.22-.53-.44-.45-.61-.46h-.52Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.footer-icon.icon-instagram {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='black' stroke='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  place-items: center;
  gap: 14px;
  padding: 18px;
  background: rgba(20, 14, 14, .86);
}

.lightbox img {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  max-height: calc(100vh - 36px);
  max-width: calc(100vw - 36px);
  border-radius: var(--radius);
}

.lightbox-close,
.lightbox-arrow {
  border: 1px solid rgba(255, 250, 246, .55);
  border-radius: var(--radius);
  background: rgba(30, 54, 56, .4);
  color: var(--ivory);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  z-index: 3;
  grid-column: 1;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 72px;
  font-size: 34px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-count {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  grid-column: 1;
  transform: translateX(-50%);
  padding: 4px 8px;
  border-radius: var(--radius);
  background: rgba(30, 54, 56, .56);
  color: var(--ivory);
  font: 13px Arial, sans-serif;
}

.modal-overlay {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(30, 54, 56, .72);
}

.modal-dialog {
  width: min(420px, 100%);
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
}

.modal-dialog h2 {
  color: var(--wine);
}

[hidden] {
  display: none !important;
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
    grid-template-columns: auto minmax(0, 1fr) auto;
    justify-content: space-between;
    gap: 10px;
    min-height: 58px;
    padding: 8px 18px;
  }

  .header-dark {
    position: fixed;
    background: linear-gradient(180deg, rgba(30, 54, 56, .82), rgba(30, 54, 56, 0));
    color: var(--ivory);
  }

  .header-dark.is-scrolled,
  .header-dark.menu-open {
    background: rgba(30, 54, 56, .96);
  }

  .header-light {
    background: rgba(228, 220, 213, .98);
  }

  .header-light.menu-open {
    color: var(--ivory);
    background: rgba(30, 54, 56, .9);
    border-bottom-color: transparent;
  }

  .brand,
  .header-light .brand {
    width: 155px;
    height: 43px;
  }

  .brand img,
  .header-light .brand img {
    width: 306px;
    height: auto;
    transform: translate(-75px, -131px);
  }

  .header-dark .brand {
    width: 155px;
    height: 43px;
  }

  .header-dark .brand img {
    width: 306px;
    height: auto;
    transform: translate(-75px, -131px);
  }

  .header-light.menu-open .brand img {
    filter: invert(1) brightness(1.9) grayscale(1) drop-shadow(0 8px 20px rgba(0, 0, 0, .18));
  }

  .menu-toggle {
    position: relative;
    z-index: 31;
    grid-column: 3;
    grid-row: 1;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid currentColor;
    border-radius: var(--radius);
    background: transparent;
    color: currentColor;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform .2s ease;
  }

  .menu-toggle span:first-child {
    transform: translateY(-6px);
  }

  .menu-toggle span + span {
    transform: translateY(6px);
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(0) rotate(45deg);
  }

  .menu-open .menu-toggle span + span {
    transform: translateY(0) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 30;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 94px 24px 34px;
    background: rgba(30, 54, 56, .94);
    color: var(--ivory);
    font-size: 22px;
    transform: translateX(100%);
    transition: transform .25s ease;
  }

  .mobile-nav-contacts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    width: min(360px, 100%);
    margin-top: clamp(28px, 8vh, 74px);
    padding-top: 22px;
    border-top: 1px solid rgba(255, 250, 246, .22);
    font: 14px/1.3 Arial, sans-serif;
    text-transform: none;
  }

  .mobile-nav-contacts a {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }

  .mobile-nav-contacts .footer-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .menu-open .main-nav {
    transform: translateX(0);
  }

  .header-phone {
    display: none;
  }

  .header-actions-bar {
    position: relative;
    z-index: 31;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-width: 0;
  }

  .header-booking {
    min-height: 38px;
    padding: 0 12px;
    font-size: 10px;
  }

  .hero {
    min-height: 100vh;
    padding-top: 72px;
  }

  .intro,
  .room-card,
  .travel-detail,
  .about-intro,
  .about-location,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-service-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .travel-detail:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .travel-detail:nth-child(even) .travel-detail-media {
    order: 0;
  }

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

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

  .service-item {
    min-height: 330px;
  }

  .room-media {
    min-height: 340px;
  }

  .travel-detail-media {
    min-height: 330px;
  }

  .about-photo {
    min-height: 330px;
  }

  .coffee-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .coffee-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coffee-note .section-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-captcha {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 6px 14px;
    font-size: 12px;
  }

  .footer-logo {
    width: 121px;
    height: 29px;
  }

  .footer-logo img {
    width: 230px;
    transform: translate(-54px, -99px);
  }
}

@media (max-width: 560px) {
  .site-footer {
    flex-direction: row;
    align-items: center;
    padding-left: 14px;
    padding-right: 14px;
  }

  .footer-links {
    flex: 1;
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 10px;
    font-size: 11px;
  }

  .footer-links a {
    gap: 6px;
  }

  .footer-icon {
    width: 15px;
    height: 15px;
    flex-basis: 15px;
  }

  .scroll-top-button {
    right: 14px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }

  .scroll-top-button::before {
    width: 20px;
    height: 20px;
  }

  .booking-widget-modal {
    padding: 10px;
    place-items: stretch;
  }

  .booking-widget-panel {
    width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 20px 14px;
  }

  .booking-widget-modal.calendar-mode {
    place-items: center;
  }

  .booking-widget-modal.calendar-mode .booking-widget-panel {
    width: min(380px, 100%);
  }

  .booking-widget-close {
    top: 10px;
    right: 10px;
  }

  .booking-widget-header {
    margin-right: 46px;
    margin-bottom: 16px;
  }

  .booking-widget-header h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .hero {
    min-height: 100vh;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content {
    padding-bottom: 14px;
  }

  .hero-slogan {
    font-size: clamp(28px, 9vw, 39px);
  }

  .intro {
    padding: 58px 0;
  }

  .intro h2,
  .services h2,
  .contact-layout h2 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .travel-stories {
    padding: 58px 0 68px;
  }

  .travel-grid {
    grid-template-columns: 1fr;
  }

  .travel-card,
  .travel-card.wide {
    grid-column: auto;
    min-height: 300px;
  }

  .travel-detail-list {
    gap: 28px;
    padding: 56px 0 72px;
  }

  .travel-detail {
    min-height: 0;
  }

  .travel-detail-media {
    min-height: 260px;
  }

  .about-intro,
  .about-location,
  .coffee-intro {
    padding: 56px 0;
  }

  .page-hero.coffee-hero {
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    min-height: 65svh;
    padding: 62px 20px 64px;
  }

  .page-hero.coffee-hero > div:not(.hero-carousel):not(.hero-carousel-dots) {
    width: 100%;
    max-width: 100%;
    margin: 0;
    justify-self: stretch;
  }

  .coffee-hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 9.4vw, 44px);
  }

  .coffee-hero-text {
    margin-top: 16px;
    gap: 8px;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.42;
  }

  .hero-carousel-dots {
    bottom: 18px;
  }

  .coffee-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
    padding-bottom: 56px;
  }

  .coffee-menu {
    padding-bottom: 56px;
  }

  .coffee-menu-grid {
    grid-template-columns: 1fr;
  }

  .coffee-gallery .large {
    grid-column: auto;
    grid-row: auto;
  }

  .about-band {
    padding: 56px 0;
  }

  .legal-section {
    padding-bottom: 72px;
  }

  .service-item {
    min-height: 310px;
  }

  .page-hero {
    min-height: 340px;
  }

  .page-hero.coffee-hero {
    min-height: 65svh;
  }

  dl div,
  .gallery-row {
    grid-template-columns: 1fr;
  }

  .room-gallery-strip {
    grid-template-columns: 1fr;
  }

  .room-gallery-strip .gallery-row img:nth-child(n+2) {
    display: none;
  }

  .room-gallery-next {
    min-height: 44px;
  }

  .room-gallery-next::before {
    transform: rotate(90deg);
  }

  .room-gallery-next:hover {
    transform: translateY(2px);
  }

  .lightbox {
    position: fixed;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 44px minmax(0, 1fr) 28px;
    gap: 8px;
    padding: 14px 12px;
  }

  .lightbox img {
    grid-column: 1;
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 120px);
  }

  .lightbox-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 42px;
    height: 58px;
    background: rgba(30, 54, 56, .56);
    transform: translateY(-50%);
  }

  .lightbox-prev {
    left: 18px;
  }

  .lightbox-next {
    right: 18px;
  }

  .lightbox-close {
    grid-column: 1;
    justify-self: end;
  }

  .lightbox-count {
    grid-column: 1;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand,
  .header-light .brand,
  .header-dark .brand {
    width: 134px;
  }

  .header-booking {
    padding: 0 9px;
    font-size: 9px;
  }

  .mobile-nav-contacts {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    width: 100%;
  }
}

@media (max-width: 560px) and (orientation: portrait) {
  .lightbox {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    place-items: center;
    padding: 8px;
  }

  .lightbox img {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    align-self: center;
    max-width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
  }

  .lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-count {
    position: absolute;
    left: 50%;
    bottom: 10px;
    z-index: 3;
    transform: translateX(-50%);
    padding: 4px 8px;
    border-radius: var(--radius);
    background: rgba(30, 54, 56, .56);
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .lightbox {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 0 minmax(0, 1fr) 0;
    place-items: center;
    padding: 6px;
  }

  .lightbox img {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    align-self: center;
    max-width: calc(100vw - 12px);
    max-height: calc(100vh - 12px);
  }

  .lightbox-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 62px;
    background: rgba(30, 54, 56, .56);
    transform: translateY(-50%);
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    position: absolute;
    top: 8px;
    right: 10px;
    z-index: 3;
  }

  .lightbox-count {
    position: absolute;
    left: 50%;
    bottom: 8px;
    z-index: 3;
    transform: translateX(-50%);
    padding: 4px 8px;
    border-radius: var(--radius);
    background: rgba(30, 54, 56, .56);
  }
}
