@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #FFFFFF;
  --color-bg-alt: #F8F9FA;
  --color-text: #1A1A1A;
  --color-text-muted: #555555;
  --color-accent: #B8956A;
  --color-accent-hover: #9C7A52;
  --color-white: #FFFFFF;
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;
  --spacing-section: 64px;
  --spacing-inner: 48px;
  --radius: 2px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { font-family: var(--font-body); background-color: var(--color-bg); color: var(--color-text); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; overflow-x: clip; }
img { max-width: 100%; }
main { flex: 1 0 auto; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: var(--spacing-section) 0; }
.section-header { text-align: center; margin-bottom: var(--spacing-inner); max-width: 800px; margin-left: auto; margin-right: auto; }
.section-label { display: inline-block; color: var(--color-accent); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-text); line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px; }
h3 { font-size: 1.5rem; margin-bottom: 16px; }
p { color: var(--color-text-muted); margin-bottom: 16px; }
.badge { display: inline-block; background: rgba(184, 149, 106, 0.1); color: var(--color-accent); padding: 8px 16px; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600; margin-bottom: 24px; border: 1px solid rgba(184, 149, 106, 0.3); }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 16px 32px; font-size: 1rem; font-weight: 600; text-decoration: none; border-radius: var(--radius); transition: all 0.3s ease; cursor: pointer; border: 2px solid transparent; max-width: 100%; }
.btn-primary { background-color: var(--color-accent); color: var(--color-white); }
.btn-primary:hover { background-color: var(--color-accent-hover); }
.btn-outline { background-color: transparent; border-color: var(--color-text); color: var(--color-text); }
.btn-outline:hover { background-color: var(--color-text); color: var(--color-white); }
.btn-full { width: 100%; }
.deco-line { background-color: var(--color-accent); }
.deco-line.horizontal { width: 60px; height: 2px; margin-bottom: 24px; }
.deco-line.horizontal.center { margin-left: auto; margin-right: auto; }
.deco-line.vertical { position: absolute; left: -20px; top: 20px; bottom: 20px; width: 2px; }
.deco-dots { position: absolute; width: 100px; height: 100px; background-image: radial-gradient(var(--color-accent) 1.5px, transparent 1.5px); background-size: 15px 15px; opacity: 0.3; pointer-events: none; }
.deco-dots.bottom-right { bottom: 40px; right: 40px; }
.deco-dots.top-left { top: -20px; left: -20px; }

.site-header { background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(184, 149, 106, 0.15); }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; flex-wrap: wrap; gap: 16px; }
.logo { display: flex; align-items: center; gap: 12px; min-width: 0; }
.logo a { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--color-text); min-width: 0; max-width: 100%; }
.logo-line1 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--color-text); }
.desktop-nav ul { display: flex; list-style: none; gap: 32px; flex-wrap: wrap; }
.desktop-nav a { color: var(--color-text); text-decoration: none; font-weight: 500; transition: color 0.3s ease; font-size: 0.95rem; }
.desktop-nav a:hover { color: var(--color-accent); }
.header-notice { font-size: 0.8rem; color: var(--color-text-muted); background: rgba(184, 149, 106, 0.1); padding: 6px 12px; border-radius: var(--radius); }

.hero { position: relative; min-height: 80vh; display: flex; align-items: center; overflow: hidden; background-color: var(--color-bg-alt); }
.hero-small { min-height: 50vh; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.3) 100%); }
.hero-content { position: relative; z-index: 1; min-width: 0; }
.hero-text { max-width: 600px; min-width: 0; }
.hero-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.story-grid > * { min-width: 0; max-width: 100%; }
.story-grid.reverse { grid-template-columns: 1fr 1fr; }
.story-grid.reverse .story-text { order: 1; }
.story-grid.reverse .story-image { order: 2; }
.story-image { position: relative; padding-left: 20px; }
.story-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); aspect-ratio: 4/3; }

.routes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 32px; }
.routes-grid > * { min-width: 0; max-width: 100%; }
.route-card { background-color: var(--color-bg); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(184, 149, 106, 0.15); transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.route-card:hover { transform: translateY(-4px); border-color: var(--color-accent); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); }
.route-image { height: 200px; overflow: hidden; }
.route-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.route-card:hover .route-image img { transform: scale(1.05); }
.route-info { padding: 24px; }
.route-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(85, 85, 85, 0.15); font-size: 0.9rem; flex-wrap: wrap; gap: 8px; }
.route-meta .price { color: var(--color-accent); font-weight: 600; font-size: 1.1rem; }

