/* ===============================================
   Beba's House by MPS — Athens-inspired palette
   Aegean blue · Cycladic white · Marble · Gold ·
   Olive · Terracotta
   =============================================== */
:root {
  --aegean: #14607a;          /* deep Aegean blue */
  --aegean-dark: #0e4a5f;
  --aegean-light: #2a86a3;
  --gold: #c8a45c;            /* warm ochre / gold */
  --gold-dark: #a9863f;
  --terracotta: #c76b4d;
  --olive: #7a7d4f;
  --marble: #f7f4ee;          /* warm marble white */
  --marble-2: #efe9df;
  --white: #ffffff;
  --ink: #22303a;             /* charcoal */
  --ink-soft: #4a5a64;
  --line: #e2dbcf;
  --shadow: 0 10px 30px rgba(20, 60, 76, 0.12);
  --shadow-sm: 0 4px 14px rgba(20, 60, 76, 0.10);
  --radius: 14px;
  --radius-lg: 22px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --maxw: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--marble);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; }
.center { text-align: center; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .4em; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: .5px; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.3rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 0 0 .8em;
}

.lead { font-size: 1.14rem; color: var(--ink-soft); }

.section { padding: 84px 0; }
.section-head { margin-bottom: 44px; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--aegean); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--aegean-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
.btn-lg { padding: 17px 42px; font-size: 1.05rem; }
.btn-nav { padding: 10px 22px; background: var(--gold); color: var(--white); }
.btn-nav:hover { background: var(--gold-dark); }
.btn-airbnb { background: #FF385C; color: var(--white); box-shadow: var(--shadow-sm); }
.btn-airbnb:hover { background: #e11d48; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-booking { background: #003580; color: var(--white); box-shadow: var(--shadow-sm); }
.btn-booking:hover { background: #00224f; transform: translateY(-2px); box-shadow: var(--shadow); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 244, 238, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--aegean); color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
}
.brand-text { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; line-height: 1; color: var(--ink); }
.brand-text small { display: block; font-family: var(--sans); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dark); margin-top: 3px; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; }
.nav-links a { font-size: .93rem; font-weight: 500; color: var(--ink-soft); transition: color .2s; }
.nav-links a:hover { color: var(--aegean); }
.nav-links .btn-nav { color: var(--white); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; color: var(--white); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,74,95,.35) 0%, rgba(14,74,95,.15) 40%, rgba(11,40,52,.85) 100%);
}
.hero-content { position: relative; padding-bottom: 64px; padding-top: 120px; }
.hero-content .eyebrow { color: var(--gold); }
.hero h1 { color: var(--white); text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.hero h1 span { display: block; font-size: .5em; font-style: italic; font-weight: 500; color: var(--gold); }
.hero-sub { max-width: 620px; font-size: 1.2rem; color: rgba(255,255,255,.92); margin-bottom: 32px; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 34px; margin-bottom: 34px; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--serif); font-size: 1.9rem; line-height: 1; color: var(--gold); }
.hero-stats span { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.85); margin-top: 4px; }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Intro ---------- */
.intro { background: var(--white); }

