/* =====================================================================
   GREEKTOPIA — Master Stylesheet
   Style: Modern & Bold | Palette: Electric Blue, White & Near-Black
   ---------------------------------------------------------------------
   This one file controls the look of the WHOLE site. If you want to
   change a color or font everywhere at once, edit the variables in the
   ":root" block just below.
   ===================================================================== */

/* ---- 1. BRAND VARIABLES (edit these to re-theme the site) ---- */
:root {
  /* NOTE: variable names still say "gold"/"black" so the rest of the file keeps
     working, but the VALUES below are an ELECTRIC BLUE + WHITE + NEAR-BLACK
     palette, tuned to match the HiFi Travel / All Roads Travel look.
     Change these values to re-theme the whole site. */
  --black:        #17181c;   /* near-black — hero overlay, footer, dark bands */
  --black-soft:   #24262c;   /* charcoal panels */
  --ink:          #17181c;   /* near-black text on light backgrounds */
  --white:        #ffffff;
  --cream:        #f4f6f9;   /* clean light-grey section background */
  --gold:         #1863dc;   /* primary electric-blue accent (HiFi blue) */
  --gold-light:   #4a86e8;   /* lighter blue for gradients/hover */
  --gold-deep:    #0056a7;   /* deeper blue for links/labels on white */
  --on-accent:    #ffffff;   /* white text that sits ON the blue button */
  --grey:         #565c66;   /* muted slate text (darkened for WCAG AA contrast on white + tinted bands) */
  /* RGB triplets so translucent glows & photo overlays follow the palette too.
     Keep these in sync with --gold and --black above when you re-theme. */
  --accent-rgb:   24,99,220;    /* = --gold  (button/step glows) */
  --dark-rgb:     23,24,28;      /* = --black (hero veil, photo overlays) */
  --line:         rgba(255,255,255,0.14); /* subtle dividers on dark bands */

  --font-head: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --maxw: 1180px;            /* max content width */
  --radius: 14px;
}

/* ---- 2. RESETS & BASE ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

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

/* Gold "eyebrow" label above headings */
.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.eyebrow.on-dark { color: var(--gold-light); }

/* ---- 3. BUTTONS / CALLS TO ACTION ---- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 16px 34px;
  border-radius: 60px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--on-accent);
  box-shadow: 0 10px 30px rgba(var(--accent-rgb),0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(var(--accent-rgb),0.5); }
.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--black); transform: translateY(-3px); }
.btn-outline.on-light { border-color: var(--ink); color: var(--ink); }
.btn-outline.on-light:hover { background: var(--ink); color: var(--white); }

/* =====================================================================
   4. HEADER  (logo top-left  +  "Menu" label + hamburger top-right)
   ===================================================================== */
/* Floating, frosted, rounded "pill" nav — compact and CENTERED (HiFi style) */
.site-header {
  position: fixed;
  top: 16px; left: 0; right: 0;
  margin: 0 auto;
  width: calc(100% - 44px);
  max-width: 1120px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 10px 8px 22px;
  border-radius: 50px;
  background: rgba(255,255,255,0.72);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 10px 34px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.55);
  transition: background .3s ease, box-shadow .3s ease, top .3s ease;
}
/* Slightly more opaque on inner pages / when scrolled so it stays readable */
.site-header.solid { background: rgba(255,255,255,0.82); border-color: rgba(0,0,0,0.06); }
.site-header.scrolled { background: rgba(255,255,255,0.92); }
@media (max-width: 600px) { .site-header { top: 10px; width: calc(100% - 24px); padding: 8px 10px 8px 18px; } }

/* Inline nav links in the centre of the pill (desktop) */
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links > a,
.nav-dropdown-toggle {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink);
  white-space: nowrap;
  transition: color .2s ease;
  background: none; border: none; cursor: pointer; padding: 0;
  display: inline-flex; align-items: center; gap: 5px;
}
.nav-links > a:hover,
.nav-dropdown-toggle:hover { color: var(--gold-deep); }

