:root {
  --itrip-blue: #29ABE2;
  --marquise-green: #2f3b2a;
  --marquise-green-dark: #212a1d;
  --gold: #c39a4b;
  --gold-light: #e6d3a5;
  --cream: #faf5ec;
  --charcoal: #2b2822;
  --serif: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  background: #ffffff;
}

h1, h2 { font-family: var(--serif); font-weight: 400; }

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.25rem;
  background: url('/images/hero-bg.jpg') center 30%/cover no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33,42,29,0.55) 0%, rgba(33,42,29,0.72) 60%, rgba(33,42,29,0.88) 100%);
}
.hero-content { position: relative; max-width: 640px; }

.logos { display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.logo { object-fit: contain; }
.logo-itrip {
  height: 54px;
  background: rgba(255,255,255,0.92);
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
}
.logo-marquise { height: 108px; }
.logo-divider { font-size: 1.4rem; color: var(--gold-light); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--gold-light);
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.eyebrow-dark { color: var(--gold); }

.slogan {
  margin: 0 0 2rem;
  font-size: 2.4rem;
  line-height: 1.25;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.9rem 2rem;
  letter-spacing: 0.03em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--marquise-green-dark);
  box-shadow: 0 8px 20px rgba(195,154,75,0.35);
  font-size: 1rem;
}
.btn-primary:hover { box-shadow: 0 12px 26px rgba(195,154,75,0.45); }

.btn-outline {
  background: #fff;
  color: var(--marquise-green);
  border: 1px solid #e2ddd0;
  box-shadow: 0 4px 14px rgba(43,40,34,0.06);
  font-size: 0.92rem;
}
.btn-outline:hover { border-color: var(--gold); color: var(--marquise-green-dark); box-shadow: 0 8px 20px rgba(43,40,34,0.1); }

/* Promo */
.promo {
  background: var(--marquise-green);
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.25rem;
}
.promo h2 { margin: 0 0 1rem; font-size: 2rem; color: var(--gold-light); }
.promo p { max-width: 560px; margin: 0 auto; line-height: 1.7; opacity: 0.92; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.5rem;
  padding: 0.5rem;
  background: var(--cream);
}
.gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.35s ease;
}
.gallery img:hover { transform: scale(1.03); }

/* Actions */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 3rem 1.25rem 0;
  background: var(--cream);
}

/* Google review badge */
.review {
  display: flex;
  justify-content: center;
  padding: 2rem 1.25rem 3.5rem;
  background: var(--cream);
}
.review-card {
  background: #fff;
  border: 1px solid #e9e2d0;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(43,40,34,0.08);
  max-width: 360px;
}
.review-stars {
  color: var(--gold);
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.review-label {
  margin: 0 0 0.9rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--marquise-green);
}
.review-link {
  display: inline-block;
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.review-link:hover { color: var(--gold); border-color: var(--marquise-green); }

/* Form */
.form-section {
  background: var(--marquise-green-dark);
  padding: 4rem 1.25rem;
  text-align: center;
}
.form-card {
  max-width: 440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 2.75rem 2.25rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.form-card h2 { margin: 0 0 1.75rem; color: var(--marquise-green); font-size: 1.7rem; }
#promo-form { display: flex; flex-direction: column; gap: 0.9rem; text-align: left; }
#promo-form label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #8a8578; margin-bottom: -0.5rem; }
#promo-form input {
  padding: 0.85rem 1rem;
  border: 1px solid #e2ddd0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--cream);
}
#promo-form input:focus { outline: none; border-color: var(--gold); background: #fff; }
#promo-form button { margin-top: 0.5rem; width: 100%; }
#form-message { min-height: 1.5rem; font-weight: 600; margin-top: 1.25rem; }

@media (max-width: 480px) {
  .hero { min-height: 88vh; }
  .slogan { font-size: 1.85rem; }
  .logo-marquise { height: 84px; }
  .logo-itrip { height: 42px; }
  .gallery img { height: 220px; }
  .form-card { padding: 2rem 1.5rem; }
}
