/* ─────────────────────────────────────────
   Thassos Holiday — Stylesheet
   Customise the :root variables first to
   change the whole colour palette at once.
───────────────────────────────────────── */

/* ── SELF-HOSTED FONTS ── */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/Cormorant_Garamond/CormorantGaramond-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/Cormorant_Garamond/CormorantGaramond-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('fonts/DM_Sans/DMSans-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

/* ── TOKENS ── */
:root {
  --sand:        #f5f0e8;
  --linen:       #ede8dc;
  --sea:         #4a8fa8;
  --sea-lt:      #7bb8cc;
  --sea-dk:      #2d6a82;
  --terracotta:  #c4714a;
  --text:        #2a2420;
  --text-lt:     #6b5f58;
  --white:       #fefcf9;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 5rem;
  background: rgba(254,252,249,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74,143,168,0.12);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-lt); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--sea); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}
.hero-left {
  background: var(--sand);
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
}
.hero-tag {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 300; line-height: 1.1;
  color: var(--text); margin-bottom: 1.8rem;
}
.hero-title em { color: var(--sea); font-style: italic; }
.hero-desc {
  font-size: 1rem; line-height: 1.75; color: var(--text-lt);
  max-width: 420px; margin-bottom: 2.8rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--sea);
  color: white; text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--sea-dk); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--sea);
  border: 1.5px solid var(--sea);
}
.btn-outline:hover { background: var(--sea); color: white; }
.btn-white {
  background: white; color: var(--sea-dk);
  padding: 0.9rem 2rem; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}
.btn-white:hover { background: var(--sand); transform: translateY(-1px); }

/* ── HERO RIGHT PANEL ── */
.hero-right {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--sea-lt) 0%, var(--sea) 40%, var(--sea-dk) 100%);
}
.hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(255,255,255,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(196,113,74,0.15) 0%, transparent 50%);
}
.hero-shapes {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.wave-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(6rem, 12vw, 11rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.12);
  letter-spacing: -0.02em;
  user-select: none; line-height: 1; text-align: center;
}
.hero-badge {
  position: absolute; bottom: 3rem; right: 3rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 1.2rem 1.8rem; color: white;
}
.hero-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300; display: block; line-height: 1;
}
.hero-badge .label {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.8;
}

/* ── SECTION SHARED ── */
section { padding: 6rem 5rem; }
.section-tag {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.2;
  margin-bottom: 1.2rem;
}
.section-sub {
  font-size: 0.95rem; color: var(--text-lt); line-height: 1.7;
  max-width: 540px; margin-bottom: 3.5rem;
}
.divider {
  width: 3rem; height: 2px;
  background: var(--sea-lt); margin-bottom: 1.2rem;
}

/* ── ROOMS ── */
#rooms { background: var(--white); }
.rooms-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.room-card {
  border: 1px solid var(--linen);
  transition: transform 0.25s, box-shadow 0.25s;
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74,143,168,0.12);
}
.room-thumb { height: 200px; position: relative; overflow: hidden; }
.room-thumb-bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.5);
}
.room-1 .room-thumb-bg { background: linear-gradient(135deg, #7bb8cc, #4a8fa8); }
.room-2 .room-thumb-bg { background: linear-gradient(135deg, #c4a882, #a8855a); }
.room-3 .room-thumb-bg { background: linear-gradient(135deg, #8fbd8f, #5a9b6e); }
.room-body { padding: 1.5rem; }
.room-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400; margin-bottom: 0.5rem;
}
.room-desc {
  font-size: 0.85rem; color: var(--text-lt); line-height: 1.6;
  margin-bottom: 1.2rem;
}
.room-features { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.2rem; }
.tag {
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  background: var(--linen); color: var(--text-lt);
}
.room-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--sea-dk);
}
.room-price span { font-size: 0.75rem; font-family: 'DM Sans', sans-serif; color: var(--text-lt); }

/* ── AVAILABILITY ── */
#availability { background: var(--sand); }
.cal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.cal-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.cal-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot-1 { background: var(--sea); }
.dot-2 { background: #c4a882; }
.dot-3 { background: #5a9b6e; }
.cal-embed {
  background: white;
  border: 1px solid var(--linen);
  overflow: hidden; height: 380px; position: relative;
}
.cal-embed iframe { width: 100%; height: 100%; border: none; }
.cal-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.8rem; background: var(--white);
}
.cal-placeholder-icon { font-size: 2.5rem; opacity: 0.25; }
.cal-placeholder-text {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-lt); text-align: center; line-height: 1.6;
}
.cal-note {
  margin-top: 2.5rem;
  padding: 1.2rem 1.6rem;
  background: rgba(74,143,168,0.08);
  border-left: 3px solid var(--sea);
  font-size: 0.85rem; color: var(--text-lt); line-height: 1.6;
}
.cal-note strong { color: var(--sea-dk); font-weight: 500; }

/* ── PRICING TABLE ── */
#pricing { background: var(--white); }
.pricing-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.pricing-table th {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-lt); font-weight: 500;
  padding: 0.8rem 1.2rem; text-align: left;
  border-bottom: 2px solid var(--linen);
}
.pricing-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--linen);
  color: var(--text);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--sand); }
