/* ============================================================
   ROVE CHARTERS — Master Stylesheet
   rovecharters.com.au + tours.rovecharters.com.au
   ============================================================ */

/* --- GOOGLE FONTS (add to every page <head>) ---
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap" rel="stylesheet">
*/

/* ============================================================
   1. DESIGN TOKENS
============================================================ */
:root {
  /* Palette */
  --navy:           #2B4A7A;
  --navy-deep:      #1B3260;
  --navy-mid:       #3D6399;
  --gold:           #C8963E;
  --gold-light:     #E8B96A;
  --gold-pale:      #F5E8C8;
  --terracotta:     #C05E3C;
  --terracotta-dk:  #9E4A2C;
  --sage:           #5A7A6A;
  --sage-dk:        #3F5A4C;
  --white:          #FFFFFF;
  --cream:          #FFFFFF;
  --stone:          #EEF2F7;
  --stone-dk:       #C8D3E0;
  --mid:            #8A8278;
  --charcoal:       #2C2926;
  --success:        #3A7D5A;
  --error:          #C0392B;
  --warning:        #C8963E;

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Spacing (8px grid) */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Radii */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   14px;
  --r-xl:   20px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 1px 4px rgba(43,74,122,.07);
  --sh-md: 0 4px 16px rgba(43,74,122,.09);
  --sh-lg: 0 10px 36px rgba(43,74,122,.12);
  --sh-xl: 0 20px 60px rgba(43,74,122,.15);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 400ms ease;

  /* Layout */
  --container: 1200px;
  --container-sm: 720px;
}

/* ============================================================
   2. RESET & BASE (safe subset only)
============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

/* Focus styles — never remove, replace with visible ring */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================================
   3. TYPOGRAPHY
============================================================ */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
}
h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

h1 { font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl)); }
h2 { font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl)); }
h3 { font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl)); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }

p { line-height: 1.7; }

.lead {
  font-size: var(--text-lg);
  color: var(--mid);
  line-height: 1.7;
}

.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.eyebrow--terracotta { color: var(--terracotta); }
.eyebrow--sage       { color: var(--sage); }
.eyebrow--light      { color: rgba(255,255,255,0.7); }

/* ============================================================
   4. LAYOUT
============================================================ */
.rove-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.rove-container--sm { max-width: var(--container-sm); }

.section {
  padding: var(--sp-20) 0;
}
.section--sm  { padding: var(--sp-12) 0; }
.section--lg  { padding: var(--sp-24) 0; }
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--dark .lead { color: rgba(255,255,255,0.7); }

.section--stone { background: var(--stone); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }

/* Grid helpers */
.grid { display: grid; gap: var(--sp-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* ============================================================
   5. HEADER & NAVIGATION
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

/* Section switcher bar */
.section-switcher {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section-switcher__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp-6);
  max-width: var(--container);
  margin: 0 auto;
}
.section-tabs {
  display: flex;
}
.section-tab {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.45);
  border-bottom: 2px solid transparent;
  transition: all var(--t-fast);
  text-decoration: none;
}
.section-tab:hover { color: rgba(255,255,255,.8); }
.section-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.section-tab--tours.active {
  color: #FFCDB0;
  border-bottom-color: var(--terracotta);
}
.header-contact {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.header-contact a {
  color: rgba(255,255,255,.7);
  transition: color var(--t-fast);
}
.header-contact a:hover { color: var(--gold); }

/* Main nav bar */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp-6);
  height: 68px;
  max-width: var(--container);
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}
.site-logo__mark {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  flex-shrink: 0;
}
.site-logo__text {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--white);
  line-height: 1;
}
.site-logo__text em {
  color: var(--gold);
  font-style: italic;
}
.site-logo__sub {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.4);
  font-family: var(--font-body);
  display: block;
  margin-top: 2px;
  letter-spacing: 0.06em;
}

/* Primary navigation */
.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.primary-nav__item { position: relative; }
.primary-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
  white-space: nowrap;
}
.primary-nav__link:hover,
.primary-nav__link.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.primary-nav__chevron {
  font-size: 10px;
  transition: transform var(--t-fast);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  padding: var(--sp-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--t-base);
  z-index: 200;
  border: 1px solid var(--stone);
}
.primary-nav__item:hover .dropdown,
.primary-nav__item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown__link {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-sm);
  color: var(--charcoal);
  border-radius: var(--r-md);
  transition: all var(--t-fast);
}
.dropdown__link:hover {
  background: var(--cream);
  color: var(--navy);
}

