/* Bali with Eka — static site styles (design tokens from original Lovable/Tailwind theme) */

:root {
  --background: hsl(40 33% 97%);
  --foreground: hsl(150 15% 12%);
  --card: hsl(0 0% 100%);
  --muted-foreground: hsl(150 8% 38%);
  --border: hsl(36 25% 86%);
  --jungle: hsl(158 42% 18%);
  --jungle-deep: hsl(158 50% 12%);
  --gold: hsl(38 65% 55%);
  --charcoal: hsl(150 15% 12%);
  --sand: hsl(36 38% 88%);
  --secondary: hsl(36 38% 88%);
  --accent-soft: hsl(38 70% 92%);
  --destructive: hsl(0 70% 45%);
  --radius: 1rem;
  --container: 1400px;
  --gradient-hero: linear-gradient(180deg, hsl(158 50% 12% / 0.2) 0%, hsl(158 50% 12% / 0.55) 60%, hsl(158 50% 8% / 0.85) 100%);
  --gradient-gold: linear-gradient(135deg, hsl(38 70% 60%), hsl(38 55% 45%));
  --gradient-jungle: linear-gradient(135deg, hsl(158 42% 18%), hsl(158 50% 12%));
  --gradient-sand: linear-gradient(180deg, hsl(40 33% 97%), hsl(36 38% 92%));
  --shadow-soft: 0 4px 20px -4px hsl(158 42% 18% / 0.08);
  --shadow-card: 0 10px 40px -10px hsl(158 42% 18% / 0.15);
  --shadow-glow: 0 20px 60px -20px hsl(38 65% 55% / 0.4);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: Fraunces, Georgia, serif;
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.container--narrow {
  max-width: 52rem;
}

.container--faq {
  max-width: 48rem;
}

.text-center {
  text-align: center;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header--scrolled {
  background: hsl(40 33% 97% / 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo__mark {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
}

.logo__title {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--jungle);
  display: block;
  line-height: 1.1;
}

.logo__sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  display: block;
  margin-top: 2px;
}

.logo--inverted .logo__title {
  color: #fff;
}

.logo--inverted .logo__sub {
  color: rgba(255, 255, 255, 0.75);
}

.site-header:not(.site-header--scrolled) .logo__title {
  color: #fff;
}

.site-header:not(.site-header--scrolled) .logo__sub {
  color: rgba(255, 255, 255, 0.8);
}

.site-header__nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

@media (min-width: 1024px) {
  .site-header__nav {
    display: flex;
  }
}

.site-header__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.2s;
}

.site-header__nav a:hover {
  color: var(--gold);
}

.site-header:not(.site-header--scrolled) .site-header__nav a {
  color: #fff;
}

.site-header:not(.site-header--scrolled) .site-header__nav a:hover {
  color: var(--gold);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header__lang {
  display: none;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: background 0.2s;
}

@media (min-width: 640px) {
  .site-header__lang {
    display: inline-flex;
  }
}

.site-header__lang:hover {
  background: hsl(36 25% 92%);
}

.site-header:not(.site-header--scrolled) .site-header__lang {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.site-header:not(.site-header--scrolled) .site-header__lang:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-header__cta {
  display: none;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .site-header__cta {
    display: inline-flex;
  }
}

.site-header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 1024px) {
  .site-header__menu-btn {
    display: none;
  }
}

.site-header__menu-icon {
  width: 1.35rem;
  height: 2px;
  background: currentColor;
  position: relative;
  border-radius: 2px;
}

.site-header__menu-icon::before,
.site-header__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.site-header__menu-icon::before {
  top: -6px;
}

.site-header__menu-icon::after {
  top: 6px;
}

.site-header:not(.site-header--scrolled) .site-header__menu-btn {
  color: #fff;
}

.site-header--scrolled .site-header__menu-btn {
  color: var(--charcoal);
}

.mobile-menu {
  border-top: 1px solid var(--border);
  background: var(--background);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding-block: 1rem;
}

.mobile-menu__nav a {
  padding: 0.75rem 0;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid hsl(36 25% 92%);
}

.mobile-menu__wa {
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  transition: transform 0.2s var(--ease), background 0.2s;
}

.btn:hover {
  transform: scale(1.03);
}

.btn--gold {
  background: var(--gradient-gold);
  color: var(--jungle-deep);
  box-shadow: var(--shadow-soft);
}

.btn--gold.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
  line-height: 1;
}

.btn--ghost.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
  line-height: 1;
}

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

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: none;
}

