:root {
  --ink: #13251d;
  --forest: #0b3b2d;
  --leaf: #176b4b;
  --lime: #bed83f;
  --sun: #f49b3f;
  --cream: #f8f2e7;
  --paper: #fffdf8;
  --line: #d7dece;
  --muted: #5a695f;
  --shadow: 0 18px 45px rgba(15, 45, 32, .13);
  --radius: 22px;
  --container: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--cream); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.65; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--leaf); text-underline-offset: .18em; }
a:hover { color: var(--forest); }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 { margin: 0 0 .55em; color: var(--forest); font-family: Georgia, "Times New Roman", serif; line-height: 1.06; letter-spacing: -.025em; }
h1 { font-size: clamp(2.8rem, 7vw, 5.9rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 4rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }
p { margin: 0 0 1.1rem; }
ul { padding-left: 1.25rem; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; transform: translateY(-150%); padding: .8rem 1rem; color: white; background: var(--forest); border-radius: 8px; }
.skip-link:focus { transform: none; }
.topbar { background: var(--forest); color: white; font-size: .87rem; }
.topbar__inner { min-height: 38px; display: flex; gap: 1rem 2rem; align-items: center; justify-content: space-between; }
.topbar a { color: white; text-decoration: none; }
.topbar__contacts { display: flex; flex-wrap: wrap; gap: 1rem; }
.site-header { position: sticky; z-index: 50; top: 0; background: rgba(248, 242, 231, .96); border-bottom: 1px solid rgba(11, 59, 45, .12); backdrop-filter: blur(14px); }
.header__inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; color: var(--forest); text-decoration: none; font-weight: 800; }
.brand img { width: 158px; height: auto; }
.menu { display: flex; align-items: center; gap: 1.25rem; }
.menu > a { color: var(--ink); text-decoration: none; font-size: .92rem; font-weight: 750; }
.menu > a[aria-current="page"] { color: var(--leaf); }
.menu-button { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--forest); color: white; }
.menu-button::before, .menu-button::after, .menu-button span { content: ""; display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; transition: .2s; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: .72rem 1.15rem; border: 2px solid var(--forest); border-radius: 999px; color: white !important; background: var(--forest); box-shadow: none; text-decoration: none !important; font-size: .9rem; font-weight: 800; cursor: pointer; }
.button:hover { color: var(--forest) !important; background: var(--lime); }
.button--sun { border-color: var(--sun); color: var(--ink) !important; background: var(--sun); }
.button--light { border-color: white; color: var(--forest) !important; background: white; }
.button--outline { color: var(--forest) !important; background: transparent; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.eyebrow { display: inline-flex; align-items: center; gap: .45rem; margin-bottom: .9rem; color: var(--leaf); font-size: .77rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 3px; content: ""; background: var(--sun); }
.lede { max-width: 760px; color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.25rem); }
.hero { position: relative; padding: clamp(3rem, 7vw, 6.5rem) 0 5rem; overflow: hidden; }
.hero::before { position: absolute; width: 520px; height: 520px; right: -160px; top: -210px; content: ""; border: 80px solid rgba(190, 216, 63, .25); border-radius: 50%; }
.hero__grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.hero h1 span { color: var(--leaf); }
.hero__facts { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.6rem 0 0; padding: 0; list-style: none; }
.hero__facts li { padding: .55rem .8rem; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); font-size: .88rem; font-weight: 750; }
.roadbook { position: relative; min-height: 580px; }
.roadbook__main { position: absolute; width: 74%; height: 78%; right: 4%; top: 2%; object-fit: cover; border: 10px solid var(--paper); border-radius: 34px 34px 90px 34px; box-shadow: var(--shadow); }
.roadbook__small { position: absolute; width: 49%; height: 41%; left: 0; bottom: 0; object-fit: cover; border: 9px solid var(--paper); border-radius: 26px; box-shadow: var(--shadow); }
.roadbook__tag { position: absolute; right: -1%; bottom: 6%; max-width: 220px; padding: 1.1rem 1.25rem; transform: rotate(2deg); border-radius: 18px; color: var(--ink); background: var(--lime); box-shadow: var(--shadow); font-weight: 850; line-height: 1.3; }
.section { padding: clamp(4rem, 8vw, 7.5rem) 0; }
.section--paper { background: var(--paper); }
.section--forest { color: white; background: var(--forest); }
.section--forest h2, .section--forest h3, .section--forest .eyebrow { color: white; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; }
.section-head > div { max-width: 760px; }
.fleet-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.vehicle-card { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; min-height: 335px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: 0 9px 24px rgba(15,45,32,.06); }
.vehicle-card__image { width: 100%; height: 100%; min-height: 335px; object-fit: cover; }
.vehicle-card__body { display: flex; flex-direction: column; align-items: flex-start; padding: 1.5rem; }
.vehicle-card__price { color: var(--leaf); font-weight: 900; }
.vehicle-card__specs { display: flex; flex-wrap: wrap; gap: .45rem; margin: .6rem 0 1.2rem; padding: 0; list-style: none; }
.vehicle-card__specs li { padding: .3rem .55rem; border-radius: 8px; background: #eef1e6; font-size: .78rem; font-weight: 750; }
.vehicle-card .button-row { margin-top: auto; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem; }
.feature { padding: 1.6rem; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.feature__number { display: grid; width: 42px; height: 42px; margin-bottom: 1.3rem; place-items: center; border-radius: 50%; color: white; background: var(--leaf); font-weight: 900; }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem, 7vw, 6rem); }
.split__image { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 34px 34px 110px 34px; box-shadow: var(--shadow); }
.check-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .8rem 1.5rem; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.65rem; }
.check-list li::before { position: absolute; left: 0; top: .35rem; content: "✓"; color: var(--leaf); font-weight: 950; }
.notice { padding: 1rem 1.2rem; border-left: 5px solid var(--sun); border-radius: 0 12px 12px 0; background: #fff6e7; }
.quote-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.quote { margin: 0; padding: 1.5rem; border-radius: 18px; color: var(--ink); background: var(--paper); }
.quote blockquote { margin: 0 0 1rem; font-family: Georgia, serif; font-size: 1.1rem; }
.quote figcaption { color: var(--muted); font-size: .85rem; }
.cta { position: relative; overflow: hidden; padding: clamp(2rem,5vw,4rem); border-radius: 30px; color: white; background: var(--leaf); }
.cta h2 { max-width: 750px; color: white; }
.cta::after { position: absolute; width: 280px; height: 280px; right: -80px; bottom: -170px; content: ""; border: 55px solid var(--lime); border-radius: 50%; opacity: .7; }
.page-hero { padding: 4.5rem 0 4rem; border-bottom: 1px solid var(--line); background: var(--paper); }
.page-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 3rem; }
.page-hero h1 { font-size: clamp(2.7rem, 6vw, 5rem); }
.page-hero__image { width: 100%; max-height: 420px; object-fit: cover; border-radius: 120px 22px 22px 22px; box-shadow: var(--shadow); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; color: var(--muted); font-size: .83rem; }
.breadcrumbs a { color: inherit; }
.rates { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 16px; background: var(--paper); box-shadow: var(--shadow); }
.rates th, .rates td { padding: 1rem; border-bottom: 1px solid var(--line); text-align: left; }
.rates th { color: white; background: var(--forest); }
.rates tr:last-child td { border: 0; }
.rates td:last-child { color: var(--leaf); font-weight: 900; }
.spec-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .8rem; }
.spec { padding: .8rem 1rem; border-radius: 12px; background: #edf1e6; }
.spec span { display: block; color: var(--muted); font-size: .75rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.gallery img { width: 100%; height: 310px; object-fit: cover; border-radius: 18px; }
.form { padding: clamp(1.4rem, 4vw, 2.5rem); border-radius: 24px; background: var(--paper); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.field { display: grid; gap: .38rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: .72rem .8rem; border: 1px solid #b8c2b6; border-radius: 10px; color: var(--ink); background: white; }
.field textarea { min-height: 125px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(190,216,63,.5); border-color: var(--leaf); }
.form-status { min-height: 1.5em; margin-top: .8rem; color: var(--leaf); font-weight: 750; }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: 2rem; }
.contact-list { display: grid; gap: .8rem; }
.contact-item { padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.contact-item span { display: block; color: var(--muted); font-size: .76rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.faq-list { display: grid; gap: .75rem; }
.faq-list details { padding: 1rem 1.2rem; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.faq-list summary { cursor: pointer; color: var(--forest); font-weight: 850; }
.faq-list details p { margin: .8rem 0 0; }
.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.article-card { padding: 1.4rem; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.article-card a { font-weight: 850; }
.article { max-width: 780px; margin-inline: auto; }
.article h2 { margin-top: 2.3rem; font-size: clamp(1.8rem,4vw,2.7rem); }
.article h3 { margin-top: 1.8rem; }
.article__meta { color: var(--muted); font-size: .85rem; }
.legal { max-width: 820px; }
.legal h2 { margin-top: 2.4rem; font-size: clamp(1.75rem,4vw,2.65rem); }
.site-footer { padding: 4rem 0 1.5rem; color: #d8e5db; background: #071f18; }
.site-footer a { color: white; }
.footer__grid { display: grid; grid-template-columns: 1.25fr .8fr 1fr; gap: 3rem; }
.footer__logo { width: 180px; margin-bottom: 1rem; padding: .55rem; border-radius: 12px; background: white; }
.footer__heading { color: white; font: 800 .86rem/1.2 Inter, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.footer__links { display: grid; gap: .55rem; padding: 0; list-style: none; }
.footer__bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.15); font-size: .82rem; }
.not-found { min-height: 66vh; display: grid; place-items: center; padding: 5rem 0; text-align: center; }
.not-found__code { color: var(--lime); font: 900 clamp(6rem,20vw,13rem)/.75 Georgia,serif; }

@media (max-width: 980px) {
  .menu-button { display: block; }
  .menu { position: absolute; left: 20px; right: 20px; top: calc(100% + 8px); display: none; align-items: stretch; flex-direction: column; gap: 0; padding: .8rem; border-radius: 16px; background: var(--paper); box-shadow: var(--shadow); }
  .menu.is-open { display: flex; }
  .menu > a { padding: .78rem; }
  .hero__grid, .page-hero__grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .roadbook { min-height: 500px; max-width: 650px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .feature-grid, .article-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .quote-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 28px, 1160px); }
  .topbar__inner { padding: .5rem 0; align-items: flex-start; flex-direction: column; gap: .2rem; }
  .topbar__contacts { gap: .2rem 1rem; }
  .header__inner { min-height: 72px; }
  .brand img { width: 128px; }
  .hero { padding-top: 2.6rem; }
  .roadbook { min-height: 410px; }
  .roadbook__main { width: 78%; height: 75%; }
  .roadbook__small { width: 52%; height: 37%; }
  .roadbook__tag { max-width: 175px; font-size: .82rem; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .vehicle-card { grid-template-columns: 1fr; }
  .vehicle-card__image { min-height: 245px; max-height: 360px; }
  .feature-grid, .article-grid, .quote-grid, .form-grid, .spec-grid, .footer__grid { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery img { height: 240px; }
  .field--full { grid-column: auto; }
  .footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
