
:root {
  --ink: #071824;
  --navy: #0e2a3d;
  --sea: #16384f;
  --ice: #b7c9d6;
  --mist: #e7eef4;
  --paper: #f3f7fa;
  --copper: #c96a2d;
  --copper-deep: #a3511f;
  --line: rgba(7, 24, 36, 0.12);
  --text: #1b2d3a;
  --muted: #5a7183;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(7, 24, 36, 0.14);
  --radius: 2px;
  --max: 1160px;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(201, 106, 45, 0.08), transparent 55%),
    linear-gradient(180deg, #f7fafc 0%, var(--paper) 40%, #eef3f7 100%);
  line-height: 1.55;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(243, 247, 250, 0.84);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.25rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a {
  color: var(--muted);
  position: relative;
  transition: color .2s ease;
}
.nav a:hover,
.nav a.is-active { color: var(--ink); }
.nav a.is-active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  background: var(--copper);
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-deep) 100%);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(201, 106, 45, 0.28);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
}
.btn-ghost.dark {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

/* Hero — full bleed */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7,24,36,0.28) 0%, rgba(7,24,36,0.72) 55%, rgba(7,24,36,0.92) 100%),
    url("../images/hero.jpg") center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 20% 80%, rgba(201,106,45,0.22), transparent 60%),
    linear-gradient(115deg, rgba(7,24,36,0.55) 0%, transparent 55%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 4.5rem;
  max-width: 720px;
}
.hero-brand {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 0 1.25rem;
  animation: rise .8s ease both;
}
.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 500;
  line-height: 1.15;
  max-width: 14ch;
  animation: rise .8s ease .08s both;
}
.hero p {
  margin: 0 0 1.75rem;
  color: rgba(255,255,255,0.86);
  font-size: 1.08rem;
  max-width: 38ch;
  animation: rise .8s ease .16s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  animation: rise .8s ease .24s both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* Sections */
.section {
  padding: 5rem 0;
}
.section.tight { padding: 3.5rem 0; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.85rem;
}
.section h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 52ch;
  margin: 0 0 2rem;
}

/* Pillars — not cards */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
}
.pillar {
  padding: 2rem 1.6rem;
  border-right: 1px solid var(--line);
}
.pillar:last-child { border-right: none; }
.pillar-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--copper);
  margin-bottom: 0.75rem;
  line-height: 1;
}
.pillar h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  color: var(--ink);
}
.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}
.split-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(7,24,36,0.45));
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 0.75rem;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.92) contrast(1.04);
  transition: transform .5s ease, filter .5s ease;
}
.gallery a:first-child {
  grid-row: span 2;
}
.gallery a { overflow: hidden; border-radius: var(--radius); display: block; }
.gallery a:hover img {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.06);
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.65rem;
  max-width: 780px;
}
.faq details {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--copper);
  font-weight: 700;
}
.faq details[open] summary::after { content: "–"; }
.faq p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7,24,36,0.92), rgba(22,56,79,0.88)),
    url("../images/content_7.jpg") center/cover no-repeat;
  padding: 4.5rem 0;
}
.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: var(--white);
  margin: 0;
  max-width: 14ch;
}

/* Page hero (inner) */
.page-hero {
  padding: 4.5rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(14,42,61,0.04), transparent),
    var(--paper);
}
.page-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--ink);
  letter-spacing: -0.03em;
}
.page-hero .lead { margin-bottom: 0; }
.header-inner { position: relative; }
.prose a { color: var(--copper); text-decoration: underline; text-underline-offset: 3px; }

