:root {
  --sand: #f6f1ea;
  --ink: #1f2937;
  --copper: #b45309;
  --forest: #065f46;
  --cloud: #f8fafc;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top, #fff7ed, #f6f1ea 55%, #f1e7dd 100%);
}

html,
body {
  overflow-x: hidden;
}


.font-display {
  font-family: "Playfair Display", serif;
}

.bg-sand {
  background-color: var(--sand);
}

.btn-primary {
  background: linear-gradient(120deg, #c2410c, #f59e0b);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  font-weight: 600;
}

.btn-secondary {
  background: linear-gradient(120deg, #0e5fc9, #f59e0b);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  font-weight: 600;
}

.btn-outline {
  border: 1px solid #d6d3d1;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  color: #1f2937;
  font-weight: 600;
}

.btn-whatsapp {
  background: #22c55e;
  color: #ffffff;
  padding: 0.65rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.25);
}

.btn-whatsapp:hover {
  color: #ffffff;
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.nav-link {
  color: #475569;
}

a,
button {
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

a:hover,
button:hover {
  transform: translateY(-1px);
}

.btn-primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 10px 18px rgba(194, 65, 12, 0.25);
}

.btn-outline:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
}

.nav-link:hover {
  color: #0f172a;
}

.card {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  width: 100%;
}

.hero-grid {
  background-image: radial-gradient(circle, rgba(15, 23, 42, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
}

.landing-hero {
  position: relative;
  padding: 2.5rem;
  border-radius: 1.5rem;
  background-color: #f8fafc;
  background-image: var(--landing-hero-mobile, radial-gradient(circle at top, #242322, #242322 55%, #242322 100%));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.35));
}

.landing-hero > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .landing-hero {
    background-image: var(--landing-hero-desktop, var(--landing-hero-mobile, radial-gradient(circle at top, #fff7ed, #f6f1ea 55%, #f1e7dd 100%)));
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  }
}

@media (max-width: 767px) {
  .landing-hero {
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 0;
  }
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-video {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  background: #e2e8f0;
}

.feature-video__link {
  display: block;
  position: relative;
}

.feature-video__media {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.feature-video__label {
  position: absolute;
  top: 1.1rem;
  left: -1.75rem;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 2.25rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transform: rotate(-35deg);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
}

.feature-carousel {
  margin-top: 0.75rem;
  overflow: hidden;
}

.feature-carousel__track {
  display: inline-flex;
  gap: 0.6rem;
  animation: featureCarouselScroll 18s linear infinite;
}

.feature-carousel__item {
  display: inline-flex;
  width: 110px;
  height: 72px;
  border-radius: 0.8rem;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.feature-carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes featureCarouselScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  .feature-video__media {
    height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-carousel__track {
    animation: none;
  }
}

.feature-map {
  margin-top: 1rem;
}

.google-map {
  min-height: 220px;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: linear-gradient(140deg, #f8fafc, #e2e8f0);
  width: 100%;
}

@media (min-width: 768px) {
  .feature-map {
    grid-column: 1 / -1;
  }
}


.construction-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95));
  padding: 1.5rem;
}

.construction-card {
  max-width: 460px;
  width: 100%;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.3);
}

.construction-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #b45309;
  font-weight: 700;
  margin-bottom: 1rem;
}

.construction-tools {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  color: #6b7280;
  margin-bottom: 1.25rem;
  position: relative;
}

.tool-icon {
  width: 100px;
  height: 100px;
  font-size: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform-origin: 50% 50%;
  animation: toolSpin 5s linear infinite;
}

.tool-icon--small {
  width: 60px;
  height: 60px;
  font-size: 60px;
  margin-top:50px;
  margin-left:20px;
}

.construction-tools .tool-icon + .tool-icon {
  margin-left: -78px;
}

.tool-icon--front {
  z-index: 2;
}

.tool-icon--reverse {
  animation-direction: reverse;
}

.tool-icon--static {
  animation: none;
}

.construction-note {
  color: #475569;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

@keyframes toolSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.feature-ribbon {
  position: absolute;
  top: 0.75rem;
  right: -2.25rem;
  background: #16a34a;
  color: white;
  padding: 0.35rem 2.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 8px 16px rgba(22, 163, 74, 0.35);
}

.availability-status {
  --glow-rgb: 5, 150, 105;
  border-color: rgba(var(--glow-rgb), 0.6);
  box-shadow: 0 0 10px rgba(var(--glow-rgb), 0.35), 0 0 22px rgba(var(--glow-rgb), 0.2);
  animation: availabilityPulse 2.6s ease-in-out infinite;
  filter: saturate(1.1);
}

.availability-status[data-status="Booked"] {
  --glow-rgb: 220, 38, 38;
}

@keyframes availabilityPulse {
  0% {
    box-shadow: 0 0 0 rgba(var(--glow-rgb), 0.25), 0 0 0 rgba(var(--glow-rgb), 0.15);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 12px rgba(var(--glow-rgb), 0.55), 0 0 28px rgba(var(--glow-rgb), 0.25);
    transform: scale(1.03);
  }
  100% {
    box-shadow: 0 0 0 rgba(var(--glow-rgb), 0.25), 0 0 0 rgba(var(--glow-rgb), 0.15);
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .availability-status {
    animation: none;
  }
}

.whatsapp-float-icon {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 70;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #22c55e;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.35);
  animation: whatsappPulse 1.6s ease-in-out infinite;
  text-decoration: none;
}

.whatsapp-float-icon__label {
  position: absolute;
  right: 110%;
  top: 50%;
  transform: translateY(-50%) scale(0.96);
  background: #0f172a;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-float-icon:hover .whatsapp-float-icon__label {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.whatsapp-float-icon:hover {
  color: #ffffff;
  transform: translateY(-2px) scale(1.02);
}

@media (max-width: 640px) {
  .whatsapp-float-icon {
    right: 1.8rem;
    bottom: 2rem;
    width: 48px;
    height: 48px;
    font-size: 1.45rem;
  }
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45), 0 14px 30px rgba(34, 197, 94, 0.35);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 14px rgba(34, 197, 94, 0), 0 14px 30px rgba(34, 197, 94, 0.35);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0), 0 14px 30px rgba(34, 197, 94, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float-icon {
    animation: none;
  }
}
