/* ==========================================================================
   Happy Vibes Hospitality — CSS3 replica of the original Tailwind v4 theme
   (src/styles.css from the TanStack Start app)
   ========================================================================== */

/* ---------- Design tokens (identical values to the original :root) -------- */
:root {
  --radius: 1rem;
  --background: oklch(0.985 0.012 95);
  --foreground: oklch(0.28 0.07 262);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.28 0.07 262);
  --primary: oklch(0.58 0.24 5);
  --primary-foreground: oklch(0.99 0.005 95);
  --secondary: oklch(0.95 0.02 95);
  --secondary-foreground: oklch(0.28 0.07 262);
  --muted: oklch(0.955 0.015 95);
  --muted-foreground: oklch(0.52 0.03 262);
  --accent: oklch(0.62 0.18 145);
  --accent-foreground: oklch(0.99 0.005 95);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.99 0.005 95);
  --border: oklch(0.9 0.02 95);
  --input: oklch(0.9 0.02 95);
  --ring: oklch(0.58 0.24 5);
  --leaf: oklch(0.62 0.18 145);
  --leaf-foreground: oklch(0.99 0.005 95);
  --navy: oklch(0.32 0.09 262);
  --sun: oklch(0.72 0.18 58);
  --sky: oklch(0.55 0.15 245);

  --gradient-brand: linear-gradient(
    100deg,
    var(--primary) 0%,
    oklch(0.6 0.2 25) 40%,
    var(--leaf) 100%
  );
  --gradient-warm: linear-gradient(120deg, var(--sun), var(--primary));
  --shadow-soft: 0 18px 45px -22px oklch(0.28 0.07 262 / 0.4);
  --shadow-glow: 0 22px 60px -25px oklch(0.58 0.24 5 / 0.55);

  --font-display: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --font-script: "Great Vibes", cursive;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
}