/* "Services" dropdown */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-dropdown-toggle .caret { font-size: 0.62rem; transition: transform .2s ease; }
.nav-item:hover .nav-dropdown-toggle .caret,
.nav-item.open .nav-dropdown-toggle .caret { transform: rotate(180deg); }
/* invisible bridge so the mouse can travel from label to menu without closing */
.nav-item::after { content: ""; position: absolute; top: 100%; left: -10px; right: -10px; height: 16px; }
.nav-dropdown {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(14px);
  margin-top: 10px;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.14);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0; visibility: hidden;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 1200;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.open .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(6px); }
.nav-dropdown a {
  padding: 11px 14px;
  border-radius: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--cream); color: var(--gold-deep); }

/* Show inline links on wide screens, hamburger on narrow screens.
   (Higher-specificity selector so it beats the base .menu-trigger rule.) */
@media (min-width: 1041px) { .site-header .menu-trigger { display: none; } }
@media (max-width: 1040px) { .site-header .nav-links { display: none; } }

.brand { display: flex; align-items: center; gap: 12px; z-index: 1100; }
/* Brand logo art is white; render it dark on the light nav */
.brand img { height: 26px; width: auto; display: block; filter: brightness(0); }
@media (max-width: 600px) { .brand img { height: 26px; } }
@media (max-width: 380px) { .brand img { height: 22px; } }
/* Text fallback logo (used until you drop in your real logo file) */
.brand .logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.brand .logo-text span { color: var(--gold); }

/* Menu trigger: the word "Menu" to the LEFT of the 3-line icon */
.menu-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.menu-trigger .menu-label {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: var(--ink);
}
.menu-trigger .bars { display: inline-block; width: 30px; height: 18px; position: relative; }
.menu-trigger .bars span {
  position: absolute; left: 0; height: 2.5px; width: 100%;
  background: var(--gold); border-radius: 2px;
  transition: transform .35s ease, opacity .25s ease, width .35s ease;
}
.menu-trigger .bars span:nth-child(1) { top: 0; }
.menu-trigger .bars span:nth-child(2) { top: 8px; width: 70%; }
.menu-trigger .bars span:nth-child(3) { top: 16px; }

/* ---- The dropdown / overlay menu ---- */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .4s ease, transform .4s ease, visibility .4s;
}
.menu-overlay.open { opacity: 1; visibility: visible; transform: translateY(0); }
.menu-overlay a {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  padding: 6px 0;
  position: relative;
  transition: color .25s ease, transform .25s ease;
}
.menu-overlay a:hover { color: var(--gold); transform: translateX(8px); }
.menu-overlay .menu-foot {
  margin-top: 38px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--grey);
  letter-spacing: 0.05em;
}
.menu-overlay .menu-foot a { font-size: 0.95rem; font-family: var(--font-body); font-weight: 600; color: var(--gold-deep); }

/* When menu is open, morph hamburger into an X */
body.menu-open .menu-trigger .bars span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .menu-trigger .bars span:nth-child(2) { opacity: 0; }
body.menu-open .menu-trigger .bars span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); width: 100%; }

/* =====================================================================
   5. HOME PAGE — full-screen video hero
   ===================================================================== */
