:root {
  --bg: #ffffff;
  --surface: #f3f8f4;
  --surface-2: #e6f2e8;
  --text: #0c1a11;
  --muted: #4a5f53;
  --border: rgba(12, 26, 17, 0.12);
  --brand: #1f7a3a;
  --brand-2: #2e9b4b;
  --brand-weak: #e6f5ea;
  --danger: #b42318;

  --max: 1120px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;

  --shadow-sm: 0 10px 26px rgba(12, 26, 17, 0.08);
  --shadow-md: 0 18px 44px rgba(12, 26, 17, 0.10);

  --h1: clamp(2rem, 3.2vw, 3rem);
  --h2: clamp(1.5rem, 2.4vw, 2.15rem);
  --h3: 1.125rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/*
  Prevent accidental horizontal overflow (often seen as a thin white strip on the
  right on some mobile browsers / "Desktop site" mode).
  We default to `hidden` for broad compatibility and upgrade to `clip` when supported.
*/
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow-x: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 0.14em;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand) 70%, transparent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
  transform: translateY(-140%);
  transition: transform .16s ease;
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

h1 {
  font-size: var(--h1);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem 0;
}

h2 {
  font-size: var(--h2);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem 0;
}

h3 {
  font-size: var(--h3);
  margin: 0 0 0.4rem 0;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
}

.muted {
  color: var(--muted);
}

.tiny {
  font-size: 0.9rem;
}

.h3 {
  font-size: 1.25rem;
  margin: 0;
}

.h5 {
  font-size: 1.05rem;
  margin: 0;
}

.mt {
  margin-top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.05rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.1px;
}

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

.btn--primary:hover {
  background: var(--brand-2);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  background: color-mix(in srgb, var(--surface) 80%, transparent);
}

.btn--link {
  padding: 0.6rem 0.2rem;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--brand);
  font-weight: 700;
}

.btn--link:hover {
  text-decoration: underline;
}

.btn--small {
  padding: 0.55rem 0.85rem;
  font-size: 0.95rem;
}

.btn--block {
  width: 100%;
}

.icon-btn {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  cursor: pointer;
}

.icon-btn:hover {
  background: color-mix(in srgb, var(--surface) 80%, transparent);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(12, 26, 17, 0.08);
}

html.nav-open .site-header {
  background: var(--bg);
  backdrop-filter: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.logo__mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: radial-gradient(120% 120% at 30% 20%, color-mix(in srgb, var(--brand) 86%, white) 0%, var(--brand) 55%, color-mix(in srgb, var(--brand) 60%, black) 100%);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  color: #fff;
}

.logo__mark svg {
  width: 22px;
  height: 22px;
}

.logo__mark--img {
  background: transparent;
  box-shadow: none;
  width: 74px;
  height: 50px;
  border-radius: 0;
  display: grid;
  place-items: left;
}

.logo__mark--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.14));
}

