:root {
  --cream: #f6f1e8;
  --ink: #20231f;
  --green: #314b3b;
  --gold: #b58b55;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

.wrap {
  width: min(1180px, 92%);
  margin: auto;
}

/* Navigation */

nav {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  color: white;
}

.navin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.brand {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 700;
}

.links {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 14px;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 700;
}

.btn.light {
  background: white;
  color: var(--ink);
}

/* Hero */

.hero {
  min-height: 720px;
  display: grid;
  align-items: end;
  color: white;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.66),
      rgba(0, 0, 0, 0.15)
    ),
    url("assets/IMG_0052.jpg") center / cover no-repeat;
}

.hero .content {
  max-width: 780px;
  padding: 170px 0 95px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 15px 0 22px;
  font-family: Georgia, serif;
  font-size: clamp(50px, 7vw, 88px);
  line-height: 0.96;
}

.hero p {
  max-width: 650px;
  font-size: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* Statistics */

.stats {
  background: var(--green);
  color: white;
}

.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 26px 0;
  text-align: center;
}

.stat b {
  display: block;
  font-size: 24px;
}

.stat span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Sections */

section {
  padding: 90px 0;
}

.section-muted {
  background: #eee8de;
}

/* Introduction */

.intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.intro h2,
.sectionhead h2 {
  margin: 8px 0 20px;
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1.05;
}

.intro img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 3px;
  filter: grayscale(100%);
}

/* Section heading */

.sectionhead {
  display: flex;
  gap: 30px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 38px;
}

.sectionhead p {
  max-width: 520px;
}

/* Rooms */

.rooms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.room {
  background: white;
}

.room img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.roomtxt {
  padding: 24px;
}

.room h3 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-size: 29px;
}

.meta {
  font-size: 14px;
  color: #666;
}

/* Pricing */

.price-unit {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.price-note {
  margin-top: 24px;
  font-size: 14px;
  color: #666;
}

/* Pub */

.pub {
  background: #1d211d;
  color: white;
}

.pubgrid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 65px;
  align-items: center;
}

.pub img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.pub h2 {
  margin: 10px 0 22px;
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 1.02;
}

/* Gallery */

.gallery-title {
  font-family: Georgia, serif;
  font-size: 30px;
}

.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 230px;
  gap: 10px;
}

.gallery-spaced {
  margin-bottom: 44px;
}

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

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

/* Contact */

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

.contact h2 {
  margin: 0 0 20px;
  font-family: Georgia, serif;
  font-size: 50px;
}

.card {
  padding: 34px;
  background: white;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #d9d4ca;
  background: #fff;
  font: inherit;
}

.form textarea {
  grid-column: 1 / -1;
  min-height: 120px;
  resize: vertical;
}

.form button {
  border: 0;
  cursor: pointer;
}

.full {
  grid-column: 1 / -1;
}

/* Footer */

footer {
  padding: 35px 0;
  background: #151815;
  color: #ddd;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* Responsive */

@media (max-width: 800px) {

  .links a:not(.btn) {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .stats .wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .intro,
  .pubgrid,
  .contact {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

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

  .gallery img:first-child {
    grid-column: 1 / -1;
  }

  .sectionhead {
    display: block;
  }

  .intro h2,
  .sectionhead h2,
  .pub h2,
  .contact h2 {
    font-size: 40px;
  }

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

  .form textarea,
  .full {
    grid-column: auto;
  }

  .foot {
    display: block;
  }
}