@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; border: none; outline: none; background: none; }

:root {
  --accent: #c4ed0d;
  --text: #1a1a1a;
  --text-light: #555;
  --font-display: "Roboto", sans-serif;
  --font-body: "Poppins", sans-serif;
  --radius-card: 32px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
  background: #ede8e1;
}

/* ===================================
   LOGO TOP LEFT
=================================== */
.site-logo {
  position: fixed;
  top: 6px;
  left: 32px;
  z-index: 10;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.45s cubic-bezier(0.4,0,0.2,1), transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.site-logo.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-10px);
}
.site-logo img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
}

/* ===================================
   NAVBAR
=================================== */
.navbar {
  position: fixed;
  top: 24px;
  right: 32px;
  z-index: 1000;
  transition: all 0.45s cubic-bezier(0.4,0,0.2,1);
}
/* Scrolled state: pill moves to right edge, gets glass background */
.navbar.scrolled {
  top: 12px;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 5px 5px 5px 16px;
  min-width: 480px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: all 0.45s cubic-bezier(0.4,0,0.2,1);
}
/* On scroll: pill gets more opaque glass look */
.navbar.scrolled .nav-inner {
  background: rgba(240,243,248,0.55);
  backdrop-filter: blur(28px) brightness(1.12);
  -webkit-backdrop-filter: blur(28px) brightness(1.12);
  box-shadow: 0 2px 24px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 5px 5px 5px 10px;
}
/* Small logo pill inside nav — hidden by default, shows on scroll */
.nav-logo-pill {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-6px);
  transition: all 0.45s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  align-items: center;
  padding-right: 4px;
}
.nav-logo-pill img {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  object-fit: cover;
}
.navbar.scrolled .nav-logo-pill {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 999px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-link:hover {
  background: rgba(255,255,255,0.3);
}
.nav-cta {
  background: var(--accent);
  color: #1a1a1a;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 999px;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover {
  opacity: 0.9;
  transform: scale(0.98);
}
/* Hamburger hidden on desktop/tablet — shown only on mobile */
.nav-hamburger { display: none; }
.nav-mobile-menu { display: none; }

/* ===================================
   HERO SECTION
=================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 170px 64px 80px;
  overflow: hidden;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: none;
  overflow: visible;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  align-items: flex-start;
  text-align: left;
  margin: 0;
  padding-left: 0;
}
.h1-accent {
  font-family: 'Kalam', serif;
  font-style: italic;
  color: #004acb;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(22px, 6vw, 95px);
  font-weight: 900;
  line-height: 1.1;
  color: #212121;
  letter-spacing: -0.01em;
  word-break: keep-all;
  overflow-wrap: normal;
}
.hero-text .hero-btn {
  display: inline-block;
  background: var(--accent);
  color: #1a1a1a;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 700;
  padding: 12px 85px;
  border-radius: 999px;
  width: fit-content;
  transition: opacity 0.2s, transform 0.2s;
}
.hero-text .hero-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* ===================================
   NUMBERS SECTION
=================================== */
.numbers {
  display: flex;
  justify-content: center;
  margin-top: -40px;
  padding: 0;
  position: relative;
  z-index: 1;
}
.numbers-card {
  width: 100%;
  max-width: 100%;
  background: var(--accent);
  border-radius: 32px;
  padding: 80px 120px 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.numbers-heading {
  font-family: var(--font-display);
  font-size: clamp(55px, 8vw, 85px);
  font-weight: 800;
  color: #071013;
  text-align: center;
  letter-spacing: -0.01em;
  width: 100%;
}
.numbers-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0;
}
.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  text-align: center;
}
.number-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #071013;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}
.number-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.number-value {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 110px);
  font-weight: 800;
  color: #071013;
  line-height: 1;
}
.number-suffix {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 110px);
  font-weight: 800;
  color: #071013;
  line-height: 1;
}
.number-divider {
  width: 1px;
  height: 80px;
  background: #071013;
  flex-shrink: 0;
  margin: 0 32px;
  opacity: 0.3;
}

/* ===================================
   SERVICES / STEPS SECTION
=================================== */
#steps {
  position: relative; padding: 1.5rem 5% 2rem; overflow: visible;
  font-family: 'Poppins', sans-serif;
  border-radius: 52px 52px 0 0; /* rounds only the top-left and top-right */
  background: #e5ded4;
  margin-top: -40px;
  z-index: 1;
}
#steps::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a1a1a' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
#steps > .steps-header, #steps > .steps-list { position: relative; z-index: 2; }