@media (max-width: 520px) {
  .logo__mark--img {
    width: 66px;
    height: 44px;
  }
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo__kicker {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.logo__name {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.logo--footer .logo__mark--img {
  width: 92px;
  height: 62px;
}

@media (max-width: 520px) {
  .logo--footer .logo__mark--img {
    width: 82px;
    height: 56px;
  }
}

.logo--mobile .logo__kicker {
  font-size: 0.85rem;
}

.logo--mobile .logo__name {
  font-size: 1.02rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.15rem;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  background: color-mix(in srgb, var(--brand-weak) 70%, transparent);
  color: var(--text);
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  cursor: pointer;
  font-size: 1.05rem;
}

.nav-toggle:hover {
  background: color-mix(in srgb, var(--surface) 80%, transparent);
}

/* Mobile menu overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(12, 26, 17, 0.35);
}

.mobile-nav__panel {
  position: relative;
  width: min(380px, 88vw);
  height: 100%;
  background: linear-gradient(180deg, #ffffff, var(--surface));
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transform: translateX(102%);
  transition: transform .18s ease;
  overflow-y: auto;
  isolation: isolate;
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.4rem;
}

.mobile-nav__title {
  display: none;
}

.mobile-nav__link {
  text-decoration: none;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  transition: background .15s ease, transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.mobile-nav__link:hover {
  background: var(--brand-weak);
  border-color: color-mix(in srgb, var(--brand) 18%, var(--border));
  transform: translateX(1px);
}

.mobile-nav__link[aria-current="page"] {
  background: var(--brand-weak);
  border-color: color-mix(in srgb, var(--brand) 28%, var(--border));
  box-shadow: inset 3px 0 0 var(--brand);
}

.mobile-nav__meta {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0.35rem;
}

.mobile-nav__meta-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.mobile-nav__meta-link:hover {
  text-decoration: underline;
}

.mobile-nav__meta-text {
  color: var(--muted);
  font-size: 0.95rem;
}

html.nav-open {
  overflow: hidden;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3.2rem, 6vw, 5rem) 0;
  overflow: hidden;
  background: #ffffff;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -6%;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: saturate(1.05) contrast(1.05) brightness(0.72);
  opacity: 0.88;
  transform: scale(1.02);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      color-mix(in srgb, var(--brand) 70%, transparent) 0%,
      rgba(255, 255, 255, 0.18) 38%,
      rgba(255, 255, 255, 0.92) 78%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

/* Home hero title animation */
.hero--home .hero__inner {
  max-width: 640px;
}

.hero--home .hero__title {
  opacity: 0;
  transform: translateY(10px);
  animation: heroTitleIn .75s ease-out .12s forwards;
}

@keyframes heroTitleIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--home .hero__title {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero__inner .lead {
  max-width: 64ch;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  color: var(--muted);
  font-weight: 650;
  font-size: 0.95rem;
  margin: 0 0 0.85rem 0;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 0 0;
}

.fact {
  display: grid;
  gap: 0.15rem;
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  box-shadow: var(--shadow-sm);
}

.fact strong {
  font-size: 1.1rem;
}

.fact span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.2rem;
}

.contact-pill {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  box-shadow: var(--shadow-sm);
}

.contact-pill a {
  text-decoration: none;
  font-weight: 750;
  color: var(--text);
}

.contact-pill a:hover {
  text-decoration: underline;
}

.contact-pill .sep {
  color: var(--muted);
}

.hero__card {
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1rem;
}

.hero__card .muted {
  margin: 0.3rem 0 0.9rem 0;
}

.hero__card .btn-row {
  display: grid;
  gap: 0.6rem;
}

/* Sections */
.section {
  padding: 3.75rem 0;
}

.section--alt {
  background: var(--surface);
}

.section--tinted {
  background: linear-gradient(180deg, #fff, var(--surface));
}

.section--muted {
  background: var(--surface);
}

.section__header {
  margin-bottom: 1.25rem;
}

.section__title {
  margin: 0 0 0.35rem 0;
}

.section__lead {
  color: var(--muted);
  margin: 0;
  max-width: 75ch;
}

.section-head {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.section-title {
  margin: 0;
  font-size: var(--h2);
}

/* Layout grids */
.grid {
  display: grid;
  gap: 1rem;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

/* Cards */
/* Hover lift */
.card,
.room-card,
.map-card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card:hover,
.room-card:hover,
.map-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--brand) 18%, var(--border));
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-weak);
  border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--border));
  margin-bottom: 0.75rem;
  color: var(--brand);
}

.card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.card__title {
  margin: 0 0 0.35rem 0;
}

.card__text {
  margin: 0;
  color: var(--muted);
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
  display: grid;
  gap: 0.55rem;
}

.checklist li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1rem;
  height: 1rem;
  border-radius: 6px;
  background: var(--brand);
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6L9 17l-5-5" stroke="black" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') center / contain no-repeat;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6L9 17l-5-5" stroke="black" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') center / contain no-repeat;
}

/* Room cards */
.room-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.room-card__img,
.room-card__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--surface-2);
}

.room-card__media {
  aspect-ratio: 16/10;
  background: var(--surface-2);
}

.room-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-card__title {
  margin: 0 0 0.35rem 0;
}

