:root {
  --bg: #f5efe5;
  --paper: rgba(255, 250, 244, 0.82);
  --ink: #1f2330;
  --muted: #5e6573;
  --line: rgba(31, 35, 48, 0.1);
  --brand: #b64d1b;
  --brand-deep: #7f2e0d;
  --accent: #0e6c74;
  --shadow: 0 20px 60px rgba(41, 38, 34, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(182, 77, 27, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(14, 108, 116, 0.18), transparent 22%),
    linear-gradient(180deg, #f6eee3 0%, #f4f0e8 45%, #e6efe8 100%);
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-shell { width: min(1240px, calc(100% - 32px)); margin: 0 auto; padding-bottom: 40px; }
.topbar {
  position: sticky; top: 14px; z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 20px; margin-top: 18px; border: 1px solid rgba(255, 255, 255, 0.52); border-radius: 24px;
  background: rgba(255, 248, 240, 0.72); backdrop-filter: blur(16px); box-shadow: var(--shadow);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1.1rem; }
.brand small { color: var(--muted); font-size: 0.82rem; }
.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  flex: 0 0 auto;
  box-shadow: 0 12px 26px rgba(14, 108, 116, 0.22);
}
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { position: relative; font-size: 0.98rem; color: var(--muted); }
.nav a.active, .nav a:hover { color: var(--ink); }
.nav a.active::after, .nav a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: linear-gradient(90deg, var(--brand), var(--accent));
}
.nav-toggle { display: none; border: 0; border-radius: 999px; padding: 10px 16px; background: #fff; font: inherit; cursor: pointer; }
.panel {
  border: 1px solid rgba(255, 255, 255, 0.56); border-radius: 32px; background: var(--paper); backdrop-filter: blur(12px); box-shadow: var(--shadow);
}
.hero, .page-hero, .story-grid, .feature-section, .journey-section, .coverage-section, .testimonial-section, .booking-section, .split-section, .menu-grid, .service-detail-grid { margin-top: 32px; }
.hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; padding: 48px; min-height: 82vh; align-items: center;
}
.hero h1, .page-hero h1 {
  margin: 0; font-family: "Cormorant Garamond", serif; font-size: clamp(3rem, 5vw, 5.4rem); line-height: 0.95; letter-spacing: -0.03em;
}
.eyebrow { margin: 0 0 14px; color: var(--brand); font-size: 0.84rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; }
.lead { font-size: 1.08rem; line-height: 1.75; color: var(--muted); max-width: 56ch; }
.hero-actions, .hero-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-meta span { padding: 10px 14px; border-radius: 999px; background: rgba(255, 255, 255, 0.7); color: var(--muted); font-size: 0.92rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-deep)); color: #fff; box-shadow: 0 16px 34px rgba(182, 77, 27, 0.24); }
.btn-secondary { border-color: var(--line); background: rgba(255, 255, 255, 0.72); }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; overflow: hidden; }
.hero-visual::before, .hero-visual::after { content: ""; position: absolute; border-radius: 50%; }
.hero-visual::before { width: 360px; height: 360px; background: rgba(14, 108, 116, 0.12); }
.hero-visual::after { width: 190px; height: 190px; background: rgba(182, 77, 27, 0.14); top: 48px; right: 24px; }

