:root {
  --navy: #071a3a;
  --navy-soft: #132a4c;
  --gold: #b49455;
  --gold-deep: #8c6d32;
  --paper: #fbfaf6;
  --stone: #e8e3da;
  --sage: #5f746b;
  --clay: #9a5e44;
  --ink: #18202a;
  --muted: #59626e;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(7, 26, 58, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  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;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 40px;
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid rgba(180, 148, 85, 0.22);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  width: auto;
  min-width: 220px;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 600;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 650;
}

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

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

.nav-cta {
  min-width: 96px;
  text-align: center;
  padding: 9px 16px !important;
  color: var(--white) !important;
  background: var(--navy);
  border: 1px solid var(--navy) !important;
  border-radius: 6px;
}

.nav-cta:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep) !important;
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(180, 148, 85, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.language-switcher button {
  min-width: 36px;
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  color: var(--navy);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  cursor: pointer;
}

.language-switcher button:hover,
.language-switcher button.is-active {
  color: var(--white);
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image: url("assets/prague-townhouse-hero.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 96px;
  content: "";
  background: linear-gradient(to bottom, rgba(251, 250, 246, 0), var(--paper));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 58, 0.82), rgba(7, 26, 58, 0.2) 62%),
    linear-gradient(0deg, rgba(7, 26, 58, 0.28), rgba(7, 26, 58, 0.08));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding-top: 92px;
}

.kicker,
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: 5.4rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 3rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.18rem;
}

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

.button,
.stay-form button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
.stay-form button {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.button.primary:hover,
.stay-form button:hover {
  background: #c5a765;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.intro,
.feature-band,
.rooms,
.location,
.contact {
  padding: 92px 40px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 620px);
  gap: 70px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.intro-logo {
  border-top: 1px solid rgba(180, 148, 85, 0.42);
  border-bottom: 1px solid rgba(180, 148, 85, 0.42);
  padding: 36px 0;
}

.intro-logo img {
  width: 100%;
}

.intro-copy p:last-child,
.rooms-content p,
.contact p,
.feature-card p {
  color: var(--muted);
}

.feature-band {
  background: var(--navy);
  color: var(--white);
}

.section-heading,
.feature-grid,
.location-layout,
.contact {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.feature-band .section-heading {
  margin-bottom: 34px;
}

.feature-band .section-heading h2,
.feature-card h3 {
  color: var(--white);
}

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

.feature-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-number {
  display: block;
  margin-bottom: 48px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 900;
}

.rooms {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 54px;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
}

.rooms-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.rooms-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.room-list li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--stone);
  color: var(--navy);
  font-weight: 750;
}

.room-list li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin: 0 14px 1px -28px;
  background: var(--sage);
  border-radius: 50%;
}

.location {
  background: #eef3f0;
}

.location .section-heading {
  margin-bottom: 36px;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: 42px;
  align-items: stretch;
}

address {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-height: 280px;
  padding: 34px;
  color: var(--white);
  background: var(--sage);
  border-radius: 8px;
  font-style: normal;
}

address strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.map-panel {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(7, 26, 58, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 26, 58, 0.1) 1px, transparent 1px),
    #f7f4ec;
  background-size: 56px 56px;
}

.map-grid {
  position: absolute;
  inset: 28px;
  border: 2px solid rgba(180, 148, 85, 0.5);
  border-radius: 8px;
}

.map-grid::before,
.map-grid::after {
  position: absolute;
  content: "";
  background: var(--clay);
  opacity: 0.75;
}

.map-grid::before {
  width: 72%;
  height: 8px;
  left: 9%;
  top: 47%;
  transform: rotate(-12deg);
}

.map-grid::after {
  width: 8px;
  height: 82%;
  right: 28%;
  top: 9%;
  transform: rotate(16deg);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 28px;
  height: 28px;
  background: var(--navy);
  border: 5px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 12px 24px rgba(7, 26, 58, 0.28);
}

.map-button {
  position: absolute;
  right: 22px;
  bottom: 22px;
  color: var(--white);
  background: var(--navy);
}

.map-button:hover {
  background: var(--gold-deep);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 54px;
  align-items: start;
  background: var(--paper);
}

.stay-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.stay-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.stay-form input,
.stay-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd5d7;
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.stay-form button {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--sage);
  font-size: 0.92rem;
  font-weight: 750;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 24px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.site-footer img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 12px 20px;
  }

  .brand {
    min-width: 176px;
    font-size: 1.08rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 0.88rem;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero {
    min-height: 650px;
    background-position: 58% center;
  }

  .hero-inner {
    width: min(620px, calc(100% - 40px));
    margin-left: 20px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .intro,
  .rooms,
  .location-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro,
  .feature-band,
  .rooms,
  .location,
  .contact {
    padding: 72px 22px;
  }

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

@media (max-width: 560px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 14px;
  }

  .brand {
    width: 100%;
    min-width: 132px;
    justify-content: center;
    gap: 8px;
    font-size: 0.98rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    width: 100%;
    max-width: none;
    justify-content: center;
    gap: 4px 10px;
    font-size: 0.78rem;
  }

  .language-switcher {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .language-switcher button {
    min-width: 42px;
  }

  .nav-cta {
    min-width: auto;
    padding: 7px 10px !important;
  }

  .hero {
    min-height: 620px;
  }

  .hero-inner {
    padding-top: 178px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .intro-logo {
    padding: 22px 0;
  }

  .feature-card {
    min-height: 220px;
  }

  .stay-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .site-footer {
    align-items: flex-start;
  }
}
