@charset "UTF-8";

:root {
  --dark: #0f2f1e;
  --dark-soft: #173923;
  --green: #1e462b;
  --cream: #fbf7ef;
  --cream-2: #f2eadc;
  --paper: #fffdf8;
  --text: #211f1a;
  --muted: #716b60;
  --line: #e9dfcf;
  --line-dark: rgba(33, 31, 26, .16);
  --white: #fff;
  --shadow: 0 22px 70px rgba(34, 31, 25, .14);
  --container: 904px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fffdf8;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

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

button,
input,
select {
  font: inherit;
}

.site {
  width: 100%;
  max-width: 1240px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
}

.btn {
  min-height: 42px;
  padding: 0 23px;
  border: 0;
  border-radius: 10px;
  background: var(--dark);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.btn:hover {
  background: #082315;
  transform: translateY(-1px);
}

.btn--header {
  min-height: 38px;
  padding: 0 18px;
  border-radius: 11px;
  font-size: 10px;
}

.btn--light {
  min-height: 34px;
  padding: 0 18px;
  border-radius: 7px;
  background: var(--white);
  color: var(--dark);
  font-size: 11px;
}

.btn--light:hover {
  background: #f6f0e7;
}

.topbar {
  height: 71px;
  width: min(960px, calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
}

.brand__mark {
  width: 36px;
  height: 36px;
  color: var(--text);
  display: grid;
  place-items: center;
}

.brand__mark svg {
  width: 36px;
  height: 36px;
}

.brand__text strong {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  line-height: .95;
  letter-spacing: .055em;
  font-weight: 400;
}

.brand__text small {
  display: block;
  margin-top: 3px;
  font-size: 8px;
  line-height: 1;
  letter-spacing: .34em;
  color: var(--muted);
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  flex: 1 1 auto;
}

.main-nav a {
  color: #171714;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav span {
  font-size: 10px;
  margin-left: 2px;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #11110f;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.phone svg {
  width: 15px;
  height: 15px;
}

.lang {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  color: var(--text);
}

.menu-btn {
  width: 38px;
  height: 38px;
  margin-left: auto;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  display: none;
  padding: 0;
}

.menu-btn span {
  width: 16px;
  height: 2px;
  margin: 3px auto;
  border-radius: 2px;
  background: var(--text);
  display: block;
}

.mobile-nav {
  display: none;
}

.hero {
  height: 404px;
  margin-top: -71px;
  position: relative;
  background:
    linear-gradient(90deg, #fffdf8 0%, rgba(255,253,248,.99) 33%, rgba(255,253,248,.72) 49%, rgba(255,253,248,.08) 67%, rgba(255,253,248,0) 100%),
    linear-gradient(180deg, rgba(255,253,248,0) 0%, rgba(255,253,248,0) 76%, #fffdf8 99%);
}

.hero::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 59%;
  height: 404px;
  background: url("../img/hero-house.webp") center top / cover no-repeat;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -34px;
  height: 76px;
  background: var(--paper);
  clip-path: ellipse(72% 100% at 50% 100%);
  z-index: 1;
}

.hero__visual {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 53% 63%, rgba(221, 197, 160, .42), rgba(255, 253, 248, 0) 32%),
    linear-gradient(180deg, rgba(255,253,248,0) 0%, rgba(255,253,248,.74) 92%, #fffdf8 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  width: var(--container);
  margin: 0 auto;
  padding-top: 118px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 390px;
  margin: 0 0 19px;
  font-family: var(--serif);
  font-size: 45px;
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 400;
}

.hero__lead {
  max-width: 377px;
  margin: 0 0 22px;
  color: #3d3932;
  font-size: 13px;
  line-height: 1.65;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 13px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #2d2b26;
  font-size: 12px;
  font-weight: 700;
}

.hero-features svg {
  width: 22px;
  height: 22px;
  color: var(--dark);
  flex: 0 0 auto;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #22201b;
  font-size: 12px;
  font-weight: 700;
}

.video-link__icon {
  width: 39px;
  height: 39px;
  border: 1px solid rgba(33,31,26,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  display: grid;
  place-items: center;
  font-size: 11px;
  padding-left: 2px;
}

.booking {
  position: absolute;
  left: calc(50% - 102px);
  top: 345px;
  width: 556px;
  border-radius: 9px;
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 5;
}

.booking__head {
  height: 42px;
  padding: 0 21px;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 900;
}

.booking__body {
  height: 65px;
  padding: 0 18px 0 20px;
  display: grid;
  grid-template-columns: 125px 125px 1fr 90px;
  align-items: center;
}

.booking-field {
  min-width: 0;
  height: 42px;
  padding-right: 14px;
  margin-right: 14px;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: center;
  gap: 7px;
}

.booking-field span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.booking-field input,
.booking-field select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  appearance: none;
}

.booking-field--guests {
  padding-right: 10px;
  margin-right: 10px;
}

.btn--check {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 10px;
}

.benefits {
  position: relative;
  z-index: 3;
  padding: 71px 0 22px;
}

.benefits__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
}

.benefit {
  min-height: 55px;
  display: grid;
  grid-template-columns: 33px 1fr;
  gap: 11px;
  padding: 0 17px;
  border-right: 1px solid var(--line);
}

.benefit:first-child {
  padding-left: 0;
}

.benefit:last-child {
  padding-right: 0;
  border-right: 0;
}

.benefit svg {
  width: 28px;
  height: 28px;
  color: var(--dark);
}

.benefit h3 {
  margin: 0 0 5px;
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 900;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.section {
  width: var(--container);
  margin: 0 auto;
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 900;
}

.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 400;
}

.section-link {
  margin-bottom: 6px;
  color: var(--dark);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.stays {
  padding: 0 0 22px;
}

.stays__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stay-card {
  height: 258px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding: 0 21px 19px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.stay-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 16%, rgba(0,0,0,.44) 48%, rgba(0,0,0,.94) 100%);
  z-index: -1;
}

.stay-card--hotel {
  background-image: url("../img/stay-hotel.webp");
}

.stay-card--cottage {
  background-image: url("../img/stay-cottage.webp");
}

.stay-card--house {
  background-image: url("../img/stay-house.webp");
}

.stay-card__icon {
  position: absolute;
  left: 22px;
  top: 98px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.93);
  color: var(--dark);
  display: grid;
  place-items: center;
}

.stay-card__icon svg {
  width: 25px;
  height: 25px;
}

.stay-card__content {
  max-width: 210px;
  display: grid;
}

.stay-card__content strong {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.03em;
}

.stay-card__content em {
  margin-bottom: 14px;
  color: rgba(255,255,255,.9);
  font-size: 11px;
  line-height: 1.45;
  font-style: normal;
  font-weight: 600;
}

.stay-card__content b {
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

.stay-card__arrow {
  position: absolute;
  right: 17px;
  bottom: 17px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  color: var(--dark);
  display: grid;
  place-items: center;
  font-size: 21px;
  font-weight: 900;
}

.restaurant {
  width: var(--container);
  height: 169px;
  margin: 0 auto 24px;
  border-radius: 9px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 319px 1fr;
  background: var(--dark);
}

.restaurant__info {
  position: relative;
  min-width: 0;
  padding: 28px 0 0 104px;
  color: #fff;
}

.restaurant__decor {
  position: absolute;
  left: 23px;
  top: 30px;
  width: 64px;
  height: 64px;
  color: rgba(255,255,255,.22);
}

.restaurant__info .eyebrow {
  color: rgba(255,255,255,.75);
  letter-spacing: 0;
  text-transform: none;
  font-size: 12px;
  margin-bottom: 5px;
}

.restaurant__info h2 {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: -.03em;
}

.restaurant__info p {
  width: 210px;
  margin: 0 0 14px;
  color: rgba(255,255,255,.76);
  font-size: 10px;
  line-height: 1.45;
}

.restaurant__photo {
  min-width: 0;
  background: url("../img/restaurant-photo.webp") center / cover no-repeat;
}

.blog {
  padding: 5px 0 37px;
}

.blog .section__head {
  margin-bottom: 21px;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 98px;
  object-fit: cover;
}

.blog-card__body {
  min-height: 94px;
  padding: 17px 15px 15px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
}

.blog-date {
  width: 40px;
  height: 50px;
  border-radius: 6px;
  background: var(--cream-2);
  display: grid;
  justify-items: center;
  align-content: center;
}

.blog-date strong {
  color: #1c1a16;
  font-size: 16px;
  line-height: 1;
}

.blog-date span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 900;
}

.blog-card h3 {
  margin: 0 0 6px;
  font-family: var(--sans);
  color: #1d1b17;
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 900;
}

.blog-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.blog-card a {
  color: var(--dark);
  font-size: 10px;
  font-weight: 900;
}

.footer {
  position: relative;
  min-height: 146px;
  padding: 29px 0 15px;
  background:
    linear-gradient(180deg, rgba(242,234,220,.92), rgba(242,234,220,.92)),
    radial-gradient(ellipse at 50% 120%, rgba(92,105,77,.20), transparent 52%);
}

.footer::before,
.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 152px;
  height: 78px;
  background:
    linear-gradient(to top, rgba(91,105,85,.23), rgba(91,105,85,0));
  clip-path: polygon(6% 100%, 12% 55%, 18% 100%, 25% 35%, 35% 100%, 43% 48%, 50% 100%, 58% 28%, 67% 100%, 75% 45%, 84% 100%, 91% 58%, 98% 100%);
  pointer-events: none;
}

.footer::before {
  left: 0;
}

.footer::after {
  right: 0;
  transform: scaleX(-1);
}

.footer__inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 190px 118px 126px 136px 1fr;
  gap: 28px;
}

