/* ═══════════════════════════════════════════════════════════════
   PERU LOCAL ADVISOR — style.css
   Layout, Components, Typography, Animations
   Media queries → responsive.css
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dim:    rgba(201, 168, 76, 0.15);
  --dark:        #0D0D0B;
  --dark-2:      #141412;
  --dark-3:      #1E1E1A;
  --cream:       #F5F0E8;
  --cream-2:     #EDE6D8;
  --stone:       #8A8070;
  --text:        #2C2A24;
  --white:       #FFFFFF;
  --error:       #C0392B;
  --success:     #27AE60;
  --nav-h:       72px;
  --radius:      2px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  0.35s var(--ease);
  --shadow-sm:   0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-md:   0 12px 40px rgba(0, 0, 0, 0.10);
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.08;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

/* ─── OVERLAY ────────────────────────────────────────────────── */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

body.menu-open .overlay {
  display: block;
}

/* ─── MOBILE MENU ────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.mobile-link:hover {
  color: var(--gold);
}

.mobile-link.m-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 40px;
  border-radius: var(--radius);
  transition: background var(--transition);
  margin-top: 8px;
}

.mobile-link.m-cta:hover {
  background: var(--gold-light);
  color: var(--dark);
}

.mobile-lang {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

/* ─── LANGUAGE SWITCHER ──────────────────────────────────────── */
.lang-switcher {
  display: flex;
  gap: 6px;
  align-items: center;
}

.lang-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 1px;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lang-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(13, 13, 11, 0.97);
  box-shadow: 0 1px 0 var(--gold-dim);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-logo span {
  color: var(--white);
  font-weight: 300;
}

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

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 10px 22px;
  font-weight: 600 !important;
  border-radius: var(--radius);
  transition: background var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
  padding: 4px;
  gap: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
  margin: 3px 0;
}

body.menu-open .hamburger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/machupicchu.png') center / cover no-repeat;
  transform: scale(1.06);
  animation: heroZoom 14s var(--ease) forwards;
  will-change: transform;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 13, 11, 0.88) 0%,
    rgba(13, 13, 11, 0.18) 55%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 80px;
  max-width: 900px;
  animation: fadeUp 1.1s 0.4s var(--ease) both;
}

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

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--dark);
  padding: 16px 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  padding: 16px 32px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6) translateY(-8px); }
  50%       { opacity: 1;   transform: scaleY(1)   translateY(0); }
}

/* ─── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--dark-3);
  border-top: 1px solid var(--gold-dim);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── SECTION COMMON ─────────────────────────────────────────── */
.section {
  padding: 100px 40px;
}

.section-intro {
  max-width: 1200px;
  margin: 0 auto 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-body {
  max-width: 400px;
  color: var(--stone);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.85;
}

/* ─── FEATURED DESTINATIONS GRID ─────────────────────────────── */
.destinations-section {
  background: var(--cream);
}

.destinations-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

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

.dest-card--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.dest-card-img {
  position: absolute;
  inset: 0;
  transition: transform 0.75s var(--ease);
}

.dest-card:hover .dest-card-img {
  transform: scale(1.06);
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 13, 11, 0.88) 0%,
    rgba(13, 13, 11, 0.1) 55%,
    transparent 100%
  );
  transition: opacity var(--transition);
}

.dest-card:hover .dest-card-overlay {
  opacity: 0.92;
}

.dest-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 26px;
}

.dest-card-region {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
}

.dest-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.1;
}

.dest-card-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 300;
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.35s ease;
}

.dest-card:hover .dest-card-desc {
  max-height: 80px;
  opacity: 1;
}

.dest-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.dest-tag {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold);
  padding: 3px 9px;
  border-radius: 1px;
}

.dest-tag--light {
  border-color: rgba(138, 128, 112, 0.3);
  color: var(--stone);
}

/* ─── ABOUT SECTION ──────────────────────────────────────────── */
.about-section {
  background: var(--dark);
  padding: 100px 40px;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  height: 560px;
  overflow: hidden;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.18);
  pointer-events: none;
}

.about-image img {
  transition: transform 0.8s var(--ease);
}

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

/* ─── ADVISOR PORTRAIT ───────────────────────────────────────── */


.about-text .section-label {
  margin-bottom: 16px;
}

.about-text h2 {
  color: var(--white);
  margin-bottom: 28px;
}

.about-text p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 20px;
}

.advisor-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem !important;
  font-weight: 300 !important;
  color: var(--white) !important;
  margin-bottom: 4px !important;
  margin-top: 8px !important;
  letter-spacing: 0.02em;
}

.advisor-name strong {
  font-weight: 600;
  color: var(--gold);
}

.advisor-tagline {
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35) !important;
  margin-bottom: 24px !important;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

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

.stat {
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding-top: 20px;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ─── MORE DESTINATIONS ──────────────────────────────────────── */
.more-section {
  background: var(--cream-2);
  padding: 80px 40px;
}

.more-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 48px;
}

