.sec { padding: 5.5rem 0; }
.sec-mint { background: var(--surface); }
.sec-dark { background: var(--black); color: var(--on-dark); }
.mc .sec-dark h2, .mc .sec-dark h3 { color: var(--white); }
.sec-dark .sec-head p { color: var(--on-dark); }
.mc .sec-dark a { color: var(--white); }
.sec-head { max-width: 46rem; margin-bottom: 2.75rem; }
.sec-head p { color: var(--muted); margin: 0; font-size: 1.1rem; }
.kicker { display: block; font-size: .95rem; font-weight: 600; color: var(--muted); margin-bottom: .5rem; }
.sec-dark .kicker { color: var(--on-dark); }
@media (max-width: 700px) { .sec { padding: 3.75rem 0; } .sec-head { margin-bottom: 2rem; } }

/* Feature points (added content blocks) */
.sec-points + .sec-mint { background: var(--white); border-top: 1px solid var(--line); }
.points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.points > div { background: var(--white); border-radius: var(--radius); padding: 1.75rem 1.6rem; }
.sec-dark .points > div { background: #161616; }
.points h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.points p { color: var(--muted); margin: 0; font-size: 1rem; }
.sec-dark .points p { color: var(--on-dark); }
.points .p-mark { display: block; width: 12px; height: 12px; background: var(--black); margin-bottom: 1.4rem; }
.sec-dark .points .p-mark { background: var(--white); }
@media (max-width: 900px) { .points { grid-template-columns: 1fr; } }

/* Big number block */
.callout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.callout-num { display: block; font-size: clamp(2.6rem, 1.4rem + 5vw, 5.75rem); font-weight: 800; letter-spacing: -0.045em; line-height: 1; color: var(--white) !important; text-decoration: none !important; }
.callout-num:hover { text-decoration: underline !important; text-decoration-thickness: 3px !important; }
.callout-ways { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--dark-line); }
.callout-ways li { padding: 1rem 0; border-bottom: 1px solid var(--dark-line); }
.callout-ways strong { display: block; color: var(--white); font-size: 1.05rem; }
.callout-ways span { font-size: .96rem; }
@media (max-width: 860px) { .callout { grid-template-columns: 1fr; gap: 2rem; } }