.nav-cta { margin-left: var(--sp-4); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: var(--sp-2);
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-base);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--navy-deep);
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-nav.open { display: block; }
.mobile-nav__link {
  display: block;
  padding: var(--sp-3) 0;
  font-size: var(--text-base);
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--t-fast);
}
.mobile-nav__link:hover { color: var(--gold); }
.mobile-nav__link--sub {
  padding-left: var(--sp-4);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.55);
}
.mobile-nav__cta {
  margin-top: var(--sp-5);
}

/* ============================================================
   6. FOOTER
============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  padding-top: var(--sp-16);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand__logo {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.footer-brand__logo em { color: var(--gold); font-style: italic; }
.footer-brand__desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
  max-width: 300px;
  color: rgba(255,255,255,.55);
}
.footer-socials {
  display: flex;
  gap: var(--sp-3);
}
.footer-social {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--t-fast);
}
.footer-social:hover { background: var(--gold); }

.footer-col h5 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--sp-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.55);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding: var(--sp-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-bottom p { font-size: var(--text-xs); color: rgba(255,255,255,.35); }
.footer-accreditations {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.accreditation-badge {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.12);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

/* ============================================================
   7. BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-base);
  line-height: 1;
  padding: var(--sp-4) var(--sp-7);
  border-radius: var(--r-md);
  border: 2px solid transparent;
  min-height: 48px;
  min-width: 44px;
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
  text-decoration: none;
}
.btn--sm  { font-size: var(--text-sm); padding: var(--sp-3) var(--sp-5); min-height: 40px; }
.btn--lg  { font-size: var(--text-lg); padding: var(--sp-5) var(--sp-9); min-height: 56px; }

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,150,62,.4);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn--tours {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn--tours:hover {
  background: var(--terracotta-dk);
  border-color: var(--terracotta-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,94,60,.4);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ============================================================
   8. CARDS
============================================================ */
/* Service card */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-xl);
}
.card__img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.card__img-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.card:hover .card__img-bg { transform: scale(1.04); }
.card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(27,45,79,.65));
}
.card__body { padding: var(--sp-6); }
.card__tag {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}
.card__tag--tours { color: var(--terracotta); }
.card__tag--sage  { color: var(--sage); }
.card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
}
.card__desc {
  font-size: var(--text-sm);
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: var(--sp-5);
}
.card__footer {
  padding: var(--sp-4) var(--sp-6);
  border-top: 1px solid var(--stone);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Tour card */
.tour-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-xl);
}
.tour-card__img {
  height: 190px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-4);
}
.tour-card__badge {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tour-card__badge--tc   { background: var(--terracotta); color: var(--white); }
.tour-card__badge--now  { background: var(--sage); color: var(--white); }
.tour-card__badge--grp  { background: var(--navy); color: var(--gold); }
.tour-card__date {
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tour-card__body { padding: var(--sp-5); flex: 1; display: flex; flex-direction: column; }
.tour-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}
.tour-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.tour-card__meta-item {
  font-size: var(--text-xs);
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 4px;
}
.tour-card__price {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: var(--sp-4);
  margin-top: auto;
}
.tour-card__price span {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--mid);
}

