@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --bg: #221c28;
  --pink: #f00075;
  --gold: #ffd700;
  --muted: #999;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
}

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: #fff;
  line-height: 1.6;
}

a { color: inherit; }

header.site-header {
  max-width: 880px;
  margin: 0 auto;
  padding: 20px 20px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  opacity: 0.9;
}

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

main {
  max-width: 880px;
  margin: 0 auto;
  padding: 12px 0 0;
}

img.full {
  width: 100%;
  height: auto;
  display: block;
}

/* Gradient CTA buttons, matching the original site's colored nav blocks */
.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 40px 0;
}

.cta-stack .btn {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 26px 20px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.btn-what { background: linear-gradient(135deg, #caf880 6%, #71ce7e 100%); }
.btn-tour { background: linear-gradient(135deg, #ffceec 0%, #9896f0 100%); }
.btn-pricing { background: linear-gradient(135deg, #ff6900 0%, #cf2e2e 100%); }
.btn-desk { background: linear-gradient(135deg, #fcb900 0%, #ff6900 100%); }

/* Social proof: Instagram grid + Google reviews, side by side like the original */
.social-proof {
  display: grid;
  grid-template-columns: minmax(220px, 380px) 1fr;
  gap: 40px;
  margin: 50px 0;
  padding: 0 20px;
  align-items: start;
}

@media (max-width: 720px) {
  .social-proof {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.instagram-col .reviews-label { margin-bottom: 14px; }

.instagram-embed {
  min-height: 300px;
}
.instagram-embed iframe {
  min-height: 300px;
  display: block;
}

.instagram-follow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}

.instagram-follow .badge.small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  flex-shrink: 0;
}
.instagram-follow .badge.small svg { width: 15px; height: 15px; fill: #fff; }
.instagram-follow:hover { color: #fff; }

.reviews {
  margin: 0;
  padding: 0;
}

.reviews-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.reviews-score {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.reviews-score .num { font-size: 2.5rem; font-weight: 700; }
.reviews-score .stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }
.reviews-score .count { color: var(--muted); font-size: 0.95rem; }

.review {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 0;
}

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.review-head strong { font-size: 1rem; }
.review-head span { color: var(--muted); font-size: 0.85rem; white-space: nowrap; }

.review .stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; display: block; margin-bottom: 8px; }

.review p { margin: 0; color: rgba(255,255,255,0.85); }

.see-all {
  display: inline-block;
  margin-top: 24px;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-radius: 20px;
  padding: 9px 20px;
  font-size: 0.9rem;
}
.see-all:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* Tour photo grid (approximates the original carousel) */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 6px;
  margin: 20px 0 40px;
}

.tour-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* Contact page layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
  padding: 20px;
  margin: 20px 0 10px;
}

.contact-grid .visit-info { grid-column: 1; }
.contact-grid .contact-form-col { grid-column: 2; }
.contact-grid .contact-illustration { grid-column: 3; align-self: center; }
.contact-grid .contact-illustration img { width: 100%; height: auto; }

@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid .visit-info,
  .contact-grid .contact-form-col,
  .contact-grid .contact-illustration {
    grid-column: 1;
  }
}

.contact-grid img.visit-block { width: 100%; height: auto; margin-bottom: 4px; }

form#contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
}

form#contact-form label .req {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.9rem;
}

form#contact-form input[type="text"],
form#contact-form input[type="email"],
form#contact-form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 10px 12px;
  margin-bottom: 20px;
  font: inherit;
  border-radius: 0;
}

form#contact-form textarea { resize: vertical; }

form#contact-form input::placeholder,
form#contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }

form#contact-form button[type="submit"] {
  background: #fff;
  color: #111;
  border: 1px solid #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 20px;
  width: 100%;
  cursor: pointer;
}
form#contact-form button[type="submit"]:hover { background: rgba(255,255,255,0.85); }
form#contact-form button[type="submit"]:disabled { opacity: 0.6; cursor: default; }

.disclaimer {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  font-size: 0.9rem;
  padding: 10px 20px 0;
}

.map-embed {
  margin-top: 30px;
  width: 100%;
}
.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  filter: grayscale(0.15);
}

footer.site-footer {
  text-align: center;
  padding: 40px 20px 60px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

footer.site-footer a { color: var(--pink); text-decoration: none; }
