@import url('https://fonts.googleapis.com/css2?family=K2D:wght@300;400&family=Roboto:wght@400;500;600&family=Roboto+Slab:wght@400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-text:    #7a7a7a;
  --color-nav:     #888888;
  --color-accent:  #61ce70;
  --color-green:   #006838;
  --color-border:  #c4c4c4;
  --max-width:     1140px;
  --font-body:     'K2D', sans-serif;
  --font-slab:     'Roboto Slab', serif;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background: #fff;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--color-accent); }

/* ── HEADER ─────────────────────────────────────────── */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 0 4px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.logo { flex: 0 0 50%; }
.logo img { width: 80%; max-width: 375px; display: block; margin: 0; }

nav { flex: 0 0 50%; display: flex; justify-content: flex-end; align-self: flex-end; }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}

.nav-menu > li > a {
  display: block;
  padding: 4px 13px 25px;
  color: var(--color-nav);
  font-family: 'Roboto Slab', serif;
  font-weight: 400;
  font-size: 1.05rem;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a { color: var(--color-accent); }

/* dropdown */
.has-dropdown { position: relative; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  min-width: 220px;
  list-style: none;
  border: 1px solid var(--color-border);
  z-index: 200;
}
.has-dropdown:hover .dropdown { display: block; }

.dropdown li:not(:last-child) { border-bottom: none; }
.dropdown li a {
  display: block;
  padding: 15px 33px;
  color: var(--color-nav);
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.dropdown li a:hover { color: var(--color-accent); }

/* hamburger */
.nav-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-nav);
  padding: 15px;
}

/* ── MAIN ────────────────────────────────────────────── */
main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 70px 20px 60px;
}

.section { margin-bottom: 40px; }

.text-center { text-align: center; }

h1, h2, h3 {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: 1rem;
}

p { margin-bottom: 1rem; }

/* Homepage intro — matches the original h4-sized text block */
.intro-text {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  font-size: 1.5rem;
  line-height: 1.25;
  text-align: center;
  margin: 0 auto 20px;
}

.content-narrow {
  text-align: center;
  font-size: 1.15rem;
}

.content-narrow p { margin-bottom: 0.4rem; }

.banner-img {
  width: 100%;
  height: 277px;
  object-fit: cover;
  display: block;
  margin: 0 auto 40px;
}

/* ── BOOKING WIDGET ──────────────────────────────────── */
.booking-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0 40px;
}

/* Banner with instruction text + fallback link */
.book-direct-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: #f5f5f3;
  border-left: 4px solid #1a1a1a;
  padding: 14px 18px;
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.book-direct-banner p {
  margin: 0;
  color: #333;
}
.book-direct-link {
  display: inline-block;
  white-space: nowrap;
  background: #1a1a1a;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.book-direct-link:hover {
  background: #444;
}

/* Widget container — needs enough height for the date picker to open */
.uplisting-widget {
  min-height: 326px;
}

/* ── MAP IFRAME ──────────────────────────────────────── */
.map-wrap iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
  margin: 20px 0;
}

/* ── LOCAL TIPS ──────────────────────────────────────── */
/* Matches WordPress/Elementor post-74 styles exactly */
.tips-section {
  margin-bottom: 20px; /* matches elementor widget spacing */
}

/* h2 = Roboto Slab 400 #006838, matches .elementor-heading-title on post-74 */
.tips-section h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 400;
  font-size: 2rem;         /* elementor default heading size */
  color: #006838;
  margin: 10px 0 10px 0;      /* matches elementor-element margin: 10px 0px 0px 0px */
  line-height: 1.2;
}

/* Content block — Roboto 400, padded left 20px (matches padding:0 0 0 20px) */
.tips-body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: var(--color-text);   /* #7a7a7a */
  font-size: 1rem;
  line-height: 1.50;
  padding: 0 0 0 20px;
  margin-top: 0;
}

/* Links in body: blue underline — matches style="color:blue;text-decoration:underline" on WP */
.tips-body a {
  color: blue;
  text-decoration: underline;
}
.tips-body a:hover {
  color: #0000cc;
  text-decoration: underline;
}

