/* ============================================================
   Vila Viola — Variant 2 (pure static)
   Luxury seaside aesthetic: warm ivory, deep ink, brass accent.
   ============================================================ */

/* ------------------------------------------------------------
   Self-hosted fonts (variable woff2, served from same origin).
   Paths are relative to this file, so they resolve correctly
   from every page, including the /en/, /ru/ and /de/ folders.
   The browser only downloads the subsets a page actually needs.
   ------------------------------------------------------------ */

/* Playfair Display — upright */
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/playfair-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/playfair-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/playfair-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* Inter */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

:root {
  --bg: #f7f4ed;
  --surface: #ffffff;
  --card: #fffdf8;
  --ink: #211f1a;
  --ink-soft: #4a4438;
  --muted: #7a7263;
  --accent: #c67b39;
  --accent-dark: #a76428;
  /* Deepest brass — used for hover on solid accent buttons so the white
     label keeps a comfortable contrast ratio (6.2:1). */
  --accent-deep: #8d5320;
  --accent-soft: #f4e4cf;
  --border: #e6ddcd;
  --border-strong: #d8ccb6;

  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1200px;
  --radius: 4px;
  --header-h: 76px;
  --shadow-sm: 0 1px 3px rgba(33, 31, 26, 0.06), 0 8px 24px rgba(33, 31, 26, 0.05);
  --shadow-md: 0 10px 40px rgba(33, 31, 26, 0.12);
}

/* ----------------------------------------------------------- reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  text-wrap: balance;
}
ul {
  list-style: none;
  padding: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
iframe {
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
}

/* ----------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.72rem;
}
.btn-block {
  width: 100%;
}
.btn-accent {
  /* Deeper brass so the uppercase white label clears WCAG AA (4.7:1). */
  background: var(--accent-dark);
  color: #fff;
}
.btn-accent:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}
.btn-outline {
  border-color: var(--border-strong);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}
.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
}

/* ----------------------------------------------------------- eyebrow / titles */
.eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 18px;
}
.eyebrow-light {
  color: rgba(255, 255, 255, 0.85);
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.section-lead,
.lead {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}
.section {
  padding: clamp(28px, 3.5vw, 52px) 0;
}
.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}
.section-head .section-lead {
  margin-top: 18px;
}
.info-content {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.info-content p {
  color: var(--ink-soft);
  line-height: 1.75;
}
.info-content h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-top: 14px;
}
.info-content h3 {
  font-size: 1.2rem;
  margin-top: 4px;
}
.info-content hr {
  border: none;
  border-top: 1px solid var(--border);
  width: 100%;
}
.info-content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 22px;
}
.info-content li {
  list-style: disc;
  color: var(--ink-soft);
  line-height: 1.7;
}
.info-content strong {
  color: var(--ink);
}
.info-content .info-image {
  margin: 4px 0;
}
.info-content .info-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.info-content .info-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.info-content .info-image-grid .info-image {
  margin: 0;
}
@media (max-width: 640px) {
  .info-content .info-image-grid {
    grid-template-columns: 1fr;
  }
}
.info-content table {
  border-collapse: collapse;
  font-size: 0.95rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.info-content table thead,
.info-content table tbody {
  display: table;
  width: 100%;
  min-width: 560px;
}
.info-content th,
.info-content td {
  border: 1px solid var(--border);
  padding: 12px;
  text-align: left;
  vertical-align: top;
  color: var(--ink-soft);
  white-space: normal;
}
.info-content th {
  color: var(--ink);
  background: var(--accent-soft) !important;
}
.info-cta {
  text-align: center;
  margin-top: clamp(32px, 5vw, 56px);
}
.table-scroll-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: 8px;
}
@media (max-width: 700px) {
  .table-scroll-hint {
    display: flex;
  }
}

