/* ===========================
   True Blue DMC — Stylesheet
   =========================== */

:root {
  /* Brand palette — aligned with truebluetour.com (sea blue + white) */
  --color-deep: #0b3d5c;
  --color-blue: #12507a;
  --color-blue-light: #1c76ac;
  --color-sand: #c9a86a;
  --color-ink: #14262f;
  --color-bg: #f8f7f4;
  --color-white: #ffffff;
  --color-line: #e3e0d8;
  --color-muted: #5a6a72;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-w: 1160px;
  --radius: 10px;
  --shadow-soft: 0 12px 32px rgba(11, 61, 92, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--color-deep);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--color-muted); }

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

ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-blue-light);
  margin-bottom: 0.8em;
}

.eyebrow-light { color: var(--color-sand); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(248, 247, 244, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-deep);
  letter-spacing: 0.02em;
}
.logo span { color: var(--color-blue-light); font-weight: 500; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-ink);
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--color-blue-light); }

.nav-cta {
  background: var(--color-deep);
  color: var(--color-white) !important;
  padding: 10px 20px;
  border-radius: 100px;
}
.nav-cta:hover { background: var(--color-blue-light); }

.nav-external {
  color: var(--color-blue-light) !important;
  font-size: 0.85rem !important;
  border-bottom: 1px solid transparent;
}
.nav-external:hover { border-bottom-color: var(--color-blue-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--color-deep);
  display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary {
  background: var(--color-sand);
  color: var(--color-deep) !important;
}
.btn-primary:hover { transform: translateY(-2px); background: #d9bd85; }

.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--color-white) !important;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.btn-lg { padding: 16px 34px; font-size: 1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 76px;
  overflow: hidden;
}

.hero-media {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,61,92,0.78) 0%, rgba(11,61,92,0.88) 60%, rgba(11,61,92,0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 60px;
  max-width: 780px;
}

.hero h1 { color: var(--color-white); }
.hero-sub { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 620px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 1.5em; }

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px 50px;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-sand);
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section-tint { background: #f1ede4; }
.section-dark {
  background: var(--color-deep);
  color: var(--color-white);
}
.section-dark h2 { color: var(--color-white); }
.section-dark p { color: rgba(255,255,255,0.82); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-lead { font-size: 1.05rem; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.about-card h3 { margin-bottom: 0.6em; }

/* ---------- Standard section ---------- */
.standard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ---------- Cards / Services ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.card-index {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-sand);
  display: block;
  margin-bottom: 12px;
}

.card-tag {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-blue-light);
  margin-bottom: 0.8em;
}

/* ---------- Destinations ---------- */
.destinations-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 820px;
  margin: 0 auto;
}

.destinations-group h3 {
  margin-bottom: 0.8em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid var(--color-sand);
}

.destinations-list li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--color-line);
  font-weight: 600;
  color: var(--color-ink);
}
.destinations-list li:last-child { border-bottom: none; }

/* ---------- Commitments ---------- */
.commitments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.commitment {
  text-align: center;
  padding: 20px;
}

.commitment-icon {
  font-size: 2.2rem;
  margin-bottom: 0.4em;
}

.offices-grid {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid var(--color-line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.office h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-deep);
  margin: 0 0 0.4em;
}

.office-role {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0;
}

/* ---------- CTA / Contact ---------- */
.cta-section { text-align: center; }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-lead { font-size: 1.05rem; margin-bottom: 1.8em; }

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.4em;
}

.cta-hours {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0a2f46;
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand .logo { color: var(--color-white); }
.footer-brand .logo span { color: var(--color-sand); }
.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 14px; }
.footer-offices {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.5) !important;
  margin-top: 6px !important;
}

.footer-btn {
  display: inline-block;
  margin-top: 22px;
  padding: 10px 20px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-white) !important;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--color-sand);
}

.footer-hours {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2em;
}
.footer-col a {
  display: block;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--color-sand); }

.footer-bottom {
  padding: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 900px) {
  .about-grid,
  .standard-grid { grid-template-columns: 1fr; gap: 32px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .commitments-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--color-line);
    display: none;
    gap: 18px;
  }
  .main-nav.open { display: flex; }
  .nav-cta { margin-top: 8px; }
  .nav-toggle { display: flex; }

  .cards-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; gap: 28px; }
  .destinations-wrap { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .hero-stats { gap: 28px; }
}
