:root {
  --plum: #4B1E38;
  --ivory: #F5EDE0;
  --latte: #E7CDB2;
  --charcoal: #2B2B2B;
  --muted: #8A7A6E;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  color: var(--plum);
  margin: 0;
}

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

a { color: inherit; }

/* Header */
.site-header {
  padding: 1.5rem 0;
  background: var(--ivory);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-mark {
  height: 150px;
  width: auto;
  border-radius: 50%;
}
.main-nav {
  display: flex;
  align-items: center;
}
.main-nav a {
  margin-left: 2.2rem;
  text-decoration: none;
  font-size: 18px;
  color: var(--plum);
  font-weight: 500;
}
.nav-dropdown {
  position: relative;
  margin-left: 2.2rem;
}
.nav-dropdown > a {
  margin-left: 0;
}
.caret {
  font-size: 12px;
  margin-left: 2px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.6rem;
  background: #FFFFFF;
  border: 1px solid rgba(75, 30, 56, 0.12);
  border-radius: 6px;
  padding: 0.4rem 0;
  min-width: 280px;
  box-shadow: 0 6px 18px rgba(75, 30, 56, 0.1);
  z-index: 10;
}
.nav-dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  display: block;
  margin-left: 0;
  padding: 0.65rem 1.1rem;
  font-size: 16px;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: var(--ivory);
}
.nav-book-btn {
  margin-left: 2.2rem;
  background: var(--plum);
  color: var(--ivory) !important;
  padding: 0.6rem 1.3rem;
  border-radius: 4px;
  font-weight: 600;
}

/* Hero */
.hero {
  position: relative;
  background: var(--plum);
  color: var(--ivory);
  padding: 6rem 0 7rem;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; max-width: 700px; }
.hero-kicker {
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--latte);
  margin: 0 0 1rem;
}
.hero h1 {
  color: var(--ivory);
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 19px;
  color: var(--latte);
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-ring {
  position: absolute;
  right: -140px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(231, 205, 178, 0.35);
}
.hero-ring::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px solid rgba(231, 205, 178, 0.2);
}

.btn-primary {
  display: inline-block;
  background: var(--latte);
  color: var(--plum);
  padding: 0.9rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
}

/* Intro */
.intro { padding: 4rem 0; }
.intro-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.intro-text { font-size: 21px; color: var(--charcoal); }
.intro-link { margin-top: 1.2rem; }
.intro-link a {
  color: var(--plum);
  font-weight: 600;
  text-decoration: none;
  font-size: 17px;
}

/* Tours */
.tours { padding: 2rem 0 5rem; }
.section-kicker {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.tour-block {
  display: flex;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(75, 30, 56, 0.12);
}
.tour-block.reverse { flex-direction: row-reverse; }
.tour-media {
  flex: 1 1 42%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
}
.placeholder-media {
  background: linear-gradient(135deg, var(--latte), var(--plum));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.placeholder-label {
  color: var(--ivory);
  font-size: 15px;
  font-style: italic;
  padding: 0 1rem;
}
.tour-copy { flex: 1 1 58%; }
.tour-copy h2 { font-size: 34px; margin-bottom: 0.5rem; }
.tour-meta {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 1rem;
}
.tour-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.tour-cta-buttons {
  display: flex;
  gap: 0.8rem;
}
.tour-price {
  font-size: 17px;
  color: var(--charcoal);
}
.tour-price em {
  font-style: normal;
  font-weight: 600;
  color: var(--plum);
}
.btn-secondary {
  display: inline-block;
  background: var(--plum);
  color: var(--ivory);
  padding: 0.75rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* CTA band */
.cta-band {
  background: var(--latte);
  padding: 2.5rem 0;
}
.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.cta-band p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 23px;
  color: var(--plum);
  margin: 0;
}
.btn-ghost {
  border: 1px solid var(--plum);
  color: var(--plum);
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

/* Generic page hero (FAQs, Contact) */
.page-hero {
  background: var(--plum);
  padding: 4rem 0 3rem;
}
.page-title {
  color: var(--ivory);
  font-size: 42px;
  margin: 0.3rem 0 0;
  max-width: 760px;
}
.page-hero .section-kicker {
  color: var(--latte);
}

/* About page */
.about-cards-section { padding: 3rem 0 1rem; }
.about-cards {
  display: flex;
  gap: 2rem;
}
.about-card {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid rgba(75, 30, 56, 0.12);
  border-radius: 8px;
  padding: 1.9rem 2rem;
}
.about-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 23px;
  color: var(--plum);
  margin: 0 0 0.6rem;
}
.about-card p {
  font-size: 16px;
  margin: 0;
}
.opportunity-section { padding: 3rem 0; }
.opportunity-section h2 { font-size: 30px; margin-bottom: 1rem; }
.opportunity-section p { font-size: 18px; max-width: 780px; }
.founder-section { padding: 1rem 0 4.5rem; }
.founder-grid {
  display: flex;
  gap: 3rem;
  align-items: center;
}
.founder-media {
  flex: 1 1 42%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
}
.founder-copy { flex: 1 1 58%; }
.founder-copy h2 { font-size: 30px; margin-bottom: 0.8rem; }
.founder-copy p { font-size: 18px; }

/* Tour detail pages */
.tour-hero-photo {
  position: relative;
  height: 460px;
  background: linear-gradient(135deg, var(--latte), var(--plum));
  display: flex;
  align-items: flex-end;
  overflow: visible;
}
.tour-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43,20,32,0.55), transparent 55%);
}
.tour-hero-text {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
  width: 100%;
}
.tour-hero-text .section-kicker { color: var(--latte); }
.tour-page-title {
  color: var(--ivory);
  font-size: 52px;
  margin: 0.3rem 0 0;
}
.quick-details-card {
  position: relative;
  z-index: 3;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(43,20,32,0.18);
  padding: 2rem 2.2rem;
  max-width: 380px;
  margin: -70px auto 3rem;
}
.quick-details-heading {
  font-size: 22px;
  margin-bottom: 1rem;
}
.overview-item {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-top: 1px solid rgba(75, 30, 56, 0.1);
  font-size: 16px;
}
.overview-item:first-child { border-top: none; }
.overview-item strong { color: var(--plum); font-weight: 600; }
.book-now-btn { display: block; text-align: center; margin-top: 1.3rem; }