/* Content */
.prose {
  max-width: 720px;
}
.prose h2 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 2.2rem 0 0.8rem;
  font-size: 1.6rem;
}
.prose p { color: var(--muted); margin: 0 0 1rem; }
.prose figure { margin: 1.5rem 0; }
.prose figure img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.team-grid,
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.principle,
.blog-item {
  padding: 1.4rem 0;
  border-top: 2px solid var(--ink);
}
.principle h3,
.blog-item h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
}
.principle p,
.blog-item p { margin: 0; color: var(--muted); }
.blog-meta {
  display: block;
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: var(--copper);
  font-weight: 700;
}
.blog-list {
  display: grid;
  gap: 2rem;
}
.blog-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.75rem;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.blog-row img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
}
.contact-card {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.contact-card strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.contact-card span { color: var(--muted); }
.form {
  display: grid;
  gap: 0.9rem;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  padding: 1.5rem;
  border-radius: var(--radius);
}
.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
.form input,
.form textarea {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius);
  color: var(--text);
}
.form textarea { min-height: 140px; resize: vertical; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 3.5rem 0 1.5rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer h3 {
  margin: 0 0 0.9rem;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a:hover { color: var(--white); }
.footer-map {
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
  filter: grayscale(0.35) contrast(1.05);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* Cookie */
.cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.15rem;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cookie.is-open { display: flex; }
.cookie.is-open[hidden] { display: flex !important; }
.cookie p { margin: 0; font-size: 0.92rem; max-width: 55ch; }
.cookie a { color: var(--ice); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.5rem; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .pillars,
  .team-grid,
  .principles,
  .split,
  .contact-grid,
  .footer-grid,
  .blog-row { grid-template-columns: 1fr; }
  .pillars { border: none; }
  .pillar {
    border: 1px solid var(--line);
    border-bottom: none;
  }
  .pillar:last-child { border-bottom: 1px solid var(--line); }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery a:first-child { grid-row: auto; grid-column: span 2; }
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1rem;
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.7rem 0; }
  .hero { min-height: 78vh; align-items: center; }
  .hero-inner { padding: 6rem 0 3rem; }
}

/* TravelNord extras */
.article-body {
  max-width: 720px;
  margin: 0 auto;
}
.article-body p { margin: 0 0 1.15rem; color: var(--text); font-size: 1.05rem; }
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  margin: 2.25rem 0 0.85rem;
  color: var(--ink);
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 1.75rem 0 0.65rem;
  color: var(--navy);
}
.article-body ul { margin: 0 0 1.25rem 1.2rem; color: var(--text); }
.article-body li { margin-bottom: 0.45rem; }
.country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .country-grid { grid-template-columns: 1fr; }
}
.country-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.35rem 1.35rem 1.5rem;
}
.country-card h3 {
  font-family: var(--font-display);
  margin: 0.75rem 0 0.5rem;
  font-size: 1.35rem;
}
.country-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.soft-bridge {
  background: linear-gradient(135deg, var(--navy), var(--sea));
  color: #f3f7fa;
  padding: 3rem 0;
}
.soft-bridge .lead { color: rgba(243,247,250,0.88); }
.soft-bridge .section-label { color: rgba(201,106,45,0.95); }
.meta-line { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 800px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.25rem;
}
.team-card strong { display: block; font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.25rem; }
.legal-note { font-size: 0.9rem; color: var(--muted); }

/* Consent map placeholder */
.map-consent {
  display: grid;
  place-items: center;
  min-height: 220px;
  background: #d9e3ea;
  color: var(--ink);
  text-align: center;
  padding: 1.25rem;
  border: 1px solid var(--line);
}
.map-consent p { margin: 0 0 0.85rem; max-width: 36ch; }
.cookie {
  max-width: 1160px;
  margin-inline: auto;
  left: max(1rem, calc(50% - 580px));
  right: max(1rem, calc(50% - 580px));
}
.cookie-actions .btn { border: 0; cursor: pointer; }
.cookie-actions .btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
  padding: 0.65rem 1rem;
}
.article-body .btn-ghost,
.prose .btn-ghost {
  color: var(--navy);
  border-color: var(--navy);
  background: transparent;
}
.cookie-settings-link {
  background: none;
  border: 0;
  color: var(--ice);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font: inherit;
}