.steps-header { text-align: center; margin-bottom: 3rem; }
.steps-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: #5a7000; margin-bottom: 0.7rem; overflow: visible;
}
.steps-label::before, .steps-label::after { content: ''; display: inline-block; width: 28px; height: 1px; background: #5a7000; opacity: 0.5; }
.steps-header h2 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 7.5rem); font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em; color: #071013; overflow: visible;
}
.steps-header h2 em {
  font-style: italic; font-family: 'Kalam', serif;
  background: var(--accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.steps-list { position: relative; display: flex; flex-direction: column; gap: 0; max-width: 1600px; margin: 0 auto; z-index: 2; }

.step-row {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: 2.5rem; margin-bottom: 0.5rem; opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.step-row.from-left  { transform: translateX(-30px); }
.step-row.from-right { transform: translateX(30px); }
.step-row.visible    { opacity: 1; transform: none; }
.step-row.flip { direction: rtl; gap: 2rem; }
.step-row.flip > * { direction: ltr; }
.step-row:nth-child(1){ margin-top: 0; }
.step-row:nth-child(2){ margin-top: -1rem; }
.step-row:nth-child(3){ margin-top: -0.5rem; }

.step-visual { position: relative; display: flex; align-items: center; }
.step-img-wrap {
  position: relative; border-radius: 24px; overflow: hidden;
  width: 100%; aspect-ratio: 16/12;
  background: #DDE3E8;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.11);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.step-img-wrap video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.step-img-wrap::after {
  content: ''; position: absolute; inset: 0; z-index: 1; border-radius: 24px;
  background: linear-gradient(135deg, rgba(0,0,0,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.step-img-wrap:hover { border-color: rgba(196,237,13,0.4); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }

.step-number-bg {
  position: absolute; bottom: -18px; right: -14px;
  font-size: 8rem; font-weight: 900; line-height: 1;
  color: #1a1a1a; opacity: 0.06; pointer-events: none; z-index: 0; letter-spacing: -0.05em;
  font-family: var(--font-display);
}

.step-content { padding: 0; align-self: center; }
.step-index { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.7rem; }
.step-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.step-num-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: #555; font-family: var(--font-body); }
.step-title {
  font-family: var(--font-display) !important;
  font-size: clamp(2.2rem, 3.5vw, 4.5rem) !important;
  font-weight: 800 !important; line-height: 1.15 !important;
  letter-spacing: -0.03em; color: #071013 !important; margin-bottom: 0.8rem;
}
.step-desc { font-size: 0.9rem; font-weight: 300; color: #555; line-height: 1.75; max-width: 380px; font-family: var(--font-body); }
.step-line { width: 36px; height: 2px; background: var(--accent); border-radius: 2px; margin: 0.7rem 0; }
.step-cta {
  display: inline-block; margin-top: 1.4rem; padding: 1rem 3rem;
  color: #1a1a1a; background: var(--accent);
  border: none; border-radius: 100px;
  font-family: var(--font-body); font-size: 1.1rem; font-weight: 700;
  text-decoration: none; transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(196,237,13,0.3);
}
.step-cta:hover { opacity: 0.88; transform: translateY(-2px); }

.step-connector { position: relative; height: 55px; z-index: 1; pointer-events: none; }
.step-connector svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: visible; }
.conn-path { fill: none; stroke: #1a1a1a; stroke-width: 1.5; stroke-dasharray: 7 5; stroke-linecap: round; opacity: 0.2; }

/* ===================================
   BOOKING SECTION
=================================== */
.booking {
  padding: 0;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}
.booking-card {
  width: 100%;
  background: #212121;
  border-radius: 52px 52px 0 0;
  padding: 72px 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  position: relative;
  overflow: hidden;
}
.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,237,13,0.5), transparent);
}
.booking-header { text-align: center; }
.booking-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.booking-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 75px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 16px;
}
.booking-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}
.booking-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.booking-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,237,13,0.5), transparent);
}
.bf-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bf-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  flex-shrink: 0;
}
.bf-name { font-size: 15px; font-weight: 700; color: #fff; }
.bf-role { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.bf-meta { display: flex; flex-direction: column; gap: 10px; }
.bf-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.bf-meta-row svg { color: var(--accent); flex-shrink: 0; }
.bf-intro { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.6; }
.bf-fields { display: flex; flex-direction: column; gap: 12px; }
.bf-field { display: flex; flex-direction: column; gap: 5px; }
.bf-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.req { color: var(--accent); }
.bf-field input {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 10px;
  font-size: 14px;
  color: #fff;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bf-field input::placeholder { color: rgba(255,255,255,0.2); }
.bf-field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196,237,13,0.15);
}
.bf-field input.input-error {
  border-color: #e05050;
  box-shadow: 0 0 0 3px rgba(224,80,80,0.12);
}

/* ── CALENDAR ── */
.booking-cal {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}
.booking-cal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.cal-month {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cal-nav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(196,237,13,0.4);
  background: rgba(196,237,13,0.1);
  color: #5a7000;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.cal-nav:hover {
  background: rgba(196,237,13,0.25);
  transform: scale(1.1);
}
.cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 6px;
}
.cal-days-header span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #5a7000;
  padding: 4px 0;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: #1a1a1a;
  transition: all 0.18s;
}
.cal-day:hover:not(.empty):not(.past) {
  background: rgba(196,237,13,0.2);
  color: #5a7000;
}
.cal-day.today   { font-weight: 800; color: #5a7000; }
.cal-day.selected { background: #1a1a1a; color: #fff; font-weight: 700; }
.cal-day.past    { color: rgba(0,0,0,0.2); cursor: default; }
.cal-day.empty   { cursor: default; }
.cal-times {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.cal-times-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5a7000;
  margin-bottom: 10px;
}
.cal-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.cal-slot {
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(196,237,13,0.3);
  background: rgba(196,237,13,0.05);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: #1a1a1a;
  transition: all 0.18s;
  font-family: var(--font-body);
}
.cal-slot:hover {
  border-color: rgba(196,237,13,0.6);
  background: rgba(196,237,13,0.15);
  transform: translateY(-1px);
}
.cal-slot.selected {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
  font-weight: 700;
}
.cal-confirm {
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.02em;
}
.cal-confirm:hover {
  background: var(--accent);
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196,237,13,0.4);
}

/* ===================================
   FOOTER
=================================== */
.footer {
  background: #1a1717;
  border-radius: 0 0 32px 32px;
  margin-top: -32px;
  padding: 48px 80px 24px;
  position: relative;
  z-index: 0;
}
.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  margin-bottom: 40px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 480px;
}