.tour-detail-body { padding: 0 0 4.5rem; max-width: 780px; margin: 0 auto; }
.tour-detail-body h2 {
  font-size: 28px;
  margin: 2.2rem 0 0.8rem;
}
.tour-detail-body h2:first-child { margin-top: 0; }
.tour-detail-body p { font-size: 18px; }
.tour-detail-body ul {
  margin: 0.5rem 0;
  padding-left: 1.3rem;
}
.tour-detail-body ul li {
  font-size: 17px;
  padding: 0.35rem 0;
}
.tour-facts dt {
  font-weight: 600;
  color: var(--plum);
  font-size: 16px;
  margin-top: 0.9rem;
}
.tour-facts dd {
  margin: 0.2rem 0 0;
  font-size: 17px;
}

/* FAQs */
.faqs {
  padding: 3.5rem 0 4.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(75, 30, 56, 0.12);
}
.faq-item h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 21px;
  color: var(--plum);
  margin: 0 0 0.5rem;
}
.faq-item p {
  margin: 0;
  color: var(--charcoal);
  font-size: 17px;
}

/* Contact */
.contact {
  padding: 3.5rem 0 4.5rem;
}
.contact-grid {
  display: flex;
  gap: 4rem;
}
.contact-info {
  flex: 1 1 38%;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 18px;
  margin-bottom: 1.1rem;
}
.contact-icon {
  color: var(--plum);
  font-size: 18px;
  width: 22px;
  display: inline-block;
}
.placeholder-text {
  color: var(--muted);
  font-style: italic;
}
.contact-socials {
  display: flex;
  gap: 1.4rem;
  margin-top: 1.5rem;
  font-size: 17px;
}
.contact-form-box {
  flex: 1 1 62%;
  background: #FFFFFF;
  border: 1px solid rgba(75, 30, 56, 0.12);
  border-radius: 8px;
  padding: 2.2rem;
}
.form-row {
  display: flex;
  gap: 1.2rem;
}
.form-field {
  flex: 1;
  margin-bottom: 1.2rem;
}
.form-field label {
  display: block;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.9rem;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid rgba(75, 30, 56, 0.2);
  font-family: 'Inter', Arial, sans-serif;
  color: var(--charcoal);
  background: #FFFFFF;
}
.form-field textarea {
  resize: vertical;
}

/* Footer */
.site-footer {
  background: var(--plum);
  color: var(--latte);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}
.footer-logo {
  height: 150px;
  border-radius: 50%;
}
.footer-details p { margin: 0.25rem 0; font-size: 16px; }
.footer-details a { color: var(--ivory); text-decoration: none; }
.footer-copyright {
  text-align: center;
  font-size: 13px;
  color: rgba(231, 205, 178, 0.6);
  margin: 0;
}

/* Responsive */
@media (max-width: 760px) {
  .hero h1 { font-size: 36px; }
  .tour-page-title { font-size: 32px; }
  .page-title { font-size: 30px; }
  .tour-hero-photo { height: 320px; }
  .quick-details-card { margin: -50px 1.5rem 2.5rem; max-width: none; }
  .tour-block, .tour-block.reverse { flex-direction: column; }
  .about-cards { flex-direction: column; }
  .founder-grid { flex-direction: column; }
  .hero-ring { display: none; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
  .header-inner { flex-direction: column; gap: 0.75rem; }
  .main-nav { flex-wrap: wrap; justify-content: center; }
  .main-nav a, .nav-dropdown { margin-left: 0.9rem; margin-right: 0.9rem; }
  .dropdown-menu { left: 50%; transform: translateX(-50%); }
  .contact-grid { flex-direction: column; gap: 2rem; }
  .form-row { flex-direction: column; gap: 0; }
}