.btn--jungle {
  background: var(--jungle);
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn--jungle:hover {
  background: var(--jungle-deep);
}

.btn--send {
  padding: 0.85rem 1.75rem;
  margin-top: 0.5rem;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media--fallback {
  background: linear-gradient(145deg, var(--jungle-deep), var(--jungle) 40%, hsl(158 30% 25%));
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero__inner {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .hero__inner {
    padding-top: 10rem;
    padding-bottom: 7rem;
  }
}

.hero__copy {
  max-width: 48rem;
  color: #fff;
}

.animate-fade-up {
  animation: fadeUp 0.8s var(--ease) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}

.hero__title-accent {
  font-style: italic;
  color: var(--gold);
}

.hero__lead {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
  line-height: 1.5;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__sub {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero__card-wrap {
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .hero__card-wrap {
    position: absolute;
    right: 2rem;
    bottom: 4rem;
    max-width: 28rem;
    margin-top: 0;
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero__card {
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero__card-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero__feat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.25;
}

.hero__feat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: hsl(158 42% 18% / 0.1);
  color: var(--jungle);
  flex-shrink: 0;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
}

.icon--md {
  width: 1.5rem;
  height: 1.5rem;
}

.icon--lg {
  width: 2rem;
  height: 2rem;
}

/* ——— Sections ——— */
.section {
  padding-block: 6rem;
}

.section--intro {
  background: var(--background);
}

.section--sand {
  background: var(--gradient-sand);
}

.section--jungle {
  background: var(--gradient-jungle);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.kicker {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
}

.kicker--on-dark {
  color: var(--gold);
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--jungle);
  margin: 0.75rem 0 0;
  text-wrap: balance;
}

.section__title--light {
  color: #fff;
}

.section__lead {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

.section__head {
  margin-bottom: 4rem;
}

.section__sub {
  margin-top: 1rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin-inline: auto;
}

.intro-note {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--jungle);
}

.intro-note__icon {
  color: var(--gold);
}

/* Services grid */
.grid-services {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-services {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .grid-services {
    grid-template-columns: repeat(5, 1fr);
  }
}

.card-service {
  border-radius: 1rem;
  background: var(--card);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid hsl(36 25% 86% / 0.4);
  transition: box-shadow 0.25s, transform 0.25s;
}

.card-service:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.card-service__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(158 42% 18% / 0.1);
  color: var(--jungle);
  transition: background 0.25s, color 0.25s;
}

.card-service:hover .card-service__icon {
  background: var(--gradient-gold);
  color: var(--jungle-deep);
}

.card-service__title {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 1.25rem 0 0;
}

.card-service__desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.55;
}

.card-service__link {
  display: inline-flex;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--jungle);
}

.card-service__link:hover {
  color: var(--gold);
}

/* Tours */
.grid-tours {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-tours {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-tours {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-tour {
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-soft);
  border: 1px solid hsl(36 25% 86% / 0.4);
  transition: box-shadow 0.25s, transform 0.25s;
}

.card-tour:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.card-tour__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-tour__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.card-tour:hover .card-tour__img {
  transform: scale(1.08);
}

.card-tour__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--gradient-gold);
  color: var(--jungle-deep);
}

.card-tour__body {
  padding: 1.5rem;
}

.card-tour__title {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
}

.card-tour__highlights {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.55;
}

.card-tour__meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(36 25% 86% / 0.6);
}

.card-tour__meta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--jungle);
  margin-bottom: 0.25rem;
}

.card-tour__meta-text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.card-tour__foot {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.card-tour__note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-style: italic;
}

/* Highlights */
.grid-highlights {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .grid-highlights {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card-highlight {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.card-highlight__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.card-highlight:hover .card-highlight__img {
  transform: scale(1.08);
}

.card-highlight__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(158 50% 12% / 0.9), hsl(158 50% 12% / 0.2), transparent);
}

.card-highlight__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: #fff;
  margin: 0;
}

/* About */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-visual {
  position: relative;
}

.about-visual__main {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
}

.about-visual__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual__inset {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  width: 40%;
  max-width: 14rem;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 4px solid var(--background);
}

@media (min-width: 768px) {
  .about-visual__inset {
    right: -2rem;
  }
}

.about-visual__inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual__badge {
  position: absolute;
  top: -1rem;
  left: -1rem;
  background: var(--gradient-gold);
  padding: 0.75rem 1.25rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
}

.about-visual__stars {
  color: var(--jungle-deep);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.about-visual__badge-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--jungle-deep);
  margin-top: 0.25rem;
}

.about-copy__p {
  color: var(--muted-foreground);
  line-height: 1.65;
  margin: 1.5rem 0 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.about-stat {
  text-align: center;
  background: var(--secondary);
  border-radius: 1rem;
  padding: 1rem;
}

.about-stat__v {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--jungle);
}