/* Fleet card */
.fleet-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-xl);
}
.fleet-card__img {
  height: 210px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.fleet-card__body { padding: var(--sp-5); }
.fleet-card__id {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gold);
  font-weight: 600;
  margin-bottom: var(--sp-1);
  letter-spacing: 0.1em;
}
.fleet-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: var(--sp-4);
}
.fleet-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.fleet-spec {
  background: var(--cream);
  border-radius: var(--r-sm);
  padding: var(--sp-2) var(--sp-3);
}
.fleet-spec__label {
  font-size: 11px;
  color: var(--mid);
  font-weight: 500;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.fleet-spec__value {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
}

/* ============================================================
   9. FORMS
============================================================ */
.form-group { margin-bottom: var(--sp-5); }
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}
.form-required { color: var(--error); margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--charcoal);
  background: var(--white);
  border: 2px solid var(--stone-dk);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  min-height: 48px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  appearance: none;
}
.form-input::placeholder  { color: var(--mid); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(27,45,79,.1);
}
.form-input.is-error  { border-color: var(--error); }
.form-input.is-valid  { border-color: var(--success); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8278' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: var(--sp-10);
  cursor: pointer;
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-hint  { font-size: var(--text-xs); color: var(--mid); margin-top: var(--sp-1); }
.form-error { font-size: var(--text-xs); color: var(--error); margin-top: var(--sp-1); }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }

.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: var(--sh-xl);
}
.form-card__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--navy);
  margin-bottom: var(--sp-2);
}
.form-card__subtitle {
  color: var(--mid);
  margin-bottom: var(--sp-8);
}

/* Step indicator */
.form-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--sp-8);
}
.form-step {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex: 1;
}
.form-step:last-child { flex: none; }
.form-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  background: var(--stone);
  color: var(--mid);
  flex-shrink: 0;
}
.form-step.active .form-step__num {
  background: var(--gold);
  color: var(--navy);
}
.form-step.done .form-step__num {
  background: var(--success);
  color: var(--white);
}
.form-step__label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--mid);
  white-space: nowrap;
}
.form-step.active .form-step__label { color: var(--navy); }
.form-step__line {
  flex: 1;
  height: 2px;
  background: var(--stone);
  margin: 0 var(--sp-2);
}
.form-step.done + .form-step .form-step__line { background: var(--success); }

/* ============================================================
   10. TRUST SIGNALS
============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--stone);
  padding: var(--sp-5) 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.trust-item__icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.trust-item__text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
}
.trust-item__text span {
  font-size: var(--text-xs);
  color: var(--mid);
}

/* ============================================================
   11. TESTIMONIALS
============================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--sh-md);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-6);
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold-pale);
  line-height: 1;
}
.testimonial-card__text {
  font-size: var(--text-base);
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
  position: relative;
  padding-top: var(--sp-8);
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: var(--text-base);
}
.testimonial-card__name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--navy);
}
.testimonial-card__meta {
  font-size: var(--text-xs);
  color: var(--mid);
}
.stars { color: var(--gold); font-size: var(--text-sm); letter-spacing: 2px; }

/* ============================================================
   12. PAGE HERO
============================================================ */
.page-hero {
  background: var(--navy);
  padding: var(--sp-20) 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 25%, rgba(200,150,62,.15) 0%, transparent 55%),
    radial-gradient(ellipse at 25% 75%, rgba(90,122,106,.1) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero--tours::before {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(192,94,60,.25) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 70%, rgba(27,45,79,.5) 0%, transparent 50%);
}
.page-hero__inner { position: relative; max-width: 640px; }
.page-hero__eyebrow { margin-bottom: var(--sp-3); }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--sp-5);
}
.page-hero__title em { color: var(--gold); font-style: italic; }
.page-hero__title--tours em { color: #FFCDB0; }
.page-hero__lead {
  font-size: var(--text-lg);
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}
.page-hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Inner page hero (smaller) */
.inner-hero {
  background: var(--navy);
  padding: var(--sp-12) 0 var(--sp-10);
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,150,62,.1) 0%, transparent 60%);
}
.inner-hero__breadcrumb {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.45);
  margin-bottom: var(--sp-3);
}
.inner-hero__breadcrumb a { color: rgba(255,255,255,.55); }
.inner-hero__breadcrumb a:hover { color: var(--gold); }
.inner-hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  color: var(--white);
  position: relative;
  margin-bottom: var(--sp-3);
}
.inner-hero__lead {
  font-size: var(--text-lg);
  color: rgba(255,255,255,.7);
  max-width: 560px;
  line-height: 1.65;
}

