/* Layout helpers not covered by the imported Tailwind bundle */

.site-header {
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background-color: rgb(43 27 23 / 0.92);
  border-bottom: 1px solid rgb(242 232 216 / 0.12);
}

#mobile-nav {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

#mobile-nav.is-open {
  transform: translateX(0);
}

.hero-ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 12rem;
  margin: 1.5rem auto 2rem;
}

.hero-ornament::before,
.hero-ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgb(242 232 216 / 0.45);
}

.hero-ornament span {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: rgb(242 232 216 / 0.65);
  flex-shrink: 0;
}

.project-view img {
  transition: opacity 0.35s ease;
}

.project-view img[hidden] {
  display: none;
}

.project-toggle [aria-pressed="true"] {
  background-color: rgb(63 74 60);
  color: rgb(242 232 216);
  border-color: rgb(63 74 60);
}

.project-toggle [aria-pressed="false"] {
  background-color: transparent;
  color: rgb(43 27 23);
}

.booking-card {
  border: 1px solid rgb(217 200 146);
  background: rgb(250 245 236);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(43 27 23 / 0.5);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgb(217 200 146);
  background: rgb(250 245 236);
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  color: rgb(43 27 23);
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgb(63 74 60);
}

.project-view {
  position: relative;
  aspect-ratio: 4 / 5;
}

.stack-4 > * + * {
  margin-top: 1rem;
}

.stack-5 > * + * {
  margin-top: 1.25rem;
}

.stack-6 > * + * {
  margin-top: 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
