
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');
:root {
  --color-bg:         #F7F5F2;
  --color-surface:    #FFFFFF;
  --color-border:     #E2DDD8;
  --color-text:       #1C1A18;
  --color-text-muted: #6B6560;
  --color-accent:     #3D5A4C;
  --color-accent-lt:  #EBF0ED;
  --color-accent2:    #8C6E4B;
  --color-header-bg:  #1C1A18;
  --color-header-txt: #F7F5F2;
  --font-display:     'Playfair Display', Georgia, serif;
  --font-body:        'DM Sans', sans-serif;
  --radius:           6px;
  --radius-lg:        12px;
  --shadow-sm:        0 1px 4px rgba(0,0,0,.06);
  --shadow-md:        0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:        0 12px 48px rgba(0,0,0,.12);
  --max-width:        1200px;
  --nav-height:       68px;
  --transition:       0.22s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent2); }
ul { list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-text);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 80px 0; }
.section--alt { background: var(--color-surface); }
.section--dark { background: var(--color-header-bg); color: var(--color-header-txt); }
.section--dark h2, .section--dark h3, .section--dark p { color: var(--color-header-txt); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-primary:hover { background: #2e4338; border-color: #2e4338; color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-outline:hover { background: var(--color-accent); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--color-header-txt);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); color: #fff; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--color-header-bg);
  border-bottom: 1px solid rgba(255,255,255,.06);
  height: var(--nav-height);
}

.nav-inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-accent);
  flex-shrink: 0;
}

.nav-logo-svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-header-txt);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-links a {
  color: rgba(247,245,242,.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; background: rgba(255,255,255,.1); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
  border-radius: var(--radius);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-header-txt);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--color-header-bg);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 899;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(247,245,242,.8);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,.1); }
.site-footer {
  background: var(--color-header-bg);
  color: rgba(247,245,242,.7);
  padding: 60px 0 30px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-name { color: var(--color-header-txt); margin-bottom: 0.6rem; display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.65; color: rgba(247,245,242,.55); margin-bottom: 0; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,245,242,.4);
  margin-bottom: 1rem;
  color: var(--color-header-txt);
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  color: rgba(247,245,242,.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(247,245,242,.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-header-bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  transition: opacity 0.4s;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 660px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent2);
  margin-bottom: 1.2rem;
  background: rgba(140,110,75,.12);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(140,110,75,.25);
}

.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero p { color: rgba(247,245,242,.7); font-size: 1.1rem; margin-bottom: 2rem; max-width: 520px; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card-img { width: 100%; height: 210px; object-fit: cover; }
.card-img-placeholder {
  width: 100%;
  height: 210px;
  background: linear-gradient(135deg, var(--color-accent-lt), var(--color-border));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}

.card-body { padding: 1.4rem; }
.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-lt);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}
.card-body h3 { margin-bottom: 0.5rem; }
.card-body p { font-size: 0.92rem; color: var(--color-text-muted); margin-bottom: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--color-text-muted); font-size: 1.05rem; max-width: 560px; }
.section-header.center p { margin: 0 auto; }
.stat-row { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 2rem; }
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.88rem; color: var(--color-text-muted); }
.divider { border: none; border-top: 1px solid var(--color-border); margin: 2.5rem 0; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}
.data-table th {
  text-align: left;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0.85rem 1rem;
  border-bottom: 2px solid var(--color-border);
}
.data-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--color-accent-lt); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
}
.badge-green { background: #e6f4ec; color: #2d6a3f; }
.badge-amber { background: #fdf3e3; color: #8c5e1a; }
.badge-blue  { background: #e8f0fe; color: #1a4fa0; }
.badge-gray  { background: var(--color-border); color: var(--color-text-muted); }
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}
.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(61,90,76,.1);
}
textarea.form-control { resize: vertical; min-height: 140px; }
.page-hero {
  background: var(--color-header-bg);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent2));
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(247,245,242,.65); font-size: 1.05rem; max-width: 580px; margin-bottom: 0; }
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(247,245,242,.4);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: rgba(247,245,242,.55); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: 0.4; }
.highlight-box {
  background: var(--color-accent-lt);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.highlight-box p { color: var(--color-text); margin: 0; }
.info-block {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.info-block-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-accent-lt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
}
.feature-strip-item {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--color-border);
  transition: background var(--transition);
}
.feature-strip-item:last-child { border-right: none; }
.feature-strip-item:hover { background: var(--color-accent-lt); }
.feature-strip-icon {
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.feature-strip-item h4 { margin-bottom: 0.4rem; }
.feature-strip-item p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--color-header-bg);
  color: rgba(247,245,242,.85);
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 2px solid var(--color-accent);
  box-shadow: 0 -4px 30px rgba(0,0,0,.15);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: 0.9rem; line-height: 1.5; flex: 1; min-width: 260px; }
.cookie-banner a { color: var(--color-accent2); }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.legal-body { max-width: 780px; margin: 0 auto; }
.legal-body h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.legal-body h3 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal-body ul, .legal-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-body ul li, .legal-body ol li { margin-bottom: 0.35rem; list-style: disc; }
.legal-body ol li { list-style: decimal; }
.legal-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding: 0.75rem 1rem;
  background: var(--color-accent-lt);
  border-radius: var(--radius);
  margin-bottom: 2rem;
}
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  background: var(--color-accent-lt);
}
.team-role { font-size: 0.82rem; color: var(--color-accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.transport-tab-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 0.55rem 1.2rem;
  border: 1.5px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--color-surface);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }
.rating { display: flex; gap: 2px; color: #c9a94e; font-size: 0.9rem; }
.img-caption-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: rgba(255,255,255,.85);
  font-size: 0.8rem;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .feature-strip { grid-template-columns: repeat(2,1fr); }
  .feature-strip-item:nth-child(2) { border-right: none; }
  .feature-strip-item:nth-child(3) { border-top: 1px solid var(--color-border); }
  .feature-strip-item:nth-child(4) { border-top: 1px solid var(--color-border); border-right: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-strip-item { border-right: none; border-bottom: 1px solid var(--color-border); }
  .feature-strip-item:last-child { border-bottom: none; }
  .hero { min-height: 420px; }
  .hero-content { padding: 60px 0; }
  .stat-row { gap: 1.5rem; }
  .data-table { font-size: 0.84rem; }
  .data-table th, .data-table td { padding: 0.6rem 0.6rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; }
  .cookie-banner { padding: 1rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.45rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .transport-tab-bar { gap: 0.4rem; }
  .tab-btn { font-size: 0.82rem; padding: 0.45rem 0.9rem; }
}
.text-muted { color: var(--color-text-muted); }
.text-accent { color: var(--color-accent); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.w-full { width: 100%; }
