:root {
  --clay: #B85C3D;
  --clay-d: #8a4129;
  --clay-l: #d4795c;
  --teal: #1A4D52;
  --teal-l: #2a6b72;
  --cream: #F4ECE2;
  --sand: #f9f4ee;
  --ink: #262321;
  --muted: #8a7e75;
  --border: rgba(38, 35, 33, 0.11);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', sans-serif;
  --r: 4px;
  --rl: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--sans);
  background: #FDFAF6;
  color: var(--ink);
  overflow-x: hidden
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 4rem;
  background: rgba(253, 250, 246, 0.93);
  backdrop-filter: blur(10px);
  transition: all 0.3s
}

nav.scrolled {
  padding: 1rem 4rem;
  border-bottom: 0.5px solid var(--border)
}

.nav-logo {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.9rem
}

.nav-logo-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1
}

.nav-logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 300
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: pointer
}

.nav-links a:hover {
  color: var(--ink)
}

.btn-nav {
  font-family: var(--sans);
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--clay);
  color: #fff;
  border: none;
  padding: 0.7rem 1.6rem;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: var(--r)
}

.btn-nav:hover {
  background: var(--clay-d)
}

#hero {
  min-height: 100vh;
  background: var(--teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 6rem
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(244, 236, 226, 1) 48px, rgba(244, 236, 226, 1) 48.5px), repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(244, 236, 226, 1) 48px, rgba(244, 236, 226, 1) 48.5px)
}

.hero-horizon {
  position: absolute;
  bottom: 18%;
  left: 8%;
  right: 8%;
  height: 0.5px;
  background: rgba(244, 236, 226, 0.18)
}

.hero-sun {
  position: absolute;
  bottom: 17.6%;
  right: 20%;
  width: 7px;
  height: 7px;
  background: var(--clay);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(184, 92, 61, 0.12), 0 0 0 24px rgba(184, 92, 61, 0.06)
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem
}

.hero-mark {
  margin: 0 auto 2.8rem;
  width: 72px
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0.28em;
  color: var(--cream);
  text-transform: uppercase;
  line-height: 0.95
}

.hero-title span {
  display: block;
  font-size: clamp(3.8rem, 9vw, 7.5rem)
}

.hero-loc {
  font-size: 0.68rem;
  letter-spacing: 0.55em;
  color: rgba(244, 236, 226, 0.4);
  text-transform: uppercase;
  margin-top: 1.4rem;
  font-weight: 300
}

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(244, 236, 226, 0.55);
  margin-top: 2.8rem;
  letter-spacing: 0.04em
}

.hero-cta {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

.btn-p {
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--clay);
  color: #fff;
  border: none;
  padding: 1rem 2.8rem;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: var(--r)
}

.btn-p:hover {
  background: var(--clay-d)
}

.btn-o {
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  color: var(--cream);
  border: 0.5px solid rgba(244, 236, 226, 0.35);
  padding: 1rem 2.8rem;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: var(--r)
}

.btn-o:hover {
  border-color: rgba(244, 236, 226, 0.7)
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.63rem;
  letter-spacing: 0.35em;
  color: rgba(244, 236, 226, 0.3);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem
}

.scroll-line {
  width: 0.5px;
  height: 36px;
  background: rgba(244, 236, 226, 0.18);
  animation: sp 2s ease-in-out infinite
}

@keyframes sp {

  0%,
  100% {
    opacity: 0.25
  }

  50% {
    opacity: 0.8
  }
}

@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.fu {
  animation: fu 0.7s ease both
}

.d1 {
  animation-delay: 0.1s
}

.d2 {
  animation-delay: 0.25s
}

.d3 {
  animation-delay: 0.4s
}

.d4 {
  animation-delay: 0.55s
}

#about {
  padding: 9rem 4rem;
  background: var(--cream)
}

.about-wrap {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center
}

.lbl {
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  color: var(--clay);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.4rem
}

.about-title {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.5rem
}

.about-body {
  font-size: 0.87rem;
  line-height: 2;
  color: var(--muted)
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem
}

.stat {
  border-top: 0.5px solid var(--border);
  padding-top: 1rem
}

.stat-n {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--teal)
}

.stat-l {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 0.2rem
}

.about-card {
  background: var(--teal);
  padding: 2.8rem;
  border-radius: var(--rl);
  position: relative;
  overflow: hidden
}

.ac-quote {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-style: italic;
  line-height: 1.5;
  font-weight: 300;
  color: var(--cream)
}

.ac-src {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: rgba(244, 236, 226, 0.38);
  text-transform: uppercase;
  margin-top: 1.5rem
}

.ac-dot {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(184, 92, 61, 0.18)
}

#rooms {
  padding: 9rem 4rem;
  background: #FDFAF6
}

.sec-hdr {
  text-align: center;
  margin-bottom: 4.5rem
}

.sec-title {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--ink)
}

.rooms-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem
}

