:root {
  /* Premium Earth/Travel Palette */
  --bg: #F9F8F4;
  /* Soft Sand / Paper */
  --surface: #FFFFFF;
  /* White */
  --text: #2C3333;
  /* Deep Charcoal */
  --muted: #5D6D6A;
  /* Muted warm grey-green */
  --brand: #2E5C55;
  /* Deep Ocean/Forest Teal */
  --brand-2: #3A736A;
  /* Lighter Teal */
  --accent: #C17F59;
  /* Terracotta/Clay for CTAs/Accents */
  --line: #EAE6DB;
  /* Warm light border */
  --warn: #BE5A38;
  /* Burnt orange */
  --radius: 4px;
  /* Sharp, refined radius */
  --shadow: 0 4px 20px rgba(44, 51, 51, 0.06);
  --font-heading: "Playfair Display", serif;
  --font-body: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
.brand {
  font-family: var(--font-heading);
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  text-decoration: underline;
  color: var(--brand-2);
}

.container {
  width: min(1000px, calc(100% - 3rem));
  margin: 0 auto;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(249, 248, 244, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
}

.nav-wrap {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--brand);
}

.brand small {
  display: block;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav a:hover,
.nav a.active {
  color: var(--brand);
}

/* UI Elements */
.badge {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #EBF2F0;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.btn,
button {
  border: 0;
  background: var(--brand);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}

button:hover,
.btn:hover {
  background: var(--brand-2);
  text-decoration: none;
  transform: translateY(-1px);
}

/* Hero */
.hero {
  padding: 6rem 0 4rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--brand);
}

.hero p {
  color: var(--muted);
  font-size: 1.25rem;
  margin: 0 auto;
  max-width: 600px;
}

/* Layouts */
.section {
  padding: 4rem 0;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(44, 51, 51, 0.1);
}

.card h2 {
  font-size: 1.75rem;
  margin-top: 0.5rem;
  color: var(--text);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--brand);
}

.kicker {
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.5rem;
}

/* Forms */
form {
  display: grid;
  gap: 1.25rem;
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #D1D9D9;
  border-radius: 4px;
  padding: 0.8rem;
  background: #FCFCFA;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
}

textarea {
  min-height: 150px;
}

/* How It Works - Step Sections */
.step-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 6rem 0;
  border-bottom: 1px solid var(--line);
}

.step-section:last-child {
  border-bottom: none;
}

.step-section.reverse {
  flex-direction: row-reverse;
}

.step-content {
  flex: 1;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: #E0E5E5;
  line-height: 1;
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}

.step-content h2 {
  font-size: 2.5rem;
  margin: 0 0 1rem;
  color: var(--brand);
}

.step-content p {
  font-size: 1.15rem;
  color: var(--muted);
}

.step-visual {
  flex: 1;
  height: 400px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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


/* Lists */
.list-clean {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.list-clean li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.list-clean li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Footer */
footer {
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  padding: 3rem 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

footer p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .grid.cols-2,
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    flex-direction: column;
    gap: 1rem;
  }

  .step-section,
  .step-section.reverse {
    flex-direction: column;
    padding: 3rem 0;
    text-align: center;
  }

  .step-number {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }

  .step-visual {
    width: 100%;
    height: 250px;
  }
}