/* ----------------------------------------------------------- header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.header-inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  transition: color 0.3s ease;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 30px;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-switch {
  display: none;
  align-items: center;
  gap: 2px;
}
.lang-link {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 7px;
  border-radius: 3px;
  transition: color 0.2s ease;
}
.lang-link:hover {
  color: #fff;
}
.lang-link.is-active {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-header .btn-accent {
  display: none;
}

/* scrolled state: solid ivory bar */
.site-header.is-scrolled {
  background: rgba(247, 244, 237, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.site-header.is-scrolled .brand {
  color: var(--ink);
}
.site-header.is-scrolled .nav-link {
  color: var(--ink-soft);
}
.site-header.is-scrolled .lang-link {
  color: var(--muted);
}
.site-header.is-scrolled .lang-link.is-active,
.site-header.is-scrolled .lang-link:hover {
  color: var(--accent-dark);
}
.site-header.is-scrolled .menu-toggle span {
  background: var(--ink);
}

/* hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: background 0.3s ease;
}

/* ----------------------------------------------------------- mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.mobile-link {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--ink);
}
.mobile-book {
  margin-top: 12px;
}
.mobile-langs {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.lang-chip {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--muted);
}
.lang-chip.is-active {
  /* Same AA fix as .btn-accent: white on the lighter brass was only 3.3:1. */
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

/* ----------------------------------------------------------- hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 18, 14, 0.72) 0%,
    rgba(20, 18, 14, 0.45) 45%,
    rgba(20, 18, 14, 0.2) 100%
  );
}
.hero-content {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 0 24px;
  width: 100%;
}
.hero-title {
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 22px;
  color: var(--accent);
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll span {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.9);
  animation: scrolldot 1.8s ease-in-out infinite;
}
@keyframes scrolldot {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(6px);
  }
}

/* ----------------------------------------------------------- about */
.about-grid {
  display: grid;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.about-body {
  margin-top: 22px;
  display: grid;
  gap: 16px;
  color: var(--ink-soft);
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
}
.stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--accent-dark);
  line-height: 1;
}
.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ----------------------------------------------------------- amenities */
.amenities {
  background: var(--accent-soft);
}
.amenities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  max-width: 820px;
  margin-inline: auto;
}
.amenities-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
}
.amenities-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* ----------------------------------------------------------- rooms */
.rooms-grid {
  display: grid;
  gap: 30px;
}
.room-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.room-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  padding: 0;
}
.room-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-card:hover .room-media img {
  transform: scale(1.05);
}
.room-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(247, 244, 237, 0.94);
  /* 11px uppercase on ivory needs the deepest brass to clear AA (5.6:1). */
  color: var(--accent-deep);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
}
.room-view {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 18, 14, 0.4);
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.room-media:hover .room-view {
  opacity: 1;
}
.room-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.room-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.room-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.room-features {
  display: grid;
  gap: 9px;
  margin-bottom: 22px;
}
.room-features li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--muted);
}
.room-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}
.room-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.room-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ink);
}
.room-price small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.room-price em {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  color: var(--muted);
}
.room-hidden {
  display: none;
}

/* ----------------------------------------------------------- gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding-inline: 10px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0;
  border-radius: 2px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.9);
}

/* ----------------------------------------------------------- rates */
.rates {
  background: var(--accent-soft);
}
.rates-table-wrap {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}
.rates-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.rates-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--surface);
  text-align: left;
}
.rates-table th {
  background: var(--ink);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 18px;
}
.rates-table td {
  padding: 16px 18px;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.rates-table tbody tr:hover {
  background: var(--accent-soft);
}
.rate-period {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.rate-season {
  font-weight: 600;
  color: var(--ink);
}
.rate-range {
  font-size: 0.82rem;
  color: var(--muted);
}
.rates-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 22px;
}

/* ----------------------------------------------------------- location */
.location-grid {
  display: grid;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.loc-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 30px 0;
}
.loc-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent-dark);
}
.loc-label {
  display: block;
  margin-top: 4px;
  font-size: 0.88rem;
  color: var(--muted);
}
.loc-address {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 340px;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
}