.route-detail-card { background-color: var(--color-bg-alt); border: 1px solid rgba(184, 149, 106, 0.15); border-radius: var(--radius); padding: 40px; margin-bottom: 48px; position: relative; overflow: hidden; }
.route-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.route-detail-grid > * { min-width: 0; max-width: 100%; }
.route-detail-card.reverse .route-detail-grid { grid-template-columns: 1fr 1fr; }
.route-detail-card.reverse .route-detail-image { order: 2; }
.route-detail-card.reverse .route-detail-text { order: 1; }
.route-detail-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); }
.route-meta-detail { display: flex; gap: 24px; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(85, 85, 85, 0.15); font-size: 0.95rem; color: var(--color-text-muted); align-items: center; flex-wrap: wrap; }
.route-meta-detail .price { color: var(--color-accent); font-weight: 700; font-size: 1.2rem; margin-left: auto; }

.highlight-list { list-style: none; margin: 24px 0; }
.highlight-list li { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; color: var(--color-text); font-weight: 500; }
.highlight-list li i { color: var(--color-accent); font-size: 1.2rem; width: 24px; text-align: center; flex-shrink: 0; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-grid > * { min-width: 0; max-width: 100%; }
.process-item { text-align: center; padding: 32px 24px; background: var(--color-bg); border: 1px solid rgba(184, 149, 106, 0.15); border-radius: var(--radius); transition: all 0.3s ease; }
.process-item:hover { border-color: var(--color-accent); transform: translateY(-4px); }
.process-icon { font-family: var(--font-heading); font-size: 2.5rem; color: var(--color-accent); margin-bottom: 16px; font-weight: 700; }

.fleet-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.fleet-teaser-grid > * { min-width: 0; max-width: 100%; }
.fleet-teaser-image { position: relative; }
.fleet-teaser-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); }

.routes-notice { background: rgba(184, 149, 106, 0.08); border: 1px solid rgba(184, 149, 106, 0.2); border-radius: var(--radius); padding: 32px; margin-top: 32px; }
.notice-content { display: flex; gap: 24px; align-items: flex-start; }
.notice-content i { font-size: 2rem; color: var(--color-accent); margin-top: 4px; flex-shrink: 0; }
.notice-content h4 { color: var(--color-accent); margin-bottom: 8px; }
.notice-content p { margin-bottom: 0; color: var(--color-text); }
.section-cta { text-align: center; margin-top: 48px; }