/* ── ABOUT PAGE ──────────────────────────────────────── */
/* Body text: K2D 300 weight, matches elementor-76 e565b40 */
.about-text p {
  font-family: 'K2D', sans-serif;
  font-weight: 300;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.50;
  margin-bottom: 1rem;
}

/* Contact block: K2D 300, 17px, matches elementor-76 efcab23/3b68ebb */
.about-contact p {
  font-family: 'K2D', sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: var(--color-text);
  line-height: 1.50;
  margin-bottom: 0.4rem;
}
.about-contact a {
  color: var(--color-text);
  text-decoration: none;
}
.about-contact a:hover { color: var(--color-accent); }

/* ── CONTACT FORM ────────────────────────────────────── */
/* Matches WP/Elementor post-76 form styles */
.contact-form {
  max-width: 580px;
  margin: 16px 0 32px;
}
.cf-field { margin-bottom: 10px; }

.cf-field > label {
  display: block;
  color: #818181;
  font-family: 'K2D', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 4px;
}
.cf-req { color: #ff348b; }

/* First / Last name side-by-side */
.cf-name-row {
  display: flex;
  gap: 12px;
}
.cf-name-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cf-sublabel {
  font-size: 0.78rem;
  color: #333;
  margin-top: 3px;
}

/* All text/email inputs — half-width on WP but we keep full for usability */
.contact-form input[type=text],
.contact-form input[type=email] {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  color: #474747;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  font-family: 'K2D', sans-serif;
  font-size: 0.9rem;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.1s;
}
.contact-form input:focus { border-color: #b0b0b0; }

.contact-form textarea {
  width: 100%;
  height: 80px;
  padding: 8px 12px;
  color: #474747;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  font-family: 'K2D', sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  outline: none;
  resize: vertical;
  box-sizing: border-box;
  transition: border-color 0.1s;
}
.contact-form textarea:focus { border-color: #b0b0b0; }

.contact-form button {
  background: var(--color-green);
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 16px 30px;
  font-family: 'K2D', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s;
}
.contact-form button:hover { background: #004d28; }

.sent-msg {
  background: #e6f4ec;
  border: 1px solid var(--color-accent);
  color: var(--color-green);
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 20px;
  display: none;
}
.sent-msg.visible { display: block; }
.sent-msg--error {
  background: #fdf0f0;
  border-color: #e08080;
  color: #a33;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: #fff;
  padding: 20px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.footer-inner p { font-size: 0.95rem; color: #aaa; }

#gt-wrapper,
#gt-wrapper > *,
#gt-wrapper div,
#gt-wrapper select,
#gt-wrapper span {
  min-width: 220px !important;
  max-width: 220px !important;
  width: 220px !important;
  box-sizing: border-box !important;
  background: #fff !important;
  background-color: #fff !important;
}

/* Remove the vertical separator before the dropdown arrow */
#gt-wrapper select,
#gt-wrapper div[class*="arrow"],
#gt-wrapper span[class*="arrow"] {
  border-left: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

#gt-wrapper * {
  border: 1px solid #e8e8e8 !important;
}

/* ── APARTMENT CALENDAR ──────────────────────────────── */
.apt-cal-section { padding: 0; }
.apt-cal-section > .container {
  background: #f9f9f7;
  padding-top: 44px;
  padding-bottom: 44px;
}

.cal-wrap { margin-top: 8px; }

.cal-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.cal-nav-btn {
  background: none;
  border: 1px solid var(--color-border);
  width: 36px;
  height: 36px;
  font-size: 1rem;
  cursor: pointer;
  color: var(--color-text);
  transition: border-color 0.15s, color 0.15s;
}
.cal-nav-btn:hover:not(:disabled) { border-color: #333; color: #333; }
.cal-nav-btn:disabled { opacity: 0.3; cursor: default; }

#calNavLabel {
  font-size: 0.95rem;
  color: #555;
}

.cal-months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 20px;
}

.cal-month-title {
  font-size: 0.95rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.cal-head {
  font-size: 0.72rem;
  color: #aaa;
  text-align: center;
  padding: 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  border-radius: 2px;
  position: relative;
  user-select: none;
}
.cal-day--empty  { }
.cal-day--past   { color: #ccc; }
.cal-day--booked { background: #f0f0f0; color: #bbb; }
.cal-day--avail  {
  background: #fff;
  color: #333;
  cursor: pointer;
  border: 1px solid #e8e8e8;
  transition: background 0.12s, border-color 0.12s;
}
.cal-day--avail:hover { background: #e8f5ea; border-color: var(--color-accent); }

.cal-day--selected {
  background: var(--color-green);
  color: #fff;
  cursor: pointer;
  border: 1px solid var(--color-green);
}
.cal-day--in-range {
  background: #c8e6cc;
  color: #1a4a28;
  border: 1px solid #b0d8b5;
}

/* Greyed out — outside the valid continuous stretch */
.cal-day--too-close { background: #f0f0f0; color: #ccc; }

/* Selectable last-night date */
.cal-day--valid-co {
  background: #e8f5ea;
  color: #333;
  cursor: pointer;
  border: 1px solid var(--color-accent);
}
.cal-day--valid-co:hover { background: #c8e6cc; border-color: var(--color-green); }
.cal-swatch--valid-co { background: #e8f5ea; border: 2px solid var(--color-accent); }

.cal-hint { color: #999; font-size: 0.85em; }

.cal-num  { line-height: 1; }
.cal-rate {
  font-size: 0.6rem;
  color: #999;
  margin-top: 1px;
  line-height: 1;
}
.cal-day--avail:hover .cal-rate,
.cal-day--selected .cal-rate,
.cal-day--in-range .cal-rate { color: inherit; opacity: 0.7; }

/* Legend */
.cal-legend {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #888;
}
.cal-swatch {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  border: 1px solid #ddd;
}
.cal-swatch--avail    { background: #fff; border-color: #e8e8e8; }
.cal-swatch--booked   { background: #f0f0f0; }
.cal-swatch--selected { background: var(--color-green); border-color: var(--color-green); }

/* Footer: summary + book button */
.cal-footer {
  padding: 20px 0 8px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
}
.cal-min-stay {
  width: 100%;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-green);
  margin: 0 0 2px;
}
.cal-summary {
  flex: 1;
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}
.cal-warn { color: #c44; }

/* ── AVAILABILITY PAGE ───────────────────────────────── */
.avail-hero {
  background: #f5f5f5;
  padding: 56px 20px 48px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.avail-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}
.avail-hero h1 {
  color: #222;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 8px;
}
.avail-hero > .avail-hero-inner > p {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 32px;
}

/* Search form */
.avail-form { width: 100%; }
.avail-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  justify-content: center;
}
.avail-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 160px;
  flex: 1 1 160px;
}
.avail-field--guests { flex: 0 1 100px; min-width: 80px; }

.avail-field label {
  color: #555;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
}
.avail-field input[type=date],
.avail-field select {
  height: 46px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #333;
  outline: none;
  width: 100%;
}
.avail-field select { cursor: pointer; }

.avail-submit {
  height: 46px;
  padding: 0 32px;
  background: var(--color-green);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: background 0.2s;
  align-self: flex-end;
}
.avail-submit:hover    { background: #004d28; }
.avail-submit:disabled { background: #888; cursor: default; }

.avail-form-error {
  color: #f88;
  font-size: 0.88rem;
  margin-top: 10px;
  min-height: 1.2em;
}

/* Results */
.avail-results { background: #f9f9f7; }

/* Booking iframes */
.avail-iframe-wrap {
  margin: 0;
  padding: 0;
}
.avail-iframe-wrap iframe {
  display: block;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  border: none;
}
.apt-booking-iframe-wrap {
  margin: 0;
  padding: 0;
}
.apt-booking-iframe-wrap iframe {
  display: block;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  border: none;
}
.avail-results-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.avail-count {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.avail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.avail-card {
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.avail-card-img-wrap {
  display: block;
  width: 100%;
  height: 210px;
  overflow: hidden;
}
.avail-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.avail-card:hover .avail-card-img-wrap img { transform: scale(1.03); }
.avail-card-img-wrap--empty { background: #ddd; }

.avail-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.avail-card-name {
  font-size: 1.1rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 10px;
}
.avail-card-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 20px;
}
.avail-card-stats li::before { content: '· '; }
.avail-card-stats li:first-child::before { content: ''; }

.avail-card-price {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.avail-price-night {
  font-size: 1rem;
  color: #333;
  font-weight: 400;
}
.avail-price-total {
  font-size: 0.8rem;
  color: #999;
  margin-top: 2px;
}

.avail-card-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
}
.avail-card-details {
  flex: 1;
  text-align: center;
  padding: 10px;
  border: 1px solid var(--color-green);
  font-size: 0.88rem;
  color: var(--color-green);
  transition: background 0.2s, color 0.2s;
}
.avail-card-details:hover { background: var(--color-green); color: #fff; }

.avail-card-book {
  flex: 1;
  text-align: center;
  padding: 10px;
  background: var(--color-green);
  color: #fff;
  font-size: 0.88rem;
  transition: background 0.2s;
}
.avail-card-book:hover { background: #004d28; color: #fff; }

.avail-none {
  text-align: center;
  padding: 48px 0;
  color: var(--color-text);
}
.avail-error {
  color: #c44;
  text-align: center;
  padding: 20px 0;
}

/* ── APARTMENT PAGE ──────────────────────────────────── */
.apt-page main,
main.apt-page {
  max-width: 100%;
  padding: 0;
}

/* Iframe-only pages: availability + apartment booking */
main:has(.avail-iframe-wrap),
main:has(.apt-booking-iframe-wrap) {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* Gallery */
.apt-gallery {
  width: 100%;
  background: #fff;
}
.apt-gallery-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.gallery-hero {
  width: 100%;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s;
}
.gallery-thumbs {
  display: flex;
  gap: 4px;
  padding: 4px 0;
  background: #fff;
  overflow-x: auto;
  scrollbar-width: thin;
}
.thumb-btn {
  flex: 0 0 120px;
  height: 80px;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.15s;
}
.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumb-btn.active { border-color: var(--color-accent); }
.thumb-btn:hover  { border-color: #fff; }

/* Container inside apt page */
.apt-page .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header band */
.apt-header {
  background: #fff;
  padding: 32px 0 0;
}
.apt-header .container {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}
.apt-header h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #333;
}

/* Stats row */
.apt-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.apt-stats li {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}
.stat-label {
  color: #999;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-val {
  color: #333;
  font-weight: 400;
  font-size: 1rem;
  margin-top: 2px;
}

/* Alternating sections */
.apt-section            { padding: 44px 0; }
.apt-section--alt       { padding: 0; }
.apt-section--alt > .container {
  background: #f9f9f7;
  padding-top: 44px;
  padding-bottom: 44px;
}

.apt-section h2,
.apt-section--alt h2 {
  font-size: 1.3rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

/* Description */
.apt-description p {
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Amenities grid */
.apt-amenities {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px 20px;
}
.apt-amenities li {
  color: var(--color-text);
  font-size: 0.95rem;
  padding-left: 14px;
  position: relative;
}
.apt-amenities li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

/* House rules */
.apt-rules {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 32px;
}
.apt-rules li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--color-text);
}
.rule-icon {
  font-weight: 600;
  font-size: 1rem;
}
.rule-ok .rule-icon { color: var(--color-accent); }
.rule-no .rule-icon { color: #cc4444; }

/* Fees / discounts rows */
.apt-fees,
.apt-discounts {
  list-style: none;
  max-width: 440px;
}
.apt-fees li,
.apt-discounts li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  color: var(--color-text);
}
.apt-discounts { margin-top: 20px; }

/* Policy */
.apt-policy {
  color: var(--color-text);
  line-height: 1.7;
  max-width: 680px;
}

/* Address */
.apt-address {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 16px;
}
.apt-map { border-radius: 4px; overflow: hidden; }

/* CTA band */
.apt-cta {
  background: #1a1a1a;
  padding: 60px 0;
  text-align: center;
}
.apt-cta h2 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 10px;
  border: none;
}
.apt-cta p {
  color: #aaa;
  margin-bottom: 28px;
  font-size: 1rem;
}
.btn-book {
  display: inline-block;
  background: var(--color-green);
  color: #fff;
  padding: 16px 40px;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-book:hover { background: #004d28; color: #fff; }
.btn-book--disabled {
  background: #bbb;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.6;
}

/* ── Dev notice ──────────────────────────────────────────────────────────── */
.dev-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fffbea;
  border: 1px solid #f0c040;
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  color: #6b4e00;
  line-height: 1.5;
}
.dev-notice-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.dev-notice a {
  color: #6b4e00;
  font-weight: 600;
  text-decoration: underline;
}
.dev-notice a:hover {
  color: #3a2900;
}

/* ── Guest details form ──────────────────────────────────────────────────── */
.guest-form-wrap {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--color-border);
}
.guest-form-summary {
  background: #f5f5f5;
  border-left: 4px solid var(--color-green);
  padding: 14px 18px;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 28px;
}
.guest-form {
  max-width: 640px;
}
.guest-form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.guest-form-row--narrow {
  max-width: 220px;
}
.guest-form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.guest-form-field label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #555;
}
.guest-form-optional {
  text-transform: none;
  font-size: 0.78rem;
  color: #999;
  letter-spacing: 0;
}
.guest-form-field input,
.guest-form-field select,
.guest-form-field textarea {
  border: 1px solid var(--color-border);
  padding: 11px 13px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #333;
  outline: none;
  transition: border-color 0.15s;
  background: #fff;
}
.guest-form-field input:focus,
.guest-form-field select:focus,
.guest-form-field textarea:focus { border-color: var(--color-green); }
.guest-form-field textarea { resize: vertical; }
.guest-form-error {
  color: #c44;
  font-size: 0.88rem;
  min-height: 1.2em;
  margin-bottom: 8px;
}
.guest-form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.guest-form-back {
  background: none;
  border: none;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.guest-form-back:hover { color: #333; }
.btn-proceed {
  background: var(--color-green);
  color: #fff;
  border: none;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-proceed:hover { background: #004d28; }

/* Fallback */
.apt-fallback {
  padding: 80px 24px;
  text-align: center;
}
.apt-fallback h1 { font-size: 2rem; margin-bottom: 16px; }
.apt-fallback p  { margin-bottom: 24px; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .logo img { max-width: 160px; }
  .nav-menu > li > a { padding: 20px 10px; font-size: 0.8rem; }
}

@media (max-width: 767px) {
  .header-inner { flex-wrap: wrap; padding: 0 12px; }
  .logo { flex: 1; text-align: left; padding: 12px 0; }
  .logo img { margin: 0; max-width: 140px; }
  nav { flex: 0 0 auto; }

  .nav-toggle { display: block; }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100vw;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    padding-bottom: 12px;
  }
  .nav-menu.open { display: flex; }

  .nav-menu > li { width: 100%; }
  .nav-menu > li > a { padding: 14px 20px; }

  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open .dropdown { display: block; position: static; border: none; }
  .dropdown li a { padding: 12px 36px; }

  .banner-img { height: 160px; }
  .map-wrap iframe { height: 300px; }

  /* Calendar mobile */
  .cal-months { grid-template-columns: 1fr; gap: 24px; }
  .cal-footer { flex-direction: column; align-items: flex-start; }

  /* Availability page mobile */
  .avail-hero { padding: 36px 16px 32px; }
  .avail-hero h1 { font-size: 1.5rem; }
  .avail-fields { flex-direction: column; align-items: stretch; }
  .avail-field, .avail-field--guests { flex: 1 1 auto; min-width: 0; }
  .avail-submit { width: 100%; }
  .avail-grid { grid-template-columns: 1fr; }

  /* Apartment page mobile */
  .apt-gallery-inner { padding: 0 12px; }
  .gallery-hero { height: 260px; }
  .thumb-btn { flex: 0 0 90px; height: 60px; }
  .apt-header h1 { font-size: 1.4rem; }
  .apt-stats { gap: 8px 16px; }
  .apt-cta { padding: 40px 0; }
  .apt-cta h2 { font-size: 1.3rem; }
  .guest-form-row { flex-direction: column; gap: 12px; }
  .guest-form-row--narrow { max-width: 100%; }
  .guest-form-actions { flex-direction: column-reverse; align-items: flex-start; }
  .btn-proceed { width: 100%; text-align: center; }
}
