:root {
  --green: #214236;
  --green2: #0f2f27;
  --sand: #eae2d6;
  --cream: #f8f2e8;
  --wood: #8b6a4d;
  --coal: #171717;
  --muted: #726a60;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter,Arial,sans-serif;
  background: var(--cream);
  color: var(--coal);
}

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

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

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

.bk-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1180px,calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 20px;
  background: rgba(248,242,232,.9);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(0,0,0,.16);
}

.bk-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bk-logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--green);
  color: var(--sand);
}

.bk-logo-mark svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bk-logo strong {
  display: block;
  font-family: "Cormorant Garamond",serif;
  font-size: 24px;
  line-height: 20px;
  white-space: nowrap;
}

.bk-logo small {
  display: block;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  white-space: nowrap;
}

.bk-nav {
  display: flex;
  gap: 26px;
  font-size: 16px;
  font-weight: 700;
  color: #3a352e;
}

.bk-menu-toggle {
  display: none;
}

.bk-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.bk-hamburger span {
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  display: block;
  transition: .2s;
}

.bk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 20px 28px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(33,66,54,.25);
}

.bk-btn-small {
  padding: 20px 26px;
  font-size: 14px;
  white-space: nowrap;
}

.bk-btn-ghost {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: none;
}

.bk-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 130px 0 80px;
  overflow: hidden;
  color: var(--white);
}

.bk-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.bk-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bk-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg,rgba(0,0,0,.72),rgba(0,0,0,.22) 55%,rgba(0,0,0,.12)),linear-gradient(0deg,rgba(0,0,0,.62),transparent 55%);
}

.bk-hero-content {
  width: min(900px,calc(100% - 40px));
  margin: 0 auto;
}

.bk-kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #b9905a;
}

.bk-hero .bk-kicker {
  color: #f4d9a9;
}

h1,h2,h3 {
  margin: 0;
  font-family: "Cormorant Garamond",serif;
  line-height: .96;
}

h1 {
  font-size: clamp(48px,8vw,105px);
  max-width: 900px;
}

h2 {
  font-size: clamp(38px,5vw,70px);
}

h3 {
  font-size: 30px;
}

p {
  line-height: 1.75;
  color: var(--muted);
}

.bk-hero p:not(.bk-kicker) {
  font-size: 20px;
  max-width: 650px;
  color: rgba(255,255,255,.86);
}

.bk-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.bk-hero-card {
  position: absolute;
  right: 40px;
  bottom: 40px;
  padding: 20px 24px;
  border-radius: 24px;
  background: rgba(248,242,232,.92);
  color: var(--coal);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}

.bk-hero-card strong {
  display: block;
  font-size: 34px;
  font-family: "Cormorant Garamond",serif;
}

.bk-hero-card span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}

.bk-intro,.bk-benefits,.bk-gallery,.bk-reviews,.bk-reservation {
  padding: 110px 0;
}

.bk-two {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.bk-stack p {
  font-size: 17px;
}

.bk-photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: end;
}

.bk-photo-pair img {
  height: 520px;
  width: 100%;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 25px 80px rgba(0,0,0,.14);
}

.bk-photo-pair img:first-child {
  height: 430px;
  margin-top: 80px;
}

.bk-feature {
  padding: 110px 0;
  background: var(--green2);
  color: var(--white);
}

.bk-feature p {
  color: rgba(255,255,255,.74);
  font-size: 17px;
}

.bk-feature-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.bk-feature-grid img {
  height: 620px;
  width: 100%;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 0 35px 90px rgba(0,0,0,.3);
}

.bk-link {
  display: inline-block;
  margin-top: 20px;
  color: #f1cf94;
  font-weight: 900;
}

.bk-cards {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  margin-top: 42px;
}

.bk-cards article {
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(0,0,0,.06);
}

.bk-cards span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  color: var(--green);
  font-weight: 900;
  margin-bottom: 24px;
}

.bk-cards p {
  font-size: 15px;
  margin-bottom: 0;
}

.bk-section-head {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}

.bk-masonry {
  columns: 3 260px;
  column-gap: 18px;
}

.bk-masonry img {
  width: 100%;
  margin: 0 0 18px;
  border-radius: 28px;
  break-inside: avoid;
  box-shadow: 0 18px 50px rgba(0,0,0,.09);
}

.bk-reviews {
  background: var(--sand);
}

.bk-review-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 40px;
}

blockquote {
  margin: 0;
  padding: 34px;
  border-radius: 28px;
  background: var(--cream);
  font-family: "Cormorant Garamond",serif;
  font-size: 29px;
  line-height: 1.14;
  box-shadow: 0 18px 60px rgba(0,0,0,.05);
}

blockquote span {
  display: block;
  margin-top: 24px;
  font-family: Inter,Arial,sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--wood);
}

.bk-reservation-box {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
  padding: 60px;
  border-radius: 42px;
  background: linear-gradient(135deg,var(--green),var(--green2));
  color: var(--white);
  box-shadow: 0 30px 90px rgba(15,47,39,.22);
}

.bk-reservation-box p {
  color: rgba(255,255,255,.75);
}

