/* ===========================================================================
   VOYAGE ELITE — brand design system
   Palette derived from the logo: deep navy, marine teal/blue, gold accent.
   Load "Poppins" (600/700) for headings and "Inter" for body in Astra →
   Global → Typography for the intended look; stacks below are fallbacks.
   =========================================================================== */
:root {
	/* Brand */
	--navy:      #0B2A47;   /* headings, dark sections */
	--navy-800:  #0E3357;
	--navy-900:  #071E33;   /* footer base */
	--teal:      #2E7D8F;   /* primary accent / teal buttons */
	--teal-600:  #24697a;
	--blue:      #1F9FD6;   /* logo swoosh accent, links, highlights */
	--gold:      #C7A24B;   /* fine accents, hairlines */

	/* Neutrals */
	--bg:        #F4F7FB;   /* light section background */
	--surface:   #FFFFFF;
	--ink:       #10243A;   /* body text on light */
	--muted:     #5E7183;
	--line:      #E3E9F0;
	--star:      #cbd5e1;

	/* System */
	--radius:    14px;
	--radius-sm: 8px;
	--shadow:    0 10px 30px rgba(11, 42, 71, .08);
	--shadow-lg: 0 18px 44px rgba(11, 42, 71, .16);
	--container: 1200px;
	--space:     clamp(56px, 8vw, 96px);   /* vertical section rhythm */
	--font-head: "Poppins", "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Base ---------------------------------------------------------------------- */
body.ve-page, .ve-scope { color: var(--ink); font-family: var(--font-body); }
.ve-scope *, .ve-scope *::before, .ve-scope *::after { box-sizing: border-box; }
.ve-container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.ve-narrow { max-width: 820px; }

.ve-h1, .ve-h2, .ve-h3, .ve-scope h1, .ve-scope h2, .ve-scope h3 { font-family: var(--font-head); color: var(--navy); line-height: 1.12; letter-spacing: -.01em; }
.ve-h1 { font-size: clamp(2.3rem, 5vw, 3.4rem); font-weight: 700; margin: 0 0 14px; }
.ve-h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 700; margin: 0 0 12px; }
.ve-h3 { font-size: 1.2rem; font-weight: 600; margin: 0 0 8px; }
.ve-lead { font-size: 1.06rem; color: var(--muted); line-height: 1.65; max-width: 60ch; }
.ve-center { text-align: center; }
.ve-center .ve-lead { margin-inline: auto; }

/* Eyebrow with gold hairline (a nod to the logo's gold arc) --------------- */
.ve-eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--teal);
	font-family: var(--font-head); font-size: .78rem; font-weight: 600; letter-spacing: .16em;
	text-transform: uppercase; margin: 0 0 10px; }
.ve-eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }
.ve-center .ve-eyebrow::after { content: ""; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }

/* Buttons ------------------------------------------------------------------- */
.ve-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-family: var(--font-head); font-weight: 600; font-size: .95rem; line-height: 1;
	padding: 14px 26px; border: 0; border-radius: var(--radius-sm); cursor: pointer;
	text-decoration: none; transition: transform .15s ease, background .15s ease, box-shadow .15s ease; }
.ve-btn:hover { transform: translateY(-2px); }
.ve-btn--navy  { background: var(--navy); color: #fff; }
.ve-btn--navy:hover  { background: var(--navy-800); color: #fff; box-shadow: var(--shadow); }
.ve-btn--teal  { background: var(--teal); color: #fff; }
.ve-btn--teal:hover  { background: var(--teal-600); color: #fff; box-shadow: var(--shadow); }
.ve-btn--ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.ve-btn--ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.ve-btn--block { width: 100%; }
.ve-btn--sm { padding: 10px 18px; font-size: .85rem; }

.ve-link { color: var(--teal); font-family: var(--font-head); font-weight: 600; font-size: .85rem;
	letter-spacing: .04em; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.ve-link:hover { color: var(--teal-600); gap: 10px; }

/* Forms --------------------------------------------------------------------- */
.ve-form label { display: block; font-family: var(--font-head); font-size: .72rem; font-weight: 600;
	letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.ve-form input, .ve-form select, .ve-form textarea { display: block; width: 100%; margin-top: 6px;
	border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px;
	font-family: var(--font-body); font-size: .95rem; color: var(--ink); background: #fff; }
.ve-form input:focus, .ve-form select:focus, .ve-form textarea:focus { outline: 2px solid var(--teal); outline-offset: 1px; border-color: var(--teal); }
.ve-form__note { font-size: .78rem; color: var(--muted); margin-top: 10px; }

/* Section backgrounds ------------------------------------------------------- */
.ve-section { padding: var(--space) 0; }
.ve-section--tint { background: var(--bg); }
.ve-section--navy { background: var(--navy); color: #fff; }
.ve-section--navy .ve-h2 { color: #fff; }

/* Accessibility ------------------------------------------------------------- */
.ve-btn:focus-visible, .ve-link:focus-visible, .ve-pill:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