.price-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--sea-dk);
}
.season-badge {
  display: inline-block;
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  background: var(--linen); color: var(--text-lt);
}
.season-peak { background: rgba(196,113,74,0.12); color: var(--terracotta); }

/* ── CONTACT ── */
#contact { background: var(--sea-dk); color: white; }
#contact .section-tag  { color: var(--sea-lt); }
#contact .section-title { color: white; }
#contact .section-sub  { color: rgba(255,255,255,0.65); }
#contact .divider      { background: rgba(255,255,255,0.3); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-method {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.4rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none; color: white;
  transition: background 0.2s;
}
.contact-method:hover { background: rgba(255,255,255,0.1); }
.contact-method-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-method-label {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sea-lt); margin-bottom: 0.3rem;
}
.contact-method-value { font-size: 1rem; font-weight: 300; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: white; padding: 0.8rem 1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 300;
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--sea-lt); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--sea-dk); color: white; }

/* ── FOOTER ── */
footer {
  background: #1a2f38;
  color: rgba(255,255,255,0.4);
  padding: 2rem 5rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; letter-spacing: 0.06em;
}
footer a { color: rgba(255,255,255,0.4); text-decoration: none; }
footer a:hover { color: white; }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: rgba(255,255,255,0.6);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  #hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 280px; }
  section { padding: 4rem 1.5rem; }
  .rooms-grid, .cal-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 0.8rem; text-align: center; padding: 2rem 1.5rem; }
}

/* ═══════════════════════════════════════════
   THASSOS HOLIDAY — EXTENDED STYLES
   Added sections: nav dropdown, hamburger,
   apartment cards, about, apartment pages,
   gallery, FAQ, local guide
═══════════════════════════════════════════ */

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: default; }
.nav-dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--linen);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  list-style: none;
  min-width: 200px;
  padding: 0.8rem 0 0.4rem;
  z-index: 200;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 0.65rem 1.2rem;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-lt); text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu li a:hover { background: var(--sand); color: var(--sea); }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }

/* ── HAMBURGER BUTTON ── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 0.4rem; z-index: 300;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); transition: all 0.25s;
}

/* ── MOBILE NAV PANEL ── */
.nav-mobile {
  display: none;
  position: fixed; inset: 0;
  background: var(--white); z-index: 250;
  padding: 5rem 2.5rem 2rem;
  flex-direction: column;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile-close {
  position: absolute; top: 1.4rem; right: 1.5rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.6rem; color: var(--text-lt); line-height: 1;
}
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 0.2rem; }
.nav-mobile-section-label {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terracotta); margin: 1.5rem 0 0.6rem;
}
.nav-mobile ul a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300; color: var(--text);
  text-decoration: none; display: block; padding: 0.3rem 0;
  transition: color 0.2s;
}
.nav-mobile ul a:hover { color: var(--sea); }

/* ── HERO RIGHT — PHOTO ── */
.hero-right {
  background-size: cover; background-position: center;
}
.hero-right.photo-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(45,106,130,0.3) 0%,
    rgba(45,106,130,0.1) 50%,
    transparent 100%);
  z-index: 1;
}
.hero-right.photo-bg .hero-shapes,
.hero-right.photo-bg .hero-badge { z-index: 2; }

