/* ============================================
   Surfing Institute — Design Tokens (from Framer)
   ============================================ */
:root {
  --white: #ffffff;
  --black: #090909;
  --orange: #ff4f01;
  --light-bg: #fcfcfc;
  --gray: #757575;
  --dark-gray: #1e1e1e;
  --muted: #a1a1a1;

  --font-display: 'Inter', system-ui, sans-serif;
  --font-body: 'Geist', system-ui, sans-serif;

  --container: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* Typography */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--orange);
  background: rgba(255, 79, 1, 0.08);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-title-lg {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.6;
}

.text-muted { color: var(--muted); }
.text-dark { color: var(--black); }

/* Brand name styled like the logo, inheriting the surrounding font size */
.brand-title {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-accent {
  color: var(--orange);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: #e64600;
  transform: translateY(-1px);
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  background: var(--light-bg);
}

.nav-links a.active {
  color: var(--orange);
}

.nav-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9, 9, 9, 0.15) 0%,
    rgba(9, 9, 9, 0.45) 60%,
    rgba(9, 9, 9, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 160px 24px 120px;
  color: var(--white);
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.hero-stars {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 2px;
}

.hero-score {
  font-size: 14px;
  font-weight: 500;
}

.hero-badge {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-asterisk {
  color: var(--orange);
  font-style: normal;
  font-weight: 900;
}

.hero-i {
  font-style: italic;
  font-weight: 900;
}

.hero-tagline {
  font-size: clamp(16px, 2vw, 20px);
  max-width: 520px;
  margin: 0 auto;
  opacity: 0.85;
  line-height: 1.5;
}

/* Weather widget */
.weather-widget {
  position: absolute;
  top: 96px;
  right: 32px;
  z-index: 3;
  background: rgba(9, 9, 9, 0.45);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--white);
  min-width: 200px;
}

.weather-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
}

.weather-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ddc84;
  animation: weather-pulse 2s ease-in-out infinite;
}

@keyframes weather-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.weather-wind {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.weather-arrow {
  display: inline-block;
  font-size: 18px;
  color: var(--orange);
  align-self: center;
  transition: transform 0.6s ease;
}

.weather-speed {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.weather-unit {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.weather-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 809px) {
  .weather-widget {
    top: 84px;
    right: 16px;
    padding: 12px 16px;
    min-width: 170px;
  }

  .weather-speed { font-size: 28px; }
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 2;
  background: var(--orange);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: marquee 20s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.marquee-icon {
  font-size: 18px !important;
  opacity: 0.7;
}

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

/* ============================================
   About
   ============================================ */
.about {
  background: var(--white);
}

.about .section-header {
  margin-bottom: 48px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.about-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.about-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-card:hover .about-card-image img {
  transform: scale(1.04);
}

.about-card-image img.fit-contain {
  object-fit: contain;
  background: var(--white);
}

.about-card-content {
  padding: 28px 32px 32px;
}

.about-card-content h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-card-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-plus,
.stat-percent {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--orange);
}

.stat-label {
  margin-top: 12px;
  font-size: 15px;
  color: var(--gray);
}

/* ============================================
   Courses
   ============================================ */
.courses {
  background: var(--light-bg);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.course-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.course-card:hover .course-image img {
  transform: scale(1.05);
}

.course-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.course-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.course-body > p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.course-meta {
  font-size: 13px !important;
  color: var(--dark-gray) !important;
  margin-bottom: 20px !important;
}

.course-body .btn {
  align-self: flex-start;
  margin-bottom: 12px;
}

.course-trust {
  font-size: 13px;
  color: var(--muted);
}

/* ============================================
   Locations
   ============================================ */
.locations-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: none;
}

.locations-scroll::-webkit-scrollbar { display: none; }

.location-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--light-bg);
  transition: var(--transition);
}

.location-card:hover {
  transform: translateY(-4px);
}

.location-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.location-card img.fit-contain {
  object-fit: contain;
  background: var(--white);
  padding: 12px;
}

.location-info {
  padding: 24px;
}

.location-info h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.location-info p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.55;
}

/* ============================================
   Process
   ============================================ */
.process {
  background: var(--black);
  color: var(--white);
}

.process .section-label {
  background: rgba(255, 79, 1, 0.15);
}

.process .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 79, 1, 0.3);
}

