/* ===================================
   WanderWell Travel — Design System
   Sage #7a9e7e · Gold #e8c47c · Navy #1a1a2e · Cream #faf8f4
   =================================== */

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

:root {
  --deep: #1a1a2e;
  --warm: #e8c47c;
  --sage: #7a9e7e;
  --sand: #f5efe6;
  --coral: #d4785c;
  --mist: #c5d5e4;
  --cream: #faf8f4;
  --white: #ffffff;
  --sage-light: rgba(122, 158, 126, 0.12);
  --warm-light: rgba(232, 196, 124, 0.15);
  --coral-light: rgba(212, 120, 92, 0.12);
  --mist-light: rgba(197, 213, 228, 0.2);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--deep);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.accent {
  color: var(--sage);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--coral);
  margin-bottom: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(122, 158, 126, 0.35);
}

.btn-primary:hover {
  background: #6a8e6e;
  box-shadow: 0 6px 20px rgba(122, 158, 126, 0.45);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--deep);
  border: 1.5px solid rgba(26, 26, 46, 0.15);
}

.btn-ghost:hover {
  border-color: var(--sage);
  color: var(--sage);
  background: var(--sage-light);
}

.btn-full {
  width: 100%;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(250, 248, 244, 0.88);
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--deep);
  text-decoration: none;
}

.logo span {
  color: var(--sage);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(26, 26, 46, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--sage);
  padding: 0.6rem 1.4rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: #6a8e6e;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 70vw;
  height: 70vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(ellipse, rgba(122, 158, 126, 0.12) 0%, rgba(232, 196, 124, 0.06) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(ellipse, rgba(197, 213, 228, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--coral);
  margin-bottom: 1.5rem;
}

h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--deep);
}

.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  color: rgba(26, 26, 46, 0.65);
  max-width: 640px;
  font-weight: 400;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(26, 26, 46, 0.55);
}

.trust-icon {
  font-size: 1.1rem;
}

/* ===== STATEMENT BAND ===== */
.band {
  background: var(--deep);
  color: var(--sand);
  padding: 5rem 2rem;
  text-align: center;
}

.band-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  line-height: 1.45;
  max-width: 750px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}

.band-text em {
  font-style: normal;
  color: var(--warm);
}

/* ===== ABOUT / FOUNDERS ===== */
.about {
  padding: 6rem 2rem;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.about-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.founder-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(26, 26, 46, 0.06);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.founder-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.08);
}

.founder-avatar {
  margin-bottom: 1.5rem;
}

.avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), #5d8a61);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.founder-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.founder-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.founder-bio {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(26, 26, 46, 0.65);
}

.about-worldvia {
  background: linear-gradient(135deg, rgba(122, 158, 126, 0.08), rgba(232, 196, 124, 0.06));
  border-radius: 16px;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(122, 158, 126, 0.12);
  text-align: center;
}

.about-worldvia p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(26, 26, 46, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

.about-worldvia strong {
  color: var(--deep);
}

/* ===== FEATURES GRID ===== */
.features {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--cream) 0%, rgba(197, 213, 228, 0.1) 100%);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  margin-bottom: 3.5rem;
}

.features-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.features-header p {
  font-size: 1.05rem;
  color: rgba(26, 26, 46, 0.6);
  max-width: 550px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(26, 26, 46, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}

.fi-sage { background: var(--sage-light); }
.fi-warm { background: var(--warm-light); }
.fi-coral { background: var(--coral-light); }
.fi-mist { background: var(--mist-light); }

.feature-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(26, 26, 46, 0.6);
}

/* ===== SERVICE SECTIONS ===== */
.service-section {
  padding: 6rem 2rem;
}

.service-alt {
  background: linear-gradient(180deg, rgba(197, 213, 228, 0.1) 0%, var(--cream) 100%);
}

.service-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
}

.service-reverse {
  grid-template-columns: 340px 1fr;
}

.service-reverse .service-content {
  order: 2;
}

.service-reverse .service-visual {
  order: 1;
}

.service-content h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.service-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(26, 26, 46, 0.65);
  margin-bottom: 2rem;
}

.service-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.point-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.service-point strong {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.service-point p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(26, 26, 46, 0.6);
}

