html { scroll-behavior: smooth; }

:root {
  --saffron: #E8832A;
  --deep: #1A1208;
  --gold: #C9A84C;
  --cream: #FBF6EE;
  --text: #2C1F0E;
  --muted: #7A6A54;
  --white: #ffffff;
  --line: #E8DDD0;
  --ta-green: #34E0A1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 30px 20px 38px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(26,18,8,0.82) 0%,
    rgba(26,18,8,0.75) 60%,
    rgba(44,31,14,0.82) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

.award-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.25),
    inset 0 0 0 1px rgba(201,168,76,0.45),
    inset 0 0 18px rgba(201,168,76,0.22);
  margin-bottom: 18px;
  max-width: 100%;
}

.award-badge-wrap {
  background: #fff;
  padding: 6px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  flex-shrink: 0;
}

.award-badge-img {
  height: 64px;
  width: auto;
  display: block;
  border-radius: 8px;
}

.ta-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--gold);
  text-decoration: none !important;
  font-weight: 700;
  line-height: 1.2;
}

.ta-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ta-bottom {
  font-size: 12px;
  opacity: 0.95;
}

.ta-dots {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}

.ta-dot {
  width: 11px;
  height: 11px;
  background: var(--ta-green);
  border-radius: 50%;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.hero h1 span {
  color: var(--saffron);
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.usp-block {
  margin: 0 auto 16px;
  max-width: 560px;
  text-align: center;
}

.usp-main {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 6px;
}

.usp-proof {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.5;
}

.trust-logos {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  margin: 0 auto 20px;
  max-width: 640px;
}

.trust-logos a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.trust-logos a:hover {
  opacity: 0.85;
}

.cta-stack {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin: 0 auto;
}

.btn-primary,
.btn-secondary-cta {
  display: block;
  width: 100%;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  transition: transform 0.15s, opacity 0.15s;
}

.btn-primary {
  background: var(--saffron);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,131,42,0.35);
}

.btn-secondary-cta {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
}

.btn-primary:hover,
.btn-secondary-cta:hover,
.btn-ta:hover,
.tour-btn:hover,
.tour-link-btn:hover,
.upgrade-link-btn:hover {
  opacity: 0.92;
}

.btn-primary:active,
.btn-secondary-cta:active,
.tour-btn:active,
.tour-link-btn:active,
.upgrade-link-btn:active {
  transform: scale(0.98);
}

.hero-perks,
.direct-perks,
.free-cancel-top {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.72);
}

.free-cancel-top {
  display: block;
  text-decoration: none;
  padding-top: 10px;
}

/* FACTS */
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #E0D5C5;
  border-bottom: 1px solid #E0D5C5;
}

.fact {
  background: var(--white);
  padding: 16px 14px;
  text-align: center;
}

.fact-icon {
  font-size: 20px;
  margin-bottom: 4px;
}

.fact-value {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.fact-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* SECTIONS */
.section {
  padding: 28px 20px;
  border-bottom: 1px solid var(--line);
}

.section-inner {
  max-width: 760px;
  margin: 0 auto;
}

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 10px;
}

.section h2 {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.25;
}

.section p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* TOUR CARDS */
.tour-cards {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.tour-card {
  background: var(--white);
  border: 1px solid #E0D5C5;
  border-radius: 14px;
  overflow: hidden;
}

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

.tour-card-body {
  padding: 16px;
}

.tour-card-title {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.2;
}

.tour-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.tour-card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.meta-tag,
.site-tag {
  background: rgba(232,131,42,.09);
  border: 1px solid rgba(232,131,42,.22);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #EDE5D8;
  gap: 12px;
}

.tour-price {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--saffron);
  white-space: nowrap;
}

.tour-price span {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

.tour-btn,
.tour-link-btn,
.upgrade-link-btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.tour-btn {
  padding: 10px 18px;
  font-size: 14px;
  white-space: nowrap;
}

.tour-link-btn,
.upgrade-link-btn {
  margin-top: 12px;
}

/* OPTION / OTHER TOUR CARDS */
.option-cards,
.upgrade-cards {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.option-card,
.upgrade-card {
  background: var(--white);
  border: 1px solid #E0D5C5;
  border-radius: 14px;
  overflow: hidden;
}

.option-card {
  padding: 16px;
}

.option-card-img,
.option-card img,
.upgrade-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px;
  margin-bottom: 14px;
}

.upgrade-card-img {
  border-radius: 0;
  margin-bottom: 0;
}

.upgrade-card-body {
  padding: 14px 16px 16px;
}

.option-card h3,
.upgrade-card-body h3 {
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--text);
}

.option-card h3 a,
.upgrade-card-body h3 a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.option-card h3 a:hover,
.upgrade-card-body h3 a:hover {
  color: var(--saffron);
}

.option-card p,
.upgrade-card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.option-price {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--saffron);
}

/* LISTS */
.honest-list,
.highlight-list {
  list-style: none;
  margin-top: 14px;
}

.honest-list li,
.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #EDE5D8;
  font-size: 15px;
  color: var(--text);
  line-height: 1.45;
}