.room-card__text {
  margin: 0;
  color: var(--muted);
}

.room-card__chips {
  list-style: none;
  padding: 0;
  margin: 0.85rem 0 0.9rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.room-card__chips li {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  color: var(--muted);
  font-size: 0.92rem;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.9rem;
}

/* Room prices (rooms.html) */
.room-card__prices {
  margin-top: 0.9rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  display: grid;
  gap: 0.55rem;
}

.room-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.room-price__label {
  color: var(--muted);
  font-weight: 600;
}

.room-price__value {
  font-weight: 800;
  white-space: nowrap;
}

.amenities-section {
  padding: 2.25rem 0;
}

.amenity>span:last-child {
  font-size: 0.95rem;
  line-height: 1.2;
}

.amenities-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
}

@media (max-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


.amenity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: transparent;
}

.amenity__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--brand);
  flex: 0 0 36px;
}

.amenity__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


@media (max-width: 520px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}


.stay-grid .room-card--center {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc((100% - 1rem) / 2);
}

@media (max-width: 720px) {
  .stay-grid .room-card--center {
    width: 100%;
  }
}

/* Prices*/
.price-mini {
  margin: 0.9rem 0 1rem 0;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface) 85%, white);
  display: grid;
  gap: 0.55rem;
}

.price-mini__item {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: baseline;
}

.price-mini__item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.price-mini__item strong {
  font-weight: 850;
}

@media (max-width: 520px) {
  .price-mini__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }
}

.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.price-card__title {
  margin: 0 0 0.75rem 0;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px dashed color-mix(in srgb, var(--border) 65%, transparent);
}

.price-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.price-list span {
  color: var(--muted);
}

.price-list strong {
  font-weight: 850;
}

/* Subtle hover lift (desktop) */
.card,
.room-card,
.map-card,
.cta-strip {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

@media (hover:hover) {

  .card:hover,
  .room-card:hover,
  .map-card:hover,
  .cta-strip:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: color-mix(in srgb, var(--brand) 18%, var(--border));
  }
}

/* CTA strip */
.cta-strip {
  margin-top: 1.5rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--border));
  background: linear-gradient(180deg, var(--brand-weak), #fff);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-strip__title {
  margin: 0 0 0.25rem 0;
}

.cta-strip__text {
  margin: 0;
  color: var(--muted);
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Map card */
.map-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.map-card__info {
  padding: 1rem;
}

.contact-list a {
  font-weight: 750;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.map {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}

.map iframe {
  width: 100%;
  height: 535px;
  border: 0;
  display: block;
}

/* Page hero */
.page-hero {
  position: relative;
  padding: 2.5rem 0;
  background: linear-gradient(180deg, var(--brand-weak), #fff 70%);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  opacity: 0.10;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.pill {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  color: var(--muted);
  font-weight: 650;
  font-size: 0.95rem;
}

.kicker {
  display: inline-block;
  margin: 0 0 0.75rem 0;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--brand);
  font-size: 0.9rem;
}

/* Contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin: 1rem 0 1.2rem 0;
}

.contact-card {
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
  display: grid;
  gap: 0.25rem;
}

.contact-card:hover {
  background: color-mix(in srgb, var(--surface) 70%, transparent);
}

.contact-card__k {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-card__v {
  font-weight: 850;
  font-size: 1.15rem;
}

.contact-card__m {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Callout */
.callout {
  border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--border));
  background: linear-gradient(180deg, var(--brand-weak), #fff);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.callout--stack {
  display: block;
}

.callout--stack .callout__phones {
  margin: 0.75rem 0;
  display: grid;
  gap: 0.5rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Forms */
.form {
  display: grid;
  gap: 0.9rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
}

.form label>span {
  color: var(--muted);
  font-weight: 650;
  font-size: 0.95rem;
}

input,
select,
textarea {
  font: inherit;
  padding: 0.78rem 0.85rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
}

textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.form-status {
  margin: 0;
  min-height: 1.2em;
  color: var(--muted);
}

.form-status.is-ok {
  color: color-mix(in srgb, var(--brand) 70%, black);
}

.form-status.is-warn {
  color: var(--danger);
}

/* Tables */
.table-wrap {
  overflow: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  white-space: nowrap;
}

.table th {
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  font-size: 0.95rem;
}

.table tr:last-child td {
  border-bottom: none;
}

/* Prices: currency */
.price {
  font-weight: 800;
}

.price--bgn {
  display: none;
}

html[data-currency="bgn"] .price--bgn {
  display: inline;
}

html[data-currency="bgn"] .price--eur {
  display: none;
}

.currency-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin: 1rem 0;
}

.chip {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  font-weight: 750;
}

.chip[aria-pressed="true"] {
  border-color: color-mix(in srgb, var(--brand) 35%, var(--border));
  background: var(--brand-weak);
}

.note {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  color: var(--muted);
}

.hr {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.calc-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
}

.calc-result strong {
  font-size: 1.1rem;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.75rem;
}

.gallery a {
  grid-column: span 4;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  transform: translateY(0);
  transition: transform .12s ease;
}

.gallery a:hover {
  transform: translateY(-2px);
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox:not([hidden]) {
  display: block;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.70);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 94vw);
  margin: 4vh auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.30);
}

