/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal-dark:  #2e4a4a;
  --teal:       #3d6b6b;
  --teal-light: #5a8a8a;
  --cream:      #f5f0e8;
  --sage:       #7a9e7e;
  --blush:      #d4738a;
  --gold:       #b8960c;
  --gold-light: #ffd700;
  --charcoal:   #3a3a3a;
  --text-muted: #666;
  --hero-bg:    linear-gradient(160deg,#c2d4dc 0%,#b5ccd5 35%,#bed0ba 70%,#aec09a 100%);
  --nav-bg:     linear-gradient(135deg,#2e4a4a,#3d6b6b,#2e4a4a);
  --card-bg:    rgba(255,255,255,0.48);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --shadow:     0 4px 18px rgba(0,0,0,0.10);
  --font-display: 'Playfair Display', serif;
  --font-body:    'Lato', sans-serif;
  --font-script:  'Dancing Script', cursive;
}

body {
  font-family: var(--font-body);
  background: #dde6ea;
  color: var(--charcoal);
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; display: block; }
a  { color: var(--teal); }

/* ── NAV ── */
nav {
  background: var(--nav-bg);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav a {
  color: #ddeee8;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 18px;
  border-right: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
  transition: background 0.18s;
}
nav a:first-child { border-left: 1px solid rgba(255,255,255,0.1); }
nav a:hover, nav a.active {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

/* ── PHONE BAR ── */
.phone-bar {
  background: var(--teal-dark);
  text-align: center;
  padding: 11px 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  border-bottom: 2px solid var(--gold);
}
.phone-bar a {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.04em;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--hero-bg);
  padding: 44px 20px 36px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: #2a4050;
  margin-bottom: 8px;
}
.page-hero p {
  color: #446;
  font-style: italic;
  font-size: 0.95rem;
}

/* ── SECTION WRAPPERS ── */
.section { padding: 44px 20px; }
.section--cream   { background: var(--cream); }
.section--hero-bg { background: var(--hero-bg); }
.section--teal    { background: linear-gradient(135deg,#b8c8b8,#a8b8c8); }
.section--dark    { background: var(--nav-bg); color: #ddeee8; }

.container { max-width: 960px; margin: 0 auto; }
.container--narrow { max-width: 720px; margin: 0 auto; }

/* ── SECTION TITLE ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--teal);
  text-align: center;
  margin-bottom: 32px;
}
.section-title--light { color: #fff; }

/* ── CARD ── */
.card {
  background: var(--card-bg);
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow);
}

/* ── TOUR GRID ── */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
@media(max-width:680px){ .tours-grid { grid-template-columns: 1fr; } }

.tour-card { text-align: center; }
.tour-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2a4a5a;
  margin-bottom: 10px;
  line-height: 1.3;
}
.tour-card p {
  font-size: 0.88rem;
  font-style: italic;
  color: #444;
  line-height: 1.65;
  margin-bottom: 12px;
}
.tour-duration {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blush);
  margin-bottom: 14px;
}
.btn {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.18s;
  border: none;
  cursor: pointer;
}
.btn:hover { background: #2a5050; color: #fff; }
.btn--gold  { background: var(--gold); }
.btn--gold:hover { background: #9a7a08; }
.btn--lg    { padding: 14px 32px; font-size: 0.92rem; border-radius: 30px; }

/* ── HERO SECTION (home) ── */
.hero { background: var(--hero-bg); padding: 32px 16px 24px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 160px 1fr 150px;
  gap: 16px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.portrait-wrap { text-align: center; }
.portrait-oval {
  width: 140px;
  height: 165px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(135deg,#a07860,#7a5840);
  border: 5px solid rgba(255,255,255,0.7);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  margin: 0 auto 8px;
}
.portrait-caption {
  font-family: var(--font-script);
  font-size: 0.9rem;
  color: #3a5050;
  line-height: 1.4;
}

.hero-center { text-align: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.45);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #2e6a9a;
  margin-bottom: 10px;
}
.logo-cloud {
  background: rgba(255,255,255,0.55);
  border-radius: 48% 52% 48% 52% / 30% 30% 70% 70%;
  padding: 16px 26px 20px;
  display: inline-block;
  margin-bottom: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.logo-cloud h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.1;
  color: #2a4a5a;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.social-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.18s;
}
.social-btn:hover { opacity: 0.85; color: #fff; }
.fb-btn { background: #3b5998; }
.yt-btn { background: #cc0000; }

.award-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.award-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #3a5050;
  line-height: 1.5;
  max-width: 170px;
  text-align: left;
}
.award-text em { font-style: italic; color: var(--blush); }
.ta-badge {
  background: linear-gradient(135deg,#34a853,#2d8f46);
  border-radius: 8px;
  padding: 10px 12px;
  text-align: center;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.4;
  min-width: 120px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}
.ta-badge .ta-year { font-size: 0.95rem; color: var(--gold-light); }

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
}
.start-here {
  background: rgba(255,255,255,0.6);
  border: 2px solid rgba(180,180,150,0.5);
  border-radius: 8px;
  padding: 14px 10px;
  text-align: center;
  font-family: var(--font-script);
  font-size: 1rem;
  color: #3a5050;
  line-height: 1.4;
}
.comments-cta {
  font-family: var(--font-script);
  font-size: 0.88rem;
  color: #3a5050;
  text-align: center;
  line-height: 1.5;
}
.comments-cta a { color: var(--teal); }

/* ── PHONE STRIP (home) ── */
.phone-strip {
  background: var(--nav-bg);
  text-align: center;
  padding: 16px;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.phone-strip p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  font-style: italic;
  color: #fff;
  letter-spacing: 0.04em;
}
.phone-strip a {
  color: var(--gold-light);
  text-decoration: none;
  font-style: normal;
  font-weight: 700;
}

/* ── BOOK BANNER ── */
.book-banner {
  background: rgba(0,0,0,0.22);
  color: #fff;
  font-family: var(--font-script);
  font-size: 1.25rem;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  margin-top: 22px;
}

/* ── CONTENT PROSE ── */
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--teal);
  margin: 28px 0 12px;
}
.prose p {
  font-size: 0.98rem;
  line-height: 1.82;
  color: #555;
  margin-bottom: 14px;
}
.prose .divider {
  text-align: center;
  font-size: 1.4rem;
  opacity: 0.45;
  letter-spacing: 0.35em;
  margin: 8px 0 20px;
}

/* ── REVIEW ── */
.review {
  background: rgba(255,255,255,0.72);
  border-left: 5px solid var(--sage);
  border-radius: 0 12px 12px 0;
  padding: 20px 22px;
  margin-bottom: 20px;
  font-style: italic;
  color: #444;
  line-height: 1.75;
  font-size: 0.92rem;
}
.review cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 700;
  color: var(--teal);
  font-size: 0.82rem;
}

/* ── TOUR DETAIL PAGE ── */
.tour-detail-hero {
  background: var(--hero-bg);
  padding: 48px 20px 40px;
  text-align: center;
}
.tour-detail-hero .tour-tag {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.tour-detail-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  color: #2a4050;
  line-height: 1.15;
  margin-bottom: 14px;
}
.tour-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.tour-meta-item {
  background: rgba(255,255,255,0.55);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  text-align: center;
  min-width: 100px;
}
.tour-meta-item .meta-val {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--teal-dark);
}
.tour-meta-item .meta-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666;
  margin-top: 2px;
}

.stops-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.stops-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.stops-list li:last-child { border-bottom: none; }
.stop-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.stop-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 3px;
}
.stop-text p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.cta-box {
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.cta-box h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.cta-box p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}
.cta-phone {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal-dark);
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media(max-width:580px){ .contact-grid { grid-template-columns: 1fr; } }

.contact-item {
  background: rgba(255,255,255,0.75);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.contact-item .ci-icon { font-size: 2rem; margin-bottom: 8px; }
.contact-item .ci-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
}
.contact-item a, .contact-item p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 700;
  word-break: break-all;
}
.contact-item a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: linear-gradient(135deg,#2e4a4a,#1e3030);
  color: rgba(255,255,255,0.78);
  text-align: center;
  padding: 36px 20px;
  font-size: 0.88rem;
  line-height: 2;
}
footer .footer-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 8px;
}
footer a { color: var(--gold); text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer .footer-copy {
  margin-top: 12px;
  font-size: 0.75rem;
  opacity: 0.5;
}

/* ── RESPONSIVE ── */
@media(max-width:700px){
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-right { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .award-text { text-align: center; }
  nav a { font-size: 0.72rem; padding: 12px 12px; }
}