.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.features-grid > * { min-width: 0; max-width: 100%; }
.feature-item { background-color: var(--color-bg); padding: 32px 24px; border-radius: var(--radius); border: 1px solid rgba(184, 149, 106, 0.15); text-align: center; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.feature-item:hover { border-color: var(--color-accent); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); }
.feature-icon { font-size: 2.5rem; color: var(--color-accent); margin-bottom: 24px; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonials-grid > * { min-width: 0; max-width: 100%; }
.testimonial-card { background-color: var(--color-bg); padding: 32px; border-radius: var(--radius); border: 1px solid rgba(184, 149, 106, 0.15); }
.testimonial-rating { color: var(--color-accent); margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-card p { font-style: italic; margin-bottom: 24px; }
.testimonial-author strong { display: block; color: var(--color-text); font-size: 1rem; }

.info-box { background: var(--color-bg-alt); border: 1px solid rgba(184, 149, 106, 0.2); border-radius: var(--radius); padding: 40px; }
.info-box-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.info-box-grid > * { min-width: 0; max-width: 100%; }
.info-box-item { text-align: center; }
.info-box-item i { font-size: 2rem; color: var(--color-accent); margin-bottom: 16px; }
.info-box-item h4 { margin-bottom: 8px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-grid > * { min-width: 0; max-width: 100%; }
.contact-details { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item i { color: var(--color-accent); font-size: 1.2rem; margin-top: 4px; width: 24px; text-align: center; flex-shrink: 0; }
.contact-item strong { display: block; color: var(--color-text); margin-bottom: 4px; }
.contact-item p { margin-bottom: 0; }
.contact-form-wrapper { background-color: var(--color-bg-alt); padding: 40px; border-radius: var(--radius); border: 1px solid rgba(184, 149, 106, 0.15); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--color-text); }
.form-group input, .form-group select, .form-group textarea { width: 100%; max-width: 100%; padding: 14px 16px; background-color: var(--color-bg); border: 1px solid rgba(85, 85, 85, 0.2); border-radius: var(--radius); color: var(--color-text); font-family: var(--font-body); font-size: 1rem; transition: border-color 0.3s ease; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--color-accent); }
.checkbox-group { display: flex; align-items: flex-start; gap: 12px; }
.checkbox-group input { width: auto; margin-top: 4px; }
.checkbox-group label { font-size: 0.9rem; font-weight: 400; margin-bottom: 0; color: var(--color-text-muted); }

.contact-teaser-section { background-color: var(--color-bg-alt); text-align: center; }
.contact-teaser { max-width: 600px; margin: 0 auto; }
.contact-teaser h2 { margin-bottom: 16px; }
.contact-teaser p { margin-bottom: 32px; }

.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.faq-grid > * { min-width: 0; max-width: 100%; }
.faq-item { background: var(--color-bg); border: 1px solid rgba(184, 149, 106, 0.15); border-radius: var(--radius); padding: 32px; transition: all 0.3s ease; }
.faq-item:hover { border-color: var(--color-accent); }
.faq-item h4 { margin-bottom: 12px; color: var(--color-text); }

.legal-content { word-break: break-word; }

.site-footer { background-color: var(--color-bg-alt); border-top: 1px solid rgba(184, 149, 106, 0.15); margin-top: auto; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-grid > * { min-width: 0; max-width: 100%; }
.footer-brand p { margin-top: 16px; max-width: 300px; }
.footer-links h4, .footer-contact h4 { font-size: 1.1rem; margin-bottom: 24px; color: var(--color-text); }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--color-text-muted); text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--color-accent); }
.footer-contact p { margin-bottom: 8px; font-size: 0.95rem; }
.footer-bottom { border-top: 1px solid rgba(85, 85, 85, 0.15); padding: 32px 0; }
.disclaimer { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(85, 85, 85, 0.15); }
.disclaimer p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.5; margin-bottom: 0; }
.copyright p { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 0; text-align: center; }

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}
[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}

@media (max-width: 1024px) {
  .routes-grid, .features-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid, .info-box-grid, .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .fleet-teaser-grid { grid-template-columns: 1fr; }
  .route-detail-grid,
  .route-detail-card.reverse .route-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .route-detail-card.reverse .route-detail-image,
  .route-detail-card.reverse .route-detail-text {
    order: unset;
  }
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  .story-grid > *,
  .contact-grid > *,
  .testimonials-grid > *,
  .routes-grid > *,
  .route-detail-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  :root { --spacing-section: 40px; --spacing-inner: 32px; }
  .site-header { position: static; }
  .hero-actions { flex-direction: column; }
  .story-grid, .story-grid.reverse, .contact-grid { grid-template-columns: 1fr; }
  .story-grid.reverse .story-text, .story-grid.reverse .story-image { order: initial; }
  .story-image { padding-left: 0; margin-bottom: 24px; }
  .deco-line.vertical { display: none; }
  .routes-grid, .features-grid, .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .notice-content { flex-direction: column; gap: 16px; }
  .route-detail-card { padding: 24px; }
}

@media (max-width: 640px) {
  .header-inner { flex-direction: column; align-items: center; text-align: center; }
  .header-notice { word-break: break-all; white-space: normal; width: 100%; }
  .logo { width: 100%; justify-content: center; }
  .logo a { flex-direction: column; align-items: center; justify-content: center; }
  .logo a span { word-break: break-all; min-width: 0; }
  .desktop-nav { width: 100%; }
  .desktop-nav ul { justify-content: center; gap: 12px 20px; }
  .footer-col, .footer-brand, .footer-contact { word-break: break-all; }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .header-inner { padding: 12px; }
  .contact-form-wrapper { padding: 20px; }
  .route-info { padding: 16px; }
  .testimonial-card { padding: 20px; }
  .faq-item { padding: 20px; }
  .btn { padding: 14px 20px; font-size: 0.95rem; }
  h1 { font-size: clamp(1.75rem, 8vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
}