.lightbox__figure {
  margin: 0;
}

.lightbox__figure img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  background: var(--surface-2);
  display: block;
}

.lightbox__caption {
  padding: 0.75rem 0.9rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 85%, transparent);
}

.lightbox__close {
  position: absolute;
  right: 0.65rem;
  top: 0.65rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  cursor: pointer;
  font-size: 1.2rem;
}

.lightbox__close:hover {
  background: var(--bg);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  cursor: pointer;
  font-size: 1.7rem;
}

.lightbox__nav--prev {
  left: 0.65rem;
}

.lightbox__nav--next {
  right: 0.65rem;
}

.lightbox__nav:hover {
  background: var(--bg);
}

html.modal-open {
  overflow: hidden;
}

/* Media card & figure */
.figure,
.media-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}

.figure {
  margin: 0;
}

.figure img,
.media-card img {
  width: 100%;
  height: auto;
  display: block;
}

.figure figcaption,
.media-card__caption {
  padding: 0.75rem 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
}

/* Footer */
.site-footer {
  position: relative;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface), #ffffff);
  padding: 2.6rem 0 2.1rem;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -72px;
  height: 84px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 84' preserveAspectRatio='none'%3E%3Cpath d='M0%2C40 C240%2C84 480%2C0 720%2C40 C960%2C84 1200%2C0 1440%2C40 L1440%2C84 L0%2C84 Z' fill='%23f3f8f4'/%3E%3Cpath d='M0%2C40 C240%2C84 480%2C0 720%2C40 C960%2C84 1200%2C0 1440%2C40' fill='none' stroke='%231f7a3a' stroke-opacity='0.16' stroke-width='4'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(31, 122, 58, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 1px 1px, rgba(31, 122, 58, 0.06) 1px, transparent 1px);
  background-size: 18px 18px, 30px 30px;
  background-position: 0 0, 12px 10px;
  pointer-events: none;
  z-index: 0;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0 0;
  display: grid;
  gap: 0.35rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
  text-decoration: underline;
}