.bk-call-card {
  padding: 34px;
  border-radius: 30px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
}

.bk-call-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #f1cf94;
}

.bk-call-card>a:first-of-type {
  display: block;
  font-family: "Cormorant Garamond",serif;
  font-size: 43px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.bk-call-card small {
  display: block;
  margin: 18px 0 22px;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
}

.bk-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  border-radius: 18px;
  background: #b9905a;
  color: #fff;
  font-weight: 900;
}

.bk-footer {
  padding: 58px 0 46px;
  background: #111;
  color: #fff;
}

.bk-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr .5fr;
  gap: 50px;
  align-items: start;
}

.bk-footer p {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.58);
}

.bk-logo-footer .bk-logo-mark {
  background: #b9905a;
  color: #fff;
}

.bk-logo-footer strong,.bk-logo-footer small {
  color: #fff;
}

.bk-footer h3 {
  font-size: 30px;
  margin-bottom: 18px;
}

.bk-footer-contact,.bk-footer-nav {
  display: grid;
  gap: 12px;
}

.bk-footer-contact a,.bk-footer-nav a {
  color: rgba(255,255,255,.72);
  font-weight: 700;
}

.bk-footer-contact a:hover,.bk-footer-nav a:hover {
  color: #fff;
}

.bk-instagram {
  display: inline-flex!important;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  color: #fff!important;
}

.bk-instagram svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media(max-width:900px) {

  .bk-header {
    top: 10px;
    border-radius: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 14px 14px;
  }

  .bk-hamburger {
    display: flex;
    margin-left: auto;
  }

  .bk-nav {
    display: none;
    order: 5;
    width: 100%;
    padding: 10px 8px 4px;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .bk-nav a {
    display: block;
    padding: 22px 26px;
    border-radius: 18px;
    background: rgba(33,66,54,.08);
  }

  .bk-menu-toggle:checked~.bk-nav {
    display: grid;
  }

  .bk-menu-toggle:checked+.bk-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .bk-menu-toggle:checked+.bk-hamburger span:nth-child(2) {
    opacity: 0;
  }

  .bk-menu-toggle:checked+.bk-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .bk-two,.bk-feature-grid,.bk-section-head,.bk-reservation-box {
    grid-template-columns: 1fr;
  }

  .bk-cards,.bk-review-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bk-hero-card {
    display: none;
  }

  .bk-photo-pair img,.bk-photo-pair img:first-child,.bk-feature-grid img {
    height: auto;
    margin: 0;
  }

  .bk-reservation-box {
    padding: 34px;
  }

  .bk-logo strong {
    font-size: 20px;
  }

  .bk-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bk-footer-brand {
    grid-column: 1/-1;
  }
}

@media(max-width:620px) {
.bk-hero p:not(.bk-kicker) {
  font-size: 16px;
}


  .bk-container {
    width: min(100% - 26px,1180px);
  }

  .bk-hero {
    padding: 120px 0 60px;
    min-height: 96vh;
  }

  .bk-hero-content {
    width: calc(100% - 46px);
  }

  .bk-btn {
    width: 100%;
  }

  .bk-btn-small {
    display: none;
  }

  .bk-cards,.bk-review-grid,.bk-photo-pair,.bk-footer-grid {
    grid-template-columns: 1fr;
  }

  .bk-intro,.bk-benefits,.bk-gallery,.bk-reviews,.bk-reservation,.bk-feature {
    padding: 70px 0;
  }

  .bk-call-card>a:first-of-type {
    font-size: 30px;
  }

  .bk-footer .bk-container {
    gap: 28px;
  }

  .bk-logo small {
    font-size: 9px;
    letter-spacing: .1em;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 42px;
  }

  blockquote {
    font-size: 25px;
  }
}

.bk-pricing {
  padding: 110px 0;
  background: #fffaf2;
}

.bk-pricing-box {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.bk-pricing-box p {
  font-size: 17px;
  max-width: 690px;
}

.bk-price-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 34px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 28px 80px rgba(33,66,54,.2);
}

.bk-price-card:before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}

.bk-price-card span {
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #f1cf94;
}

.bk-price-card strong {
  display: block;
  margin: 12px 0 12px;
  font-family: "Cormorant Garamond",serif;
  font-size: 82px;
  line-height: .9;
}

.bk-price-card small {
  display: block;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
}

.bk-price-card a {
  display: inline-flex;
  margin-top: 24px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  background: #b9905a;
  color: #fff;
  font-weight: 900;
}

.bk-masonry a {
  display: block;
  width: 100%;
  margin: 0 0 18px;
  border-radius: 28px;
  break-inside: avoid;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.09);
}

.bk-masonry a img {
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform .35s ease;
}

.bk-masonry a:hover img {
  transform: scale(1.04);
}

@media(max-width:900px) {

  .bk-pricing-box {
    grid-template-columns: 1fr;
  }

  .bk-pricing {
    padding: 80px 0;
  }
}

@media(max-width:620px) {
  .bk-call-card {
    padding: 24px;
  }

  .bk-price-card strong {
    font-size: 68px;
  }

  .bk-pricing {
    padding: 70px 0;
  }
}
