:root {
  --ink: #211b16;
  --muted: #65584d;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: #ddd4c7;
  --brick: #9d3d2e;
  --brick-dark: #6d2b24;
  --green: #476846;
  --gold: #c6923c;
  --shadow: 0 18px 44px rgba(41, 31, 22, 0.14);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(221, 212, 199, 0.8);
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--brick-dark);
  color: #fff7eb;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--brick-dark);
}

.nav-contact {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 76px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #231b16;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 18, 13, 0.78), rgba(23, 18, 13, 0.34) 44%, rgba(23, 18, 13, 0.08)),
    linear-gradient(0deg, rgba(23, 18, 13, 0.76), rgba(23, 18, 13, 0.02) 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 0;
  color: #fffaf2;
}

.place {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.05;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
  font-weight: 700;
}

h1 {
  max-width: 760px;
  font-size: clamp(54px, 8vw, 116px);
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.9);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid #fffaf2;
  border-radius: 999px;
  background: #fffaf2;
  color: var(--brick-dark);
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.button-secondary {
  background: rgba(255, 250, 242, 0.1);
  color: #fffaf2;
}

.intro,
.story,
.details {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 92px) 0;
}

.intro h2,
.story h2,
.details h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.intro p,
.story p,
.details p {
  color: var(--muted);
  font-size: 18px;
}

.booking-card {
  scroll-margin-top: 96px;
  display: grid;
  gap: 8px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  font-style: normal;
}

.booking-card span {
  color: var(--brick);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.1;
}

.booking-card a {
  width: fit-content;
  color: var(--green);
  font-size: 17px;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: clamp(36px, 6vw, 72px) 0;
}

.story-image,
.detail-image {
  overflow: hidden;
  border-radius: 8px;
  background: #e7dfd2;
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  height: auto;
}

.details {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(40px, 7vw, 96px) 0 clamp(64px, 9vw, 120px);
}

.detail-image {
  justify-self: center;
  width: min(100%, 390px);
}

.detail-image img {
  width: 100%;
  height: auto;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--brick-dark);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(23, 18, 13, 0.84), rgba(23, 18, 13, 0.18) 72%),
      linear-gradient(90deg, rgba(23, 18, 13, 0.56), rgba(23, 18, 13, 0.08));
  }

  .hero-image img {
    object-position: 54% center;
  }

  .intro,
  .story,
  .details {
    grid-template-columns: 1fr;
  }

  .story-image {
    order: -1;
  }

  .details {
    padding-top: 20px;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 10px;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 18px;
  }

  h1 {
    font-size: clamp(34px, 9vw, 42px);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .booking-card {
    padding: 22px;
  }
}