.room-card {
  border: 0.5px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  background: #FDFAF6
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(38, 35, 33, 0.07)
}

.room-vis {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.room-vis-num {
  position: absolute;
  top: 1.2rem;
  left: 1.4rem;
  font-size: 0.63rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.45;
  font-weight: 500
}

.room-vis-name {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  opacity: 0.12;
  text-transform: uppercase
}

.room-inf {
  padding: 1.5rem
}

.room-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.4rem
}

.room-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem
}

.room-meta {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.room-price {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--clay)
}

.room-price small {
  font-family: var(--sans);
  font-size: 0.68rem;
  color: var(--muted)
}

.badge {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 2px
}

.ba {
  background: rgba(26, 77, 82, 0.09);
  color: var(--teal)
}

.bf {
  background: rgba(184, 92, 61, 0.09);
  color: var(--clay)
}

#booking {
  padding: 9rem 4rem;
  background: var(--cream)
}

.bk-wrap {
  max-width: 720px;
  margin: 0 auto
}

.sec-title-left {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.5rem
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.2rem
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 0.45rem
}

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

.fg label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500
}

.fg input,
.fg select,
.fg textarea {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--ink);
  background: #FDFAF6;
  border: 0.5px solid var(--border);
  padding: 0.88rem 1rem;
  border-radius: var(--r);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.fg select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231A4D52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 14px;
  padding-right: 2.8rem;
}

.fg select option {
  background: #FDFAF6;
  color: var(--ink);
  padding: 0.5rem;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26, 77, 82, 0.08);
}

.fg textarea {
  resize: vertical;
  min-height: 78px
}

.price-box {
  margin-top: 1.6rem;
  padding: 1.6rem 2rem;
  background: var(--teal);
  color: var(--cream);
  border-radius: var(--rl);
  display: flex;
  justify-content: space-between;
  align-items: center
}

.price-box .pl {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  opacity: 0.65;
  text-transform: uppercase
}

.price-box .pi {
  font-size: 0.7rem;
  color: rgba(244, 236, 226, 0.45);
  margin-top: 0.25rem
}

.price-box .pa {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300
}

.btn-book {
  width: 100%;
  margin-top: 1.4rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--clay);
  color: #fff;
  border: none;
  padding: 1.2rem;
  cursor: pointer;
  border-radius: var(--r);
  transition: background 0.2s
}

.btn-book:hover {
  background: var(--clay-d)
}

.mo {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(38, 35, 33, 0.55);
  align-items: center;
  justify-content: center;
  padding: 2rem
}

.mo.show {
  display: flex
}

.mb {
  background: #FDFAF6;
  padding: 3.2rem;
  border-radius: var(--rl);
  max-width: 480px;
  width: 100%;
  text-align: center
}

.mi-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--clay)
}

.mt {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.75rem
}

.md {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem
}

.mc {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 0.9rem 2.2rem;
  cursor: pointer;
  border-radius: var(--r);
  transition: background 0.2s
}

.mc:hover {
  background: var(--teal-l)
}

footer {
  background: var(--ink);
  color: rgba(244, 236, 226, 0.55);
  padding: 5rem 4rem 3rem
}

.ft-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5rem
}

.ft-logo-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.22em;
  color: var(--cream);
  text-transform: uppercase
}

.ft-logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  color: rgba(244, 236, 226, 0.3);
  text-transform: uppercase;
  margin-top: 0.3rem
}

.ft-brand-body {
  font-size: 0.8rem;
  line-height: 1.9;
  margin-top: 1.5rem
}

.ft-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.2rem
}

.ft-col a {
  display: block;
  font-size: 0.8rem;
  color: rgba(244, 236, 226, 0.45);
  text-decoration: none;
  margin-bottom: 0.6rem;
  cursor: pointer;
  transition: color 0.2s
}

.ft-col a:hover {
  color: var(--cream)
}

.ft-bot {
  max-width: 1120px;
  margin: 2.5rem auto 0;
  padding-top: 2rem;
  border-top: 0.5px solid rgba(244, 236, 226, 0.08);
  display: flex;
  justify-content: space-between
}

.ft-bot p {
  font-size: 0.7rem;
  color: rgba(244, 236, 226, 0.25)
}

@media(max-width:768px) {

  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%
  }

  nav {
    padding: 1rem 1.2rem
  }

  .nav-links {
    display: none
  }

  .hero-title span {
    font-size: 2.8rem
  }

  .about-wrap {
    grid-template-columns: 1fr;
    gap: 2rem
  }

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

  .ft-inner {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  #about,
  #rooms,
  #booking {
    padding: 4rem 1rem
  }

  .bk-wrap {
    padding: 1.5rem 1rem;
    margin: 0
  }

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

  .room-card {
    padding: 1.2rem 1rem
  }

  footer {
    padding: 3rem 1.2rem 1.5rem
  }

  .btn-nav {
    padding: 0.6rem 1rem;
    font-size: 0.65rem
  }
}