:root {
  --brand: #00729f;
  --brand-dark: #00466d;
  --ink: #172027;
  --muted: #66727a;
  --line: #e8edf0;
  --soft: #f7f9fa;
  --warm: #b86c47;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

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

a {
  color: inherit;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  color: #fff;
  background: rgba(0, 70, 109, 0.92);
  backdrop-filter: blur(10px);
}

.header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.brand small {
  margin-left: 6px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.58em;
  font-weight: 500;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0.84;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  background: url("/assets/hero.jpg") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 70, 109, 0.55), rgba(0, 30, 50, 0.74));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 32px));
  color: #fff;
  padding: 72px 0;
}

.hero-sub {
  margin: 0 0 12px;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero h1 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 5.4rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-desc {
  margin: 0 0 32px;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  opacity: 0.92;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.button.primary {
  background: var(--brand);
  color: #fff;
}

.button.outline {
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: #fff;
}

.section {
  padding: 80px 0;
}

.section h2 {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 500;
  text-align: center;
}

.section-sub {
  margin: 0 0 48px;
  color: var(--muted);
  text-align: center;
}

.hotel-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 0 0 72px;
  margin: 0 0 72px;
  border-bottom: 1px solid var(--line);
}

.hotel-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.hotel-block.reverse .hotel-image {
  order: 2;
}

.hotel-image {
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
}

.hotel-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
}

.hotel-info {
  padding-left: 24px;
  border-left: 3px solid var(--brand);
}

.accent-warm .hotel-info {
  border-left-color: var(--warm);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.accent-warm .eyebrow {
  color: var(--warm);
}

.hotel-info h3 {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 600;
}

.tagline {
  margin: 0 0 18px;
  color: #7c878e;
  font-size: 0.95rem;
}

.hotel-info p:not(.eyebrow):not(.tagline) {
  color: #3e4a50;
  line-height: 1.75;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 18px;
}

.feature-list span {
  padding: 6px 11px;
  border-radius: 4px;
  background: #f0f7fa;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 650;
}

.accent-warm .feature-list span {
  background: #fbf2ed;
  color: #8a4f33;
}

.hotel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #7b878e;
  font-size: 0.84rem;
}

.about-section {
  background: var(--soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  margin-top: 32px;
}

.about-copy p {
  margin: 0 0 18px;
  color: #3f4b52;
  line-height: 1.85;
}

.stats {
  display: grid;
  gap: 18px;
}

.stat {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.2), transparent 42%),
    linear-gradient(145deg, #00466d 0%, #006f96 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 70, 109, 0.22);
}

.stat::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  pointer-events: none;
}

.stat strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  font-weight: 600;
}

.stat span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer {
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.74);
  background: #003a5a;
  border-top: 3px solid var(--brand);
  text-align: center;
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 780px) {
  .header-inner {
    position: relative;
    height: 64px;
    flex-direction: row;
    justify-content: space-between;
  }

  .brand {
    font-size: 1.25rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: rgba(0, 70, 109, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(0, 30, 50, 0.28);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
    font-size: 0.76rem;
    text-align: center;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .button {
    width: min(100%, 260px);
  }

  .hotel-block,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hotel-block.reverse .hotel-image {
    order: unset;
  }

  .hotel-image,
  .hotel-image img {
    min-height: 240px;
  }

  .hotel-info {
    padding-left: 18px;
  }
}
