@font-face {
  font-family: "Space Grotesk";
  src: url(../fonts/SpaceGrotesk-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Roboto Mono";
  src: url(../fonts/RobotoMono-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --bg-primary: #f8fafc;
  --bg-secondary: #e2e8f0;
  --bg-card: #ffffff;
  --accent: #0ea5e9;
  --accent-dark: #0284c7;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-light: #94a3b8;
  --border: #cbd5e1;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Roboto Mono', monospace;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.logo img {
  width: 50px;
  height: 50px;
}

.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-list a:hover {
  color: var(--accent);
}

.header-notice {
  display: none;
}

.ad-badge {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 60px 20px;
}

.hero-text-block {
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-text-block h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--accent);
  color: white;
}

.btn-block {
  width: 100%;
}

.stats-section {
  padding: 48px 0;
  background: var(--bg-secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

section {
  padding: 64px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-tag {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.route-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.route-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.route-image {
  position: relative;
  height: 250px;
}

.route-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.route-content {
  padding: 24px;
}

.route-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.route-desc {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.route-features {
  list-style: none;
  margin-bottom: 24px;
}

.route-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.route-features i {
  color: var(--accent);
}

.route-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.price-unit {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.native-gallery {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.gallery-main {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.gallery-thumbs {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.thumb-btn {
  width: 100px;
  height: 70px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  background: none;
}

.thumb-btn.active {
  border-color: var(--accent);
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
}

.form-wrapper {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: var(--bg-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.checkbox-group input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.9rem;
  cursor: pointer;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.faq-item {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--accent);
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.site-footer {
  background: var(--text-primary);
  color: white;
  padding: 48px 0 24px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo a {
  color: white;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 20px;
  line-height: 1.6;
}

.footer-contact h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-contact address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
}

.page-hero {
  min-height: 50vh;
}

.page-hero.no-image {
  min-height: 40vh;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  display: flex;
  align-items: center;
}

.page-hero.no-image .hero-text-block h1 {
  color: var(--text-primary);
}

.page-hero.no-image .hero-subtitle {
  color: var(--text-secondary);
}

.detail-route-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 48px;
}

.detail-route-card.reverse {
  flex-direction: column-reverse;
}

.detail-image {
  height: 300px;
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-content {
  padding: 32px;
}

.detail-content h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.detail-desc {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.detail-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.detail-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
}

.detail-features i {
  color: var(--accent);
  width: 20px;
}

.route-price-block {
  margin-bottom: 24px;
}

.route-price-block .price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.route-price-block .unit {
  color: var(--text-secondary);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
}

.gallery-item.large {
  height: 350px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 20px;
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--accent);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.process-step {
  background: var(--bg-card);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: relative;
  padding-top: 48px;
}

.step-number {
  position: absolute;
  top: 16px;
  left: 32px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--bg-secondary);
  line-height: 1;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.fleet-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.fleet-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.fleet-card h3 {
  padding: 24px 24px 8px;
  font-size: 1.3rem;
}

.fleet-card p {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--bg-card);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.story-text h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.story-text p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.story-image {
  border-radius: 12px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.value-card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.team-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-card h3 {
  margin-top: 20px;
  font-size: 1.3rem;
}

.team-role {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.team-card p {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-info-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 48px;
}

.contact-info-card h2 {
  margin-bottom: 32px;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 4px;
}

.contact-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 20px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.thanks-container {
  max-width: 600px;
  width: 100%;
}

.thanks-card {
  background: var(--bg-card);
  padding: 48px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.thanks-logo {
  margin: 0 auto 24px;
  border-radius: 50%;
}

.thanks-card h1 {
  margin-bottom: 24px;
  color: var(--accent);
}

.thanks-text {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .main-nav {
    display: block;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .header-notice {
    display: block;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .routes-grid .route-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .booking-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr;
  }

  .detail-route-card {
    flex-direction: row;
  }

  .detail-route-card.reverse {
    flex-direction: row-reverse;
  }

  .detail-image {
    width: 50%;
    height: auto;
  }

  .detail-content {
    width: 50%;
  }

  .detail-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-masonry {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .story-content {
    flex-direction: row;
    align-items: center;
  }

  .story-text, .story-image {
    width: 50%;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .routes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .routes-grid .route-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mobile-nav-active .main-nav {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  padding: 20px;
  box-shadow: var(--shadow-lg);
  border-top: 1px solid var(--border);
}

.mobile-nav-active .nav-list {
  flex-direction: column;
  gap: 16px;
}

.site-footer {
  background: var(--text-primary);
  color: #f1f5f9;
  padding: 32px 0 16px;
  margin-top: auto;
  border-top: 3px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 24px;
}

.footer-brand .logo a {
  color: #f1f5f9;
  font-size: 1.3rem;
}
.footer-brand .logo img {
  width: 40px;
  height: 40px;
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 12px;
  line-height: 1.5;
  max-width: 400px;
}

.footer-contact h4 {
  color: #f1f5f9;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.footer-contact address {
  font-style: normal;
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.7;
}
.footer-contact address p {
  margin: 2px 0;
}

.footer-links h4 {
  color: #f1f5f9;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  margin-bottom: 6px;
}
.footer-links ul li a {
  color: #94a3b8;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}
.footer-links ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  text-align: center;
  font-size: 0.75rem;
  color: #64748b;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-brand .logo a {
    font-size: 1.1rem;
  }
  .footer-disclaimer {
    max-width: 100%;
  }
  .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
  }
  .footer-links ul li {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 576px) {
  [class*="-grid"] {
    grid-template-columns: 1fr;
  }
  body {
    word-break: break-word;
  }
}

@media (min-width: 769px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-contact {
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 20px;
  }
  .footer-links {
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 20px;
  }
}