:root {
  --green: #294127;
  --green2: #40563b;
  --green3: #64745a;
  --cream: #f7f4ec;
  --paper: #fffdf9;
  --ink: #1d211b;
  --muted: #6e7169;
  --gold: #c99a5e;
  --line: #e8e2d7;
  --rose: #e8c4bd;
  --available: #dceac9;
  --shadow: 0 18px 40px rgba(44, 49, 39, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 76px;
  background: rgba(255, 253, 249, 0.97);
  border-bottom: 1px solid rgba(40, 50, 35, 0.08);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 1180px;
  height: 76px;
  margin: auto;
  padding: 0 34px;
}

.brand {
  position: absolute;
  top: 8px;
  left: 20px;
  z-index: 70;
  width: 168px;
  height: 168px;
  overflow: hidden;
  background: #fff;
  border-radius: 50%;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.14));
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-left: 205px;
  font-size: 14px;
}

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

.main-nav a::after {
  position: absolute;
  right: 100%;
  bottom: 18px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: 0.25s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}

.wishlist {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-size: 14px;
}

.wishlist::first-letter {
  font-size: 25px;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  font-size: 26px;
}

/* Hero */

.hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  background:
    url("../img/hero-house.png") center 63% / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 125px;
  background: linear-gradient(transparent, rgba(24, 37, 22, 0.36));
  content: "";
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 19, 11, 0.75) 0%,
    rgba(12, 20, 12, 0.32) 37%,
    rgba(0, 0, 0, 0) 63%
  );
}

.hero-copy-wrap {
   text-shadow:
    0 2px 10px rgba(0,0,0,.45),
    0 1px 2px rgba(0,0,0,.6);
  position: absolute;
  bottom: 86px;
  left: max(42px, calc((100% - 1180px) / 2 + 8px));
  z-index: 2;
  width: min(520px, 48%);
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.27em;
}

.eyebrow.light {
  color: #fff;
}

