/* ===== Qosqo Away — earthy Andean theme ===== */

:root {
  --maroon-deep: #6f2418;
  --maroon: #4a1620;
  --maroon-light: #6b2a2a;
  --gold: #c89b3c;
  --gold-light: #e8c27a;
  --mustard: #d9a441;
  --cream: #f5ecd9;
  --cream-light: #faf6ec;
  --ink: #2c1810;
  --shadow: 0 10px 30px rgba(58, 20, 20, 0.15);
  --radius: 14px;
  --max-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream-light);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--maroon);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

p { margin: 0 0 1em; }

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

img, svg { max-width: 100%; display: block; }

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

.eyebrow {
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
}

.pattern-strip {
  width: 100%;
  height: 24px;
  background-image: url('../images/pattern.svg');
  background-repeat: repeat-x;
  background-size: 60px 24px;
}

/* ===== Header / Nav ===== */
.site-header {
  background: var(--cream-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(58,20,20,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img { width: 24px; height: auto; }

.brand-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--maroon);
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
}

.brand-text .tagline {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--maroon);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

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

.nav-cta {
  background: var(--maroon);
  color: var(--cream-light) !important;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover { background: var(--maroon-light); transform: translateY(-1px); }

.nav-links a.nav-cta { padding-bottom: 10px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--maroon);
  cursor: pointer;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  display: flex;
  border: 1.5px solid var(--gold);
  border-radius: 30px;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-toggle button {
  border: none;
  background: var(--cream-light);
  padding: 6px 13px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--maroon);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}

.lang-toggle button.active {
  background: var(--maroon);
  color: var(--cream-light);
}

.lang-toggle button:not(.active):hover {
  background: var(--cream);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--maroon-deep);
  overflow: hidden;
}

.hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58,20,20,0.35) 0%, rgba(58,20,20,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 90px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  color: var(--cream-light);
}

.hero-content h1 {
  color: var(--cream-light);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 0.3em;
}

.hero-content .subtitle {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 2em;
  color: var(--cream);
  opacity: 0.92;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page hero (interior pages, smaller) */
.page-hero {
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
  padding: 70px 24px 50px;
  text-align: center;
  color: var(--cream-light);
}

.page-hero h1 { color: var(--cream-light); font-size: clamp(1.9rem, 4vw, 2.8rem); }
.page-hero p { color: var(--cream); opacity: 0.9; max-width: 560px; margin: 0 auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--gold);
  color: var(--maroon-deep);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline {
  border-color: var(--cream);
  color: var(--cream-light);
}
.btn-outline:hover { background: rgba(245,236,217,0.12); transform: translateY(-2px); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1ebe57; transform: translateY(-2px); box-shadow: var(--shadow); }

/* ===== Sections ===== */
section { padding: 80px 0; }

.section-title { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-title h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); }

.section-alt { background: var(--cream); }

/* Highlight / feature cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--cream-light);
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200,155,60,0.25);
  transition: transform 0.25s;
}
.feature-card:hover { transform: translateY(-6px); }

.feature-card img { width: 76px; height: 76px; margin: 0 auto 18px; }

.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: #5a4433; margin: 0; }

/* Two column */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-visual {
  background: linear-gradient(135deg, var(--gold-light), var(--mustard));
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.split-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/pattern.svg');
  background-repeat: repeat;
  background-size: 80px 24px;
  opacity: 0.08;
}

.split-visual img { position: relative; z-index: 1; }

.exp-stage {
  margin-bottom: 70px;
}
.exp-stage:last-child { margin-bottom: 0; }
.exp-stage .exp-step {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
}
.exp-stage h2 { margin-top: 6px; }
.exp-stage-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(200,155,60,0.25);
}

.stat-row {
  display: flex;
  gap: 36px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.stat { }
.stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--maroon);
  font-weight: 700;
  display: block;
}
.stat .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
}

