:root {
  --green: #173b2d;
  --green-dark: #0f291f;
  --cream: #f4f0e7;
  --white: #ffffff;
  --text: #252a27;
  --muted: #687069;
  --line: rgba(23, 59, 45, 0.18);
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.25);
}

.nav-wrap {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: .1em;
}
.site-logo {
  flex: 0 0 auto;
  width: clamp(130px, 11vw, 178px);
  max-width: 34vw;
  padding: 8px 12px;
  background: rgba(244, 240, 231, .92);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 8px;
  line-height: 0;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .16);
}
.site-logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 82px;
  object-fit: contain;
}
.brand span {
  display: block;
  margin-top: -8px;
  font-family: "Inter", sans-serif;
  font-size: .57rem;
  letter-spacing: .42em;
}

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-size: .93rem; }
.nav-button {
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.7);
}

.menu-toggle {
  display: none;
  color: inherit;
  border: 0;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  color: var(--white);
  background-image: url("https://yanaiatanai.com/wp-content/uploads/2024/12/2024-11-12-1-1.jpg");
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,29,20,.72), rgba(8,29,20,.12));
}
.hero-content { position: relative; max-width: 850px; padding-top: 90px; }
.hero h1, h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
  margin: 0 0 24px;
}
.hero h1 { max-width: 820px; font-size: clamp(3.2rem, 7vw, 6.4rem); }
h2 { font-size: clamp(2.6rem, 5vw, 4.6rem); }
h3 { line-height: 1.3; }

.eyebrow {
  margin: 0 0 14px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
}
.button-light { background: var(--cream); color: var(--green-dark); }
.button-dark { background: var(--green); color: var(--white); }

.booking-strip {
  position: relative;
  z-index: 5;
  margin-top: -64px;
}
.quick-booking-form {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr auto;
  align-items: end;
  gap: 1px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.quick-booking-form label { display: grid; gap: 6px; padding: 0 16px; }
.quick-booking-form span {
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.quick-booking-form input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  outline: none;
  background: transparent;
}

.section { padding: 125px 0; }
.two-column {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}
.body-copy { max-width: 720px; }
.body-copy p { margin-top: 0; color: #4b514d; }

.image-feature {
  position: relative;
  width: min(calc(100% - 40px), 1380px);
  margin: auto;
}
.image-feature img {
  height: 720px;
  object-fit: cover;
}
.feature-card {
  position: absolute;
  right: 5%;
  bottom: -75px;
  width: min(500px, 85%);
  padding: 58px;
  color: var(--white);
  background: var(--green);
}
.feature-card h2 { font-size: clamp(2.5rem, 4vw, 4rem); }

.rooms { padding-top: 210px; }
.section-heading { max-width: 720px; margin-bottom: 55px; }
.section-heading > p:last-child { color: var(--muted); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 280px;
  gap: 16px;
}
.gallery-item { margin: 0; overflow: hidden; }
.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-large { grid-row: span 2; }

.quote-section {
  padding: 130px 0;
  color: var(--white);
  text-align: center;
  background: var(--green-dark);
}
.quote-section h2 {
  max-width: 980px;
  margin: auto;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.amenities-grid article {
  min-height: 180px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.amenities-grid span {
  color: var(--muted);
  font-size: .75rem;
}
.amenities-grid h3 {
  margin-top: 40px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}

.contact { color: var(--white); background: var(--green); }
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
}
.contact-details { margin-top: 40px; }
.contact-form {
  display: grid;
  gap: 18px;
  padding: 42px;
  color: var(--text);
  background: var(--white);
}
.contact-form label { display: grid; gap: 7px; font-size: .86rem; font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7ddd8;
  padding: 13px 14px;
  outline: none;
  background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--green); }
.form-note { margin: 0; color: var(--muted); font-size: .75rem; }
.form-message {
  margin: 0;
  padding: 12px 14px;
  font-size: .9rem;
  font-weight: 600;
}
.form-message-success {
  color: #14532d;
  background: #dcfce7;
}
.form-message-error {
  color: #7f1d1d;
  background: #fee2e2;
}
.honeypot { position: absolute !important; left: -10000px !important; }

.whatsapp-float {
  position: fixed;
  z-index: 50;
  right: 20px;
  bottom: 20px;
  padding: 12px 18px;
  color: white;
  background: #1f9d55;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  font-size: .86rem;
  font-weight: 600;
}

footer { padding: 35px 0; color: var(--white); background: #091b14; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-inner p { margin: 0; font-size: .8rem; color: rgba(255,255,255,.7); }
.footer-logo {
  width: 138px;
  max-width: 42vw;
  padding: 7px 10px;
  background: rgba(244, 240, 231, .96);
  box-shadow: none;
}
.footer-logo img { max-height: 66px; }

@media (max-width: 900px) {
  .site-logo {
    width: 116px;
    padding: 7px 10px;
  }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 86px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    color: var(--text);
    background: var(--white);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px; }

  .hero { min-height: 700px; }
  .quick-booking-form { grid-template-columns: 1fr 1fr; gap: 20px; }
  .quick-booking-form .button { grid-column: 1 / -1; }

  .two-column,
  .contact-grid { grid-template-columns: 1fr; gap: 45px; }

  .feature-card { position: relative; right: auto; bottom: auto; width: 100%; }
  .rooms { padding-top: 120px; }

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

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

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .section { padding: 85px 0; }
  .hero { min-height: 650px; }
  .hero h1 { font-size: 3.35rem; }
  .booking-strip { margin-top: 0; }
  .quick-booking-form { grid-template-columns: 1fr; padding: 22px 14px; }
  .quick-booking-form .button { grid-column: auto; }
  .image-feature { width: 100%; }
  .image-feature img { height: 500px; }
  .feature-card { padding: 38px 25px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-large { grid-column: auto; grid-row: auto; }
  .amenities-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .footer-inner { flex-direction: column; gap: 18px; text-align: center; }
  .footer-logo { width: 128px; }
}