.visual-card {
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vc-medical {
  background: linear-gradient(135deg, #2d4a3e 0%, #1a2e25 100%);
  color: var(--sand);
}

.vc-special {
  background: linear-gradient(135deg, #3a2e1e 0%, #1a1a2e 100%);
  color: var(--warm);
}

.vc-business {
  background: linear-gradient(135deg, #1a1a2e 0%, #2e1a3a 100%);
  color: var(--mist);
}

.visual-stat {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.visual-label {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.75;
  line-height: 1.4;
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 6rem 2rem;
  background: var(--deep);
  color: var(--sand);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--sand);
}

.contact-info .accent {
  color: var(--warm);
}

.contact-info p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245, 239, 230, 0.65);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(245, 239, 230, 0.6);
}

.detail-icon {
  font-size: 1.1rem;
}

/* ===== FORM ===== */
.inquiry-form {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

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

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 0.4rem;
}

.required {
  color: var(--coral);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(26, 26, 46, 0.12);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--deep);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122, 158, 126, 0.15);
}

input::placeholder,
textarea::placeholder {
  color: rgba(26, 26, 46, 0.35);
}

select {
  appearance: none;
  -webkit-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='%231a1a2e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.form-message.success {
  background: rgba(122, 158, 126, 0.12);
  color: #4a7a4e;
  border: 1px solid rgba(122, 158, 126, 0.2);
}

.form-message.error {
  background: rgba(212, 120, 92, 0.12);
  color: #b85a3a;
  border: 1px solid rgba(212, 120, 92, 0.2);
}

/* ===== FOOTER ===== */
footer {
  background: var(--deep);
  border-top: 1px solid rgba(245, 239, 230, 0.06);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(245, 239, 230, 0.06);
  margin-bottom: 1.5rem;
}

.footer-brand .logo {
  margin-bottom: 0.75rem;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(245, 239, 230, 0.4);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 239, 230, 0.5);
  margin-bottom: 0.5rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(245, 239, 230, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--warm);
}

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

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(245, 239, 230, 0.3);
  margin-bottom: 0.25rem;
}

.footer-affiliation {
  font-size: 0.75rem;
  color: rgba(245, 239, 230, 0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .service-inner,
  .service-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-reverse .service-content {
    order: 1;
  }

  .service-reverse .service-visual {
    order: 2;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 1.25rem;
  }

  .nav-inner {
    height: 64px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(26, 26, 46, 0.08);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 6.5rem 1.25rem 3rem;
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-trust {
    gap: 1rem;
  }

  .band {
    padding: 3.5rem 1.25rem;
  }

  .about {
    padding: 4rem 1.25rem;
  }

  .founders-grid {
    grid-template-columns: 1fr;
  }

  .features {
    padding: 4rem 1.25rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .service-section {
    padding: 4rem 1.25rem;
  }

  .visual-card {
    min-height: 180px;
    padding: 2rem;
  }

  .visual-stat {
    font-size: 3rem;
  }

  .contact {
    padding: 4rem 1.25rem;
  }

  .inquiry-form {
    padding: 1.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6rem 1rem 2.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .about-header h2,
  .features-header h2,
  .service-content h2,
  .contact-info h2 {
    font-size: 1.5rem;
  }

  .band-text {
    font-size: 1.15rem;
  }

  .inquiry-form {
    padding: 1.25rem;
  }
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
  .feature-card,
  .founder-card,
  .service-point,
  .visual-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s ease forwards;
  }

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

  .feature-card:nth-child(1) { animation-delay: 0.1s; }
  .feature-card:nth-child(2) { animation-delay: 0.2s; }
  .feature-card:nth-child(3) { animation-delay: 0.3s; }
  .feature-card:nth-child(4) { animation-delay: 0.4s; }

  .founder-card:nth-child(1) { animation-delay: 0.1s; }
  .founder-card:nth-child(2) { animation-delay: 0.2s; }

  .service-point:nth-child(1) { animation-delay: 0.1s; }
  .service-point:nth-child(2) { animation-delay: 0.2s; }
  .service-point:nth-child(3) { animation-delay: 0.3s; }
}