.footer .brand__mark {
  width: 33px;
  height: 33px;
}

.footer .brand__mark svg {
  width: 33px;
  height: 33px;
}

.footer .brand__text strong {
  font-size: 19px;
}

.footer__brand p,
.footer-col p {
  margin: 13px 0 0;
  color: #4f4a42;
  font-size: 10px;
  line-height: 1.45;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 13px;
}

.socials a {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ddd3c4;
  color: #353028;
  font-size: 10px;
  font-weight: 900;
}

.footer-col h3 {
  margin: 3px 0 15px;
  font-family: var(--sans);
  color: #38332c;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
}

.footer-col a {
  display: block;
  margin: 0 0 9px;
  color: #3f3a32;
  font-size: 10px;
  line-height: 1.2;
}

.footer-btn {
  width: 112px;
  min-height: 31px;
  margin-top: 8px;
  border-radius: 6px;
  font-size: 10px;
}

.footer__copy {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 18px auto 0;
  color: #6c665d;
  text-align: center;
  font-size: 10px;
}

@media (min-width: 1025px) {
  .site {
    box-shadow: 0 20px 90px rgba(34,31,25,.10);
  }
}

@media (max-width: 980px) {
  :root {
    --container: calc(100vw - 40px);
  }

  .site {
    max-width: none;
  }

  .topbar {
    width: var(--container);
  }

  .main-nav,
  .topbar__actions {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .mobile-nav {
    width: var(--container);
    margin: 0 auto;
    position: fixed;
    left: 20px;
    right: 20px;
    top: 72px;
    z-index: 50;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,253,248,.96);
    box-shadow: 0 18px 60px rgba(0,0,0,.14);
    display: none;
  }

  .mobile-nav.is-open {
    display: grid;
    gap: 13px;
  }

  .mobile-nav a:not(.btn) {
    font-size: 15px;
    font-weight: 800;
  }

  .hero {
    height: auto;
    min-height: 690px;
    margin-top: -71px;
    padding-bottom: 38px;
  }

  .hero::before {
    width: 100%;
    height: 100%;
    opacity: .52;
    background-position: center top;
  }

  .hero::after {
    bottom: -18px;
  }

  .hero__content {
    padding-top: 116px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(42px, 8vw, 72px);
  }

  .booking {
    position: relative;
    left: auto;
    top: auto;
    width: var(--container);
    margin: 34px auto 0;
  }

  .booking__body {
    height: auto;
    min-height: 74px;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 18px;
  }

  .booking-field {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 12px;
  }

  .booking-field--guests {
    margin-right: 0;
    padding-right: 0;
  }

  .btn--check {
    width: 100%;
    height: 42px;
  }

  .benefits {
    padding-top: 42px;
  }

  .benefits__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .benefit,
  .benefit:first-child,
  .benefit:last-child {
    border-right: 0;
    padding: 0;
  }

  .stays__grid,
  .blog__grid {
    grid-template-columns: 1fr 1fr;
  }

  .restaurant {
    grid-template-columns: 320px 1fr;
  }

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

@media (max-width: 760px) {
  :root {
    --container: calc(100vw - 32px);
  }

  body {
    font-size: 14px;
  }

  .topbar {
    height: 68px;
  }

  .brand__text strong {
    font-size: 18px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 30px;
  }

  .hero::before {
    height: 360px;
    opacity: .45;
  }

  .hero__visual {
    background:
      linear-gradient(180deg, rgba(255,253,248,.84) 0%, rgba(255,253,248,.92) 54%, #fffdf8 100%);
  }

  .hero__content {
    padding-top: 98px;
  }

  .hero h1 {
    max-width: 360px;
    margin-bottom: 16px;
    font-size: 42px;
    line-height: 1.06;
  }

  .hero__lead {
    max-width: 335px;
    margin-bottom: 19px;
    font-size: 13px;
  }

  .hero-features {
    gap: 11px;
    margin-bottom: 22px;
  }

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

  .hero__actions .btn {
    width: auto;
  }

  .booking {
    margin-top: 28px;
  }

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

  .benefits {
    padding: 34px 0 26px;
  }

  .benefits__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefit {
    min-height: auto;
  }

  .benefit h3 {
    font-size: 13px;
  }

  .benefit p {
    font-size: 12px;
  }

  .section__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .section h2 {
    font-size: 31px;
  }

  .section-link {
    margin-bottom: 0;
  }

  .stays__grid,
  .blog__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stay-card {
    height: 294px;
  }

  .stay-card__icon {
    top: 104px;
  }

  .restaurant {
    width: var(--container);
    height: auto;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }

  .restaurant__info {
    min-height: 190px;
    padding: 30px 24px 28px 96px;
  }

  .restaurant__photo {
    min-height: 190px;
  }

  .blog {
    padding-bottom: 32px;
  }

  .blog-card img {
    height: 150px;
  }

  .footer {
    padding-top: 34px;
  }

  .footer__inner {
    width: var(--container);
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer__copy {
    width: var(--container);
    text-align: left;
  }

  .footer-col h3 {
    margin-bottom: 10px;
  }
}

@media (max-width: 420px) {
  :root {
    --container: calc(100vw - 28px);
  }

  .hero h1 {
    font-size: 37px;
  }

  .hero__actions .btn,
  .video-link {
    width: 100%;
  }

  .video-link {
    justify-content: center;
  }

  .stay-card {
    height: 270px;
    padding-left: 19px;
    padding-right: 19px;
  }

  .stay-card__icon {
    top: 92px;
  }

  .stay-card__content strong {
    font-size: 27px;
  }

  .blog-card__body {
    grid-template-columns: 44px 1fr;
  }

  .restaurant__info {
    padding-left: 24px;
  }

  .restaurant__decor {
    display: none;
  }
}