/* ── APARTMENTS SECTION ── */
#apartments { background: var(--white); }
.apt-group { margin-bottom: 4rem; }
.apt-group-label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sea-dk); margin-bottom: 1.8rem;
  display: flex; align-items: center; gap: 1.2rem;
}
.apt-group-label::after {
  content: ''; flex: 1; height: 1px; background: var(--linen);
}
.apt-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem;
}
.apt-grid-2 {
  grid-template-columns: repeat(2, 1fr); max-width: 720px;
}

.apt-card {
  border: 1px solid var(--linen); text-decoration: none;
  color: var(--text); display: block;
  transition: transform 0.25s, box-shadow 0.25s;
}
.apt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74,143,168,0.12);
}
.apt-card-thumb { height: 360px; overflow: hidden; }
.apt-card-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s;
}
.apt-card:hover .apt-card-thumb img { transform: scale(1.04); }
.apt-card-body { padding: 1.5rem; }
.apt-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 400; margin-bottom: 0.35rem;
}
.apt-card-tagline {
  font-size: 0.82rem; color: var(--text-lt); line-height: 1.55;
  margin-bottom: 1rem;
}
.apt-card-specs {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1rem;
  font-size: 0.75rem; color: var(--text-lt); margin-bottom: 1.2rem;
}
.apt-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid var(--linen);
}
.apt-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; color: var(--sea-dk);
}
.apt-card-price span {
  font-size: 0.72rem; font-family: 'DM Sans', sans-serif; color: var(--text-lt);
}
.apt-card-link {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sea);
}

/* ── ABOUT SNIPPET ── */
#about { background: var(--sand); }
.about-inner { max-width: 660px; }
.about-inner p {
  font-size: 0.98rem; line-height: 1.85; color: var(--text-lt);
  margin-bottom: 1rem;
}

/* ─────────────────────────────────────────
   APARTMENT PAGE STYLES
───────────────────────────────────────── */

/* ── APT HERO ── */
.apt-page-hero {
  height: 55vh; min-height: 320px;
  background-size: cover; background-position: center;
  position: relative;
  margin-top: 73px;
}
.apt-page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.58) 0%,
    rgba(0,0,0,0.15) 55%,
    transparent 100%);
}
.apt-page-hero-name {
  position: absolute; bottom: 4rem; left: 5rem;
  z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300; color: white;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* ── BACK LINK ── */
.back-link-bar {
  background: var(--white);
  border-bottom: 1px solid var(--linen);
  padding: 1rem 5rem;
}
.back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-lt); text-decoration: none;
  transition: color 0.2s;
}
.back-link:hover { color: var(--sea); }

/* ── SPECS BAR ── */
.specs-bar {
  background: var(--sand);
  padding: 1.4rem 5rem;
  display: flex; align-items: baseline; flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  border-bottom: 1px solid var(--linen);
}
.specs-bar-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 400; color: var(--text);
}
.specs-bar-sep { color: var(--linen); margin: 0 0.3rem; }
.specs-bar-item { font-size: 0.82rem; color: var(--text-lt); }

/* ── APT TWO-COLUMN ── */
.apt-main {
  display: grid; grid-template-columns: 3fr 2fr;
  background: var(--white);
}
.apt-content {
  padding: 3rem 3rem 3rem 5rem;
  border-right: 1px solid var(--linen);
}
.apt-sidebar { 
  padding: 2.5rem 5rem 2.5rem 3rem; 
}

/* ── APT PRICING TABLE ── */
.apt-section-label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1rem;
}
.apt-section-hint {
  font-size: 0.88rem; color: var(--text-lt);
  text-align: center; line-height: 1.55;
  padding: 1.4rem 3rem;
  background-color: var(--sand);
  margin: 2rem 0rem  /* go back to 5rem if needed*/
}
.apt-pricing-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.88rem; margin-bottom: 2.5rem;
}
.apt-pricing-table th {
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-lt); font-weight: 500;
  padding: 0.7rem 1rem; text-align: left;
  border-bottom: 2px solid var(--linen);
}
.apt-pricing-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--linen);
}
.apt-pricing-table tr:last-child td { border-bottom: none; }
.apt-pricing-table tr:hover td { background: var(--sand); }
.apt-pricing-table .peak-row td {
  background: rgba(196,113,74,0.05);
}