body {
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

input,
select {
  font: inherit;
  color: inherit;
}

.page {
  overflow-x: hidden;
}

.container {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ---------- Utilities (mirroring the original @utility rules) ------------- */
.brand-gradient-text {
  background-image: var(--gradient-brand);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-gradient-bg {
  background-image: var(--gradient-brand);
}

.btn-gradient,
.btn-outline-light,
.whatsapp-fab,
.lb-btn,
.video-card,
.gallery-item {
  touch-action: manipulation;
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.shadow-glow {
  box-shadow: var(--shadow-glow);
}

.font-script {
  font-family: var(--font-script);
}

.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-14 { width: 0.875rem; height: 0.875rem; }
.icon-16 { width: 1rem; height: 1rem; }
.icon-20 { width: 1.25rem; height: 1.25rem; }
.icon-24 { width: 1.5rem; height: 1.5rem; }
.icon-28 { width: 1.75rem; height: 1.75rem; }
.icon-36 { width: 2.25rem; height: 2.25rem; }

.color-sky { color: var(--sky); }
.color-leaf { color: var(--leaf); }
.color-sun { color: var(--sun); }
.color-primary { color: var(--primary); }

/* ---------- Buttons ---------- */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-image: var(--gradient-brand);
  border-radius: 9999px;
  color: var(--primary-foreground);
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn-gradient:hover {
  transform: scale(1.03);
}

.btn-nav {
  padding: 0.4rem 0.9rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  box-shadow: 0 10px 24px -14px oklch(0.58 0.24 5 / 0.55);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-nav .icon {
  width: 1rem;
  height: 1rem;
}

.btn-phone {
  font-weight: 500;
  opacity: 0.92;
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  box-shadow: var(--shadow-glow);
}

.btn-block {
  width: 100%;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
}

.btn-block:hover {
  transform: scale(1.02);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid oklch(0.985 0.012 95 / 0.5);
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  color: var(--background);
  transition: background-color 0.2s ease;
}

.btn-outline-light:hover {
  background-color: oklch(0.985 0.012 95 / 0.15);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid oklch(0.9 0.02 95 / 0.6);
  background-color: oklch(0.985 0.012 95 / 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}

.brand {
  line-height: 1;
  flex-shrink: 0;
}

.brand-script {
  font-family: var(--font-script);
  font-size: 1.875rem;
  line-height: 1.2;
}

.brand-sub {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  color: var(--navy);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--primary);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: min(46rem, calc(100svh - 4.5rem));
  min-height: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(0.12 0.08 255 / 0.9) 0%, oklch(0.16 0.09 255 / 0.72) 42%, oklch(0.18 0.08 255 / 0.2) 76%, oklch(0.18 0.08 255 / 0.12) 100%),
    linear-gradient(0deg, oklch(0.08 0.06 255 / 0.56), transparent 38%);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  height: 100%;
  align-items: stretch;
  padding-block: clamp(6rem, 13vh, 9rem) clamp(3rem, 7vh, 5rem);
}

.hero-copy-wrap {
  max-width: 50rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid oklch(0.985 0.012 95 / 0.3);
  background-color: oklch(0.985 0.012 95 / 0.08);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--background);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-title {
  margin-top: 1.35rem;
  font-size: clamp(3.25rem, 6.2vw, 6.4rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  font-weight: 700;
  color: var(--background);
  max-width: 64rem;
}

.hero-title-main {
  display: block;
}

.hero-script {
  display: block;
  margin-top: 0.16em;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 0.82;
  letter-spacing: -0.02em;
  background-image: var(--gradient-brand);
  background-size: 100% 100%;
  background-position: 0 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-offering {
  margin-top: 0.7rem;
  max-width: 40rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--background);
  text-shadow: 0 0.12rem 0.7rem oklch(0.05 0.02 220 / 0.45);
}

.hero-copy {
  margin-top: 1.75rem;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: oklch(0.985 0.012 95 / 0.85);
}

.hero-price {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-top: 1.5rem;
  border-left: 1px solid oklch(0.985 0.012 95 / 0.55);
  padding: 0.15rem 1.25rem;
  color: var(--background);
}

.hero-price-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: oklch(0.985 0.012 95 / 0.7);
}

.hero-price-amount {
  display: inline-block;
  min-width: 20ch;
  font-size: 1.25rem;
  line-height: 1.1;
  white-space: nowrap;
}

.price-word {
  display: inline-block;
  margin-right: 0.28em;
}

.price-word:last-child {
  margin-right: 0;
}

.price-word-primary { color: var(--primary); }
.price-word-warm { color: oklch(0.6 0.2 25); }
.price-word-leaf { color: var(--leaf); }

@keyframes price-pulse {
  0%, 100% { box-shadow: 0 0.75rem 2rem oklch(0.12 0.03 250 / 0.18); }
  50% { box-shadow: 0 0.85rem 2.3rem oklch(0.58 0.24 5 / 0.34); }
}

@keyframes price-sparkle {
  0%, 30% { transform: translateX(0) skewX(-18deg); opacity: 0; }
  45% { opacity: 1; }
  70%, 100% { transform: translateX(620%) skewX(-18deg); opacity: 0; }
}

@keyframes price-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-price-amount {
    animation: none;
  }
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-tagline {
  margin: 0;
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: oklch(0.985 0.012 95 / 0.9);
}

.hero-footer {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid oklch(0.985 0.012 95 / 0.36);
  padding-top: 1rem;
}

.hero-discover {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: oklch(0.985 0.012 95 / 0.88);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.hero-discover span {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 0;
  transition: transform 0.2s ease;
}

.hero-discover:hover span {
  transform: translateX(0.25rem);
}

/* ---------- Sections ---------- */
.section {
  padding-block: 5rem;
}

.section-head-center {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.32em;
}

.eyebrow-leaf { color: var(--leaf); }
.eyebrow-primary { color: var(--primary); }

.h2 {
  margin-top: 0.75rem;
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 700;
}

/* ---------- Services ---------- */
.services-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.service-card {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.card-title {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
}

.card-copy {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ---------- Gallery ---------- */
.gallery-section {
  background-color: oklch(0.95 0.02 95 / 0.6);
}

.gallery-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.gallery-blurb {
  max-width: 24rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.gallery-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
  margin: 0;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-image: var(--gradient-brand);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--primary-foreground);
}

/* ---------- Videos ("ON FILM") ---------- */
.videos-block {
  margin-top: 4rem;
}

.videos-title {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.875rem;
  color: var(--foreground);
}

.videos-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
  margin: 0;
  cursor: pointer;
}

.video-card img,
.video-card .video-el {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.video-card .video-el {
  object-fit: cover;
  background-color: var(--navy);
}

.video-card:hover img,
.video-card:hover .video-el {
  transform: scale(1.05);
}

.video-card.is-playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

.video-overlay {
  transition: opacity 0.3s ease;
}

.video-shade {
  position: absolute;
  inset: 0;
  background-color: oklch(0.32 0.09 262 / 0.4);
  transition: background-color 0.3s ease;
}

.video-card:hover .video-shade {
  background-color: oklch(0.32 0.09 262 / 0.25);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.video-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background-image: var(--gradient-brand);
  box-shadow: var(--shadow-glow);
  color: var(--primary-foreground);
  transition: transform 0.3s ease;
}

.video-play .icon {
  margin-left: 0.25rem;
}

.video-card:hover .video-play {
  transform: scale(1.1);
}

.video-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--background);
}

.video-note {
  border-radius: 9999px;
  background-color: oklch(0.985 0.012 95 / 0.2);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--background);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-mute {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  background-color: oklch(0.32 0.09 262 / 0.55);
  color: var(--background);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background-color 0.2s ease;
}

.video-mute:hover {
  background-color: oklch(0.32 0.09 262 / 0.75);
}

.video-mute .vm-on {
  display: none;
}

.video-mute.is-unmuted .vm-on {
  display: inline-block;
}

.video-mute.is-unmuted .vm-off {
  display: none;
}

.video-card.is-playing .video-mute {
  display: flex;
}

/* ---------- Gallery lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: oklch(0.32 0.09 262 / 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lightbox[hidden] {
  display: none;
}

.lb-figure {
  margin: 0;
  max-width: 56rem;
}

.lb-figure img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 1rem;
}

.lb-caption {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: oklch(0.985 0.012 95 / 0.8);
}

.lb-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  border: 0;
  border-radius: 9999px;
  background-color: oklch(0.985 0.012 95 / 0.15);
  color: var(--background);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.lb-btn:hover {
  background-color: oklch(0.985 0.012 95 / 0.3);
}

.lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}

.lb-prev {
  position: absolute;
  left: 1rem;
}

.lb-next {
  position: absolute;
  right: 1rem;
}

/* ---------- Why us ---------- */
.why-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

.why-card {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  color: var(--primary);
}

.why-title {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
}

.why-copy {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
}

/* ---------- Booking ---------- */
.booking-section {
  padding-block: 0 5rem;
}

.booking-frame {
  background-image: var(--gradient-brand);
  overflow: hidden;
  border-radius: 2rem;
  padding: 0.25rem;
  box-shadow: var(--shadow-glow);
}

.booking-grid {
  display: grid;
  gap: 2.5rem;
  border-radius: 1.85rem;
  background-color: var(--background);
  padding: 2rem;
}

.booking-script {
  font-family: var(--font-script);
  font-weight: 400;
}

.booking-copy {
  margin-top: 1.25rem;
  color: var(--muted-foreground);
}

.contact-list {
  margin-top: 2rem;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.booking-form {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}

.field {
  margin-top: 0.375rem;
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--input);
  background-color: var(--background);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.field:focus {
  border-color: var(--primary);
}

.form-grid-2 {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--navy);
  padding-block: 3rem;
  color: var(--background);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-script {
  font-family: var(--font-script);
  font-size: 2.5rem;
  line-height: 1.2;
}

.footer-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.45em;
}

.footer-tagline {
  font-size: 0.875rem;
  color: oklch(0.985 0.012 95 / 0.7);
}

.footer-copyright {
  font-size: 0.75rem;
  color: oklch(0.985 0.012 95 / 0.5);
}

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  right: calc(1.5rem + env(safe-area-inset-right, 0px));
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background-color: var(--leaf);
  color: var(--leaf-foreground);
  box-shadow: var(--shadow-glow);
  transition: transform 0.2s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
}

/* ---------- 404 page ---------- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background);
  padding: 1rem;
}

.error-box {
  max-width: 28rem;
  text-align: center;
}

.error-code {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.error-title {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.error-copy {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.error-home-btn {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  background-color: var(--primary);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-foreground);
  transition: background-color 0.2s ease;
}

.error-home-btn:hover {
  background-color: oklch(0.58 0.24 5 / 0.9);
}

/* ---------- Responsive breakpoints (sm / md / lg) ---------- */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ---------- Mobile refinements (< md) ---------- */
@media (max-width: 767.98px) {
  .hero {
    height: calc(100svh - 3.5rem);
  }

  .nav-inner {
    padding-block: 0.55rem;
    gap: 0.5rem;
  }

  .brand-script {
    font-size: 1.5rem;
  }

  .brand-sub {
    font-size: 0.52rem;
    letter-spacing: 0.34em;
  }

  .btn-nav {
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
  }

  .btn-phone {
    display: none;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding-block: clamp(1.75rem, 5vh, 2.75rem) 0.9rem;
  }

  .hero-copy-wrap {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.55rem;
  }

  .hero-footer {
    margin-top: auto;
  }

  .hero-badge {
    padding: 0.3rem 0.75rem;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }

  .hero-title {
    margin-top: 1.1rem;
    font-size: clamp(2.4rem, 9vw, 4rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
  }

  .hero-script {
    margin-top: 0.18em;
    font-size: clamp(2.7rem, 11vw, 4.2rem);
    line-height: 0.82;
  }

  .hero-copy {
    margin-top: 0.15rem;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .hero-offering {
    margin-top: 0.1rem;
    font-size: 0.95rem;
  }

  .hero-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.25rem;
    padding: 0.65rem 0.85rem;
  }

  .hero-price-amount {
    font-size: 1.2rem;
    min-height: 1.35em;
  }

  .hero-actions {
    width: 100%;
    margin-top: 0.45rem;
  }

  .hero-actions .btn-lg {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    padding-inline: 1.25rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .hero-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
    padding-top: 0.7rem;
  }

  .hero-discover {
    display: none;
  }

  .section {
    padding-block: 3.5rem;
  }

  .h2 {
    font-size: 1.85rem;
  }

  .videos-block {
    margin-top: 3rem;
  }

  .videos-title {
    font-size: 1.6rem;
  }

  .video-card img,
  .video-card .video-el {
    height: 15rem;
  }

  .video-play {
    width: 3.5rem;
    height: 3.5rem;
  }

  .video-name {
    font-size: 1rem;
  }

  /* "Why us" cards: icon + heading share one horizontal line on mobile */
  .why-head {
    display: flex;
    align-items: center;
    gap: 0.875rem;
  }

  .why-head .why-title {
    margin-top: 0;
  }

  .whatsapp-fab {
    width: 3.25rem;
    height: 3.25rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    right: calc(1rem + env(safe-area-inset-right, 0px));
  }

  .lightbox {
    padding: 1rem;
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .lb-prev {
    left: 0.5rem;
  }

  .lb-next {
    right: 0.5rem;
  }
}

@media (max-width: 767.98px) and (max-height: 720px) {
  .hero-content {
    gap: 0.65rem;
    padding-block: 1.4rem 0.55rem;
  }

  .hero-title {
    margin-top: 1rem;
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-script {
    font-size: clamp(2.3rem, 9vw, 3.4rem);
  }

  .hero-offering {
    margin-top: 0.1rem;
    font-size: 0.86rem;
  }

  .hero-copy {
    margin-top: 0.15rem;
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .hero-price {
    margin-top: 0.25rem;
    padding-block: 0.5rem;
  }

  .hero-actions {
    margin-top: 0.45rem;
  }

  .hero-actions .btn-lg {
    padding-block: 0.65rem;
  }

  .hero-tagline {
    font-size: 1.05rem;
  }

  .hero-footer {
    gap: 0.35rem;
    padding-top: 0.55rem;
  }
}

/* Suppress sticky hover effects on touch devices */
@media (hover: none) {
  .btn-gradient:hover,
  .service-card:hover,
  .gallery-item:hover img,
  .video-card:hover img,
  .video-card:hover .video-el,
  .video-card:hover .video-play,
  .whatsapp-fab:hover {
    transform: none;
  }

  .video-card:hover .video-shade {
    background-color: oklch(0.32 0.09 262 / 0.4);
  }
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }

  .btn-phone {
    display: inline;
  }

  .hero-content {
    gap: 0.6rem;
    padding-block: 1.25rem 0.75rem;
  }

  .hero-title {
    margin-top: 0.7rem;
    font-size: clamp(3rem, 5vw, 4rem);
  }

  .hero-script {
    font-size: clamp(3.8rem, 5.5vw, 5rem);
  }

  .hero-offering {
    margin-top: 0.45rem;
    font-size: 1.08rem;
    font-weight: 800;
  }

  .hero-copy {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .hero-price {
    margin-top: 0.7rem;
  }

  .hero-actions {
    margin-top: 0.9rem;
  }

  .hero-actions .btn-lg {
    padding-block: 0.65rem;
  }

  .hero-tagline {
    font-size: 1.15rem;
  }

  .hero-footer {
    padding-top: 0.55rem;
  }

  .h2 {
    font-size: 3rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item img {
    height: 20rem;
  }

  .videos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .videos-title {
    font-size: 2.25rem;
  }

  .video-card img,
  .video-card .video-el {
    height: 18rem;
  }

  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