.ac-unit { position: relative; width: min(360px, 88%); animation: float 6s ease-in-out infinite; }
.ac-top { height: 16px; width: 50%; margin: 0 auto 10px; border-radius: 999px; background: rgba(127, 46, 13, 0.24); }
.ac-body {
  position: relative; padding: 24px; height: 170px; border-radius: 32px; background: linear-gradient(180deg, #fff, #ecf7f7 100%);
  border: 1px solid rgba(14, 108, 116, 0.14); box-shadow: 0 26px 60px rgba(14, 108, 116, 0.15);
}
.ac-light { position: absolute; top: 22px; right: 26px; width: 10px; height: 10px; border-radius: 50%; background: #7cd1d8; box-shadow: 0 0 12px #7cd1d8; }
.ac-line { display: block; height: 14px; margin-top: 24px; border-radius: 999px; background: linear-gradient(90deg, rgba(14, 108, 116, 0.18), rgba(14, 108, 116, 0.04)); }
.cool-waves { display: flex; justify-content: space-evenly; margin-top: 20px; }
.cool-waves span {
  width: 80px; height: 130px; border: 3px solid rgba(14, 108, 116, 0.28); border-top: 0; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px;
  animation: airflow 2.4s ease-in-out infinite;
}
.cool-waves span:nth-child(2) { animation-delay: 0.35s; }
.cool-waves span:nth-child(3) { animation-delay: 0.7s; }

.floating-card {
  position: absolute; padding: 18px 20px; border-radius: 24px; background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: var(--shadow); animation: drift 7s ease-in-out infinite;
}
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 1.1rem; }
.floating-card small { margin-top: 4px; color: var(--muted); }
.card-one { top: 44px; left: 0; }
.card-two { bottom: 36px; right: 14px; animation-delay: 1s; }

.services-strip, .story-grid, .feature-grid, .coverage-areas, .testimonial-grid, .split-section, .vision-grid, .menu-grid, .service-detail-grid { display: grid; gap: 22px; }
.services-strip { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.strip-card, .feature-card, .testimonial-card, .menu-card, .service-detail, .timeline-item {
  border: 1px solid rgba(255, 255, 255, 0.52); border-radius: 28px; background: rgba(255, 252, 248, 0.72); box-shadow: var(--shadow);
}
.service-card-link {
  display: block;
  color: inherit;
  cursor: pointer;
}
.service-card-link .strip-card {
  height: 100%;
  transition: background 180ms ease, box-shadow 180ms ease;
}
.service-card-link:hover .strip-card,
.service-card-link:focus-visible .strip-card {
  background: rgba(255, 252, 248, 0.8);
}
.service-card-link:focus-visible {
  outline: none;
}
.strip-card { padding: 20px 16px; text-align: center; }
.strip-card img { width: 72px; height: 72px; margin: 0 auto 14px; }
.story-grid { grid-template-columns: 1.2fr 0.8fr; }
.story-grid .panel { padding: 36px; }
.metric-list { display: grid; gap: 20px; }
.metric-list div { padding: 20px; border-radius: 24px; background: rgba(255, 255, 255, 0.56); }
.metric-list strong, .metric-list span { display: block; }
.metric-list strong { font-size: 1.6rem; margin-bottom: 6px; }
.section-heading { max-width: 760px; margin-bottom: 28px; }
.section-heading h2 { margin: 0; font-family: "Cormorant Garamond", serif; font-size: clamp(2.2rem, 4vw, 4rem); line-height: 0.98; }
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card { padding: 26px; transition: transform 180ms ease, background 180ms ease; }
.feature-card:hover, .menu-card:hover, .testimonial-card:hover, .service-detail:hover { transform: translateY(-4px); }
.feature-card img, .menu-card img { width: 90px; height: 90px; margin-bottom: 18px; }
.feature-card p, .testimonial-card p, .menu-card p, .service-detail p, .timeline-item p, .plain-list li, .footer p, .booking-copy p { color: var(--muted); line-height: 1.75; }
.journey-section, .booking-section, .page-hero, .panel { padding: 38px; }
.timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.timeline-item { padding: 26px; }
.timeline-item span {
  display: inline-grid; place-items: center; width: 48px; height: 48px; margin-bottom: 18px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(182, 77, 27, 0.14), rgba(14, 108, 116, 0.14)); color: var(--brand-deep); font-weight: 700;
}
.coverage-section { display: grid; grid-template-columns: 1fr 0.9fr; gap: 22px; align-items: start; }
.coverage-areas { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.area-chip {
  padding: 22px; border-radius: 24px; background: rgba(255, 252, 248, 0.72); border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow); text-align: center; font-weight: 600;
}
.testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.testimonial-card { padding: 28px; }
.booking-section { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; }
.booking-points, .plain-list { margin: 16px 0 0; padding-left: 18px; }
.booking-form { display: grid; gap: 16px; }
.booking-form label { display: grid; gap: 8px; font-weight: 500; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 18px; padding: 15px 16px; font: inherit; background: rgba(255, 255, 255, 0.82); color: var(--ink);
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  outline: 2px solid rgba(182, 77, 27, 0.22); border-color: rgba(182, 77, 27, 0.3);
}
.form-status { min-height: 24px; margin: 0; font-weight: 600; }
.success { color: #197648; }
.error { color: #9c1d1d; }
.inner-page { padding-top: 12px; }
.split-section { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vision-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.menu-card { padding: 30px; }
.menu-tag { display: inline-flex; margin-top: 16px; padding: 8px 12px; border-radius: 999px; background: rgba(14, 108, 116, 0.1); color: var(--accent); font-size: 0.9rem; font-weight: 600; }
.service-detail-grid { grid-template-columns: 1fr; }
.service-detail { display: grid; grid-template-columns: 160px 1fr; gap: 24px; padding: 30px; align-items: center; }
.service-detail img { width: 130px; height: 130px; }
.service-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.95rem;
  font-family: "Inter", "Outfit", sans-serif;
}
.service-breadcrumb strong {
  color: var(--ink);
}
.service-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 40px;
  align-items: center;
  padding: 80px 60px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 248, 240, 0.84)),
    radial-gradient(circle at top right, rgba(14, 108, 116, 0.1), transparent 34%);
}
.service-detail-copy {
  display: grid;
  gap: 18px;
  align-content: center;
  font-family: "Inter", "Outfit", sans-serif;
}
.service-detail-copy h1,
.service-section .section-heading h2,
.service-subcategory-body h3,
.service-problem-card h4,
.service-cta h2 {
  font-family: "Inter", "Outfit", sans-serif;
  letter-spacing: -0.03em;
}
.service-detail-copy h1 {
  font-size: clamp(2.8rem, 4.2vw, 4.5rem);
  line-height: 1.02;
}
.service-detail-copy .lead {
  max-width: 54ch;
}
.service-detail-media {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 50px rgba(31, 35, 48, 0.12);
  animation: serviceFloat 6s ease-in-out infinite;
}
.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-section {
  margin-top: 40px;
}
.service-subcategory-grid {
  display: grid;
  gap: 24px;
}
.service-subcategory-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 24px;
  background: rgba(255, 252, 248, 0.84);
  box-shadow: 0 12px 28px rgba(31, 35, 48, 0.08);
}
.service-subcategory-media {
  overflow: hidden;
  border-radius: 20px;
  min-height: 100%;
  height: 100%;
}
.service-subcategory-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-subcategory-body {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: stretch;
  gap: 20px;
  min-height: 100%;
}
.service-subcategory-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.service-subcategory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.service-subcategory-body h3,
.service-problem-card h4 {
  margin: 0;
}
.service-problems-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-content: stretch;
}
.service-problem-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 35, 48, 0.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
}
.service-problem-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.service-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: "Inter", "Outfit", sans-serif;
}
.service-cta h2,
.service-not-found h1 {
  margin: 0;
}
.service-cta p,
.service-not-found .lead {
  margin: 12px 0 0;
}
.service-not-found {
  margin-top: 32px;
}
.footer { display: flex; justify-content: space-between; gap: 16px; padding: 28px 10px 0; }
.footer p { margin: 8px 0 0; }
.call-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 30; padding: 14px 20px; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #0c8f93); color: #fff; box-shadow: 0 18px 36px rgba(14, 108, 116, 0.28);
}
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 78px;
  z-index: 30;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #168a45);
  color: #fff;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.3);
  font-weight: 600;
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal-delay-1 { transition-delay: 120ms; }
.reveal-delay-2 { transition-delay: 220ms; }
.reveal-visible { opacity: 1; transform: translateY(0); }