/* LEFT */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.footer-logo {
  width: 320px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* RIGHT */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
}
.footer-top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.footer-bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-social a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.22s;
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a1a1a;
  transform: translateY(-3px);
}
.footer-email { display: flex; align-items: center; gap: 8px; }
.footer-email a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-email a:hover { color: var(--accent); }
.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--accent); }
.footer-sep {
  color: rgba(255,255,255,0.2);
  font-size: 12px;
}

/* ===================================
   RESPONSIVE — TABLET (≤ 1024px)
=================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-inner { min-width: auto; }
  .footer-inner { gap: 80px; }

  /* ── HERO TABLET BACKGROUND ── */
  .hero {
    background: url('../images/tablet w.png') center/cover no-repeat;
  }
  .hero-gradient { display: none; }
}

/* ===================================
   RESPONSIVE — MOBILE (≤ 768px)
=================================== */
@media (max-width: 768px) {

  /* ── SITE LOGO ── */
  .site-logo { display: none; }

  /* ── NAVBAR ── */
  .navbar { top: 0; left: 0; right: 0; width: 100%; border-radius: 0; }
  .nav-inner {
    min-width: 0; width: 100%; border-radius: 0;
    border-left: none; border-right: none; border-top: none;
    padding: 12px 16px; gap: 8px; justify-content: space-between;
  }
  .navbar.scrolled { top: 0; }
  .navbar.scrolled .nav-inner { padding: 12px 16px; }
  .nav-links { display: none; }
  .nav-cta   { display: none; }

  /* pill logo always visible on mobile */
  .nav-logo-pill {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }
  .nav-logo-pill img {
    height: 38px; width: 38px;
    border-radius: 50%; object-fit: cover;
  }

  /* hamburger */
  .nav-hamburger {
    display: flex; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none;
    padding: 6px; margin-left: auto;
  }
  .nav-hamburger span {
    display: block; width: 22px; height: 2px;
    background: #1a1a1a; border-radius: 2px; transition: all 0.3s ease;
  }

  /* mobile menu drawer */
  .nav-mobile-menu {
    display: none; position: fixed; top: 65px; left: 12px; right: 12px;
    background: rgba(255,255,255,0.96); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); border-radius: 20px; padding: 20px;
    z-index: 999; flex-direction: column; gap: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15); border: 1px solid rgba(255,255,255,0.6);
  }
  .nav-mobile-menu.open { display: flex; }
  .nav-mobile-menu a {
    color: #1a1a1a; font-family: var(--font-body); font-size: 16px;
    font-weight: 600; padding: 14px 16px; border-radius: 12px;
    text-decoration: none; transition: background 0.2s;
  }
  .nav-mobile-menu a:hover { background: rgba(196,237,13,0.15); }
  .nav-mobile-menu .mobile-cta {
    margin-top: 8px; background: var(--accent); color: #1a1a1a;
    text-align: center; font-weight: 700; border-radius: 999px; padding: 14px 16px;
  }

  /* ── HERO ── */
  /* ↓ CHANGE "mobile w.png" to your own image filename to set the mobile background */
  .hero {
    padding: 100px 20px 60px;
    min-height: 100svh;
    align-items: center;
    text-align: center;
    background: url('../images/mobile w.png') center/cover no-repeat;
  }
  .hero-gradient { display: none; }
  .hero-card { justify-content: center; }
  .hero-text {
    align-items: center;
    text-align: center;
    max-width: 100%;
    gap: 20px;
  }
  /* ↓ CHANGE 42px to make the heading bigger or smaller on mobile */
  .hero-text h1 {
    font-size: 52px !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
  .hero-text .hero-btn {
    font-size: 18px;
    padding: 14px 48px;
    width: 100%;
    text-align: center;
  }

  /* ── NUMBERS: 2×2 grid ── */
  .numbers { margin-top: -20px; }
  .numbers-card {
    padding: 48px 20px 56px;
    border-radius: 24px;
    gap: 0;
  }
  .numbers-heading {
    font-size: clamp(32px, 8vw, 48px);
    margin-bottom: 24px;
  }
  .numbers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
  }
  .number-divider { display: none; }
  .number-item {
    padding: 20px 12px;
    flex: unset;
    width: 100%;
  }
  .number-item:nth-child(1),
  .number-item:nth-child(3) { border-right: 1px solid rgba(0,0,0,0.12); }
  .number-item:nth-child(1),
  .number-item:nth-child(2) { border-bottom: 1px solid rgba(0,0,0,0.12); }
  .number-value,
  .number-suffix { font-size: clamp(40px, 10vw, 64px); }
  .number-label  { font-size: 11px; }

  /* ── STEPS ── */
  #steps { padding: 2rem 16px 3rem; border-radius: 32px 32px 0 0; margin-top: -20px; }
  .steps-header { margin-bottom: 2rem; }
  .steps-header h2 { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .step-row,
  .step-row.flip {
    grid-template-columns: 1fr; direction: ltr;
    margin-top: 0 !important; gap: 1.4rem; margin-bottom: 2.5rem;
  }
  .step-row .step-visual,
  .step-row.flip .step-visual  { order: 1; }
  .step-row .step-content,
  .step-row.flip .step-content { order: 2; }
  .step-img-wrap { aspect-ratio: 4/3; }
  .step-connector { display: none; }
  .step-number-bg { display: none; }
  .step-title { font-size: clamp(1.6rem, 7vw, 2.4rem) !important; }
  .step-desc  { max-width: 100%; font-size: 0.88rem; }
  .step-cta   { width: 100%; text-align: center; padding: 1rem 1.5rem; font-size: 1rem; }

  /* ── BOOKING ── */
  .booking { margin-top: 0; }
  .booking-card {
    border-radius: 32px 32px 0 0;
    padding: 40px 16px 48px; gap: 32px;
  }
  .booking-title { font-size: clamp(26px, 7vw, 48px); }
  .booking-grid  { grid-template-columns: 1fr; gap: 20px; }
  .booking-form  { order: 1; padding: 24px 16px; }
  .booking-cal   { order: 2; padding: 20px 14px; }
  .bf-fields     { gap: 10px; }
  .bf-field input { font-size: 16px; }
  .cal-grid      { gap: 2px; }
  .cal-day       { font-size: 12px; }
  .cal-slots     { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .cal-confirm   { font-size: 14px; padding: 12px; }

  /* ── FOOTER ── */
  .footer { padding: 40px 20px 24px; border-radius: 0; margin-top: 0; }
  .footer-inner { flex-direction: column; gap: 28px; align-items: center; text-align: center; }
  .footer-left  { align-items: center; }
  .footer-right { align-items: center; }
  .footer-top-right    { align-items: center; }
  .footer-bottom-right { align-items: center; }
  .footer-logo   { width: 180px; }
  .footer-social { gap: 10px; }
  .footer-social a { width: 44px; height: 44px; }
  .footer-legal  { flex-wrap: wrap; justify-content: center; gap: 6px; }

} /* END @media 768px */

/* ===================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
=================================== */
@media (max-width: 480px) {
  .hero-text h1      { font-size: 36px !important; }
  .hero-text .hero-btn { font-size: 16px; padding: 13px 32px; }
  .numbers-heading   { font-size: clamp(28px, 9vw, 42px); }
  .number-value,
  .number-suffix     { font-size: clamp(36px, 10vw, 52px); }
  .booking-card      { padding: 32px 12px 40px; }
  .booking-title     { font-size: clamp(22px, 7vw, 36px); }
  .bf-avatar         { width: 40px; height: 40px; font-size: 16px; }
  .bf-name           { font-size: 14px; }
  .cal-days-header span { font-size: 9px; letter-spacing: 0.04em; }
  .cal-day           { font-size: 11px; }
}