/* Full-bleed video hero with the headline overlaid on top (HiFi style) */
.hero {
  position: relative;
  height: 90vh;
  min-height: 580px;
  width: 100%;
  display: flex;
  align-items: center;         /* vertically center the overlaid headline */
  overflow: hidden;
  background: var(--black);     /* shows briefly before the video loads */
}
@keyframes heroShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-blur { display: none; }   /* no longer used */
/* Photo background — fills the whole hero, crops edges as needed */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--black);     /* dark fill behind the photo */
  background-size: contain;           /* zoomed out — show the whole photo */
  background-position: center;
  background-repeat: no-repeat;
}
.hero video,
.hero .hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* fill the whole hero, crop edges as needed */
  object-position: center;
  z-index: 0;
}
/* Dark veil so text stays readable over any video */
/* Dark scrim (stronger on the left) so the overlaid headline stays readable */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.62), rgba(0,0,0,0.30) 50%, rgba(0,0,0,0.05));
  z-index: 1;
  pointer-events: none;
}
/* Headline + buttons overlaid on the video, left-aligned like HiFi */
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw);
  margin: 0 auto; padding: 0 40px;
  text-align: left;
}
.hero-kicker {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: clamp(0.72rem, 1.5vw, 0.92rem);
  color: #ffffff;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-kicker::before {
  content: ""; width: 34px; height: 2px; background: var(--gold-light); display: inline-block;
}
.hero-content h1 {
  color: #ffffff;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.45);
  max-width: 15ch;
}
.hero-content h1 .accent { color: #ffffff; }
.hero-events {
  margin-top: 20px;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: clamp(0.72rem, 1.8vw, 0.98rem);
  color: rgba(255,255,255,0.92);
}
.hero-events span { color: rgba(255,255,255,0.6); margin: 0 6px; }
.hero-cta { margin-top: 36px; display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }
/* Secondary button reads white over the video */
.hero-content .btn-outline { border-color: rgba(255,255,255,0.85); color: #ffffff; }
.hero-content .btn-outline:hover { background: #ffffff; color: var(--ink); }

/* Scroll hint at the bottom of the hero */
.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.8);
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint .dot { width: 2px; height: 36px; background: linear-gradient(#ffffff, transparent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:.3;} 50%{opacity:1;} }

/* =====================================================================
   6. INNER PAGE HEROES (event pages, about, plan now)
   ===================================================================== */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  background: var(--cream);          /* light band, not a dark photo */
  color: var(--ink);
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.page-hero .ph-bg { display: none; }   /* photos now live in the sections below */
.page-hero::after { display: none; }
.page-hero .container { position: relative; z-index: 2; padding-top: 130px; padding-bottom: 60px; }
.page-hero .eyebrow.on-dark { color: var(--gold-deep); }   /* blue on the light band */
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); color: var(--ink); }
.page-hero p { max-width: 620px; margin-top: 18px; color: var(--grey); font-size: 1.1rem; }

/* =====================================================================
   7. GENERIC SECTIONS
   ===================================================================== */
section { padding: 90px 0; }
/* "section-dark" is now a LIGHT tinted band (kept the name so markup still works) */
.section-dark { background: #eef2f9; color: var(--ink); }
.section-cream { background: var(--cream); }
.section-head { max-width: 720px; margin-bottom: 50px; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 16px; color: var(--grey); font-size: 1.1rem; }
.section-dark .section-head p { color: var(--grey); }

.lead { font-size: 1.15rem; }

/* Two-column feature row (text + image) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-text { order: 2; }
.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.18); }
.split-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split-text h3 { font-size: 2rem; margin-bottom: 16px; }
.split-text ul { list-style: none; margin-top: 20px; }
.split-text ul li { padding-left: 30px; position: relative; margin-bottom: 12px; }
.split-text ul li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

/* Card grid (services / features) */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(0,0,0,0.1); border-color: var(--gold); }
.section-dark .card { background: var(--white); border-color: rgba(0,0,0,0.07); }
.card .num { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--gold); margin-bottom: 14px; }
.card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.card p { color: var(--grey); }
.section-dark .card p { color: var(--grey); }
.card .card-link { display: inline-block; margin-top: 18px; color: var(--gold-deep); font-weight: 700; font-family: var(--font-head); font-size: 0.9rem; }
.section-dark .card .card-link { color: var(--gold-deep); }

/* Stats strip */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.stats .stat .big { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem,5vw,3.6rem); color: var(--gold-deep); }
.stats .stat .label { text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.8rem; color: var(--grey); margin-top: 6px; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid .g-item { border-radius: 10px; overflow: hidden; aspect-ratio: 1/1; }
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-grid .g-item:hover img { transform: scale(1.08); }

/* Our Work — masonry gallery */
.work-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 0 34px; }
.work-filter { border: 1.5px solid rgba(0,0,0,0.14); background: #fff; color: var(--ink); font-family: var(--font-head, Montserrat, sans-serif); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.02em; padding: 9px 18px; border-radius: 999px; cursor: pointer; transition: all .18s ease; }
.work-filter:hover { border-color: var(--gold, #1863dc); color: var(--gold-deep, #0056a7); }
.work-filter.active { background: var(--gold, #1863dc); border-color: var(--gold, #1863dc); color: #fff; }
.work-masonry { columns: 3; column-gap: 16px; }
.work-tile { position: relative; break-inside: avoid; margin: 0 0 16px; border-radius: 14px; overflow: hidden; display: block; }
.work-tile img { width: 100%; height: auto; display: block; transition: transform .5s ease; }
.work-tile:hover img { transform: scale(1.06); }
.work-tile .work-cap { position: absolute; inset: auto 0 0 0; padding: 26px 16px 14px; background: linear-gradient(to top, rgba(10,12,20,0.82), rgba(10,12,20,0)); color: #fff; opacity: 0; transform: translateY(8px); transition: all .28s ease; }
.work-tile:hover .work-cap { opacity: 1; transform: translateY(0); }
.work-cap .work-tag { display: inline-block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; background: var(--gold, #1863dc); color: #fff; padding: 3px 9px; border-radius: 999px; margin-bottom: 6px; }
.work-cap .work-name { font-family: var(--font-head, Montserrat, sans-serif); font-weight: 700; font-size: 1rem; }
.work-tile.is-hidden { display: none; }
@media (max-width: 900px) { .work-masonry { columns: 2; } }
@media (max-width: 560px) { .work-masonry { columns: 1; } }

/* Testimonials */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.quote {
  background: var(--white); border-radius: var(--radius); padding: 34px 30px;
  border-top: 4px solid var(--gold); box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.quote .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }
.quote p { font-style: italic; color: var(--ink); margin-bottom: 18px; }
.quote .who { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; }
.quote .who span { display: block; color: var(--grey); font-weight: 500; font-size: 0.85rem; }

/* Big call-to-action band — brand blue with a white button */
.cta-band { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); text-align: center; }
.cta-band h2 { color: var(--white); font-size: clamp(2rem,5vw,3.2rem); }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 16px auto 34px; }
.cta-band .btn-gold { background: #ffffff; color: var(--gold-deep); }
.cta-band .btn-gold:hover { background: #ffffff; box-shadow: 0 16px 40px rgba(0,0,0,0.2); }

/* =====================================================================
   8. CONTACT / PLAN NOW FORM
   ===================================================================== */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-form { display: grid; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.03em; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem;
  padding: 14px 16px; border: 1.5px solid rgba(0,0,0,0.15); border-radius: 10px;
  background: var(--white); transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(var(--accent-rgb),0.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-side .info-block { margin-bottom: 28px; }
.form-side .info-block .label { font-family: var(--font-head); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.78rem; color: var(--gold-deep); margin-bottom: 6px; }
.form-side .info-block a { color: var(--ink); font-size: 1.1rem; font-weight: 600; }
.form-note { font-size: 0.85rem; color: var(--grey); }

/* =====================================================================
   9. FOOTER
   ===================================================================== */
.site-footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 70px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer-top .logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--white); }
.footer-top .logo-text span { color: var(--gold); }
.footer-top .footer-logo { height: 30px; width: auto; margin-bottom: 10px; }
.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; letter-spacing: 0.05em; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li a:hover { color: var(--gold-light); }
.site-footer .tagline { margin-top: 14px; max-width: 320px; font-size: 0.95rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 0.85rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: var(--gold-light); }
.states { color: var(--gold-light); font-family: var(--font-head); font-weight: 600; letter-spacing: 0.05em; }

/* =====================================================================
   10. SCROLL-IN ANIMATION
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================================================================
   11. MOBILE / RESPONSIVE
   ===================================================================== */
@media (max-width: 900px) {
  .split, .form-wrap { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-text { order: 0; }
  .grid-3, .quote-grid, .stats { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .site-header { padding: 16px 22px; }
  section { padding: 64px 0; }
}
@media (max-width: 520px) {
  .field.row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; text-align: center; }
  .menu-trigger .menu-label { display: none; } /* keep just the icon on tiny screens */
}

/* =====================================================================
   12. COMPETITOR-INSPIRED ADDITIONS
   ===================================================================== */

/* Nav right group + persistent CTA button */
.nav-right { display: flex; align-items: center; gap: 16px; z-index: 1100; }
.btn-nav { padding: 10px 20px; font-size: 0.8rem; }
@media (max-width: 600px) { .btn-nav { display: none; } } /* Menu already has Start Planning */

/* How It Works — process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { text-align: center; padding: 10px; }
.step-ico {
  width: 64px; height: 64px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.5rem;
  box-shadow: 0 10px 24px rgba(var(--accent-rgb),0.3);
}
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: var(--grey); font-size: 0.97rem; }

/* Why Greektopia — trust pillars */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pillar {
  background: var(--white); border: 1px solid rgba(0,0,0,0.07); border-radius: var(--radius);
  padding: 34px 26px; text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(0,0,0,0.1); border-color: var(--gold); }
.pillar-ico {
  width: 56px; height: 56px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center;
  border-radius: 14px; background: var(--cream); color: var(--gold-deep); font-size: 1.4rem; font-weight: 800;
}
.pillar h3 { font-size: 1.15rem; margin-bottom: 10px; }
.pillar p { color: var(--grey); font-size: 0.95rem; }

/* Destinations grid */
.dest-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.dest-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; display: block; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.dest-card:hover img { transform: scale(1.08); }
.dest-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(var(--dark-rgb),0.75)); }
.dest-label {
  position: absolute; left: 0; right: 0; bottom: 16px; z-index: 2; text-align: center;
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.02em;
}

/* Schools marquee */
.marquee-section { padding: 44px 0; background: #ffffff; overflow: hidden; border-bottom: 1px solid rgba(0,0,0,0.06); }
.marquee-head { text-align: center; color: var(--grey); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.8rem; font-family: var(--font-head); font-weight: 700; margin-bottom: 28px; }
.marquee { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: inline-flex; align-items: center; gap: 56px; white-space: nowrap; animation: marquee 40s linear infinite; }
.marquee-track span { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--ink); opacity: 0.5; }
.marquee-track img { height: 62px; width: auto; max-width: 96px; object-fit: contain; display: block; transition: transform .2s ease, filter .2s ease; }
.marquee-track img:hover { transform: scale(1.08); }
.marquee-disclaimer { text-align: center; color: var(--grey); font-size: 0.72rem; line-height: 1.5; max-width: 960px; margin: 26px auto 0; opacity: 0.85; text-wrap: balance; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Responsive for new sections */
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .marquee-track span { font-size: 1.1rem; }
  .marquee-track img { height: 50px; max-width: 78px; }
}

/* =====================================================================
   13. FAQ (accordion) — used on faq.html
   ===================================================================== */
/* A narrower column keeps long-form Q&A easy to read */
.container-narrow { max-width: 820px; }

.faq-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item[open] { border-color: var(--gold); box-shadow: 0 14px 34px rgba(0,0,0,0.07); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
/* Plus / minus indicator drawn in brand blue */
.faq-item summary::after {
  content: "+";
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gold-deep);
  transition: transform .25s ease;
  flex: 0 0 auto;
}
.faq-item[open] summary::after { content: "\2013"; } /* en dash = minus */
.faq-item summary:hover { color: var(--gold-deep); }
.faq-a { padding: 0 26px 24px; }
.faq-a p { color: var(--grey); font-size: 1rem; line-height: 1.7; }
.faq-a a { color: var(--gold-deep); font-weight: 600; }
@media (max-width: 520px) {
  .faq-item summary { padding: 18px 18px; font-size: 1rem; }
  .faq-a { padding: 0 18px 20px; }
}

/* =====================================================================
   14. BLOG (index cards + article prose) & CAREERS
   ===================================================================== */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card {
  background: #fff; border: 1px solid rgba(0,0,0,0.07); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(0,0,0,0.1); }
.post-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.post-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.post-cat { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; color: var(--gold-deep); margin-bottom: 10px; }
.post-card h3 { font-size: 1.2rem; line-height: 1.25; margin-bottom: 10px; }
.post-card p { color: var(--grey); font-size: 0.95rem; flex: 1; }
.post-card .card-link { margin-top: 16px; color: var(--gold-deep); font-weight: 700; font-family: var(--font-head); font-size: 0.9rem; }
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr; } }

/* Article body */
.prose { max-width: 760px; margin: 0 auto; }
.prose > p { color: var(--ink); font-size: 1.08rem; line-height: 1.8; margin-bottom: 20px; }
.prose h2 { font-size: 1.55rem; margin: 38px 0 14px; }
.prose h3 { font-size: 1.2rem; margin: 26px 0 10px; }
.prose ul, .prose ol { margin: 0 0 22px 22px; }
.prose li { margin-bottom: 10px; color: var(--ink); line-height: 1.7; }
.prose a { color: var(--gold-deep); font-weight: 600; text-decoration: underline; }
.prose .lead { font-size: 1.2rem; color: var(--ink); }
.article-meta { color: var(--grey); font-size: 0.92rem; margin-top: 14px; }

/* Careers roles */
.role { background: #fff; border: 1px solid rgba(0,0,0,0.07); border-radius: var(--radius); padding: 30px 28px; }
.role .role-tag { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; color: var(--gold-deep); margin-bottom: 10px; }
.role h3 { font-size: 1.25rem; margin-bottom: 10px; }
.role p { color: var(--grey); font-size: 0.97rem; }

/* =====================================================================
   ACCESSIBILITY + CLIENT-LOGIN NAV (added in audit cleanup pass)
   ===================================================================== */

/* Client Login link in the header nav */
.nav-login {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 6px;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.nav-login:hover { color: var(--gold-deep); }
/* When the header sits transparent over the hero video, keep it readable */
.site-header.over-hero:not(.scrolled) .nav-login { color: #fff; }

/* Visible keyboard focus ring for every interactive control */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Legal disclaimer must stay fully legible */
.marquee-disclaimer { opacity: 1; }

/* Respect users who prefer reduced motion: show content, stop the marquee */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none !important; }
}

/* On phones the pill is tight — Client Login lives in the menu overlay instead */
@media (max-width: 720px) { .nav-login { display: none; } }

/* ===================== VEGAS PAGE: photo hero + photo band ===================== */
.page-hero.photo-hero { background: var(--black); }
.page-hero.photo-hero .ph-bg {
  display: block; position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.page-hero.photo-hero::after {
  content: ""; display: block; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(23,24,28,0.55), rgba(23,24,28,0.82));
}
.page-hero.photo-hero .container { position: relative; z-index: 2; }
.page-hero.photo-hero h1 { color: #fff; }
.page-hero.photo-hero p { color: rgba(255,255,255,0.9); }
.page-hero.photo-hero .eyebrow.on-dark { color: var(--gold-light); }

/* Full-width photo band */
.photo-band {
  position: relative; min-height: 340px;
  background-size: cover; background-position: center;
  display: flex; align-items: center;
}
.photo-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,24,28,0.35), rgba(23,24,28,0.55));
}
.photo-band .container { position: relative; z-index: 2; text-align: center; }
.photo-band p {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem); color: #fff; letter-spacing: -0.01em;
}
@media (max-width: 600px) { .photo-band { min-height: 240px; } }

/* ===================== FOOTER SOCIAL + CONTACT ===================== */
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08); color: #fff;
  transition: background .2s ease, transform .2s ease;
}
.footer-social a:hover { background: var(--gold); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-contact { margin-top: 18px; display: flex; flex-direction: column; gap: 7px; }
.footer-contact a { color: rgba(255,255,255,0.72); font-size: 0.93rem; }
.footer-contact a:hover { color: #fff; }