.honest-list li:last-child,
.highlight-list li:last-child {
  border-bottom: none;
}

.hi-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* MEETING / PRICE / BONUS */
.meeting-box {
  background: var(--white);
  border: 1px solid #E0D5C5;
  border-radius: 10px;
  padding: 16px;
  margin-top: 6px;
  text-align: center;
}

.place-name,
.meeting-box .place-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 2px;
}

.place-name a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.place-detail,
.meeting-box .place-detail {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.times {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.time-pill {
  background: var(--deep);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: .03em;
}

.price-grid {
  margin-top: 4px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #EDE5D8;
  gap: 12px;
}

.price-row:last-child {
  border-bottom: none;
}

.price-type {
  font-size: 15px;
  color: var(--text);
  font-weight: 700;
}

.price-desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}

.price-amount {
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--saffron);
  white-space: nowrap;
}

.price-note,
.student-box,
.day-optional {
  background: rgba(232,131,42,.08);
  border-left: 3px solid var(--saffron);
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}

.bonus-box {
  background: rgba(232,131,42,.08);
  border: 1px solid rgba(232,131,42,.25);
  border-radius: 10px;
  padding: 18px;
  margin-top: 10px;
  text-align: center;
}

.bonus-main {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
}

.bonus-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.bonus-code {
  font-size: 14px;
  font-weight: 700;
  color: var(--saffron);
  letter-spacing: .05em;
}

/* EMAIL CAPTURE */
.email-capture {
  background: var(--deep);
  border-radius: 14px;
  padding: 22px 20px;
  margin-top: 24px;
  text-align: center;
}

.email-capture-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.email-capture h3 {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 6px;
}

.email-capture p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  line-height: 1.5;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.email-form .input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.35);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-size: 15px;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  outline: none;
}

.email-form .input::placeholder {
  color: rgba(255,255,255,0.35);
}

.email-form .input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.10);
}

.email-note {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
}

#sib-form-container,
#sib-container,
.sib-form {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  max-width: 100% !important;
}

.sib-form-block__button {
  width: 100%;
  padding: 13px 16px !important;
  border-radius: 8px !important;
  background: var(--saffron) !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border: none !important;
  cursor: pointer !important;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif !important;
}

/* REVIEWS */
.review-card {
  background: var(--white);
  border: 1px solid #E0D5C5;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 12px;
}

.review-stars {
  color: var(--ta-green);
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.review-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 10px;
}

.reviewer {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.reviewer::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #C9B89A;
}

.reviewer a {
  color: inherit;
  text-decoration: none;
}

.reviews-cta {
  max-width: 760px;
  margin: 20px auto 0;
}

.btn-ta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 18px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid var(--ta-green);
  color: var(--ta-green);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  margin-top: 20px;
}

/* DAY / HOTEL / PHOTO BLOCKS */
.day-block,
.hotel-card {
  background: var(--white);
  border: 1px solid #E0D5C5;
  border-radius: 12px;
  padding: 18px 16px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.day-img,
.hotel-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin-bottom: 14px;
}

.day-number,
.hotel-option-label {
  display: inline-block;
  background: var(--saffron);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.day-title,
.hotel-name {
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.25;
}

.day-desc,
.hotel-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.day-sites {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hotel-cards {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.hotel-card {
  padding: 0;
}

.hotel-card-body {
  padding: 14px 16px;
  border-bottom: 1px solid #EDE5D8;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.photo-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.photo-grid img.wide {
  grid-column: 1 / -1;
  height: 200px;
}

/* CTA BOTTOM */
.cta-bottom {
  background: var(--deep);
  padding: 32px 20px 40px;
  text-align: center;
}

.cta-bottom-inner {
  max-width: 760px;
  margin: 0 auto;
}

.cta-bottom h2 {
  font-family: Georgia, serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 6px;
}

.cta-bottom p {
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  margin-bottom: 18px;
}

.bottom-btns {
  display: grid;
  gap: 12px;
}

.free-cancel {
  font-size: 12px;
  color: rgba(255,255,255,0.44);
  margin-top: 12px;
}

/* FOOTER */
.site-footer {
  background: #120c05;
  color: #d7c5b3;
  padding: 40px 20px;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
}

.footer-copy {
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.footer-links a {
  color: #f0e2d2;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-note {
  font-size: 14px;
  opacity: .8;
}

/* RESPONSIVE */
@media (min-width: 500px) {
  .email-form {
    flex-direction: row;
  }

  .sib-input {
    flex: 1;
  }

  .sib-form-block__button {
    width: auto !important;
    white-space: nowrap !important;
  }
}

@media (min-width: 700px) {
  .tour-cards,
  .option-cards,
  .upgrade-cards,
  .hotel-cards {
    grid-template-columns: 1fr 1fr;
  }

  .bottom-btns,
  .cta-stack {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 699px) {
  .hero {
    min-height: 560px;
  }

  .award-row {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 12px;
    gap: 12px;
    border-radius: 32px;
  }

  .award-badge-img {
    height: 58px;
  }

  .ta-top {
    font-size: 13px;
  }

  .ta-bottom {
    font-size: 11px;
  }
}