/* ── APT CALENDAR ── */
.apt-calendar-embed {
  background: var(--sand); border: 1px solid var(--linen);
  margin-bottom: 0.6rem; padding: 1rem;
}

/* Calendar wrapper */
.cal-wrapper { font-family: inherit; }
.cal-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.cal-nav-btn {
  background: none; border: 1px solid var(--linen); color: var(--text-lt);
  font-size: 1.4rem; line-height: 1; padding: 0.2rem 0.65rem;
  cursor: pointer; border-radius: 3px; transition: border-color 0.15s, color 0.15s;
}
.cal-nav-btn:hover { border-color: var(--sea); color: var(--sea); }
.cal-nav-btn.cal-nav-disabled { opacity: 0.3; cursor: default; pointer-events: none; }

.cal-months { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.cal-month-title {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text); margin-bottom: 0.5rem;
}
.cal-day-names {
  display: grid; grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.25rem;
}
.cal-day-name {
  font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-lt); text-align: center; padding: 0.2rem 0;
}
.cal-day-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; border-radius: 2px; user-select: none;
}
.cal-day-empty { background: transparent; }
.cal-day-available { background: var(--white); color: var(--text); }
.cal-day-blocked { background: var(--terracotta); color: white; }
.cal-day-past { color: var(--text-lt); opacity: 0.45; }
.cal-day-today { outline: 2px solid var(--sea); outline-offset: -2px; }

.cal-status {
  padding: 2rem 1rem; text-align: center;
  font-size: 0.8rem; color: var(--text-lt);
}
.cal-status-error a { color: var(--sea); }

@media (max-width: 600px) {
  .cal-months { grid-template-columns: 1fr; }
  .apt-calendar-embed { padding: 0.75rem; }
}

/* ── ENQUIRY BOX ── */
.enquiry-box {
  position: sticky; top: 90px;
  background: var(--white); border: 1px solid var(--linen);
  padding: 1.8rem;
}
.enquiry-box-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 300; margin-bottom: 1.4rem;
  color: var(--text);
}
.enquiry-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: #25d366; color: white;
  padding: 0.9rem 1.2rem; text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500;
  transition: background 0.2s;
}
.enquiry-whatsapp:hover { background: #1fba58; }
.enquiry-divider {
  text-align: center; font-size: 0.68rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-lt);
  margin-bottom: 1.2rem; position: relative;
}
.enquiry-divider::before, .enquiry-divider::after {
  content: ''; position: absolute; top: 50%;
  width: calc(50% - 55px); height: 1px; background: var(--linen);
}
.enquiry-divider::before { left: 0; }
.enquiry-divider::after { right: 0; }
.enquiry-form { display: flex; flex-direction: column; gap: 0.8rem; }
.enquiry-form .fg label {
  display: block;
  font-size: 0.63rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-lt); margin-bottom: 0.3rem;
}
.enquiry-form input, .enquiry-form textarea {
  width: 100%; padding: 0.65rem 0.9rem;
  border: 1px solid var(--linen); background: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 300;
  color: var(--text); outline: none; transition: border-color 0.2s;
}
.enquiry-form input:focus, .enquiry-form textarea:focus { border-color: var(--sea); }
.enquiry-form textarea { resize: vertical; min-height: 80px; }
.enquiry-form button {
  background: var(--sea); color: white;
  border: none; cursor: pointer;
  padding: 0.8rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: background 0.2s; align-self: flex-start;
}
.enquiry-form button:hover { background: var(--sea-dk); }
.enquiry-note {
  font-size: 0.7rem; color: var(--text-lt);
  text-align: center; line-height: 1.55;
  padding: 1.4rem 0rem 0rem 0rem;
}

/* ── APT DESCRIPTION ── */
.apt-description { padding: 3.5rem 5rem; background: var(--white); }
.apt-description h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 300; margin-bottom: 1.2rem; color: var(--text);
}
.apt-description p {
  font-size: 0.95rem; line-height: 1.85; color: var(--text-lt);
  margin-bottom: 0.9rem; max-width: 720px;
}

/* ── AMENITIES ── */
.apt-amenities { padding: 3.5rem 5rem; background: var(--sand); }
.apt-amenities h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 300; margin-bottom: 2rem; color: var(--text);
}
.amenities-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.amenities-group-title {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sea-dk); margin-bottom: 0.8rem;
}
.amenity-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.amenity-tag {
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  background: var(--white); border: 1px solid var(--linen);
  color: var(--text);
}