/* Content layout: sidebar on the left */
.layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 4.5rem; align-items: start; }
.layout > .aside { order: -1; }
.prose { max-width: 70ch; }
.prose h2 { margin-top: 3rem; font-size: clamp(1.6rem, 1.25rem + 1.2vw, 2.2rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.8rem; }
.prose p, .prose ul, .prose ol { margin: 0 0 1.15rem; }
.prose ul { list-style: none; padding: 0; }
.prose ul li { position: relative; padding-left: 1.5rem; margin-bottom: .55rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .6em; width: 8px; height: 8px; background: var(--black); }
.prose ol { counter-reset: step; list-style: none; padding: 0; }
.prose ol li { counter-increment: step; position: relative; padding-left: 2.75rem; margin-bottom: 1rem; }
.prose ol li::before { content: counter(step); position: absolute; left: 0; top: .1rem; display: grid; place-items: center; width: 1.8rem; height: 1.8rem; border-radius: 50%; background: var(--black); color: var(--white); font-weight: 700; font-size: .9rem; line-height: 1; }
.prose strong { font-weight: 700; }
.updated { font-size: .9rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 1rem; margin-top: 3rem !important; }

.aside { position: sticky; top: 92px; display: grid; gap: 1.5rem; }
.toc { border-left: 2px solid var(--black); padding-left: 1.1rem; }
.toc .mc-h { font-size: 1rem; margin-bottom: .6rem; }
.toc ol { list-style: none; padding: 0; margin: 0; }
.toc li { margin-bottom: .4rem; }
.toc a { display: block; text-decoration: none !important; font-size: .94rem; color: var(--muted) !important; line-height: 1.4; }
.toc a:hover { color: var(--black) !important; }
.aside-call { background: var(--black); color: var(--on-dark); padding: 1.5rem; border-radius: var(--radius); }
.mc .aside-call .mc-h { color: var(--white); font-size: 1.2rem; margin-bottom: .4rem; }
.aside-call p { font-size: .94rem; margin-bottom: 1.1rem; }
.aside-call .btn-m { width: 100%; padding-left: .8rem; padding-right: .8rem; }
.aside-call .btn-m + .btn-m { margin-top: .5rem; }
.aside-box .mc-h { font-size: 1rem; margin-bottom: .5rem; }
.aside-links { list-style: none; padding: 0; margin: 0; }
.aside-links a { display: block; padding: .5rem 0; border-bottom: 1px solid var(--line); text-decoration: none !important; font-size: .95rem; font-weight: 500; }
.aside-links a:hover { text-decoration: underline !important; }
.aside-links li:last-child a { border-bottom: 0; }
@media (max-width: 1000px) {
  .layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .layout > .aside { order: 2; position: static; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
  .toc { display: none; }
}

.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: .6rem; margin: 0 0 2rem; }
.facts div { padding: 1rem 1.1rem; background: var(--surface); border-radius: var(--radius); }
.facts dt { font-size: .84rem; color: var(--muted); }
.facts dd { margin: 0; font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; }

/* Route tiles */
.cards { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.cards a { display: flex; flex-direction: column; gap: .2rem; height: 100%; padding: 1.4rem 1.4rem 1.3rem; background: var(--surface); border-radius: var(--radius); text-decoration: none !important; transition: background-color .15s; }
.cards a:hover { background: var(--surface-2); }
.cards .c-title { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.015em; color: var(--black); }
.cards .c-meta { order: 3; align-self: flex-start; margin-top: 1rem; font-weight: 600; font-size: .85rem; color: var(--white); background: var(--black); padding: .25rem .7rem; border-radius: 999px; }
.cards .c-text { color: var(--muted); font-size: .95rem; }
.sec-dark .cards a { background: #1c1c1c; }
.sec-dark .cards a:hover { background: #2b2b2b; }
.mc .sec-dark .cards .c-title { color: var(--white); }
.sec-dark .cards .c-meta { background: var(--white); color: var(--black); }
.sec-dark .cards .c-text { color: var(--on-dark); }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }

/* Area pills */
.chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .55rem; }
.chips a { display: inline-flex; align-items: baseline; gap: .5rem; padding: .7rem 1.15rem; background: var(--white); border: 1px solid var(--line); border-radius: 999px; text-decoration: none !important; color: var(--black) !important; font-weight: 600; font-size: 1rem; line-height: 1.2; transition: background-color .15s, color .15s; }
.chips a:hover { background: var(--black); color: var(--white) !important; border-color: var(--black); }
.chips small { font-weight: 500; font-size: .8rem; color: var(--muted); }
.chips a:hover small { color: var(--on-dark); }

/* Steps: a real sequence */
.steps-m { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; counter-reset: s; }
.steps-m li { counter-increment: s; position: relative; padding-top: 1.25rem; border-top: 2px solid var(--black); }
.steps-m li::before { content: counter(s); display: grid; place-items: center; width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--black); color: var(--white); font-weight: 700; font-size: 1rem; margin-bottom: 1.1rem; }
.steps-m p { color: var(--muted); margin: 0; }
@media (max-width: 760px) { .steps-m { grid-template-columns: 1fr; gap: 1.75rem; } }

/* Split */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 4.5rem; align-items: center; }
.split-media { order: 2; }
.split-media img { display: block; width: 100%; border-radius: 16px; object-fit: cover; }
.ticks { list-style: none; padding: 0; margin: 1.75rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: .75rem 1.5rem; }
.ticks li { display: flex; gap: .6rem; align-items: flex-start; font-weight: 500; font-size: .98rem; }
.ticks svg { width: 20px; height: 20px; flex: none; margin-top: .15rem; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 2.5rem; } .split-media { order: -1; } .split-media img { max-height: 420px; } }
@media (max-width: 520px) { .ticks { grid-template-columns: 1fr; } }