/* ----------------------------------------------------------- contact */
.contact {
  background: var(--ink);
  color: #fff;
}
.contact .section-title,
.contact .form-title {
  color: #fff;
}
.contact .eyebrow {
  color: var(--accent);
}
.contact .lead {
  color: rgba(255, 255, 255, 0.78);
}
.contact-grid {
  display: grid;
  gap: clamp(36px, 6vw, 64px);
  align-items: start;
}
.contact-block {
  margin-top: 22px;
}
.contact-map-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
}
.contact-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.contact-value {
  font-size: 0.88rem;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.contact-value a:hover {
  color: var(--accent);
}
.contact-value .sep {
  color: var(--border-strong);
}
.contact-form {
  background: var(--surface);
  color: var(--ink);
  padding: clamp(26px, 4vw, 40px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.form-title {
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-text {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.field-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.field textarea {
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(176, 137, 79, 0.15);
}
.contact-form .btn {
  margin-top: 8px;
}
.form-status {
  margin-top: 14px;
  font-size: 0.88rem;
  min-height: 1.2em;
}
.form-status.is-error {
  color: #b3452f;
}
.form-status.is-success {
  color: var(--accent-dark);
}

/* ----------------------------------------------------------- footer */
.site-footer {
  background: #1a1814;
  color: rgba(255, 255, 255, 0.8);
  padding-top: clamp(48px, 7vw, 80px);
}
.footer-grid {
  display: grid;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .brand {
  color: var(--accent);
}
.footer-brand p {
  margin-top: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 32ch;
}
.footer-brand-img {
  display: block;
  margin: 26px 0 0;
  width: 225px;
  max-width: 100%;
}
.footer-brand-img svg {
  display: block;
  width: 225px;
  max-width: 100%;
  height: auto;
}
.footer-langs {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-langs a {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
}
.footer-langs a:hover {
  color: #fff;
}
.footer-langs a.is-active {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}
.footer-col h2 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links {
  display: grid;
  gap: 11px;
}
.footer-links a,
.footer-contact a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent);
}
.footer-contact {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
  line-height: 1.8;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  padding-bottom: 30px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ----------------------------------------------------------- lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 13, 10, 0.92);
}
.lightbox.is-open {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  cursor: pointer;
  z-index: 1;
}
.lightbox-close {
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  font-size: 1.8rem;
  line-height: 1;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2rem;
}
.lightbox-prev {
  left: 20px;
}
.lightbox-next {
  right: 20px;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

/* ----------------------------------------------------------- reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ----------------------------------------------------------- responsive */
@media (min-width: 640px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }
  .nav-desktop {
    display: flex;
  }
  .lang-switch {
    display: flex;
  }
  .site-header .btn-accent {
    display: inline-flex;
  }
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .rooms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
  }
  .gallery-item.is-wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
  }
  .location-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

/* =====================================================================
   Variant 2 — multi-page additions
   ===================================================================== */

body.no-scroll {
  overflow: hidden;
}

/* Logo in the nav bar */
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.brand img {
  height: 42px;
  width: auto;
  display: block;
  /* Logo art is gold on transparency, so it reads on both the dark hero
     and the light scrolled bar. */
  transition: opacity 0.3s ease;
}
.brand:hover img {
  opacity: 0.85;
}
@media (min-width: 992px) {
  .brand img {
    height: 50px;
  }
}

/* Active nav state */
.nav-link.is-active::after {
  width: 100%;
}
.site-header .nav-link.is-active {
  color: #fff;
}
.site-header.is-scrolled .nav-link.is-active {
  color: var(--accent-dark);
}
.mobile-link.is-active {
  color: var(--accent-dark);
}

/* ------------------------------------------------------ compact page hero */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  padding-bottom: 56px;
}
.page-hero-title {
  color: var(--accent);
}
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 18, 14, 0.82) 0%, rgba(20, 18, 14, 0.4) 55%, rgba(20, 18, 14, 0.3) 100%);
}
.page-hero-content {
  width: 100%;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  margin: 10px 0 14px;
}
.page-hero-lead {
  max-width: 52ch;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .page-hero {
    min-height: 62vh;
    padding-bottom: 72px;
  }
}

/* Sunset-toned hero photo on the "things to do" page clashes with the
   brass accent color, so force white for guaranteed contrast. */
.page-things-to-do .page-hero-title {
  color: #fff;
}

/* --------------------------------------------------------- CTA band */
.cta-band {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: clamp(56px, 9vw, 104px) 0;
  text-align: center;
}
.cta-inner {
  max-width: 640px;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 16px;
}
.cta-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* --------------------------------------------------- contact page layout */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.contact-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-map a {
  position: relative;
  display: block;
}
.contact-map img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.contact-map:hover img {
  transform: scale(1.03);
}
.map-pin-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(33, 31, 26, 0.86);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 8px 14px;
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}
.contact-page .loc-points {
  margin: 28px 0;
}
@media (min-width: 900px) {
  .contact-page-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
  }
}
