:root {
  --emerald: #0B3D2E;
  --emerald-deep: #082A20;
  --sand: #F0E6D2;
  --gold: #C9A227;
  --ink: #1A1A1A;
  --paper: #FBF8F2;

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0;
  font-weight: 500;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 12px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 6px;
  z-index: 100;
}

a { color: inherit; }

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--gold);
  color: var(--emerald-deep);
}
.btn-primary:hover { transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--paper);
  color: var(--paper);
  padding: 9px 22px;
}
.btn-ghost:hover { background: rgba(251,248,242,0.1); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--emerald);
  color: var(--emerald);
  padding: 11px 26px;
}
.btn-outline:hover { background: var(--emerald); color: var(--paper); }

/* Header */
.site-header {
  background: var(--emerald-deep);
  padding: 18px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  height: 36px;
  width: 36px;
  object-fit: contain;
}
.brand-name {
  font-family: var(--font-display);
  color: var(--paper);
  font-size: 1.15rem;
}
.brand-name em {
  font-style: italic;
  color: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  background: var(--emerald);
  color: var(--paper);
  overflow: hidden;
  padding: 96px 0 110px;
}
.arch {
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 180%;
  border: 2px solid rgba(201,162,39,0.18);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.08;
  max-width: 14ch;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.1rem;
  max-width: 46ch;
  color: rgba(251,248,242,0.85);
  margin-bottom: 22px;
  line-height: 1.5;
}
.hero-meta {
  font-size: 0.92rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 36px;
}
.hero-meta .dot { margin: 0 8px; opacity: 0.6; }

/* Packages */
.packages { padding: 88px 0; }
.packages h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 48px;
  max-width: 20ch;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.package-card {
  border: 1px solid rgba(11,61,46,0.15);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.package-card h3 { font-size: 1.4rem; }
.package-desc {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
}
.price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--emerald);
  margin: 4px 0 14px;
}
.package-card--featured {
  background: var(--emerald);
  border-color: var(--emerald);
}
.package-card--featured h3,
.package-card--featured .price { color: var(--paper); }
.package-card--featured .package-desc { color: rgba(251,248,242,0.8); }
.featured-tag {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--gold);
  color: var(--emerald-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

/* Trips / posters */
.trips { padding: 0 0 88px; }
.trips h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 40px;
  max-width: 20ch;
}
.trip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.trip-card {
  border: 1px solid rgba(11,61,46,0.15);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.trip-image {
  width: 100%;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  background: var(--sand);
}
.trip-body {
  padding: 24px 26px 28px;
}
.trip-body h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.trip-dates {
  color: #555;
  font-size: 0.92rem;
  margin: 0 0 14px;
}
.trip-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--emerald);
  margin: 0 0 18px;
}
.trip-price span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #777;
  font-weight: 500;
  margin-top: 2px;
}

/* Trust */
.trust {
  background: var(--sand);
  padding: 56px 0;
  border-top: 1px solid rgba(11,61,46,0.1);
  border-bottom: 1px solid rgba(11,61,46,0.1);
}
.trust-inner { text-align: center; }
.trust-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  font-weight: 600;
  color: var(--emerald);
}

/* Contact */
.contact { padding: 80px 0; }
.contact-inner { text-align: center; }
.contact-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.contact-card {
  text-decoration: none;
  border: 1px solid rgba(11,61,46,0.15);
  border-radius: 12px;
  padding: 20px 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 220px;
  transition: border-color 0.2s ease;
}
.contact-card:hover { border-color: var(--gold); }
.contact-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.contact-number { color: var(--emerald); font-weight: 600; }

/* Footer */
.site-footer {
  background: var(--emerald-deep);
  color: rgba(251,248,242,0.6);
  text-align: center;
  padding: 28px 0;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 820px) {
  .package-grid { grid-template-columns: 1fr; }
  .arch { width: 90%; right: -30%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