/* ============================================================
   13. CTA SECTIONS
============================================================ */
.cta-section {
  background: var(--navy);
  padding: var(--sp-16) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,150,62,.12) 0%, transparent 70%);
}
.cta-section__inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.cta-section__title em { color: var(--gold); font-style: italic; }
.cta-section__body {
  color: rgba(255,255,255,.7);
  font-size: var(--text-lg);
  margin-bottom: var(--sp-8);
  line-height: 1.65;
}
.cta-section__actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   14. ACCORDION / FAQ
============================================================ */
.accordion { border: 1px solid var(--stone); border-radius: var(--r-lg); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--stone); }
.accordion-item:last-child { border-bottom: none; }
.accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  background: var(--white);
  text-align: left;
  cursor: pointer;
  transition: background var(--t-fast);
  gap: var(--sp-4);
  border: none;
  font-family: var(--font-body);
}
.accordion-toggle:hover { background: var(--cream); }
.accordion-toggle__q {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
}
.accordion-toggle__icon {
  font-size: var(--text-xl);
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--t-base);
  line-height: 1;
}
.accordion-item.open .accordion-toggle__icon { transform: rotate(45deg); }
.accordion-item.open .accordion-toggle { background: var(--cream); }
.accordion-body {
  display: none;
  padding: 0 var(--sp-6) var(--sp-5);
  background: var(--cream);
  color: var(--charcoal);
  font-size: var(--text-base);
  line-height: 1.7;
}
.accordion-item.open .accordion-body { display: block; }

/* ============================================================
   15. STAT BLOCKS
============================================================ */
.stat-block {
  text-align: center;
  padding: var(--sp-6);
}
.stat-block__number {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-block__label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

/* ============================================================
   16. BREADCRUMB
============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--mid);
}
.breadcrumb a { color: var(--mid); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb__sep { color: var(--stone-dk); }

/* ============================================================
   17. NOTICE / ALERT
============================================================ */
.alert {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  border-left: 4px solid transparent;
}
.alert--info    { background: #EEF6FD; border-left-color: #2980B9; color: #1A5276; }
.alert--warning { background: #FEF7EA; border-left-color: var(--warning); color: #7A5210; }
.alert--success { background: #EFF8F3; border-left-color: var(--success); color: #2A5C3F; }
.alert--error   { background: #FEF0EE; border-left-color: var(--error); color: #8B2A22; }

/* ============================================================
   18. UTILITIES
============================================================ */
.text-center { text-align: center; }
.text-navy   { color: var(--navy); }
.text-gold   { color: var(--gold); }
.text-mid    { color: var(--mid); }
.text-white  { color: var(--white); }

.mt-2  { margin-top: var(--sp-2); }
.mt-4  { margin-top: var(--sp-4); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mt-10 { margin-top: var(--sp-10); }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-6  { margin-bottom: var(--sp-6); }
.mb-8  { margin-bottom: var(--sp-8); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ============================================================
   19. ANIMATIONS
============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease both; }
.delay-1    { animation-delay: 0.1s; }
.delay-2    { animation-delay: 0.2s; }
.delay-3    { animation-delay: 0.3s; }
.delay-4    { animation-delay: 0.4s; }

/* ============================================================
   20. RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .hamburger  { display: flex; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-switcher__inner { flex-direction: column; align-items: flex-start; gap: var(--sp-2); padding: var(--sp-2) var(--sp-6); }
  .header-contact { display: none; }
  .trust-bar__inner { gap: var(--sp-5); justify-content: flex-start; }
  .cta-section__actions { flex-direction: column; align-items: center; }
  .form-card { padding: var(--sp-6); }
  .form-steps { flex-wrap: wrap; gap: var(--sp-3); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .page-hero { padding: var(--sp-12) 0; }
  .page-hero__actions { flex-direction: column; }
  .nav-bar { padding: 0 var(--sp-4); }
  .rove-container { padding: 0 var(--sp-4); }
}



/* ============================================================
   HERO — Photo background version
   rovecharters.com.au homepage
============================================================ */
.rove-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

/* Background photo layer */
.rove-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.rove-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Kings Park angle = coach bottom-left, skyline upper-right */
  object-position: center 35%;
  display: block;
}

/* Multi-layer overlay:
   - Left: heavier dark so white text is legible over the road/coach area
   - Right: lighter so skyline & river show through beautifully
   - Bottom: slight vignette to separate from trust bar below  */
.rove-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(11, 22, 42, 0.72) 0%,
      rgba(11, 22, 42, 0.58) 35%,
      rgba(11, 22, 42, 0.30) 60%,
      rgba(11, 22, 42, 0.10) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(11, 22, 42, 0.10) 0%,
      rgba(11, 22, 42, 0.0)  60%,
      rgba(11, 22, 42, 0.55) 100%
    );
}

/* Content sits above the overlay */
.rove-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-16);
}

.rove-hero__content {
  max-width: 620px;
}

/* Gold left border accent on the content block */
.rove-hero__content::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: var(--sp-5);
}