/* Quote / value block */
.value-block {
  background: var(--maroon-deep);
  color: var(--cream-light);
  border-radius: var(--radius);
  padding: 50px;
  text-align: center;
}
.value-block h2 { color: var(--cream-light); }
.value-block p { color: var(--cream); opacity: 0.9; max-width: 700px; margin: 0 auto; }

/* Pricing card */
.pricing-wrap {
  display: flex;
  justify-content: center;
}

.price-card {
  background: var(--cream-light);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  max-width: 480px;
  width: 100%;
  padding: 44px 40px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}

.price-card .badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--maroon);
  color: var(--cream-light);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
}

.price-card .amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: var(--maroon);
  font-weight: 700;
  margin: 18px 0 0;
}

.price-card .amount span {
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  color: #5a4433;
  font-weight: 500;
}

.price-card .condition {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.include-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
}

.include-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(74,22,32,0.15);
  font-size: 0.95rem;
}

.include-list li:last-child { border-bottom: none; }

.include-list .check {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.note-box {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 18px 22px;
  font-size: 0.9rem;
  margin-top: 30px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Gallery / Experiences */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.exp-card {
  background: var(--cream-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200,155,60,0.25);
}

.exp-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.exp-visual img { width: 88px; height: 88px; }

.exp-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/pattern.svg');
  background-repeat: repeat;
  background-size: 60px 18px;
  opacity: 0.15;
}

.exp-card .exp-body { padding: 24px 26px 28px; }
.exp-card .exp-step {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
}
.exp-card h3 { margin-top: 6px; }
.exp-card p { font-size: 0.92rem; color: #5a4433; margin-bottom: 0; }

/* Timeline (about page) */
.timeline {
  border-left: 3px solid var(--gold);
  padding-left: 30px;
  margin-top: 10px;
}
.timeline .t-item { margin-bottom: 30px; position: relative; }
.timeline .t-item::before {
  content: '';
  position: absolute;
  left: -37px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream-light);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline h4 { margin-bottom: 4px; }
.timeline p { font-size: 0.92rem; color: #5a4433; }

/* Contact form */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 14px; }

.info-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.info-line .ico {
  width: 22px;
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 700;
}

.contact-form {
  background: var(--cream-light);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200,155,60,0.25);
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid rgba(74,22,32,0.2);
  font-family: inherit;
  font-size: 0.95rem;
  margin-bottom: 18px;
  background: #fff;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form textarea { resize: vertical; min-height: 90px; }

.contact-form button {
  width: 100%;
  justify-content: center;
  border: none;
}

.form-hint {
  font-size: 0.78rem;
  color: #8a7259;
  margin-top: 10px;
  text-align: center;
}

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 200;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* Footer */
.site-footer {
  background: var(--maroon-deep);
  color: var(--cream);
  padding: 50px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--cream-light);
  font-weight: 700;
}

.footer-brand p { font-size: 0.88rem; opacity: 0.75; margin-top: 10px; }

.footer-col h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 10px;
}

.footer-col a:hover { color: var(--gold-light); opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(245,236,217,0.15);
  margin-top: 36px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.65;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .exp-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }
}

@media (max-width: 900px) {
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-light);
    padding: 20px 24px 26px;
    gap: 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
}

@media (max-width: 560px) {
  .card-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 90px 20px 60px; }
  .price-card { padding: 34px 24px; }
}

/* ===== Photo gallery (masonry, natural photo orientation) ===== */
.gallery-grid {
  column-count: 3;
  column-gap: 1.5rem;
  padding: 2rem 0;
}
.gallery-item {
  break-inside: avoid;
  margin: 0 0 1.5rem;
  overflow: hidden;
  border-radius: 8px;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.03);
}
.gallery-item figcaption {
  padding: 0.5rem 0.25rem;
  font-size: 0.9rem;
  color: #444;
}

@media (max-width: 900px) {
  .gallery-grid { column-count: 2; }
}

@media (max-width: 560px) {
  .gallery-grid { column-count: 1; }
}