.eyebrow.dark {
  color: var(--green2);
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: 58px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero-copy-wrap > p:last-child {
  max-width: 480px;
  font-size: 17px;
}

.hero-note {
  position: absolute;
  top: 52px;
  right: max(42px, calc((100% - 1180px) / 2 + 12px));
  z-index: 2;
  color: #283126;
  text-align: center;
  transform: rotate(-5deg);
  text-shadow:
    0 2px 10px rgba(255,255,255,.75),
    0 1px 2px rgba(255,255,255,.9);
}

.hero-note span,
.hero-note strong {
  display: block;
  font-family: "Brush Script MT", "Segoe Print", cursive;
  font-weight: 400;
}

.hero-note span {
  font-size: 29px;
}

.hero-note strong {
  margin-top: 2px;
  font-size: 26px;
  line-height: 1.22;
}

.hero-note i {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 25px;
  font-style: normal;
}

.bird {
  position: absolute;
  top: 135px;
  right: 18%;
  color: #2b3226;
  font-size: 29px;
  transform: rotate(-10deg);
}

.bird-2 {
  top: 164px;
  right: 15%;
  font-size: 23px;
}

/* Booking */

.booking-zone {
  position: relative;
  z-index: 10;
  margin-top: -36px;
}

.booking-card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.28fr;
  gap: 10px;
  width: min(1100px, calc(100% - 48px));
  margin: auto;
  padding: 12px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.booking-field {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px 16px;
  background: #fff;
  border: 0;
  border-right: 1px solid #eee9df;
  text-align: left;
  cursor: pointer;
}

.field-icon {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  background: #f3f0e6;
  border-radius: 50%;
  font-size: 21px;
}

.booking-field small {
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.booking-field strong,
.booking-field select {
  display: block;
  margin-top: 2px;
  background: transparent;
  border: 0;
  color: #85877f;
  font-size: 13px;
  font-weight: 400;
}

.booking-field select {
  outline: 0;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 15px 20px;
  border: 0;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

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

.btn.primary,
.btn.secondary {
  background: var(--green);
  color: #fff;
}

.btn.secondary {
  font-size: 13px;
}

/* Calendar */

.calendar-panel {
  width: min(860px, calc(100% - 48px));
  margin: 14px auto 0;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.calendar-head,
.calendar-controls,
.calendar-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.calendar-head h2 {
  margin: 2px 0;
  font-size: 28px;
}

.kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.round-btn {
  width: 36px;
  height: 36px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.calendar-controls {
  justify-content: center;
  margin: 15px 0;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
}

.calendar-weekdays {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
}

.calendar-day {
  padding: 10px;
  background: #f7f6f1;
  border: 0;
  border-radius: 7px;
}

.calendar-day.available {
  background: var(--available);
}

.calendar-day.occupied {
  background: var(--rose);
}

.calendar-day.request {
  background: #ecece9;
}

.calendar-day.selected {
  outline: 2px solid var(--green);
  outline-offset: -2px;
}

.calendar-day.empty {
  background: transparent;
}

.calendar-bottom {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  font-size: 12px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  border-radius: 50%;
}

.dot.available {
  background: var(--available);
}

.dot.occupied {
  background: var(--rose);
}

.dot.request {
  background: #ddd;
}

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

.calendar-result p {
  margin: 0;
  font-size: 13px;
}

.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Amenities */

.amenities {
  display: grid;
  grid-template-columns: 1fr 170px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 44px 16px;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.amenity-grid article {
  text-align: center;
}

.amenity-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 8px;
  background: #f1eee4;
  border-radius: 50%;
  font-size: 26px;
}

.amenity-grid p {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}

.hand-note {
  color: #283126;
  font-family: "Brush Script MT", "Segoe Print", cursive;
  font-size: 24px;
  line-height: 1.05;
  text-align: center;
  transform: rotate(-5deg);
}

.hand-note span {
  color: var(--gold);
}

/* General sections */

.section {
  padding: 70px max(32px, calc((100% - 1160px) / 2));
}

.house-section {
  padding-top: 44px;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.45fr;
  align-items: center;
  gap: 68px;
}

.script {
  margin: 0 0 2px;
  font-family: "Brush Script MT", "Segoe Print", cursive;
  font-size: 30px;
  transform: rotate(-2deg);
}

.copy-block h2,
.nature-copy h2,
.section-title-row h2,
.contact h2 {
  margin: 0 0 18px;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.05;
}

.copy-block p:not(.script) {
  max-width: 430px;
  color: #4f554d;
  font-size: 15px;
}

/* Living gallery */

.living-gallery {
  position: relative;
}

.living-gallery > img {
  width: 100%;
  height: 365px;
  object-fit: cover;
  border-radius: 3px;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  color: white;
  background: rgba(36, 45, 31, 0.75);
  border: 1px solid white;
  border-radius: 50%;
  font-size: 28px;
  transform: translateY(-50%);
}

.gallery-arrow.left {
  left: 10px;
}

.gallery-arrow.right {
  right: 10px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.gallery-dots i {
  width: 7px;
  height: 7px;
  background: #d6d1c7;
  border-radius: 50%;
}

.gallery-dots .active {
  background: var(--green);
}

/* Nearby */

.nearby-intro {
  padding-top: 36px;
  padding-bottom: 42px;
  background: #fbfaf6;
}

.nature-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  align-items: start;
  gap: 18px;
}

.nature-copy {
  padding-right: 28px;
}

.nature-copy h2 {
  font-size: 30px;
}

.nature-copy p {
  color: #555a53;
  font-size: 14px;
}

.mini-card img {
  width: 100%;
  height: 135px;
  object-fit: cover;
  border-radius: 2px;
}

.mini-card h3 {
  margin: 7px 0 0;
  font-size: 17px;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

/* Experiences */

.experiences {
  background: #f5f2ea;
}

.section-title-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 44px;
}

.section-title-row h2 {
  margin: 0;
}

.section-title-row > p {
  margin: 0;
  color: #656a62;
}

.experience-list {
  display: grid;
  gap: 50px;
}

.experience-story {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 45px;
}

.experience-story.reverse .experience-art {
  order: 2;
}

.experience-story.reverse .experience-copy {
  order: 1;
}

.experience-art {
  position: relative;
  height: 330px;
  overflow: hidden;
  background: #ddd;
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(40, 45, 37, 0.1);
}

.experience-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: saturate(0.8) contrast(0.96);
  transition: 0.4s;
}

.experience-art:hover img {
  transform: scale(1.02);
  filter: saturate(1);
}

.experience-art span {
  position: absolute;
  bottom: 14px;
  left: 16px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  font-size: 11px;
}

.experience-copy .kicker {
  margin: 0 0 6px;
}

.experience-copy h3 {
  margin: 0 0 12px;
  font-size: 34px;
  font-weight: 500;
}

.experience-copy p {
  color: #5d625b;
}

.experience-copy a {
  padding-bottom: 3px;
  border-bottom: 1px solid #a8af9e;
  font-size: 13px;
  font-weight: 700;
}

.featured .experience-copy {
  padding-left: 22px;
  border-left: 3px solid var(--gold);
}

.external-note {
  margin-top: 35px;
  color: #767b73;
  font-size: 11px;
}

/* Testimonial */

.testimonial {
  padding: 25px max(32px, calc((100% - 1160px) / 2));
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonial-inner {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 18px;
}

.quote-mark {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 68px;
  line-height: 1;
}

.testimonial p {
  margin: 0;
  font-size: 14px;
}

.testimonial small {
  font-size: 12px;
}

.review-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 22px;
}

.review-nav span {
  color: #b88951;
  font-size: 20px;
  letter-spacing: 2px;
}

/* Contact */

.contact {
  background: #fff;
}

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

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

.contact-form label {
  font-size: 12px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 5px;
  padding: 13px;
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.contact-form textarea,
.contact-form button {
  grid-column: 1 / -1;
}

.form-row {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Footer */

.footer-brand img {
    width: 170px;
    background: #fff;
    border-radius: 50%;
    margin-bottom: 14px
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 44px 0 18px;
  background: #1f3a24;
  color: #eef3e8;
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1.2fr;
  gap: 60px;
  max-width: 1140px;
  margin: auto;
  padding: 0 40px;
}

.footer-inner h3 {
  margin: 0 0 13px;
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.footer-inner a,
.footer-inner p {
  display: block;
  margin: 5px 0;
  color: #eef3e8;
  font-size: 12px;
}

.footer-wordmark span {
  display: block;
  font-family: Georgia, serif;
  font-size: 15px;
  letter-spacing: 0.24em;
}

.footer-wordmark strong {
  display: block;
  font-family: "Brush Script MT", "Segoe Print", cursive;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.footer-wordmark small {
  font-size: 8px;
  letter-spacing: 0.12em;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 17px;
}

.footer-script {
  margin-top: 28px !important;
  font-family: "Brush Script MT", "Segoe Print", cursive !important;
  font-size: 28px !important;
  line-height: 1.08 !important;
  transform: rotate(-4deg);
}

.footer-script span {
  color: var(--gold);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  color: #dfe8da;
  font-size: 10px;
  text-align: center;
}

.footer-botanical {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 360px;
  color: #6d825f;
  opacity: 0.75;
}

.footer-botanical-left {
  left: -40px;
}

.footer-botanical-right {
  right: -40px;
}

.site-footer::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34px;
  background: repeating-linear-gradient(
    74deg,
    transparent 0 10px,
    #6b805e 11px 13px,
    transparent 14px 22px
  );
  content: "";
  opacity: 0.38;
}

.wishlist,
.gallery-arrow,
.nav-toggle,
.round-btn {
  cursor: pointer;
}

/* Responsive: Tablet */

@media (max-width: 900px) {
  .site-header {
    height: 68px;
  }

  .nav-shell {
    height: 68px;
    padding: 0 18px;
  }

  .brand {
    left: 12px;
    width: 108px;
    height: 108px;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    padding: 18px 24px;
    background: white;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

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

  .wishlist {
    margin-right: 10px;
    margin-left: auto;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    height: 540px;
  }

  .hero-copy-wrap {
    right: 24px;
    bottom: 80px;
    left: 24px;
    width: auto;
  }

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

  .hero-note {
    top: 45px;
    right: 20px;
    transform: scale(0.8) rotate(-5deg);
    transform-origin: right top;
  }

  .booking-card {
    grid-template-columns: 1fr 1fr;
  }

  .booking-card .btn {
    grid-column: 1 / -1;
  }

  .amenities {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .amenity-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 24px;
  }

  .hand-note {
    display: none;
  }

  .section-grid,
  .contact-grid,
  .section-title-row {
    grid-template-columns: 1fr;
  }

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

  .nature-copy {
    grid-column: 1 / -1;
  }

  .experience-story,
  .experience-story.reverse {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .experience-story.reverse .experience-art,
  .experience-story.reverse .experience-copy {
    order: initial;
  }

  .experience-art {
    height: 280px;
  }

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

  .footer-botanical {
    width: 250px;
    opacity: 0.45;
  }
}

/* Responsive: Mobile */

@media (max-width: 560px) {
  .wishlist span {
    display: none;
  }

  .hero {
    height: 520px;
  }

  .hero-note {
    display: none;
  }

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

  .hero-copy-wrap > p:last-child {
    font-size: 15px;
  }

  .booking-zone {
    margin-top: -26px;
  }

  .booking-card {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }

  .booking-card .btn {
    grid-column: auto;
  }

  .booking-field {
    border-right: 0;
    border-bottom: 1px solid #eee9df;
  }

  .calendar-panel {
    width: calc(100% - 24px);
    padding: 16px;
  }

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

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

  .section {
    padding: 52px 22px;
  }

  .copy-block h2,
  .contact h2,
  .section-title-row h2 {
    font-size: 32px;
  }

  .living-gallery > img {
    height: 280px;
  }

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

  .nature-copy {
    grid-column: auto;
  }

  .mini-card img {
    height: 180px;
  }

  .testimonial-inner {
    grid-template-columns: 38px 1fr;
  }

  .review-nav {
    grid-column: 2;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 0 28px;
  }

  .footer-script {
    margin-top: 16px !important;
  }

  .footer-botanical {
    width: 200px;
  }
}