.about-stat__l {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.about-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.about-loc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* How it works */
.how__glow {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background: radial-gradient(circle at 20% 20%, var(--gold) 0%, transparent 40%);
  pointer-events: none;
}

.how__inner {
  position: relative;
}

.how__head {
  margin-bottom: 3rem;
}

.grid-how {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-how {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-how {
  position: relative;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
}

.card-how__num {
  position: absolute;
  top: -0.5rem;
  right: 1.5rem;
  font-family: Fraunces, Georgia, serif;
  font-size: 4.5rem;
  font-style: italic;
  color: hsl(38 65% 55% / 0.3);
  line-height: 1;
  pointer-events: none;
}

.card-how__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--gradient-gold);
  color: var(--jungle-deep);
}

.card-how__title {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.25rem 0 0;
}

.card-how__text {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.how__footer {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 42rem;
  margin-inline: auto;
}

/* Reviews */
.grid-reviews {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-reviews {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-reviews {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-review {
  margin: 0;
  border-radius: 1.5rem;
  background: hsl(36 38% 88% / 0.6);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid hsl(36 25% 86% / 0.3);
  position: relative;
}

.card-review__quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: hsl(38 65% 55% / 0.3);
}

.card-review__text {
  margin: 0;
  color: var(--charcoal);
  line-height: 1.55;
}

.card-review__cap {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid hsl(36 25% 86% / 0.6);
}

.card-review__name {
  font-weight: 600;
  color: var(--jungle);
}

.card-review__from {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* Tips */
.grid-tips {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .grid-tips {
    grid-template-columns: 1fr 1fr;
  }
}

.card-tips {
  border-radius: 1.5rem;
  background: var(--card);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid hsl(36 25% 86% / 0.4);
}

.card-tips__h {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--jungle);
  margin: 0 0 1.5rem;
}

.tips-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tips-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
  line-height: 1.45;
}

.tips-list__ok {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: hsl(158 42% 18% / 0.1);
  color: var(--jungle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.tips-list__no {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: hsl(0 70% 45% / 0.1);
  color: var(--destructive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  border-radius: 1rem;
  border: 1px solid hsl(36 25% 86% / 0.6);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq__q {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2.5rem;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--gold);
}

.faq__item[open] .faq__q::after {
  content: "−";
}

.faq__a {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.contact-aside__lead {
  margin-top: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.contact-wa {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background: #25d366;
  color: #fff;
  box-shadow: var(--shadow-glow);
  transition: transform 0.2s;
}

.contact-wa:hover {
  transform: scale(1.02);
}

.contact-wa__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.contact-wa__t {
  display: block;
  font-size: 1rem;
}

.contact-wa__s {
  display: block;
  font-size: 0.875rem;
  opacity: 0.9;
  margin-top: 0.15rem;
}

.contact-form {
  border-radius: 1.5rem;
  background: var(--card);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(36 25% 86% / 0.4);
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--jungle);
  margin-bottom: 0.5rem;
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--background);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px hsl(158 42% 18% / 0.2);
}

.interests {
  border: none;
  margin: 0;
  padding: 0;
}

.interests legend {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--jungle);
  margin-bottom: 0.75rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chips__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chips__label {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--charcoal);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.chips__label:hover {
  border-color: var(--jungle);
}

.chips__input:focus-visible + .chips__label {
  outline: 2px solid var(--jungle);
  outline-offset: 2px;
}

.chips__input:checked + .chips__label {
  background: var(--jungle);
  border-color: var(--jungle);
  color: #fff;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  background: var(--jungle-deep);
  color: rgba(255, 255, 255, 0.8);
  padding-block: 4rem 2rem;
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.site-footer__tagline {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 22rem;
  line-height: 1.55;
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.2s, color 0.2s;
}

.social-btn:hover {
  background: var(--gold);
  color: var(--jungle-deep);
}

.site-footer__h {
  font-family: Fraunces, Georgia, serif;
  color: #fff;
  font-size: 1.125rem;
  margin: 0 0 1rem;
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li {
  margin-bottom: 0.5rem;
}

.site-footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__links a:hover {
  color: var(--gold);
}

.site-footer__wa,
.site-footer__mail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: var(--shadow-glow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
  transform: scale(1.05);
}

.wa-float__label {
  display: none;
  font-weight: 500;
}

@media (min-width: 640px) {
  .wa-float__label {
    display: inline;
  }
}

.wa-float__dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* Flash */
.flash {
  position: fixed;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  max-width: 90vw;
  box-shadow: var(--shadow-card);
}

.flash--success {
  background: hsl(150 40% 92%);
  color: var(--jungle-deep);
  border: 1px solid hsl(158 42% 18% / 0.2);
}

.flash--error {
  background: hsl(0 70% 95%);
  color: hsl(0 70% 30%);
  border: 1px solid hsl(0 70% 45% / 0.2);
}

/* 404 */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(36 25% 92%);
}

.notfound {
  text-align: center;
  padding: 2rem;
}

.notfound__title {
  font-size: 2.5rem;
  margin: 0 0 1rem;
  color: var(--jungle);
}

.notfound__lead {
  color: var(--muted-foreground);
  margin: 0 0 1.5rem;
}
