/*
Theme Name: Baltic Gravel
Author: Baltic Gravel
Version: 1.0
*/

:root {
  --primary: #1F6F73;
  --primary-dark: #195c5f;
  --forest: #2F4F3F;
  --gravel: #D6C3A3;
  --bg: #F8F7F4;
  --white: #ffffff;
  --text: #1C1C1C;
  --muted: #6B6B6B;
  --border: #E5E2DA;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.15;
  font-family: 'Poppins', sans-serif;
}

h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

p {
  margin-top: 0;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: #f1eee8;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-kicker,
.eyebrow {
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 247, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  padding-top: 18px;
  padding-bottom: 18px;
}

.hero {
  padding: 110px 0 96px;
  background:
    linear-gradient(rgba(28, 28, 28, 0.34), rgba(28, 28, 28, 0.34)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: var(--white);
}

.hero-content {
  max-width: 760px;
}

.hero-text {
  max-width: 640px;
  font-size: 20px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-buttons,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: transparent;
}

.cta-section .btn-secondary {
  border-color: var(--forest);
  color: var(--forest);
}

.btn-secondary:hover {
  transform: translateY(-1px);
}

.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card-link {
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.route-card,
.step-card {
  height: 100%;
}

.route-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31, 111, 115, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.route-meta {
  color: var(--muted);
  font-weight: 600;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--forest);
  text-decoration: none;
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
}

.step-number {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 28px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px;
  background: var(--gravel);
  border-radius: 24px;
}

.cta-text {
  max-width: 640px;
  margin-bottom: 0;
}

.footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  color: var(--muted);
}

@media (max-width: 1024px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 22px;
  }

  .hero {
    padding: 88px 0 72px;
  }

  .hero-text {
    font-size: 18px;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .card,
  .cta-box {
    padding: 22px;
  }
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-branding {
  flex-shrink: 0;
}

.logo-link {
  text-decoration: none;
  color: var(--text);
}

.site-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu li {
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-cta {
  flex-shrink: 0;
}

.custom-logo {
  max-height: 44px;
  width: auto;
}

@media (max-width: 900px) {
  .nav-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .nav-menu {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    align-items: flex-start;
  }

  .nav-cta {
    width: 100%;
  }
}
.site-footer {
  background: #1f2422;
  color: rgba(255, 255, 255, 0.88);
  padding-top: 64px;
  margin-top: 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
}

.footer-brand h3,
.footer-contact h4 {
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-brand p,
.footer-contact p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 500;
}

.footer-menu a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}
.page-hero {
  padding: 88px 0 48px;
  background: linear-gradient(180deg, #f3efe8 0%, #f8f7f4 100%);
}

.page-hero-small {
  padding-top: 72px;
}

.hero-text-dark {
  color: var(--muted);
}

.archive-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.filter-placeholder {
  padding: 16px 18px;
  border: 1px dashed var(--border);
  border-radius: 14px;
  color: var(--muted);
  background: #fcfbf8;
  max-width: 420px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-tag {
  font-weight: 700;
  color: var(--forest);
}

.product-card .btn-primary {
  margin-top: auto;
  width: fit-content;
}

@media (max-width: 900px) {
  .archive-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-placeholder {
    max-width: 100%;
  }
}
.route-hero {
  padding: 76px 0 52px;
  background: linear-gradient(180deg, #f3efe8 0%, #f8f7f4 100%);
}

.route-hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.route-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.fact-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.fact-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.route-buy-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}

.buy-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 600;
}

.route-price {
  margin-bottom: 14px;
  font-size: 42px;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
  color: var(--forest);
}

.buy-note {
  color: var(--muted);
  margin-bottom: 18px;
}

.buy-btn,
.buy-btn-secondary {
  width: 100%;
}

.buy-btn-secondary {
  margin-top: 12px;
  border-color: var(--forest);
  color: var(--forest);
}

.route-content-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 32px;
  align-items: start;
}

.content-block + .content-block {
  margin-top: 28px;
}

.map-placeholder-block {
  margin-top: 28px;
}

.map-placeholder {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border);
  border-radius: 20px;
  background: #fcfbf8;
  color: var(--muted);
  text-align: center;
  padding: 24px;
}

.feature-list,
.info-list {
  margin: 0;
  padding-left: 20px;
}

.feature-list li {
  margin-bottom: 12px;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.sidebar-card + .sidebar-card {
  margin-top: 20px;
}

.info-list {
  list-style: none;
  padding-left: 0;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.info-list li:last-child {
  border-bottom: 0;
}

.info-list span {
  color: var(--muted);
}

@media (max-width: 1024px) {
  .route-hero-grid,
  .route-content-grid {
    grid-template-columns: 1fr;
  }

  .route-buy-box {
    position: static;
  }

  .route-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .route-facts {
    grid-template-columns: 1fr;
  }

  .route-price {
    font-size: 34px;
  }
}
.ride-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ride-card .btn-primary {
  margin-top: auto;
  width: fit-content;
}
.free-tour-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.free-tour-card .btn-primary {
  margin-top: auto;
  width: fit-content;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.about-sidebar .sidebar-card + .sidebar-card {
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-card + .contact-card {
  margin-top: 20px;
}

.contact-sidebar .sidebar-card + .sidebar-card {
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-image img {
  border-radius: 14px;
  margin-bottom: 14px;
}

.blog-meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.blog-single {
  max-width: 760px;
}

.blog-single-image img {
  border-radius: 20px;
  margin-bottom: 24px;
}

.blog-content p {
  margin-bottom: 18px;
  font-size: 18px;
}

.blog-content h2 {
  margin-top: 32px;
}

.blog-content ul {
  margin-bottom: 18px;
}