.admin-shell { padding-bottom: 80px; }
.admin-main { display: grid; gap: 24px; margin-top: 32px; }
.admin-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}
.admin-auth-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.admin-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.admin-summary-card {
  padding: 24px;
}
.admin-summary-card span,
.admin-note {
  color: var(--muted);
}
.admin-summary-card strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
}
.admin-table-panel {
  padding: 32px;
}
.admin-table-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
}
.admin-table-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
}
.admin-bookings {
  display: grid;
  gap: 18px;
}
.admin-booking-card {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
}
.admin-booking-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}
.admin-booking-head h3 {
  margin: 0;
  font-size: 1.25rem;
}
.admin-booking-head p {
  margin: 6px 0 0;
  color: var(--muted);
}
.admin-status {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14, 108, 116, 0.12);
  color: var(--accent);
  font-weight: 700;
  text-transform: capitalize;
}
.admin-booking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.admin-booking-grid strong,
.admin-problem strong {
  display: block;
  margin-bottom: 6px;
}
.admin-booking-grid span,
.admin-problem p,
.admin-empty {
  color: var(--muted);
}
.admin-problem {
  margin-top: 18px;
}
.admin-empty {
  padding: 18px 0;
}
.admin-nav-btn {
  cursor: pointer;
  font: inherit;
}

@keyframes airflow {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(16px); opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes serviceFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1080px) {
  .hero, .story-grid, .coverage-section, .booking-section, .split-section { grid-template-columns: 1fr; }
  .services-strip, .feature-grid, .testimonial-grid, .menu-grid, .vision-grid, .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-detail-hero,
  .service-subcategory-card,
  .service-cta { grid-template-columns: 1fr; }
  .service-detail-hero {
    padding: 56px 36px;
  }
  .service-detail-media {
    order: -1;
    min-height: 320px;
  }
  .service-subcategory-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-cta { display: grid; }
  .service-problems-grid { grid-template-columns: 1fr; }
  .admin-hero, .admin-summary-grid, .admin-booking-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .site-shell { width: min(100% - 20px, 1240px); }
  .topbar { flex-wrap: wrap; top: 8px; }
  .nav-toggle { display: inline-flex; }
  .nav { display: none; width: 100%; flex-direction: column; align-items: flex-start; gap: 14px; padding-top: 8px; }
  .nav.open { display: flex; }
  .hero, .page-hero, .journey-section, .booking-section, .panel { padding: 24px; }
  .services-strip, .feature-grid, .testimonial-grid, .menu-grid, .vision-grid, .coverage-areas, .timeline { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-subcategory-card { grid-template-columns: 1fr; }
  .service-detail-hero {
    gap: 24px;
    padding: 28px 22px;
  }
  .service-detail-copy {
    order: 2;
  }
  .service-detail-copy .hero-actions {
    margin-top: 8px;
  }
  .service-detail-media {
    order: 1;
    min-height: 260px;
  }
  .service-subcategory-card {
    padding: 18px;
    gap: 18px;
  }
  .service-subcategory-head {
    gap: 12px;
  }
  .service-problems-grid {
    gap: 18px;
  }
  .service-problem-card {
    padding: 18px;
  }
  .hero-visual { min-height: 420px; }
  .cool-waves span { width: 56px; height: 92px; }
  .footer { flex-direction: column; padding-bottom: 60px; }
  .whatsapp-fab { bottom: 86px; }
  .admin-table-head, .admin-booking-head { flex-direction: column; align-items: flex-start; }
}
