:root {
  --paper: #fbf8f3;
  --ink: #211c18;
  --muted: #766b62;
  --line: rgba(48, 39, 32, 0.16);
  --cream: rgba(255, 252, 246, 0.76);
  --rose: #b88b7d;
  --rose-dark: #7e5148;
  --sage: #74816f;
  --shadow: 0 24px 70px rgba(55, 43, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(251, 248, 243, 0.96) 0%, rgba(251, 248, 243, 0.82) 38%, rgba(251, 248, 243, 0.18) 72%),
    linear-gradient(180deg, rgba(251, 248, 243, 0.14), rgba(251, 248, 243, 0.88));
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.1rem, 2.8vw, 2.25rem) clamp(1.25rem, 5vw, 5.5rem);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.topbar.is-scrolled {
  position: fixed;
  background: rgba(251, 248, 243, 0.84);
  box-shadow: 0 12px 40px rgba(55, 43, 34, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  gap: 0.05rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 0.92;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.75rem);
  color: rgba(33, 28, 24, 0.72);
  font-size: 0.87rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding-block: 0.35rem;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero__content {
  width: min(760px, calc(100% - 2.5rem));
  padding: 8rem 0 6rem;
  margin-left: clamp(1.25rem, 7vw, 7rem);
}

.eyebrow,
.card-label {
  margin: 0 0 0.95rem;
  color: var(--rose-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.94;
}

h1 {
  max-width: 690px;
  margin-bottom: 1.45rem;
  font-size: clamp(4.2rem, 9.4vw, 9.25rem);
}

.lead {
  max-width: 520px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.88rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: #fffdf9;
  background: var(--rose-dark);
  box-shadow: var(--shadow);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #6f463f;
}

.button--ghost {
  color: var(--ink);
  background: rgba(255, 252, 246, 0.62);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.button--wide {
  width: 100%;
}

.scroll-link {
  position: absolute;
  left: clamp(1.25rem, 7vw, 7rem);
  bottom: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(33, 28, 24, 0.6);
  font-size: 0.8rem;
  font-weight: 600;
}

.contact-section {
  scroll-margin-top: 8rem;
  background:
    linear-gradient(180deg, rgba(251, 248, 243, 0.96), #f2ede5),
    var(--paper);
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5.5rem);
}

.section-inner {
  width: min(1160px, 100%);
  margin-inline: auto;
}

.intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.25rem;
}

.intro h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.15rem, 2.1vw, 1.55rem);
  background: rgba(255, 252, 246, 0.66);
  box-shadow: 0 16px 44px rgba(55, 43, 34, 0.06);
}

.contact-card--booking {
  background: var(--ink);
  color: #fffaf3;
}

.contact-card--booking .card-label,
.contact-card--booking p {
  color: rgba(255, 250, 243, 0.68);
}

.contact-card--booking .button {
  box-shadow: none;
  background: #fffaf3;
  color: var(--ink);
}

.contact-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
  line-height: 1;
}

.contact-card p,
.contact-card address {
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-style: normal;
}

.contact-card > a,
.contact-card p a {
  color: var(--rose-dark);
  font-weight: 600;
}

.socials {
  display: grid;
  gap: 0.65rem;
  width: 100%;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
  color: var(--rose-dark);
  font-weight: 600;
}

@media (max-width: 980px) {
  .hero {
    min-height: 860px;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(251, 248, 243, 0.97) 0%, rgba(251, 248, 243, 0.78) 58%, rgba(251, 248, 243, 0.9) 100%);
  }

  .hero__content {
    margin-inline: auto;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .topbar {
    align-items: flex-start;
  }

  .nav-links {
    display: grid;
    justify-items: end;
    gap: 0.2rem;
  }

  .hero {
    min-height: 780px;
  }

  .hero__image {
    object-position: 72% 50%;
  }

  h1 {
    font-size: clamp(3.45rem, 16vw, 5.4rem);
  }

  .actions,
  .button {
    width: 100%;
  }

  .scroll-link {
    display: none;
  }

  .intro {
    display: block;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 14rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