/* ── PHOTO GALLERY ── */
.apt-gallery { padding: 3.5rem 5rem; background: var(--white); }
.apt-gallery h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 300; margin-bottom: 2rem; color: var(--text);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.gallery-item { overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ─────────────────────────────────────────
   FAQ PAGE
───────────────────────────────────────── */
.faq-hero {
  background: var(--sand);
  padding: 7rem 5rem 4rem;
  margin-top: 73px;
}
.faq-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 300; color: var(--text); margin-bottom: 0.8rem;
}
.faq-hero p { font-size: 0.95rem; color: var(--text-lt); max-width: 480px; line-height: 1.7; }

.faq-body { max-width: 800px; margin: 0 auto; padding: 4rem 5rem; }
.faq-section { margin-bottom: 3rem; }
.faq-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 300; color: var(--text);
  padding-bottom: 0.8rem; margin-bottom: 0.5rem;
  border-bottom: 2px solid var(--linen);
}
details { border-bottom: 1px solid var(--linen); }
summary {
  padding: 1.1rem 0;
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.93rem; color: var(--text); font-weight: 400;
  gap: 1rem;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+'; font-size: 1.1rem; color: var(--sea);
  flex-shrink: 0; transition: transform 0.2s;
}
details[open] summary::after { content: '−'; }
.faq-answer {
  padding: 0 0 1.2rem;
  font-size: 0.88rem; line-height: 1.8; color: var(--text-lt);
}
.faq-answer ul { padding-left: 1.2rem; margin-top: 0.4rem; }
.faq-answer li { margin-bottom: 0.35rem; }
.faq-answer a { color: var(--sea); }
.faq-answer strong { color: var(--text); font-weight: 500; }

/* ─────────────────────────────────────────
   LOCAL GUIDE PAGE
───────────────────────────────────────── */
.guide-hero {
  background: var(--sea-dk);
  padding: 7rem 5rem 4rem;
  margin-top: 73px;
}
.guide-hero-tag {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sea-lt); margin-bottom: 1rem;
}
.guide-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 300; color: white; margin-bottom: 0.8rem;
}
.guide-hero p { font-size: 0.95rem; color: rgba(255,255,255,0.65); max-width: 520px; line-height: 1.7; }

.guide-body { padding: 4rem 5rem; max-width: 880px; }
.guide-section { margin-bottom: 3.5rem; }
.guide-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--text);
  margin-bottom: 1rem;
}
.guide-section p { font-size: 0.92rem; line-height: 1.8; color: var(--text-lt); margin-bottom: 0.8rem; }
.guide-list { list-style: none; padding: 0; margin-top: 0.5rem; }
.guide-list li {
  font-size: 0.92rem; line-height: 1.75; color: var(--text-lt);
  padding: 0.5rem 0; border-bottom: 1px solid var(--linen);
  display: flex; gap: 0.8rem;
}
.guide-list li:last-child { border-bottom: none; }
.guide-list .gl-icon { flex-shrink: 0; }
.guide-cta {
  background: var(--sand); padding: 3rem 5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.guide-cta p { font-size: 0.95rem; color: var(--text-lt); max-width: 420px; }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .apt-grid { grid-template-columns: 1fr; }
  .apt-grid-2 { grid-template-columns: 1fr; max-width: none; }
  .apt-main { grid-template-columns: 1fr; }
  .apt-content { border-right: none; border-bottom: 1px solid var(--linen); padding: 2rem 1.5rem; }
  .apt-sidebar { padding: 2rem 1.5rem; }
  .enquiry-box { position: static; }
  .apt-page-hero-name { left: 1.5rem; bottom: 1.5rem; }
  .specs-bar { padding: 1.2rem 1.5rem; flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .back-link-bar { padding: 1rem 1.5rem; }
  .apt-description, .apt-amenities, .apt-gallery { padding: 2.5rem 1.5rem; }
  .amenities-groups { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-hero, .guide-hero { padding: 5rem 1.5rem 3rem; }
  .faq-body { padding: 3rem 1.5rem; }
  .guide-body { padding: 3rem 1.5rem; }
  .guide-cta { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }
}