/* ---------- Gallery ---------- */
.gallery-section { background: var(--marble); }
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  margin: 0; position: relative; overflow: hidden;
  border-radius: var(--radius); cursor: pointer; box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-large { grid-column: span 2; grid-row: span 2; }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 18px 14px; color: var(--white); font-size: .9rem; font-weight: 500;
  background: linear-gradient(transparent, rgba(11,40,52,.75));
  opacity: 0; transform: translateY(8px); transition: .3s;
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---------- Rooms ---------- */
.space { background: var(--white); }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.room-card {
  background: var(--marble); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 40px 28px; text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.room-icon { font-size: 2.2rem; margin-bottom: 10px; }
.room-card h3 { margin-bottom: 4px; }
.room-card p { margin: 0; color: var(--ink-soft); }

/* ---------- Amenities ---------- */
.amenities { background: var(--marble-2); }
.amenity-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.amenity-grid li {
  background: var(--white); border-radius: var(--radius); padding: 20px 22px;
  display: flex; align-items: center; gap: 14px; font-weight: 500; font-size: .98rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.am-ico { font-size: 1.4rem; }

/* ---------- Location ---------- */
.location { background: var(--white); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.location-text h3 { margin-top: 30px; color: var(--aegean); }
.feature-list { list-style: none; padding: 0; margin: 0 0 10px; }
.feature-list li { padding: 10px 0 10px 28px; position: relative; border-bottom: 1px dashed var(--line); color: var(--ink-soft); }
.feature-list li::before { content: "📍"; position: absolute; left: 0; }
.distance-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.distance-chips span {
  background: var(--marble-2); color: var(--aegean-dark);
  padding: 8px 16px; border-radius: 50px; font-size: .86rem; font-weight: 500;
  border: 1px solid var(--line);
}
.location-map { position: sticky; top: 90px; }
.location-map iframe {
  width: 100%; height: 420px; border: 0; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); background: var(--marble-2);
}
.map-link { display: inline-block; margin-top: 12px; color: var(--aegean); font-weight: 600; font-size: .9rem; }

/* ---------- Reviews ---------- */
.reviews { background: var(--marble); }
.rating-bars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 40px;
  max-width: 760px; margin: 0 auto 46px;
}
.rating-bars div { display: grid; grid-template-columns: 110px 1fr 34px; align-items: center; gap: 12px; font-size: .88rem; }
.rating-bars span { color: var(--ink-soft); }
.rating-bars i { height: 6px; background: var(--line); border-radius: 4px; position: relative; }
.rating-bars i::after { content: ""; position: absolute; inset: 0; width: var(--v); background: var(--aegean); border-radius: 4px; }
.rating-bars b { text-align: right; color: var(--ink); }

.review-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.review-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  margin: 0; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.review-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 12px; font-size: 1.05rem; }
.review-card p { font-style: italic; color: var(--ink); margin: 0 0 16px; }
.review-card footer { font-weight: 600; color: var(--ink-soft); font-size: .9rem; }

/* ---------- Host ---------- */
.host { background: var(--aegean); color: var(--white); }
.host .eyebrow { color: var(--gold); }
.host h2 { color: var(--white); }
.host .lead { color: rgba(255,255,255,.9); }
.host-meta { margin-top: 20px; font-size: .92rem; color: var(--gold); letter-spacing: .02em; }

/* ---------- CTA ---------- */
.cta-section { background: var(--marble-2); }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 18px; font-size: .88rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.8); padding: 56px 0 24px; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand { color: var(--white); font-size: 1.5rem; }
.footer-brand small { color: var(--gold); }
.site-footer p { margin: 8px 0 0; font-size: .9rem; }
.reg { color: rgba(255,255,255,.5) !important; font-size: .82rem !important; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: rgba(255,255,255,.75); font-size: .92rem; transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { padding-top: 22px; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.5); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  background: rgba(11,30,40,.94); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img { max-width: 88vw; max-height: 82vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,.12); color: #fff; border: none;
  cursor: pointer; border-radius: 50%; display: grid; place-items: center; transition: background .2s;
}
.lb-close { top: 24px; right: 28px; width: 46px; height: 46px; font-size: 1.8rem; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2rem; }
.lb-prev { left: 24px; } .lb-next { right: 24px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.28); }
.lb-caption { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: #fff; font-size: .95rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-map { position: static; }
  .review-cards { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .rating-bars { grid-template-columns: 1fr; max-width: 460px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--marble);
    border-bottom: 1px solid var(--line); padding: 10px 0;
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 14px; }
  .cards-3 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-large { grid-column: span 2; grid-row: span 1; }
  .section { padding: 60px 0; }
  .hero-stats { gap: 22px; }
}

@media (max-width: 460px) {
  .amenity-grid { grid-template-columns: 1fr; }
  .hero-stats strong { font-size: 1.5rem; }
}
