:root {
  --ink: #13211f;
  --muted: #5e6965;
  --bg: #f7f5ef;
  --panel: #fffdf8;
  --line: rgba(19, 33, 31, 0.14);
  --pine: #12312c;
  --pine-2: #23473f;
  --gold: #c4a35a;
  --coral: #b9624b;
  --sky: #d9e7e5;
  --shadow: 0 18px 50px rgba(19, 33, 31, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 20;
  background: var(--panel);
  padding: 10px 14px;
  border-radius: 4px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 28px;
  color: white;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(18, 49, 44, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: var(--pine);
  background: var(--gold);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  opacity: 0.82;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.9);
}

.nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover,
.nav a:focus {
  border-color: var(--gold);
}

.header-actions,
.hero-actions,
.event-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lang-toggle,
.button {
  min-height: 42px;
  border-radius: 4px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.lang-toggle {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
}

.button-solid {
  color: var(--pine);
  background: var(--gold);
  border-color: var(--gold);
}

.button-light {
  color: white;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.button-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.dark-button {
  color: var(--pine);
  border-color: rgba(18, 49, 44, 0.25);
  background: white;
}

.button:hover,
.button:focus,
.lang-toggle:hover,
.lang-toggle:focus {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 93svh;
  display: grid;
  align-items: end;
  padding: 138px 28px 118px;
  color: white;
  overflow: hidden;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 26, 24, 0.86), rgba(11, 26, 24, 0.42) 54%, rgba(11, 26, 24, 0.1)),
    linear-gradient(0deg, rgba(11, 26, 24, 0.62), rgba(11, 26, 24, 0.05) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  margin-left: max(0px, calc((100vw - 1180px) / 2));
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow.dark,
.section-kicker {
  color: var(--coral);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  margin: 22px 0 28px;
  max-width: 670px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.55;
}

.booking-strip {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 56px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.booking-strip > div {
  padding: 18px;
  background: rgba(18, 49, 44, 0.58);
  min-width: 0;
}

.booking-strip span,
.contact-actions span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-strip strong {
  display: block;
  font-size: 15px;
  line-height: 1.3;
}

.section {
  padding: 82px 28px;
}

.split,
.section-head,
.offer-grid,
.room-grid,
.feature-list,
.event-panel,
.contact-card,
.gallery-grid,
.site-footer {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.intro-section h2,
.section-head h2,
.event-panel h2,
.contact-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
}

.split p,
.room-card p,
.offer-grid p,
.event-panel p,
.contact-card p,
.site-footer span {
  color: var(--muted);
  line-height: 1.72;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.metrics div {
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 12px 26px rgba(19, 33, 31, 0.05);
}

.metrics strong {
  display: block;
  font-size: 28px;
  color: var(--pine);
}

.metrics span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.rooms {
  background: #ebe8de;
}

.section-head {
  margin-bottom: 34px;
}

.section-head.wide {
  max-width: 900px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.room-card {
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.room-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.room-card > div {
  padding: 28px;
}

.room-card h3,
.offer-grid h3 {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.15;
}

.room-card.accent {
  background: var(--pine);
  color: white;
}

.room-card.accent p {
  color: rgba(255, 255, 255, 0.76);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.feature-list span {
  padding: 10px 12px;
  border: 1px solid rgba(18, 49, 44, 0.16);
  background: rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.offer {
  background: var(--panel);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.offer-grid article {
  min-width: 0;
  padding: 12px 12px 22px;
  border: 1px solid var(--line);
  background: white;
}

.offer-grid img {
  width: 100%;
  aspect-ratio: 1 / 0.76;
  object-fit: cover;
  margin-bottom: 18px;
}

.offer-grid h3,
.offer-grid p {
  padding: 0 10px;
}

.events {
  background: var(--sky);
}

.event-panel {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.event-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.event-panel > div {
  padding: 52px;
  align-self: center;
}

.gallery {
  background: #f3eee3;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 250px;
  gap: 12px;
}

.gallery-grid button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-grid button:first-child {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-grid button:hover img,
.gallery-grid button:focus img {
  transform: scale(1.035);
}

.contact {
  background: var(--pine);
  color: white;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions a {
  padding: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-actions span {
  color: rgba(255, 255, 255, 0.62);
}

.contact-actions strong {
  display: block;
  line-height: 1.35;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 30px 28px 96px;
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer a {
  font-weight: 900;
  color: var(--coral);
}

.mobile-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 18;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.mobile-bar a {
  min-height: 52px;
  display: grid;
  place-items: center;
  background: var(--pine);
  color: white;
  font-weight: 900;
}

.mobile-bar a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(8, 14, 13, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 86svh;
  width: min(1100px, 100%);
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: white;
  background: transparent;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 16px;
  }

  .nav,
  .header-actions .button {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding: 104px 18px 216px;
  }

  h1 {
    font-size: 48px;
  }

  .lead {
    font-size: 17px;
  }

  .booking-strip {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    bottom: 74px;
  }

  .booking-strip > div {
    padding: 13px 14px;
  }

  .section {
    padding: 60px 18px;
  }

  .split,
  .room-grid,
  .event-panel,
  .contact-card {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .intro-section h2,
  .section-head h2,
  .event-panel h2,
  .contact-card h2 {
    font-size: 34px;
  }

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

  .offer-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .room-card img {
    height: 320px;
  }

  .event-panel img {
    min-height: 320px;
  }

  .event-panel > div,
  .room-card > div {
    padding: 24px;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }

  .gallery-grid button:first-child {
    grid-row: span 1;
  }

  .site-footer {
    display: grid;
    padding: 26px 18px 84px;
  }

  .mobile-bar {
    display: grid;
  }
}

@media (max-width: 420px) {
  .brand strong {
    font-size: 15px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 41px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .intro-section h2,
  .section-head h2,
  .event-panel h2,
  .contact-card h2 {
    font-size: 30px;
  }
}
