:root {
  --brand-a: #1f3c48;
  --brand-b: #2f5563;
  --brand-c: #c18e4d;
  --ink-main: #152027;
  --ink-soft: #445662;
  --paper-a: #f3f1ed;
  --paper-b: #e2ddd4;
  --line-a: #cfc7bb;
  --radius-a: 6px;
  --radius-b: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'PT Sans', Arial, sans-serif;
  color: var(--ink-main);
  background: #ffffff;
  line-height: 1.68;
}

h1,
h2,
h3 {
  font-family: 'PT Serif', Georgia, serif;
  color: var(--brand-a);
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4.3vw, 3.15rem);
  line-height: 1.18;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
}

p,
li,
label,
input,
textarea,
button {
  font-size: 1.02rem;
}

a {
  color: var(--brand-b);
  text-underline-offset: 2px;
}

a:hover {
  color: var(--brand-c);
}

a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid var(--brand-c);
  outline-offset: 2px;
}

.frame {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.frame.narrow {
  width: min(860px, 92vw);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 10px;
  top: 10px;
  width: auto;
  height: auto;
  padding: 0.55rem 0.8rem;
  background: var(--ink-main);
  color: #fff;
  border-radius: var(--radius-a);
  z-index: 1000;
}

.site-header {
  border-bottom: 1px solid var(--line-a);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 25;
}

.header-grid {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.95rem 0;
}

.mini-brand {
  margin: 0;
  font-weight: 700;
  color: var(--brand-a);
}

.grouped-nav {
  display: grid;
  gap: 0.35rem;
}

.grouped-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.grouped-nav a {
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-a);
  padding: 0.15rem 0.45rem;
}

.hero {
  padding: 3.8rem 0 2.9rem;
  background: linear-gradient(180deg, #fff 0%, var(--paper-a) 100%);
}

.center-hero {
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--ink-soft);
  font-weight: 700;
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
}

.section {
  padding: 3.35rem 0;
}

.section.alt {
  background: var(--paper-a);
  border-top: 1px solid var(--paper-b);
  border-bottom: 1px solid var(--paper-b);
}

.article-band,
.cards,
.route-list,
.faq-flat {
  display: grid;
  gap: 0.9rem;
}

.article-band article,
.cards article,
.route-list article,
.faq-flat article,
.long-quote,
.contact-form,
.newsletter {
  border: 1px solid var(--line-a);
  border-radius: var(--radius-b);
  background: #fff;
  padding: 0.95rem 1rem;
}

.cards.four {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.faq-flat {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.long-quote {
  margin: 0 0 0.85rem;
}

.long-quote cite {
  color: var(--ink-soft);
  font-style: normal;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 1rem;
}

.contact-list {
  padding-left: 1rem;
}

label {
  display: block;
  margin: 0.7rem 0 0.35rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line-a);
  border-radius: var(--radius-a);
  padding: 0.65rem 0.72rem;
  background: #fff;
  color: var(--ink-main);
  font-family: inherit;
}

textarea {
  resize: vertical;
}

.honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
}

.consent input {
  width: auto;
  margin-top: 0.22rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 0.95rem;
  border-radius: var(--radius-a);
  text-decoration: none;
  font-weight: 700;
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--brand-b);
  color: var(--brand-b);
}

.btn.outline:hover {
  border-color: var(--brand-c);
  color: var(--brand-c);
}

.site-footer {
  background: var(--ink-main);
  color: #ebf0f3;
  padding: 2.1rem 0;
}

.site-footer a {
  color: #dbe8ef;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.2fr;
  gap: 1rem;
}

.footer-grid.simple {
  grid-template-columns: 1fr 1fr;
}

.footer-brand,
.footer-title {
  margin-top: 0;
  color: #fff;
  font-weight: 700;
}

.footer-grid ul {
  margin: 0;
  padding-left: 1rem;
}

.newsletter-row {
  display: flex;
  gap: 0.5rem;
}

.newsletter-row .btn {
  white-space: nowrap;
}

.cookie {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 40;
  width: min(430px, 92vw);
  border: 1px solid var(--line-a);
  border-radius: var(--radius-b);
  padding: 0.95rem;
  background: #fff;
}

.hidden {
  display: none;
}

.legal,
.thanks {
  padding: 2.5rem 0 3.1rem;
}

@media (max-width: 900px) {
  .header-grid,
  .contact-grid,
  .footer-grid,
  .footer-grid.simple {
    grid-template-columns: 1fr;
  }

  .grouped-nav ul {
    justify-content: flex-start;
  }

  .newsletter-row {
    flex-direction: column;
  }
}
