/* ========================================
   GLOBAL & VARIABLES
   ======================================== */
:root {
  --burgundy: #821616;
  --cream: #e7d4c8;
  --ink: #4c2020;
  --line: rgba(130, 22, 22, 0.34);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--burgundy);
  background: var(--cream);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}

.page {
  min-height: 100vh;
  overflow: hidden;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px clamp(22px, 5vw, 76px);
}
.nav-mark {
  font-family: "Bodoni Moda", serif;
  font-size: 18px;
  letter-spacing: 0.14em;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-links a {
  opacity: 0.78;
  transition: opacity 0.2s;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-cta {
  border: 1px solid var(--burgundy);
  padding: 11px 17px;
  opacity: 1 !important;
  cursor: pointer;
  background: transparent;
  color: inherit;
  font-family: inherit;
}

/* ========================================
   BUTTONS
   ======================================== */
.buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 15px 23px;
  border: 1px solid var(--burgundy);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: 0.2s ease;
}
.btn-primary {
  background: var(--burgundy);
  color: var(--cream);
}
.btn:hover {
  transform: translateY(-2px);
}

/* ========================================
   SECTIONS (base layout primitives, shared
   by the homepage, booking page and admin)
   ======================================== */
section {
  padding: 110px clamp(24px, 7vw, 110px);
}
.section-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.section-title {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-weight: 400;
  font-variation-settings: "opsz" 12;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1;
}

/* ========================================
   BOTANICAL DECORATION

   Base line-art treatment, shared by any page that uses it (homepage
   hero, gallery header). Page-specific positioning (size/placement)
   lives alongside each page's own styles.
   ======================================== */
.botanical {
  position: absolute;
  pointer-events: none;
  fill: none;
  stroke: var(--burgundy);
  stroke-width: 1.15;
  opacity: 0.58;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  border-top: 1px solid var(--line);
  padding: 25px clamp(22px, 5vw, 76px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* ========================================
   UTILITIES
   ======================================== */
.hidden {
  display: none !important;
}

/* ========================================
   RESPONSIVE / MOBILE (shared)
   ======================================== */
@media (max-width: 760px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }
  .nav {
    padding: 22px 20px;
  }
  section {
    padding: 80px 22px;
  }
  footer {
    display: block;
    text-align: center;
    line-height: 2;
  }
}
