:root {
  --bg: #f6f3ee;
  --ink: #16120f;
  --muted: #6b635c;
  --line: #ddd4c8;
  --rust: #9a3412;
  --cream: #fffaf3;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Archivo", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem clamp(1.2rem, 4vw, 2.5rem);
  mix-blend-mode: difference;
  color: #fff;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}

.nav-cta {
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.1rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: drift 16s var(--ease) forwards;
  transform: scale(1.08);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 8, 6, 0.25) 0%, rgba(12, 8, 6, 0.2) 40%, rgba(12, 8, 6, 0.82) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 12vw, 7rem) clamp(1.2rem, 4vw, 2.5rem) clamp(2.2rem, 5vw, 3.5rem);
  max-width: 40rem;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  animation: up 0.85s var(--ease) both;
}

.lede {
  font-size: clamp(1.05rem, 2.3vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
  animation: up 0.85s var(--ease) 0.1s both;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  animation: up 0.85s var(--ease) 0.18s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.3rem;
  background: var(--rust);
  color: #fff;
  border: none;
  font: inherit;
  font-weight: 650;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-line {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-full {
  width: 100%;
}

.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.2rem, 4vw, 2.5rem);
}

.intro {
  max-width: 28rem;
  margin-bottom: 2rem;
}

.intro h2,
.band-copy h2,
.reserve h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4rem);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.intro p,
.reserve > p {
  color: var(--muted);
}

.services {
  list-style: none;
  border-top: 1px solid var(--line);
}

.services li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.services strong {
  display: block;
  font-size: 1.1rem;
}

.services span {
  color: var(--muted);
  font-size: 0.92rem;
}

.services em {
  font-style: normal;
  font-weight: 700;
  font-size: 1.15rem;
}

.band {
  display: grid;
  gap: 1.5rem;
  background: var(--ink);
  color: #fff;
  padding-block: 0;
  padding-inline: 0;
  overflow: hidden;
}

@media (min-width: 820px) {
  .band {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
    min-height: 28rem;
  }
}

.band-copy {
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.2rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.band-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.address {
  margin-top: 1rem;
  color: #fff !important;
  font-weight: 600;
}

.band-visual img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.reserve {
  max-width: 34rem;
}

.booking {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.booking label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.booking input,
.booking select {
  font: inherit;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 0.3rem;
  background: var(--cream);
  color: var(--ink);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  padding: 1.4rem clamp(1.2rem, 4vw, 2.5rem) 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-bg img {
    transform: none;
  }
}