/* Trust strip */
.rove-hero__trust {
  display: flex;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
  flex-wrap: wrap;
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.rove-hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .rove-hero {
    min-height: 520px;
  }
  .rove-hero__bg-img {
    object-position: 70% 35%;  /* shift right on mobile to show coach */
  }
  .rove-hero__overlay {
    background: rgba(11, 22, 42, 0.62);  /* solid on mobile - simpler */
  }
  .rove-hero__trust {
    gap: var(--sp-4);
  }
}

@media (max-width: 480px) {
  .rove-hero { min-height: 460px; }
  .rove-hero__trust { display: none; }
  .rove-hero__content::before { display: none; }
}


/* ============================================================
   LOGO — Real image + white header variant
============================================================ */

/* When logo image is available, show it */
.site-logo__img {
  height: 44px;
  width: auto;
  display: block;
}

/* White/light header variant (for use on white-bg sections) */
.site-header--light {
  background: #FFFFFF;
  border-bottom: 1px solid var(--stone);
  box-shadow: 0 2px 12px rgba(43,74,122,.08);
}
.site-header--light .section-switcher {
  background: #F5F8FC;
  border-bottom: 1px solid var(--stone);
}
.site-header--light .section-tab {
  color: var(--navy);
  opacity: 0.6;
}
.site-header--light .section-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
  opacity: 1;
}
.site-header--light .primary-nav__link {
  color: var(--navy);
  opacity: 0.75;
}
.site-header--light .primary-nav__link:hover,
.site-header--light .primary-nav__link.active {
  color: var(--navy);
  opacity: 1;
  background: var(--stone);
}
.site-header--light .site-logo__text { color: var(--navy); }
.site-header--light .site-logo__sub  { color: var(--mid); }
.site-header--light .hamburger span  { background: var(--navy); }
.site-header--light .header-contact  { color: var(--mid); }
.site-header--light .header-contact a { color: var(--navy); }

/* Logo container — supports both image and text fallback */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}

/* Section backgrounds — more white sections */
.section--white { background: #FFFFFF; }
.section--light { background: #F5F8FC; }  /* replaces some stone sections */

/* Stat blocks on dark band — slightly lighter bg */
.section--navy-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
}

/* Logo pill — white rounded container for logo on dark header */
.site-logo__pill {
  background: #FFFFFF;
  border-radius: var(--r-lg);
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  transition: box-shadow var(--t-fast);
}
.site-logo:hover .site-logo__pill {
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
.site-logo__img {
  height: 38px;
  width: auto;
  display: block;
}
/* Sub text next to logo */
.site-logo__sub {
  font-size: var(--text-xs);
  display: block;
  letter-spacing: 0.06em;
}

/* ============================================================
   HEADER — Single bar with inline contact
============================================================ */

/* nav-bar: logo | nav | contact | hamburger */
.nav-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: 0 var(--sp-6);
  height: 72px;
}

/* Push nav to centre, contact to far right */
.primary-nav { margin-left: auto; }
.header-contact-inline { margin-left: auto; }

/* Inline contact links */
.header-contact-inline {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-shrink: 0;
}
.header-contact-inline__link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--t-fast);
}
.header-contact-inline__link:hover {
  color: var(--gold-light);
}

/* Mobile: hide inline contact, show in mobile nav instead */
@media (max-width: 1024px) {
  .header-contact-inline { display: none; }
}

/* Mobile nav contact block */
.mobile-nav__contact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-6);
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: var(--sp-2);
}
.mobile-nav__contact a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: var(--text-sm);
}
.mobile-nav__contact a:hover { color: var(--gold-light); }
