/* Light theme version of original design */
:root {
  --bg: #ffffff;
  --panel: #ffffff;
  --muted: #6b7280;
  --text: #111827;
  --text-soft: #334155;
  --brand: #0ea5e9;
  --brand2: #22d3ee;
  --ring: #38bdf8;
  --border: #e5e7eb;
  --soft: #f8fafc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

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

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(10px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--text);
}

.brand .brand-text {
  color: var(--text);
}

.brand .brand-logo {
  filter: drop-shadow(0 8px 18px rgba(14, 165, 233, .25));
}

.menu {
  display: flex;
  gap: .4rem;
  align-items: center;
}

.menu a {
  padding: .55rem .9rem;
  border-radius: 10px;
  font-weight: 600;
  color: var(--text-soft);
}

.menu a:hover {
  color: var(--text);
  background: var(--soft);
}

.menu a.active {
  color: var(--text);
  background: rgba(14, 165, 233, 0.12);
  box-shadow: 0 0 0 1px rgba(14, 165, 233, .35) inset;
}

.burger {
  display: none;
  border: 1px solid var(--border);
  background: var(--soft);
  padding: .6rem .7rem;
  border-radius: 10px
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  margin: 3px 0
}

@media (max-width: 820px) {
  .menu {
    display: none;
    position: absolute;
    left: 4%;
    right: 4%;
    top: 64px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: .6rem;
    flex-direction: column;
  }

  .menu.open {
    display: flex;
  }

  .burger {
    display: block;
  }
}

/* Hero */
.hero {
  padding: 64px 0 26px;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 60%);
}

.hero .wrap,
.hero .hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .6rem;
  border: 1px solid rgba(14, 165, 233, .35);
  border-radius: 999px;
  color: #0c4a6e;
  background: rgba(14, 165, 233, .08);
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  margin: .6rem 0 .5rem;
}

.accent {
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: var(--text-soft);
  max-width: 55ch;
}

.cta-row {
  display: flex;
  gap: .6rem;
  margin-top: 14px;
}

.btn {
  padding: .7rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #02223e;
  box-shadow: 0 8px 24px rgba(34, 211, 238, .25);
}

.btn-ghost {
  background: #fff;
  border-color: var(--border);
  color: #0f172a;
}

.hero-perks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .4rem;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #0f172a;
}

.hero-art {
  align-self: center;
  justify-self: center;
  max-width: 520px;
}

@media (max-width:980px) {
  .hero .hero-wrap {
    grid-template-columns: 1fr;
  }
}

/* Sections */
.section {
  padding: 32px 0 0;
}

.section-head {
  margin-bottom: 22px
}

.section h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin: 0 0 6px
}

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

/* Filters */
.filters {
  display: flex;
  gap: .6rem;
  margin: 12px 0 18px
}

.filters input {
  width: 100%;
  padding: .7rem .8rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text)
}

.filters input:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, .15);
  border-color: var(--brand)
}

/* Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px
}

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

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

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .05)
}

.thumb {
  background: var(--soft);
  padding: 14px;
  border-bottom: 1px solid var(--border);
  display: grid;
  place-items: center
}

.thumb img {
  max-height: 220px;
  object-fit: contain
}

.card-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.card h3 {
  margin: 0 0 2px;
  font-size: 1.05rem
}

.desc {
  color: var(--text-soft)
}

.meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px
}

.price {
  font-weight: 800;
  color: #0c4a6e
}

.deposit {
  font-weight: 800;
  color: #0c4a6e;
  font-size: 0.9em;
}

.actions {
  display: flex;
  gap: .5rem;
  margin-top: 8px
}

.actions .btn {
  flex: 1
}

/* Reservation */
.reservation .form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .05)
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: .7rem .8rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text)
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, .15);
  border-color: var(--brand)
}

.form-grid .full {
  grid-column: 1/-1
}

.sent {
  margin-top: 10px;
  color: #065f46
}

@media (max-width:720px) {
  .form-grid {
    grid-template-columns: 1fr
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  margin-top: 24px;
  background: #fff
}

.foot {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.to-top {
  color: #0369a1
}

.contact-card{
  background:#fff;border:1px solid var(--border);border-radius:14px;
  padding:16px;margin-bottom:12px;box-shadow:0 10px 20px rgba(0,0,0,.05)
}
.map-embed iframe{width:100%;height:320px;border:0;border-radius:14px}
@media (max-width:800px){.map-embed iframe{height:260px}}


.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: grid;
    place-items: center;
    z-index: 100;
}

.modal {
    background: white;
    padding: 20px;
    border-radius: 12px;
    width: min(90%, 360px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

    .modal h3 {
        margin-top: 0;
    }

    .modal label {
        display: block;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .modal input {
        width: 100%;
        padding: 8px;
        border: 1px solid var(--border);
        border-radius: 8px;
        margin-top: 4px;
    }