:root {
  --cream: #f3efe0;
  --cream-deep: #e8e1cc;
  --cinnabar: #be2623;
  --cinnabar-deep: #9a1e1c;
  --slate: #5d7b8a;
  --slate-deep: #3f5864;
  --ink: #2c333a;
  --ink-soft: #5a636c;
  --paper: #faf7ee;
  --gold: #c4a35a;

  --font-display: "Shippori Mincho", "Times New Roman", serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;

  --space: clamp(1.25rem, 3vw, 2.5rem);
  --max: 68rem;
  --narrow: 38rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(190, 38, 35, 0.06), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 20%, rgba(93, 123, 138, 0.12), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 40%, var(--cream-deep) 100%);
  min-height: 100vh;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem var(--space);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom-color: color-mix(in srgb, var(--slate) 22%, transparent);
}

.site-header .wordmark,
.site-header .nav a {
  color: #f7f3e8;
  text-shadow: 0 1px 10px rgba(44, 51, 58, 0.35);
}

.site-header.is-scrolled .wordmark,
.site-header.is-scrolled .nav a {
  color: var(--ink);
  text-shadow: none;
}

.site-header .nav-cta {
  color: #ffd7d4 !important;
}

.site-header.is-scrolled .nav-cta {
  color: var(--cinnabar) !important;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a {
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 0.85;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #f7f3e8;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.05);
  animation: hero-settle 2s ease-out forwards;
}

@keyframes hero-settle {
  to {
    transform: scale(1);
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(44, 51, 58, 0.28) 0%,
      rgba(44, 51, 58, 0.08) 38%,
      rgba(44, 51, 58, 0.55) 72%,
      rgba(34, 40, 46, 0.82) 100%
    );
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(5.5rem, 12vw, 8rem) var(--space) clamp(2.5rem, 7vw, 4.5rem);
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 11vw, 6.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 0 0 0.85rem;
  opacity: 0;
  animation: rise 0.9s ease 0.15s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 500;
  line-height: 1.3;
  max-width: 18ch;
  margin: 0 0 0.85rem;
  color: color-mix(in srgb, #f7f3e8 92%, var(--gold));
  opacity: 0;
  animation: rise 0.9s ease 0.3s forwards;
}

.lede {
  max-width: 34ch;
  margin: 0 0 1.5rem;
  color: color-mix(in srgb, #f7f3e8 82%, transparent);
  opacity: 0;
  animation: rise 0.9s ease 0.45s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: rise 0.9s ease 0.6s forwards;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1.25rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--cinnabar);
  color: #fffaf6;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--cinnabar-deep);
}

.btn-ghost {
  background: transparent;
  color: #f7f3e8;
  border-color: color-mix(in srgb, #f7f3e8 45%, transparent);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: #f7f3e8;
  background: color-mix(in srgb, #f7f3e8 10%, transparent);
}

.section {
  padding: clamp(3.5rem, 9vw, 6rem) var(--space);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: var(--narrow);
}

.section-cream {
  background: color-mix(in srgb, var(--cream) 88%, white);
}

.section-slate {
  background:
    linear-gradient(
      160deg,
      var(--slate-deep) 0%,
      var(--slate) 55%,
      color-mix(in srgb, var(--slate) 80%, #7a97a5) 100%
    );
  color: #f4f7f8;
}

.section-slate .eyebrow {
  color: color-mix(in srgb, #f4f7f8 70%, var(--gold));
}

.section-slate h2 {
  color: #fff;
}

.section-book {
  background:
    radial-gradient(circle at 90% 10%, rgba(190, 38, 35, 0.1), transparent 40%),
    linear-gradient(180deg, var(--paper), var(--cream-deep));
  text-align: center;
}

.section-book .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-book p {
  margin-top: 0;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cinnabar);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.section p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  max-width: 42rem;
}

.section-slate p {
  color: color-mix(in srgb, #f4f7f8 82%, transparent);
}

.amenity-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 0.85rem 1.5rem;
  max-width: 42rem;
}

.amenity-list li {
  position: relative;
  padding-left: 1.1rem;
  font-weight: 500;
}

.amenity-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

.detail-list {
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.detail-list > div {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--slate) 22%, transparent);
}

.detail-list dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}

.detail-list dd {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink);
}

.site-footer {
  padding: 2.5rem var(--space) 3rem;
  border-top: 1px solid color-mix(in srgb, var(--slate) 20%, transparent);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  background: color-mix(in srgb, var(--cream) 70%, var(--cream-deep));
}

.footer-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 560px) {
  .nav a:not(.nav-cta) {
    display: none;
  }
}
