:root {
  --navy: #082633;
  --navy-soft: #103846;
  --sea: #1e746f;
  --mint: #dcece6;
  --cream: #f7f4ed;
  --paper: #ffffff;
  --coral: #df765c;
  --ink: #112f38;
  --muted: #60747a;
  --line: #d9e0de;
  --shadow: 0 24px 60px rgba(8, 38, 51, .1);
  --radius: 24px;
  --page: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input, textarea { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.honey { position: absolute !important; left: -9999px !important; }

.brand {
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -.05em;
}
.brand span { font-weight: 750; }
.brand small { font-size: .68em; color: var(--muted); }

.site-header {
  width: var(--page);
  height: 84px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.site-header nav { display: flex; gap: 30px; }
.site-header nav a {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}
.site-header nav a:hover { color: var(--ink); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 18px; }
.language { display: flex; gap: 5px; align-items: center; color: var(--muted); }
.language button { padding: 5px; border: 0; color: var(--muted); background: none; cursor: pointer; }
.language button.active { color: var(--ink); font-weight: 750; }
.research-link {
  padding: 11px 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
  transition: .2s;
}
.research-link:hover { color: white; background: var(--ink); }

.hero { padding: 30px 0 100px; }
.hero-inner {
  width: var(--page);
  min-height: 650px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .88fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: center;
}
.hero-content { padding: 50px 0; }
.eyebrow, .section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--sea);
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow span { width: 34px; height: 2px; background: var(--coral); }
.eyebrow b, .section-label b { font-weight: inherit; }
.hero h1 {
  max-width: 670px;
  margin: 24px 0;
  font-size: clamp(3.4rem, 6vw, 5.5rem);
  font-weight: 650;
  letter-spacing: -.065em;
  line-height: .98;
}
.hero-copy {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.7;
}
.inline-form { max-width: 620px; margin-top: 38px; }
.text-label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 750;
}
.email-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}
.email-row input {
  min-width: 0;
  height: 54px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink);
  background: white;
  outline: none;
}
.email-row input:focus { border-color: var(--sea); box-shadow: 0 0 0 4px rgba(30,116,111,.1); }
.email-row button, .send {
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: white;
  background: var(--sea);
  font-weight: 750;
  cursor: pointer;
  transition: transform .2s, background .2s;
}
.email-row button:hover, .send:hover { background: #155f5b; transform: translateY(-1px); }
.email-row button i, .send i { font-size: 1.2em; font-style: normal; }
.email-row button:disabled, .send:disabled { opacity: .6; cursor: wait; transform: none; }
.consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-top: 11px;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.5;
}
.consent input { margin-top: 2px; accent-color: var(--sea); }
.form-status { min-height: 1.3em; margin: 10px 0 0; font-size: .85rem; }
.form-status.success { color: #28745b; }
.form-status.error, .error { color: #b94c38; }
.hero-points {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
}
.hero-points li { color: var(--muted); font-size: .9rem; }
.hero-points li::before { content: "✓"; margin-right: 8px; color: var(--sea); font-weight: 800; }
.hero-visual {
  min-height: 650px;
  position: relative;
  border-radius: 32px;
  background: linear-gradient(180deg, transparent 60%, rgba(8,38,51,.55)), url('travelnet-hero.png') 69% center / cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.visual-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: white;
  background: rgba(8,38,51,.55);
  backdrop-filter: blur(12px);
}
.visual-note span { font-size: .88rem; }
.visual-note strong { font-size: .9rem; }

.section { padding: 110px 0; }
.section > * { position: relative; }
.section-label { align-self: start; }
.section-label span {
  min-width: 32px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--coral);
  color: var(--coral);
  font-size: .75rem;
}
.kicker {
  margin: 0 0 16px;
  color: var(--sea);
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.vision {
  width: var(--page);
  display: grid;
  grid-template-columns: 150px minmax(320px, 1.25fr) minmax(260px, .75fr);
  gap: clamp(38px, 6vw, 90px);
}
.vision h2, .updates h2, .contact h2, .legal h1, .admin h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4.5vw, 4.25rem);
  font-weight: 620;
  letter-spacing: -.055em;
  line-height: 1.08;
}
.vision-note { padding-top: 35px; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.vision-note p { margin: 0; }
.vision-note p + p { margin-top: 24px; }

.updates {
  padding-right: max(24px, calc((100% - 1180px) / 2));
  padding-left: max(24px, calc((100% - 1180px) / 2));
  color: white;
  background: var(--navy);
}
.updates .section-label, .updates .kicker { color: #8ed0c8; }
.updates-heading { max-width: 760px; margin: 50px 0 54px; }
.updates-heading .kicker { margin-bottom: 18px; }
.update-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.update-grid article {
  min-height: 330px;
  padding: 30px;
  position: relative;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
}
.stage { color: #8ed0c8; font-size: .76rem; font-weight: 700; }
.number { position: absolute; top: 24px; right: 27px; color: rgba(255,255,255,.13); font-size: 2.1rem; }
.update-grid h3 { margin: 72px 0 15px; font-size: 1.45rem; }
.update-grid p { margin: 0; color: rgba(255,255,255,.66); font-size: .95rem; line-height: 1.65; }
.line { height: 3px; margin-top: 31px; border-radius: 9px; background: rgba(255,255,255,.1); overflow: hidden; }
.line i { display: block; height: 100%; background: var(--coral); }
.update-date { margin: 25px 0 0; color: rgba(255,255,255,.5); font-size: .82rem; text-align: right; }

.contact {
  padding-right: max(24px, calc((100% - 1180px) / 2));
  padding-left: max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
  gap: clamp(55px, 9vw, 120px);
  align-items: start;
  background: #e9e3d8;
}
.contact-intro .section-label { margin-bottom: 55px; }
.contact-intro h2 { margin-bottom: 24px; }
.contact-intro > p:not(.kicker) { max-width: 560px; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.contact-intro > a { display: inline-block; margin-top: 20px; font-weight: 750; text-underline-offset: 5px; }
.contact-form { padding: 40px; border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.contact-form label:not(.consent), .login label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}
.contact-form input:not([type=checkbox]), .contact-form textarea, .login input {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  outline: none;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--sea); }
.two-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.consent.dark { margin: 5px 0 22px; }
.send { width: 100%; justify-content: space-between; }

footer {
  width: 100%;
  padding: 40px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  color: white;
  background: #051c27;
}
footer p { margin: 0; color: rgba(255,255,255,.6); font-size: .86rem; }
footer > div { justify-self: end; display: flex; gap: 22px; color: rgba(255,255,255,.65); font-size: .82rem; }
footer .brand small { color: rgba(255,255,255,.6); }

.legal, .admin { min-height: 100vh; padding: 55px 24px; color: white; background: var(--navy); }
.legal main, .admin main { max-width: 980px; margin: auto; }
.legal .brand, .admin .brand { display: inline-block; margin-bottom: 75px; }
.legal h1 { margin: 20px 0 38px; }
.legal p { max-width: 720px; color: rgba(255,255,255,.7); line-height: 1.8; }
.back-link { display: inline-block; margin-top: 30px; }
.admin-card { padding: clamp(26px, 5vw, 60px); color: var(--ink); background: white; border-radius: var(--radius); }
.admin-card h1 { margin-bottom: 36px; }
.login { max-width: 430px; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.admin-actions a { padding: 10px 14px; color: white; background: var(--navy); text-decoration: none; }
.admin-card h2 { margin-top: 38px; }
.records { display: grid; gap: 9px; }
.records article, .records details { padding: 15px; border: 1px solid var(--line); border-radius: 10px; }
.records article, .records summary { display: flex; justify-content: space-between; gap: 20px; }
.records span { color: var(--muted); font-size: .82rem; }
.records summary { cursor: pointer; }
.records details p { line-height: 1.65; }

@media (max-width: 1000px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content { max-width: 760px; padding-bottom: 0; }
  .hero-visual { min-height: 500px; }
  .vision { grid-template-columns: 1fr 1.7fr; }
  .vision-note { grid-column: 2; padding-top: 0; }
  .update-grid { grid-template-columns: 1fr; }
  .update-grid article { min-height: 250px; }
  .contact { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  footer > div { justify-self: center; }
}

@media (max-width: 650px) {
  :root { --page: min(100% - 32px, 1180px); }
  .site-header { height: 72px; }
  .research-link { display: none; }
  .hero { padding: 15px 0 70px; }
  .hero-inner { gap: 30px; }
  .hero-content { padding: 35px 0 0; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.2rem); }
  .hero-copy { font-size: 1rem; }
  .email-row { grid-template-columns: 1fr; }
  .email-row button { justify-content: space-between; }
  .hero-points { display: grid; gap: 10px; }
  .hero-visual { min-height: 430px; border-radius: 22px; }
  .visual-note { align-items: flex-start; flex-direction: column; gap: 5px; }
  .section { padding-top: 80px; padding-bottom: 80px; }
  .vision { grid-template-columns: 1fr; gap: 30px; }
  .vision-note { grid-column: auto; }
  .vision h2, .updates h2, .contact h2 { font-size: 2.5rem; }
  .updates-heading { margin: 38px 0; }
  .update-grid article { min-height: 290px; padding: 25px; }
  .contact-intro .section-label { margin-bottom: 38px; }
  .contact-form { padding: 27px 20px; border-radius: 18px; }
  .two-fields { grid-template-columns: 1fr; gap: 0; }
  footer > div { flex-direction: column; gap: 8px; }
  .records article, .records summary { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