.process-num {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ============================================
   Photos
   ============================================ */
.photos {
  background: var(--light-bg);
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.photos-grid img,
.photos-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.5s ease;
}

.photos-grid img:hover,
.photos-grid video:hover {
  transform: scale(1.02);
}

.photos-grid .tall {
  grid-row: span 2;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.65;
  margin-bottom: 24px;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card footer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card footer strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.testimonial-card footer span {
  font-size: 13px;
  color: var(--gray);
}

/* ============================================
   FAQs
   ============================================ */
.faqs {
  background: var(--white);
}

.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-item summary {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: -0.01em;
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--gray);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: '−';
  color: var(--orange);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
  padding-bottom: 24px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 32px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 809px) {
  .section { padding: 72px 0; }

  .nav-links,
  .nav-cta { display: none; }

  .nav-toggle { display: flex; }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 99;
  }

  .nav.open .nav-links a {
    font-size: 24px;
    padding: 12px 24px;
  }

  .nav.open .nav-toggle span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
  }

  .nav.open .nav-toggle span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
  }

  .about-grid,
  .courses-grid,
  .stats-grid,
  .photos-grid,
  .testimonials-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .photos-grid { grid-auto-rows: 240px; }
  .photos-grid .tall { grid-row: span 1; }

  .hero-content { padding: 140px 24px 100px; }
}

/* ============================================
   Text logo
   ============================================ */
.nav-logo-text,
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.2;
}

.nav-logo-text span,
.footer-logo-text span {
  color: var(--orange);
  margin-left: 4px;
}

.header:not(.scrolled) .nav-logo-text { color: var(--white); }
.header:not(.scrolled) .nav-links a { color: var(--white); }
.header:not(.scrolled) .nav-links a:hover { background: rgba(255, 255, 255, 0.12); }
.header:not(.scrolled) .nav-toggle span { background: var(--white); }
.nav.open .nav-toggle span { background: var(--black) !important; }
.nav.open .nav-links a { color: var(--black); }

.footer-logo-text { color: var(--white); font-size: 18px; }

/* ============================================
   Hero actions / ghost button
   ============================================ */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

/* ============================================
   Pricing & Packages
   ============================================ */
.pricing {
  margin-top: 64px;
}

.pricing-callout {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.pricing-callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  background: var(--orange);
}

.pricing-callout h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.pricing-callout p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  max-width: 680px;
}

.pricing-callout strong {
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(255, 79, 1, 0.12);
}

.pricing-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.pricing-card h4 + .pricing-list + h4 {
  margin-top: 24px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.pricing-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.pricing-list li span {
  color: var(--gray);
}

.pricing-list li strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}

.pricing-list li strong small {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray);
}

.pricing-package span {
  color: var(--orange) !important;
  font-weight: 600;
}

.pricing-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.btn-ghost-dark {
  background: transparent;
  color: var(--black);
  border: 1px solid #d8d8d8;
}

.btn-ghost-dark:hover {
  border-color: var(--black);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Scroll progress bar
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--orange);
  z-index: 200;
}

/* ============================================
   Scroll reveal
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   Accommodations (Stay)
   ============================================ */
.stay {
  background: var(--white);
}

.stay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stay-grid .stay-card:only-child {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.stay-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.stay-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stay-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.stay-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.stay-card:hover .stay-card-image img {
  transform: scale(1.05);
}

/* Auto-rotating slideshow */
.stay-slideshow {
  position: relative;
}

.stay-slideshow .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.stay-slideshow .slide.active {
  opacity: 1;
}

.stay-slideshow .slide:first-child {
  position: relative;
}

.slide-dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.slide-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.slide-dots button.active {
  background: var(--white);
  transform: scale(1.25);
}

.stay-card-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.stay-card-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stay-location {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stay-card-body > p:not(.stay-location) {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

.stay-rates {
  margin: 4px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stay-rates li {
  font-size: 14px;
  color: var(--dark-gray);
  padding-left: 18px;
  position: relative;
}

.stay-rates li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.stay-card-body .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ============================================
   Contact
   ============================================ */
.contact {
  background: var(--light-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 16px 20px;
  border: 1px solid #e4e4e4;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--black);
  width: 100%;
  transition: var(--transition);
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 79, 1, 0.12);
}

.contact-form .btn {
  align-self: flex-start;
}

.form-success {
  font-size: 14px;
  font-weight: 500;
  color: #1a7f37;
}

.form-error {
  font-size: 14px;
  font-weight: 500;
  color: #c62828;
}

.form-error a {
  text-decoration: underline;
}

.contact-form .btn:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-item h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
  margin-bottom: 8px;
}

.contact-item p {
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--orange);
}

.contact-note {
  font-size: 13px !important;
  color: var(--gray) !important;
  margin-top: 4px;
}

.contact-photo {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-top: 12px;
}

/* ============================================
   Back to top
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 90;
  box-shadow: 0 8px 24px rgba(255, 79, 1, 0.35);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #e64600;
}

@media (max-width: 480px) {
  .location-card { flex: 0 0 280px; }
  .stat-card { padding: 28px 20px; }
}

@media (max-width: 809px) {
  .stay-grid,
  .contact-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
}
