/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --primary: #0F766E;
  --primary-dark: #0D5E57;
  --primary-light: #14B8A8;
  --bg: #ffffff;
  --bg-alt: #F8FAFC;
  --text: #0F172A;
  --text-muted: #64748B;
  --border: rgba(15, 118, 110, 0.15);
  --nav-bg: #0F172A;
  --footer-bg: #0F172A;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* ─── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── TYPOGRAPHY ──────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }

/* ─── LAYOUT ──────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-header { margin-bottom: 48px; }
.section-header p { color: var(--text-muted); max-width: 580px; margin-top: 12px; font-size: 1.05rem; }

/* ─── NAVBAR ──────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg);
  padding: 0 24px;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.navbar-solid { background: var(--nav-bg) !important; }
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.1rem; }
.logo-text strong { color: var(--primary-light); }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-link {
  color: #CBD5E1; padding: 8px 12px; border-radius: 6px;
  font-size: 0.9rem; font-weight: 500; transition: color 0.2s;
}
.nav-link:hover { color: #fff; }
.nav-cta {
  background: var(--primary); color: #fff !important;
  padding: 8px 18px; border-radius: 6px; font-weight: 600;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--primary-dark); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 68px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover; background-position: 35% center;
  filter: brightness(0.68);
}
.hero-content { position: relative; z-index: 1; padding: 80px 24px; max-width: 1100px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(15,118,110,0.2); border: 1px solid rgba(20,184,166,0.4);
  color: var(--primary-light); padding: 6px 16px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 { color: #fff; max-width: 780px; margin-bottom: 16px; }
.hero h1 span { color: var(--primary-light); }
.hero-sub { color: #CBD5E1; font-size: 1.1rem; max-width: 520px; margin-bottom: 40px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.05rem;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.05rem;
  transition: background 0.2s, transform 0.15s;
}
.btn-wa:hover { background: #1ebe58; transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.4); color: #fff;
  padding: 12px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: #fff; }
.hero-bottom-row {
  display: flex; align-items: center; gap: 20px;
  margin-top: 32px; flex-wrap: wrap;
}
.hero-trust { display: flex; align-items: center; gap: 10px; }
.hero-trust-text { color: #94A3B8; font-size: 0.9rem; }
.hero-trust-text:hover { color: #fff; }
.hero-stars { color: #F59E0B; font-size: 1.1rem; letter-spacing: 2px; }
.hero-work-btn { white-space: nowrap; }

/* ─── SERVICES ────────────────────────────────────────── */
.services { background: var(--bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(15,118,110,0.1); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ─── GALLERY GRID ────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius); aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: rgba(15,118,110,0); display: flex;
  align-items: center; justify-content: center;
  transition: background 0.3s;
}
.gallery-item:hover .overlay { background: rgba(15,118,110,0.3); }
.gallery-item .overlay i { color: #fff; font-size: 1.8rem; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .overlay i { opacity: 1; }

/* ─── REVIEWS ─────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.review-stars { color: #F59E0B; margin-bottom: 12px; font-size: 1rem; }
.review-text { color: var(--text); font-size: 0.97rem; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { font-weight: 700; font-size: 0.9rem; color: var(--primary); }
.review-source { font-size: 0.8rem; color: var(--text-muted); }
.fb-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #1877F2; color: #fff;
  padding: 10px 20px; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem;
  margin-bottom: 40px;
}

/* ─── CTA STRIP ───────────────────────────────────────── */
.cta-strip {
  background: var(--primary);
  padding: 60px 24px;
  text-align: center;
}
.cta-strip h2 { color: #fff; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.05rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--primary);
  padding: 14px 28px; border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem;
  transition: opacity 0.2s;
}
.btn-white:hover { opacity: 0.9; }

/* ─── PAGE HEADER (work.html, reviews.html) ───────────── */
.page-header {
  background: var(--nav-bg); padding: 120px 24px 60px;
  text-align: center;
}
.page-header h1 { color: #fff; margin-bottom: 12px; }
.page-header p { color: #94A3B8; font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--footer-bg);
  padding: 48px 24px 32px;
  color: #94A3B8;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p { margin-top: 12px; font-size: 0.9rem; line-height: 1.7; }
footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
footer a { color: #94A3B8; font-size: 0.9rem; display: block; margin-bottom: 10px; transition: color 0.2s; }
footer a:hover { color: #fff; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; flex-wrap: wrap; gap: 12px;
}

/* ─── AVAILABILITY PAGE ───────────────────────────────── */
.avail-legend {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 24px; flex-wrap: wrap;
}
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--text-muted); }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.dot-free  { background: #10B981; }
.dot-busy  { background: #EF4444; }
.dot-tent  { background: #F59E0B; }

.calendar-wrap {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
}
.gcal-iframe {
  width: 100%;
  height: 640px;
  display: block;
  border: none;
}
@media (max-width: 768px) {
  .gcal-iframe { height: 480px; }
}

/* ── Calendar header ── */
.cal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.cal-month-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.1rem; color: var(--text);
}
.cal-nav {
  background: none; border: 1px solid var(--border);
  border-radius: 6px; width: 36px; height: 36px;
  font-size: 1.3rem; color: var(--text-muted);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}
.cal-nav:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Grid ── */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
}
.cal-day-label {
  text-align: center; padding: 10px 4px;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted);
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.cal-cell {
  min-height: 64px; padding: 8px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  background: #fff;
  transition: background 0.15s;
}
.cal-cell:nth-child(7n) { border-right: none; }
.cal-cell span {
  font-size: 0.88rem; font-weight: 600; color: var(--text);
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
}
.cal-empty { background: var(--bg-alt); }
.cal-past span { color: #CBD5E1; }
.cal-past { background: #FAFBFC; }

/* ── Status colours ── */
.cal-free   { background: rgba(16,185,129,0.08); }
.cal-free span { color: #065F46; }
.cal-free::after {
  content: ''; position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: #10B981;
}
.cal-busy   { background: rgba(239,68,68,0.07); }
.cal-busy span { color: #991B1B; }
.cal-busy::after {
  content: ''; position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: #EF4444;
}
.cal-tentative { background: rgba(245,158,11,0.08); }
.cal-tentative span { color: #92400E; }
.cal-tentative::after {
  content: ''; position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: #F59E0B;
}

/* ── Today highlight ── */
.cal-today span {
  background: var(--primary); color: #fff;
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .cal-cell { min-height: 48px; padding: 6px 4px; }
  .cal-cell span { font-size: 0.8rem; width: 24px; height: 24px; }
  .cal-cell::after { bottom: 5px; }
  .cal-header { padding: 14px 16px; }
  .cal-month-label { font-size: 1rem; }
}

.avail-cta { text-align: center; padding: 48px 0 24px; }
.avail-cta h2 { margin-bottom: 12px; }
.avail-cta p { color: var(--text-muted); font-size: 1.05rem; max-width: 480px; margin: 0 auto; }

.nav-link-active {
  background: rgba(20,184,166,0.15) !important;
  color: var(--primary-light) !important;
  border: 1px solid rgba(20,184,166,0.3);
}

/* ─── STICKY PHONE BAR (mobile) ───────────────────────── */
.sticky-phone {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: #0F172A;
  padding: 10px 12px;
  justify-content: center; gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sticky-phone a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 700; font-size: 1rem;
  padding: 13px 10px; border-radius: 8px;
  color: #fff;
}
.sticky-call { background: var(--primary); }
.sticky-call:hover { background: var(--primary-dark); }
.sticky-wa { background: #25D366; }
.sticky-wa:hover { background: #1ebe58; }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {

  /* ── NAV: transparent overlay, no hamburger ── */
  .hamburger { display: none; }
  .navbar {
    background: transparent;
    box-shadow: none;
  }
  .navbar.scrolled { background: var(--nav-bg); }
  .nav-inner {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 10px 12px 8px;
    gap: 8px;
  }
  .logo { align-self: center; }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 5px;
    padding: 0;
    position: static;
    background: none;
    border: none;
    justify-content: center;
    width: 100%;
  }
  .nav-link {
    font-size: 0.72rem;
    padding: 6px 10px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
  }
  .nav-link:hover { background: rgba(0,0,0,0.65); }
  .nav-cta { display: none; }

  /* ── GENERAL ── */
  section { padding: 52px 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-inner > *:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sticky-phone { display: flex; }
  body { padding-bottom: 72px; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    align-items: flex-start;
  }
  .hero-bg {
    background-image: url('../img/hero-bg-mobile.jpg');
    background-position: center top;
  }
  /* hero fills full screen — content pushed below the transparent nav */
  .hero { padding-top: 0; }
  .hero-content { padding: 128px 20px 20px; }
  .hero-bottom-row { margin-top: 24px; gap: 14px; }
  .hero-work-btn { font-size: 0.82rem; padding: 9px 16px; }
  .hero-trust { gap: 6px; }
  .hero-trust-text { font-size: 0.75rem; color: rgba(255,255,255,0.85); }
  .hero-stars { font-size: 0.85rem; }
  .hero-work-btn { font-size: 0.8rem; padding: 8px 14px; }
  .hero-badge { font-size: 0.68rem; padding: 4px 12px; margin-bottom: 10px; }
  .hero h1 { font-size: clamp(1.75rem, 8vw, 2.5rem); margin-bottom: 8px; }
  .hero-sub { font-size: 0.88rem; line-height: 1.5; }

  /* ── SERVICES ── */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-card { padding: 20px 14px; }
  .service-icon { font-size: 1.5rem; margin-bottom: 8px; }
  .service-card h3 { font-size: 0.9rem; }
  .service-card p { font-size: 0.8rem; }

  /* ── GALLERY TEASER ── */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* ── REVIEWS ── */
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .review-card { padding: 20px; }
}