.lima-row {
  max-width: 1200px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.more-card {
  background: var(--white);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.more-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.more-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.more-card-img img {
  transition: transform 0.65s var(--ease);
}

.more-card:hover .more-card-img img {
  transform: scale(1.06);
}

.more-card-body {
  padding: 24px;
}

.more-card-region {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
}

.more-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.15;
}

.more-card-desc {
  font-size: 0.82rem;
  color: var(--stone);
  font-weight: 300;
  line-height: 1.72;
  margin-bottom: 14px;
}

/* ─── SERVICE NOTICE ─────────────────────────────────────────── */
.service-notice {
  background: var(--dark-3);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  padding: 28px 40px;
  text-align: center;
}

.service-notice p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.service-notice strong {
  color: var(--gold);
  font-weight: 500;
}

.notice-icon {
  font-size: 1rem;
}

/* ─── FORM SECTION ───────────────────────────────────────────── */
.form-section {
  background: var(--cream);
  padding: 100px 40px;
}

.form-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.form-intro {
  text-align: center;
  margin-bottom: 56px;
}

.form-intro .section-label {
  margin-bottom: 14px;
}

.form-intro h2 {
  margin-bottom: 16px;
  color: var(--dark);
}

.form-intro p {
  color: var(--stone);
  font-size: 0.94rem;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group--full {
  grid-column: span 2;
}

.form-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.opt {
  color: rgba(138, 128, 112, 0.55);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.05em;
  font-size: 0.68rem;
}

.form-control {
  padding: 14px 18px;
  border: 1px solid rgba(138, 128, 112, 0.25);
  background: var(--white);
  color: var(--dark);
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-control.error {
  border-color: var(--error);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8070' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.form-error {
  font-size: 0.72rem;
  color: var(--error);
  font-weight: 500;
  letter-spacing: 0.04em;
  min-height: 1em;
  display: block;
}

/* Checkbox grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 4px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  display: none;
}

.checkbox-box {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(138, 128, 112, 0.35);
  background: var(--white);
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}

.checkbox-item input:checked + .checkbox-box {
  background: var(--gold);
  border-color: var(--gold);
}

.checkbox-item input:checked + .checkbox-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 1.5px solid var(--dark);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.checkbox-label {
  font-size: 0.83rem;
  color: var(--text);
  font-weight: 400;
  user-select: none;
}

/* Submit area */
.form-submit {
  margin-top: 36px;
  text-align: center;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--dark);
  padding: 18px 52px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  transition: background var(--transition), transform var(--transition);
}

.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.form-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.form-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  color: var(--stone);
  letter-spacing: 0.06em;
}

.form-trust-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 56px 40px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  margin-top: 32px;
  animation: fadeUp 0.5s var(--ease) both;
}

.success-icon {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h3 {
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.form-success p {
  color: var(--stone);
  font-size: 0.9rem;
  font-weight: 300;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 64px 40px 32px;
  border-top: 1px solid var(--gold-dim);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-logo span {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 8px;
  letter-spacing: 0.08em;
}

.footer-languages {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.lang-badge {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 52px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

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

.footer-bottom p {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.05em;
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ─── FLATPICKR OVERRIDES ────────────────────────────────────── */
.flatpickr-calendar {
  font-family: 'Outfit', sans-serif;
  border: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 600;
}

.flatpickr-day:hover {
  background: rgba(201, 168, 76, 0.12);
}

.flatpickr-months .flatpickr-month {
  color: var(--dark);
}

/* ─── WHATSAPP TRUST BAR LINK ───────────────────────────────── */
.trust-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--transition);
}

.trust-wa:hover {
  color: #25D366;
}

.trust-wa svg {
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════════════════════ */
.services-section {
  background: var(--dark);
  padding: 100px 40px;
}

.services-section .section-intro {
  margin-bottom: 60px;
}

.services-section .section-label {
  color: var(--gold);
}

.services-section h2 {
  color: var(--white);
}

.services-section .section-body {
  color: rgba(255,255,255,0.45);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  max-width: 480px;
  line-height: 1.7;
}

/* Plans grid */
.plans-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  align-items: stretch;
}

/* Plan card */
.plan-card {
  background: var(--dark-3);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  border: 1px solid rgba(201,168,76,0.08);
  transition: border-color var(--transition), transform var(--transition);
}

.plan-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
}

/* Featured card */
.plan-card--featured {
  background: var(--dark-2);
  border-color: rgba(201,168,76,0.3);
  z-index: 1;
}

.plan-card--featured:hover {
  border-color: var(--gold);
}

.plan-featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 16px;
  white-space: nowrap;
}

/* Plan header */
.plan-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.plan-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.plan-badge--premium {
  color: var(--gold-light);
}

.plan-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.plan-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.plan-period {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-expert {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* Features list */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
  font-weight: 300;
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}

.plan-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

.plan-sub-item {
  padding-left: 28px !important;
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.42) !important;
}

.plan-sub-item::before {
  content: '·' !important;
  left: 16px !important;
}

/* Not included */
.plan-not-included {
  margin-bottom: 20px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid rgba(255,255,255,0.08);
}

.plan-ni-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 4px;
}

.plan-not-included p:last-child {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

/* Guarantees */
.plan-guarantees {
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(201,168,76,0.08);
}

.plan-guarantee-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  opacity: 0.7;
}

.plan-guarantees p:last-child {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  line-height: 1.6;
}

/* CTA button */
.plan-cta {
  display: block;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  padding: 13px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  margin-top: auto;
}

.plan-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.plan-card--featured .plan-cta {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.plan-card--featured .plan-cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}



.services-wa a:hover {
  color: var(--gold-light);
}
