:root {
  --ink: #22302b;
  --soft: #5c6d66;
  --line: #dde6e2;
  --sea: #1b7a5a;
  --sea-deep: #135c44;
  --sun: #e9a03b;
  --mist: #f2f8f5;
  --paper: #ffffff;
  --r: 9px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Jost', sans-serif; color: var(--ink); background: var(--paper); line-height: 1.65; }
img { max-width: 100%; }
a { color: var(--sea); text-decoration: none; }
a:hover { color: var(--sea-deep); }
h1, h2, h3 { line-height: 1.25; font-weight: 600; }
h1 { font-size: clamp(30px, 4vw, 46px); }
h2 { font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 14px; }
h3 { font-size: 19px; margin-bottom: 8px; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 22px; }

/* topbar */
.topbar { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 900; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 9px; color: var(--ink); font-weight: 600; font-size: 18px; }
.brand-mark { background: var(--sea); color: #fff; border-radius: var(--r); padding: 4px 8px; font-size: 14px; letter-spacing: 1px; }
.brand-name em { color: var(--sea); font-style: normal; }
.nav-links ul { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav-links a { color: var(--ink); font-size: 15px; padding: 8px 13px; border-radius: var(--r); }
.nav-links a:hover { background: var(--mist); color: var(--sea-deep); }
.cta-link { background: var(--sun); color: var(--ink) !important; font-weight: 600; margin-left: 8px; }
.cta-link:hover { filter: brightness(.95); }
.burger { display: none; background: none; border: 0; cursor: pointer; }
.burger span { display: block; width: 23px; height: 2px; background: var(--ink); margin: 5px 0; }

/* crumbs */
.crumb-trail { background: var(--mist); border-bottom: 1px solid var(--line); font-size: 13.5px; padding: 9px 0; }
.crumb-trail ol { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; }
.crumb-trail li + li::before { content: "/"; color: var(--soft); margin-right: 8px; }
.crumb-trail a { font-weight: 500; }
.crumb-trail li:last-child span { color: var(--soft); }

/* split hero */
.intro-split { background: var(--paper); }
.intro-split .wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 42px; align-items: center; min-height: 430px; padding-top: 30px; padding-bottom: 34px; }
.intro-copy { display: flex; flex-direction: column; justify-content: center; }
.intro-copy h1 { margin-bottom: 14px; }
.intro-lead { font-size: 17px; color: var(--soft); margin-bottom: 20px; max-width: 52ch; }
.perk-row { display: flex; flex-wrap: wrap; gap: 8px; }
.perk { border: 1.5px solid var(--sea); color: var(--sea-deep); border-radius: 40px; padding: 5px 14px; font-size: 13.5px; font-weight: 500; }
.perk-strong { background: var(--sea); color: #fff; }
.intro-photo { background-size: cover; background-position: center; min-height: 340px; border-radius: var(--r); }

/* widget band */
.search-zone { background: var(--mist); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; }
.search-zone .wrap { max-width: 1080px; }

/* blocks */
.block { padding: 52px 0; }
.block-alt { background: var(--mist); }
.block-title { margin-bottom: 20px; }
.prose { max-width: 74ch; }
.prose p { margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 14px 22px; }
.prose li { margin-bottom: 6px; }
.prose table { border-collapse: collapse; width: 100%; margin: 6px 0 16px; }
.prose th, .prose td { border: 1px solid var(--line); padding: 9px 12px; text-align: left; font-size: 15px; }
.prose th { background: var(--mist); }

/* feature cards: icon left */
.feature-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.feature { display: flex; gap: 13px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 18px; }
.feature-ico { flex: 0 0 38px; height: 38px; border-radius: var(--r); background: var(--mist); color: var(--sea); display: flex; align-items: center; justify-content: center; font-size: 19px; font-weight: 700; }
.feature h3 { font-size: 16.5px; }
.feature p { font-size: 14.5px; color: var(--soft); }

/* FAQ arrows */
.qa-item { border-bottom: 1px solid var(--line); }
.qa-q { padding: 15px 30px 15px 2px; cursor: pointer; font-weight: 500; position: relative; }
.qa-q::after { content: ""; position: absolute; right: 8px; top: 50%; width: 8px; height: 8px; border-right: 2px solid var(--sea); border-bottom: 2px solid var(--sea); transform: translateY(-70%) rotate(45deg); transition: transform .2s; }
.qa-item.open .qa-q::after { transform: translateY(-30%) rotate(225deg); }
.qa-a { display: none; padding: 0 2px 15px; color: var(--soft); }
.qa-item.open .qa-a { display: block; }

/* reviews */
.feedback-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 18px; }
.feedback-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; }
.feedback-stars { color: var(--sun); letter-spacing: 2px; margin-bottom: 6px; }
.feedback-meta { font-size: 13.5px; color: var(--soft); margin-top: 10px; }

/* forms */
.form-slab { max-width: 620px; }
.form-slab label { display: block; font-weight: 500; font-size: 14.5px; margin: 14px 0 5px; }
.form-slab input[type=text], .form-slab input[type=email], .form-slab input[type=tel],
.form-slab select, .form-slab textarea { width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: var(--r); font-family: inherit; font-size: 15px; }
.form-slab textarea { min-height: 120px; resize: vertical; }
.btn-go { display: inline-block; background: var(--sea); color: #fff; border: 0; border-radius: var(--r); padding: 12px 26px; font-family: inherit; font-size: 15.5px; font-weight: 600; cursor: pointer; margin-top: 16px; }
.btn-go:hover { background: var(--sea-deep); }
.form-ok { background: #e8f6ee; border: 1px solid #bfe4cd; color: #1c6b40; border-radius: var(--r); padding: 13px 15px; margin-bottom: 14px; font-weight: 500; }
.trap { position: absolute; left: -9999px; opacity: 0; height: 0; }
.star-set { display: inline-flex; flex-direction: row-reverse; gap: 4px; }
.star-set input { display: none; }
.star-set label { font-size: 28px; color: var(--line); cursor: pointer; }
.star-set label:hover, .star-set label:hover ~ label, .star-set input:checked ~ label { color: var(--sun); }

/* map */
.map-shell { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); line-height: 0; margin: 14px 0; }

/* footer */
.page-foot { background: var(--ink); color: #cfd9d5; margin-top: 40px; }
.page-foot .wrap { padding-top: 44px; }
.foot-cols { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 30px; border-bottom: 1px solid #3a4a44; }
.foot-brand { color: #fff; font-weight: 600; font-size: 17px; margin-bottom: 10px; }
.foot-brand em { color: var(--sun); font-style: normal; }
.foot-note { font-size: 14px; line-height: 1.6; }
.foot-pay { margin-top: 14px; }
.foot-pay-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .6px; color: #9fb0a9; margin-bottom: 7px; }
.pay-row { display: flex; gap: 8px; }
.pay-chip { width: 48px; height: 31px; background: #fff; border-radius: 6px; display: flex; align-items: center; justify-content: center; padding: 3px; }
.pay-chip-cash { font-size: 11px; font-weight: 700; color: #1b7a5a; }
.foot-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 12px; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 7px; font-size: 14.5px; }
.foot-col a { color: #cfd9d5; }
.foot-col a:hover { color: #fff; }
.foot-contact li { line-height: 1.5; }
.foot-base { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; font-size: 13.5px; flex-wrap: wrap; gap: 8px; }
.foot-legal { display: flex; gap: 16px; }

@media (max-width: 900px) {
  .intro-split .wrap { grid-template-columns: 1fr; gap: 20px; padding-top: 18px; }
  .intro-photo { min-height: 210px; order: -1; }
  .nav-links { display: none; position: absolute; top: 66px; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 12px 20px; }
  .nav-links.show { display: block; }
  .nav-links ul { flex-direction: column; align-items: stretch; }
  .burger { display: block; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .foot-cols { grid-template-columns: 1fr; } }