.footer-contact {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.footer-contact a {
  font-weight: 750;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.logo--footer .logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 13px;
}


/* Reveal on scroll*/
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Floating call button */
.call-fab {
  position: fixed;
  left: calc(1rem + env(safe-area-inset-left));
  bottom: calc(1rem + env(safe-area-inset-bottom));
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  z-index: 90;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, opacity .15s ease;
}

.call-fab:hover {
  background: var(--brand-2);
  transform: translateY(-2px);
}

.call-fab:active {
  transform: translateY(0);
}

.call-fab svg {
  width: 26px;
  height: 26px;
}

.call-fab::after {
  content: "Обади се";
  position: absolute;
  left: calc(100% + 0.6rem);
  top: 50%;
  transform: translateY(-50%) translateX(-4px);
  opacity: 0;
  white-space: nowrap;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: opacity .15s ease, transform .15s ease;
  pointer-events: none;
}

@media (hover:hover) {
  .call-fab:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

html.nav-open .call-fab,
html.modal-open .call-fab {
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
}

/* Responsive */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

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

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

  .map-card {
    grid-template-columns: 1fr;
  }

  .map-card iframe {
    min-height: 300px;
  }

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

  .gallery a {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
  }

  .lightbox:not([hidden]) {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
  }

  .lightbox__dialog {
    margin: 0;
    max-height: 92vh;
    overflow: hidden;
  }

  .lightbox__content,
  .lightbox__body,
  .lightbox__stage {
    max-height: 92vh;
  }

  .site-header {
    background: var(--bg);
    backdrop-filter: none;
  }

  .nav__list {
    display: none;
  }

  .nav__cta {
    display: none;
  }

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

  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .gallery a {
    grid-column: span 12;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .calc-result {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .gallery a {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .call-fab {
    transition: none;
  }
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.logo__kicker {
  font-weight: 400;
}

.logo__name {
  font-weight: 700;
}

.site-header .logo__mark--img,
.logo--footer .logo__mark--img {
  width: 96px;
  height: 66px;
}

@media (max-width: 420px) {

  .site-header .logo__mark--img,
  .logo--footer .logo__mark--img {
    width: 86px;
    height: 60px;
  }
}

.mobile-nav {
  justify-content: flex-end;
}

.mobile-nav__panel {
  /* Use percentages instead of vw to avoid 1–2px overflow in some browsers */
  width: 100%;
  max-width: 100%;
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero--home {
  --hero-image: url("../img/kushta.png");
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 900px) {
  .hero--home {
    padding: 6.2rem 0;
    min-height: 560px;
    background-size: cover;
    background-position: center;
    background-color: transparent;
  }
}

.hero--home::before {
  display: none;
}

.hero--home::after {
  background: linear-gradient(180deg,
      rgba(31, 122, 58, 0.45) 0%,
      rgba(31, 122, 58, 0.22) 28%,
      rgba(0, 0, 0, 0.16) 62%,
      rgba(0, 0, 0, 0.22) 100%);
}

.hero--home .hero__inner {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero--home .hero__actions {
  justify-content: center;
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero--home .hero__title {
  opacity: 0;
  transform: translateY(10px);
  animation: heroTitleIn .8s ease-out .12s forwards;
  white-space: nowrap;

}

@media (prefers-reduced-motion: reduce) {
  .hero--home .hero__title {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.about-card {
  padding: 1.25rem;
}

.section#about .split {
  align-items: center;
}

#about .about-card p {
  text-align: justify;
  text-justify: inter-word;
  /* Avoid automatic hyphenation on mobile (keeps words intact while remaining justified) */
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
}

.section#about .figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  align-self: center;
  aspect-ratio: 4 / 3;
  border: 0;
}

.section#about .figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (min-width: 900px) {
  .section#about .split {
    grid-template-columns: 1fr 1fr;
  }

  .section#about .figure {
    min-height: 420px;
  }
}

@media (min-width: 768px) {
  #about .about-card p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
  }
}

@media (min-width: 601px) {
  .hero--home .hero__title {
    white-space: nowrap;
  }
}

@media (max-width: 600px) {
  .hero--home .hero__title {
    white-space: normal;
  }
}

.map-embed {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 16/10;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.room-card__chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.chip-icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--brand);
}

.checklist--custom-icons .checklist__item--icon {
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--muted);
}

.checklist--custom-icons .checklist__item--icon::before {
  content: none;
}

.checklist__icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
  color: var(--brand);
  flex: 0 0 auto;
}

.checklist__icon .checklist-icon {
  width: 1rem;
  height: 1rem;
}

.checklist--lg-icons .checklist__icon {
  width: 1.25rem;
  height: 1.25rem;
}

.checklist--lg-icons .checklist__icon .checklist-icon {
  width: 1.25rem;
  height: 1.25rem;
}

#about .about-card__media.about-card__map {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  aspect-ratio: 16 / 12;
}

#about .about-card__media.about-card__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}