:root {
  --sandstone: #D2B394;
  --cream: #F7F4EE;
  --sage: #C5C6AC;
  --rust: #A56A48;
  --rust-dark: #8F5638;
  --brown: #472B26;
  --ink: #45443E;
  --serif: "Cormorant Garamond", "PP Fragment", Georgia, serif;
  --sans: "Manrope", -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 28px;
  color: var(--ink);
  background: var(--cream);
}

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

/* ---------- Nav ---------- */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(71, 43, 38, 0.08);
}
.topnav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
  height: 90px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav-left { display: flex; gap: 40px; }
.nav-right { display: flex; gap: 40px; align-items: center; justify-content: flex-end; }
.nav-left a, .nav-right > a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
}
.nav-left a:hover, .nav-right > a:hover { color: var(--rust); }

.wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  color: var(--brown);
  text-decoration: none;
  white-space: nowrap;
}

.btn-pill {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  background: transparent;
  border: 1px solid var(--rust);
  border-radius: 999px;
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-pill:hover { background: var(--rust); color: var(--cream); }

.book-wrap { position: relative; }
.book-menu {
  display: none;
  position: absolute;
  right: 0; top: calc(100% + 10px);
  background: var(--brown);
  min-width: 300px;
  padding: 8px 0;
}
.book-menu.open { display: block; }
.book-menu a {
  display: block;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
}
.book-menu a:hover { background: rgba(255,255,255,0.08); }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  margin-top: 90px;
}
.hero-panel {
  background: var(--sandstone);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 64px;
  line-height: 70px;
  color: var(--brown);
  text-align: center;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Tagline ---------- */
.tagline {
  padding: 120px 24px;
  display: flex;
  justify-content: center;
}
.tagline p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 36px;
  line-height: 48px;
  color: var(--rust);
  text-align: center;
  max-width: 900px;
}

/* ---------- Intro ---------- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 100px 120px;
  align-items: center;
}
.intro-text p { margin-bottom: 28px; }
.intro-ctas { display: flex; flex-direction: column; gap: 20px; margin-top: 44px; }
.btn-outline {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  text-decoration: none;
  text-align: center;
  border: 1px solid var(--rust);
  border-radius: 999px;
  padding: 20px 32px;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--rust); color: var(--cream); }
.intro-image img { width: 100%; height: auto; }

/* ---------- Banner ---------- */
.banner {
  background: url("assets/banner.jpg") center/cover no-repeat;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.banner h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 48px;
  line-height: 62px;
  color: #ffffff;
  text-align: center;
}

/* ---------- Values ---------- */
.values {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 100px;
  align-items: center;
  background: #FDFCFA;
}
.values-image img { width: 100%; height: 100%; object-fit: cover; }
.value { margin-bottom: 36px; }
.value:last-child { margin-bottom: 0; }
.value h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  color: var(--brown);
  margin-bottom: 8px;
}

/* ---------- Areas ---------- */
.areas {
  background: var(--sage);
  padding: 100px 24px;
}
.label {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust-dark);
  margin-bottom: 56px;
}
.areas .label, .areas-cols { max-width: 1040px; margin-left: auto; margin-right: auto; }
.areas .label { margin-bottom: 56px; }
.areas-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.areas-cols ul { list-style: none; }
.areas-cols li {
  font-size: 24px;
  line-height: 44px;
  font-weight: 400;
  color: var(--rust-dark);
}

/* ---------- About ---------- */
.about {
  background: var(--sage);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  padding: 40px 100px 120px;
  max-width: 1440px;
  margin: 0 auto;
  align-items: start;
}
.about-text p { margin-bottom: 28px; }
.about-text .sign { margin-top: 40px; margin-bottom: 0; }
.about-image img { width: 100%; height: auto; }

/* ---------- Contact ---------- */
.contact {
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 100px 120px;
}
.contact .label { margin-bottom: 64px; }
.row { display: grid; gap: 44px; margin-bottom: 44px; }
.row.two { grid-template-columns: 1fr 1fr; }
form label {
  display: block;
  font-size: 16px;
  color: var(--ink);
}
input, textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(71, 43, 38, 0.35);
  background: transparent;
  font-family: var(--sans);
  font-size: 17px;
  color: var(--brown);
  padding: 12px 2px;
  outline: none;
  resize: vertical;
}
textarea { border: 1px solid rgba(71, 43, 38, 0.35); margin-top: 12px; padding: 14px; }
input:focus, textarea:focus { border-color: var(--rust); }
.btn-solid {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--rust);
  border: none;
  border-radius: 999px;
  padding: 16px 44px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-solid:hover { background: var(--rust-dark); }
.btn-solid:disabled { opacity: 0.6; cursor: default; }
.form-status { margin-top: 20px; font-size: 16px; min-height: 22px; }
.form-status.ok { color: #4d6b3c; }
.form-status.err { color: #a03a2e; }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/footer.jpg") center/cover no-repeat;
  opacity: 0.4;
}
.footer-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 110px 56px 40px;
}
.footer-logo {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(64px, 9vw, 128px);
  color: var(--brown);
  line-height: 1.05;
}
.ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  color: var(--brown);
  text-decoration: none;
  font-size: 20px;
}
.ig:hover { color: var(--rust); }
.footer-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 90px;
  font-size: 12px;
  line-height: 16px;
  color: var(--ink);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .topnav-inner { padding: 0 20px; grid-template-columns: auto 1fr auto; height: 72px; }
  .wordmark { order: -1; font-size: 26px; }
  .nav-left, .nav-right { display: none; }
  .topnav.nav-open .nav-left, .topnav.nav-open .nav-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: absolute;
    background: var(--cream);
    left: 0; right: 0;
    padding: 20px 24px;
  }
  .topnav.nav-open .nav-left { top: 72px; }
  .topnav.nav-open .nav-right { top: 178px; align-items: flex-start; padding-bottom: 28px; box-shadow: 0 12px 20px rgba(0,0,0,0.08); }
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--brown);
    cursor: pointer;
    justify-self: end;
  }
  .book-wrap { width: 100%; }
  .btn-pill { width: 100%; }
  .book-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 10px;
  }
  .book-menu a { padding: 14px 20px; letter-spacing: 0.1em; }
  .hero { grid-template-columns: 1fr; margin-top: 72px; min-height: 0; }
  .hero-panel { min-height: 420px; }
  h1 { font-size: 44px; line-height: 52px; }
  .tagline { padding: 72px 24px; }
  .tagline p { font-size: 28px; line-height: 38px; }
  .intro, .values, .about { grid-template-columns: 1fr; gap: 48px; padding: 48px 24px 72px; }
  .banner h2 { font-size: 34px; line-height: 44px; }
  .banner { min-height: 380px; }
  .areas { padding: 72px 24px; }
  .areas-cols { grid-template-columns: 1fr; gap: 0; }
  .areas-cols li { font-size: 20px; line-height: 40px; }
  .contact { padding: 72px 24px; }
  .row.two { grid-template-columns: 1fr; }
  .footer-inner { padding: 72px 24px 32px; }
  .footer-meta { margin-top: 56px; }
}