/* Fleet */
.fleet-m { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.fleet-m article { padding: 1.5rem 1.4rem; background: var(--surface); border-radius: var(--radius); }
.fleet-m .f-img { margin-bottom: 1.25rem; }
.fleet-m img { display: block; width: 100%; max-width: 230px; height: auto; aspect-ratio: 160/86; object-fit: contain; margin: 0 auto; }
.fleet-m h3 { font-size: 1.3rem; }
.fleet-m ul { list-style: none; padding: 0; margin: .2rem 0 .7rem; font-size: .92rem; font-weight: 600; }
.fleet-m p { font-size: .95rem; color: var(--muted); margin: 0; }
@media (max-width: 980px) { .fleet-m { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .fleet-m { grid-template-columns: 1fr; } }

/* Table */
.table-wrap { overflow-x: auto; margin-bottom: 1.6rem; }
.table-m { width: 100%; border-collapse: collapse; min-width: 560px; font-size: .98rem; }
.table-m th, .table-m td { padding: .85rem .8rem; text-align: left; border-bottom: 1px solid var(--line); }
.table-m thead th { font-weight: 700; background: var(--black); color: var(--white); }
.table-m thead th:first-child { border-radius: 10px 0 0 10px; } .table-m thead th:last-child { border-radius: 0 10px 10px 0; }
.table-m tbody tr:hover td { background: var(--surface); }
.table-m a { font-weight: 600; }

/* FAQ: two columns */
.faq-x { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4.5rem; align-items: start; }
.faq-x .sec-head { position: sticky; top: 100px; margin: 0; }
.faq-x .sec-head p { margin-top: .6rem; }
.faq details { border-bottom: 1px solid #d4d4d4; }
.faq details:first-child { border-top: 1px solid #d4d4d4; }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 0; font-weight: 600; font-size: 1.12rem; letter-spacing: -0.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--black); color: var(--white); font-weight: 400; font-size: 1.3rem; line-height: 1; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 3rem 1.35rem 0; max-width: 64ch; color: var(--muted); }
.faq .faq-a p { margin: 0; }
@media (max-width: 860px) { .faq-x { grid-template-columns: 1fr; gap: 1.75rem; } .faq-x .sec-head { position: static; } }

/* CTA band */
.cta-band { background: var(--black); color: var(--on-dark); padding: 5rem 0; }
.cta-band .wrap { display: grid; grid-template-columns: 1fr auto; gap: .5rem 3rem; align-items: end; }
.mc .cta-band h2 { color: var(--white); font-size: clamp(2rem, 1.3rem + 2.4vw, 3.4rem); margin-bottom: .5rem; grid-column: 1; }
.cta-band p { max-width: 38rem; margin: 0; grid-column: 1; }
.cta-actions { display: flex; gap: .6rem; flex-wrap: wrap; grid-column: 2; grid-row: 1 / span 2; }
@media (max-width: 820px) { .cta-band .wrap { grid-template-columns: 1fr; } .cta-actions { grid-column: 1; grid-row: auto; margin-top: 1.5rem; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin-bottom: 2rem; }
.contact-grid > div { padding: 1.2rem 1.3rem; background: var(--surface); border-radius: var(--radius); }
.contact-grid .mc-h { font-size: 1.1rem; margin-bottom: .25rem; }
.contact-grid p { margin: 0; }
@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } }
.map-wrap { overflow: hidden; margin: 0 0 2rem; border-radius: var(--radius); }
.map-wrap iframe { display: block; width: 100%; height: 340px; border: 0; filter: grayscale(1); }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: var(--on-dark); font-size: .96rem; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding: 3.5rem 24px 2.5rem; }
.footer-top .brand-name { font-size: 2rem; }
.footer-top .brand-mark { width: 20px; height: 20px; border-width: 6px; }
.footer-top-contact { display: flex; gap: .6rem; flex-wrap: wrap; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.4fr 1fr; gap: 2rem; padding-top: 2.5rem; padding-bottom: 2rem; border-top: 1px solid var(--dark-line); }
.mc .site-footer .mc-h { color: var(--white); font-size: 1rem; margin-bottom: .9rem; letter-spacing: 0; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .45rem; }
.mc .site-footer a { color: var(--on-dark); text-decoration: none; }
.mc .site-footer a:hover { color: var(--white); text-decoration: underline; }
.mc .site-footer a.brand { color: var(--white); }
.mc .site-footer a.btn-mint { color: var(--black) !important; }
.mc .site-footer a.btn-line { color: var(--white) !important; }
.mc .site-footer a.btn-m:hover { text-decoration: none; }
.footer-areas { columns: 2; column-gap: 1rem; }
.site-footer address { font-style: normal; line-height: 1.8; margin: 0 0 1rem; }
.footer-note { font-size: .88rem; }
.footer-bottom { border-top: 1px solid var(--dark-line); padding-top: 1.25rem; padding-bottom: 1.25rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .88rem; }
.footer-bottom ul { display: flex; gap: 1.25rem; }
@media (max-width: 1020px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } .footer-grid > :first-child { grid-column: 1 / -1; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* Mobile action bar */
.mobile-bar { display: none; }
@media (max-width: 700px) {
  body.mc { padding-bottom: 72px; }
  .mobile-bar { display: grid; grid-template-columns: 1fr 1fr 1.25fr; gap: .45rem; position: fixed; left: 0; right: 0; bottom: 0; z-index: 950; padding: .6rem .6rem calc(.6rem + env(safe-area-inset-bottom)); background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(0,0,0,.08); }
  .mobile-bar .btn-m { padding: .75rem .3rem; font-size: .95rem; }
  .mobile-bar .btn-line { background: var(--surface); border-color: transparent; color: var(--black) !important; }
  .mobile-bar .btn-mint { background: var(--black); color: var(--white) !important; }
}

.notfound-links { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }


/* Tiles sitting on grey bands switch to white */
.sec-mint .fleet-m article, .sec-mint .cards a, .sec-mint .contact-grid > div, .sec-mint .facts div { background: var(--white); }
.sec-mint .cards a:hover { background: var(--surface-2); }
.site-footer { border-top: 1px solid var(--dark-line); }
.footer-grid, .footer-bottom { border-top: 0; background: linear-gradient(var(--dark-line), var(--dark-line)) no-repeat center top / calc(100% - 48px) 1px; }
@media (max-width: 560px) { .hero-badges li:nth-child(n+3) { display: none; } .hero-badges { padding: .7rem; } }
