:root {
  --green-950: #1f4a2b;
  --green-800: #356b40;
  --green-700: #4b8054;
  --green-deep: #173d23;
  --green-100: #edf4ec;
  --yellow: #e6be37;
  --announcement: #f28c00;
  --green-section: #3f7449;
  --green-about: #386a42;
  --cream: #f7f4ea;
  --cream-text: #f4ead6;
  --cream-text-muted: #e4d8be;
  --ink-deep: #182019;
  --ink-soft: #233126;
  --surface-cream: #f5efe2;
  --section-tint: #f7f7f2;
  --section-tint-2: #f4f5ef;
  --soft: #f2f4ef;
  --white: #ffffff;
  --text: #1e2921;
  --muted: #667067;
  --line: #d9ded7;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--text); background: #fff; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.top-message { background: var(--announcement); color: #111; }
.top-message__inner { min-height: 48px; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 18px; line-height: 1.35; font-weight: 700; }

.header {
    position: sticky;
    top: 0;
    z-index: 50;

    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--line);

    transition:
        background-color .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}
.header--static { position: static; }
.header__inner { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.header.is-scrolled {
    background: var(--green-950);
    border-bottom-color: rgba(255,255,255,.1);
    box-shadow: 0 4px 18px rgba(0,0,0,.12);
}

.header.is-scrolled .logo {
    color: #fff;
}

.header.is-scrolled .logo small {
    color: rgba(255,255,255,.65);
}

.header.is-scrolled .menu a {
    color: #fff;
}

.header.is-scrolled .menu a:hover {
    color: var(--yellow);
}

.header.is-scrolled .header__phone {
    color: #fff;
    border-left-color: rgba(255,255,255,.2);
}

.header.is-scrolled .header__phone:hover {
    color: var(--yellow);
}

.header.is-scrolled .menu-button {
    color: #fff;
    border-color: rgba(255,255,255,.3);
    background: transparent;
}
.logo { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.logo__symbol { color: var(--yellow); font-size: 18px; transform: rotate(45deg); }
.logo strong, .logo small { display: block; }
.logo strong { font-size: 17px; }
.logo small { margin-top: 1px; color: var(--muted); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.menu { display: flex; align-items: center; gap: 25px; font-size: 14px; font-weight: 700; }
.menu a:hover, .header__phone:hover { color: var(--green-700); }
.header__phone { padding-left: 22px; border-left: 1px solid var(--line); color: var(--green-800); font-weight: 700; white-space: nowrap; }
.menu-button { display: none; border: 1px solid var(--line); background: #fff; padding: 8px 12px; }
.back-link { color: var(--green-800); font-weight: 700; }


.hero {
    position: relative;
    min-height: calc(100vh - 76px);
    min-height: calc(100svh - 76px);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: #17351f;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;
    transition: opacity 1s ease;

    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
}

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

    background: linear-gradient(
        90deg,
        rgba(15, 44, 24, .88),
        rgba(15, 44, 24, .55) 55%,
        rgba(15, 44, 24, .18)
    );

    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 85px 0;
}

.hero__kicker {
    margin: 0 0 18px;
    color: #e8ddaa;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.03;
    letter-spacing: -.04em;
}

.hero__text {
    max-width: 650px;
    margin: 24px 0 0;
    color: #edf1ed;
    font-size: 18px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid transparent;
    font-weight: 700;
}

.button--yellow {
    background: var(--yellow);
    color: #20220f;
}
.button--light {
    border-color: rgba(255, 255, 255, .55);
    color: #fff;
    background: rgba(255, 255, 255, .07);
}
.button--green {
    border: 0;
    background: var(--green-800);
    color: #fff;
}
.section { padding: 92px 0; }
.section--soft { background: var(--soft); }
.section--green,
.section--about {
  position: relative;
  padding: 0;
  overflow: hidden;
  color: var(--ink-deep);
}
.section--green { background: var(--section-tint-2); }
.section--about { background: var(--section-tint); }
.section--green::before,
.section--green::after,
.section--about::before,
.section--about::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  pointer-events: none;
  z-index: 0;
}
.section--green::before,
.section--about::before {
  top: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(98,142,106,.38) 50%, rgba(255,255,255,.96) 100%);
}
.section--green::after,
.section--about::after {
  bottom: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(98,142,106,.38) 50%, rgba(255,255,255,.96) 100%);
}
.section--about .about__text p,
.section--green .settlement p { color: #59635b; }
.section--about .about__text h2,
.section--green .settlement h2 { color: var(--ink-deep); }
.section-on-green__lead { max-width: 700px; margin-bottom: 20px; color: var(--ink-deep) !important; font-size: 20px; line-height: 1.5; font-weight: 700; }
.section-title { margin-bottom: 34px; }
.section-title--row { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-title__label { margin: 0 0 8px; color: var(--green-700); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.section-title__label--light { color: #5f7265; }
h1, h2, h3, p { margin-top: 0; }
h2 { margin-bottom: 0; font-size: clamp(30px, 4vw, 46px); line-height: 1.1; letter-spacing: -.025em; }
h3 { margin-bottom: 7px; font-size: 18px; }
.updated { margin: 0 0 5px; color: var(--muted); font-size: 14px; }

.prices-wrap { overflow-x: auto; border-top: 2px solid var(--green-800); border-bottom: 1px solid var(--line); }
.prices { width: 100%; min-width: 760px; border-collapse: collapse; }
.prices th { padding: 14px 18px; color: #667168; background: #f7f8f5; font-size: 12px; letter-spacing: .04em; text-align: left; text-transform: uppercase; }
.prices th:not(:first-child), .prices td:not(:first-child) { text-align: right; }
.prices td { padding: 19px 18px; border-top: 1px solid var(--line); font-size: 15px; }
.prices tbody tr:hover { background: #fafbf8; }
.prices td.prices-empty { padding: 28px 18px; color: var(--muted); text-align: center; }
.price-change { font-size: 13px; font-weight: 700; white-space: nowrap; }
.price-change--up { color: #2a7239; }
.price-change--down { color: #a04438; }
.price-change--same { color: #7a827b; font-weight: 600; }
.price-notes { display: flex; justify-content: space-between; align-items: flex-start; gap: 35px; margin-top: 24px; }
.price-notes p { margin-bottom: 6px; }
.price-notes ul { margin: 0; padding-left: 19px; color: var(--muted); font-size: 14px; }
.price-notes a { color: var(--green-800); font-weight: 800; white-space: nowrap; }

.about { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(430px, .98fr) minmax(470px, 1.02fr); gap: 38px; align-items: stretch; min-height: 500px; width: min(1280px, calc(100% - 72px)); margin: 0 auto; padding: 82px 0; }
.about__text { display: flex; flex-direction: column; justify-content: center; padding: 0 8px 0 10px; }
.about__text p { color: #59635b; max-width: 680px; }
.about__text h2 { margin-bottom: 18px; }
.photos { position: relative; min-height: 500px; overflow: hidden; background: #d7dfd3; border-radius: 0; }
.photos__slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity .5s ease; }
.photos__slide.is-active { opacity: 1; }
.photos__slide img { width: 100%; height: 100%; object-fit: cover; }
.photos__nav { position: absolute; right: 17px; bottom: 17px; z-index: 3; display: flex; gap: 7px; }
.photos__nav button { width: 9px; height: 9px; padding: 0; border: 1px solid rgba(255,255,255,.95); border-radius: 50%; background: rgba(255,255,255,.45); }
.photos__nav button.is-active { background: #ffffff; }

.steps { list-style: none; margin: 12px 0 0; padding: 0; border-top: 1px solid var(--line); }
.steps li { display: grid; grid-template-columns: 80px 1fr; gap: 25px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.steps li > span { color: var(--green-700); font-size: 14px; font-weight: 800; }
.steps p { max-width: 700px; margin: 0; color: var(--muted); }

.settlement { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(430px, .98fr) minmax(470px, 1.02fr); gap: 38px; align-items: stretch; min-height: 460px; width: min(1280px, calc(100% - 72px)); margin: 0 auto; padding: 82px 0; }
.settlement__content { display: flex; flex-direction: column; justify-content: center; padding: 0 8px 0 10px; }
.settlement h2 { margin-bottom: 18px; }
.settlement p { max-width: 680px; color: #59635b; }
.settlement__note { padding-top: 18px; border-top: 1px solid rgba(24,32,25,.14); color: var(--ink-deep) !important; font-weight: 700; }
.settlement__photo { position: relative; min-height: 460px; overflow: hidden; background: #d7dfd3; border-radius: 0; }
.settlement__photo img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; opacity: 1; }
.settlement__photo span { position: absolute; left: 15px; bottom: 15px; background: rgba(17,37,22,.82); padding: 7px 9px; font-size: 12px; }

.documents { border-top: 2px solid var(--green-800); }
.document-row { min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 20px 4px; border-bottom: 1px solid var(--line); }
.document-row strong, .document-row small { display: block; }
.document-row small { margin-top: 5px; color: var(--muted); }
.document-row__disabled { color: #929a93; font-size: 13px; font-weight: 700; }
.document-row__download { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 8px 14px; background: var(--green-800); color: #fff; font-size: 13px; font-weight: 700; white-space: nowrap; }
.document-row__download:hover { background: var(--green-950); }

.contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: 65px; align-items: stretch; }
.contact__details h2 { margin-bottom: 28px; }
.contact dl { margin: 0; }
.contact dl > div { padding: 13px 0; border-bottom: 1px solid var(--line); }
.contact dt { margin-bottom: 3px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.contact dd { margin: 0; font-weight: 700; }
.contact dd a { color: var(--green-800); }
.contact__phones { display: flex; flex-wrap: wrap; gap: 5px 18px; }

.contact__map {
    min-height: 410px;
    overflow: hidden;
    border: 1px solid #cfd8cc;
    background: #e7ebe5;
}

.map-consent { min-height: 410px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 32px; text-align: center; }
.map-consent strong { font-size: 20px; }
.map-consent p { max-width: 410px; margin: 0; font-size: 14px; color: var(--muted); }
.map-consent > a { color: var(--green-800); font-size: 13px; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.contact__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 410px;
    border: 0;
}

.footer { padding: 48px 0 22px; background: #173d23; color: #e8eee8; }
.footer__top { display: grid; grid-template-columns: 1.35fr .9fr 1.1fr; gap: 50px; }
.footer__top strong { font-size: 18px; }
.footer__top p { margin: 7px 0 0; color: #afc0b2; }
.footer__address { margin-top: 14px !important; color: #c9d5cb !important; font-size: 13px; }
.footer nav, .footer__contact { display: grid; align-content: start; gap: 8px; }
.footer a { color: #b9c7bc; }
.footer a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 35px; padding-top: 19px; border-top: 1px solid rgba(255,255,255,.12); color: #91a494; font-size: 12px; }
.footer__bottom-note { color: #91a494; }

.history-page { min-height: calc(100vh - 76px); padding: 70px 0 90px; background: var(--soft); }
.history-page__intro { margin-bottom: 35px; }
.history-page__intro h1 { margin: 0 0 12px; font-size: clamp(38px, 5vw, 58px); line-height: 1.05; }
.history-page__intro > p:last-child { color: var(--muted); }
.history-layout { display: grid; grid-template-columns: 250px 1fr; gap: 30px; }
.history-dates { display: grid; align-content: start; border-top: 1px solid var(--line); }
.history-dates a { display: block; padding: 14px 12px; border-bottom: 1px solid var(--line); background: transparent; color: var(--muted); text-align: left; }
.history-dates a strong, .history-dates a small { display: block; }
.history-dates a small { margin-top: 2px; }
.history-dates a.is-active { background: var(--green-800); color: #fff; }
.history-content { padding: 28px; background: #fff; border: 1px solid var(--line); }
.history-content__head { display: flex; justify-content: space-between; margin-bottom: 22px; }
.history-content__head span { color: var(--muted); font-size: 13px; }
.history-content__head h2 { margin-top: 5px; font-size: 26px; }

.admin-page { min-height: 100vh; background: #eef1eb; }
.admin-login { min-height: 100vh; display: grid; place-items: center; padding: 25px; background: #e7ece4; }
.login-box { width: min(420px, 100%); padding: 34px; background: #fff; border: 1px solid var(--line); }
.login-box__label { margin-bottom: 6px; color: var(--green-700); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.login-box h1 { margin-bottom: 25px; font-size: 32px; }
.login-box label, .admin-field { display: grid; gap: 7px; margin-bottom: 15px; font-size: 13px; font-weight: 700; }
.login-box input, .admin-field textarea, .admin-price-input input { width: 100%; padding: 11px 12px; border: 1px solid #c8d0c6; background: #fff; }
.login-box .button { width: 100%; margin-top: 5px; }
.admin-container { width: min(980px, calc(100% - 40px)); margin: 0 auto; }
.admin-header { background: var(--green-950); color: #fff; }
.admin-header__inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.admin-header strong, .admin-header small { display: block; }
.admin-header small { color: #a7b7aa; }
.admin-header__inner > div:last-child { display: flex; gap: 18px; align-items: center; }
.admin-header a, .admin-header button { border: 0; background: none; color: #d7e1d9; font-size: 13px; }
.admin-main { padding: 45px 0 75px; }
.admin-section { padding: 30px 0; border-bottom: 1px solid #cdd5cb; }
.admin-section:first-child { padding-top: 0; }
.admin-section__heading { display: grid; grid-template-columns: 45px 1fr; gap: 15px; margin-bottom: 24px; }
.admin-section__heading > span { color: var(--green-700); font-weight: 800; }
.admin-section__heading h2 { margin: 0 0 4px; font-size: 24px; }
.admin-section__heading p { margin: 0; color: var(--muted); }
.admin-form-row { margin-bottom: 17px; }
.switch { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; }
.switch input { position: absolute; opacity: 0; pointer-events: none; }
.switch > span { position: relative; width: 43px; height: 24px; border-radius: 20px; background: #bbc4ba; transition: .2s; }
.switch > span::after { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; border-radius: 50%; background: #fff; transition: .2s; }
.switch input:checked + span { background: var(--green-700); }
.switch input:checked + span::after { transform: translateX(19px); }
.admin-field textarea { max-width: 680px; resize: vertical; }
.admin-prices { border-top: 1px solid #cdd5cb; }
.admin-price-row { display: grid; grid-template-columns: 55px 1fr 220px 170px; gap: 20px; align-items: center; min-height: 82px; border-bottom: 1px solid #cdd5cb; }
.admin-price-input { display: grid; grid-template-columns: 1fr 80px 30px; gap: 8px; align-items: center; color: var(--muted); font-size: 12px; }
.admin-price-input input { padding: 8px 9px; text-align: right; }
.admin-price-input small { color: var(--muted); }
.admin-history { max-width: 660px; border-top: 1px solid #cdd5cb; }
.admin-history > div { display: flex; justify-content: space-between; gap: 20px; padding: 13px 4px; border-bottom: 1px solid #cdd5cb; }
.admin-history span { color: var(--muted); font-size: 13px; }
.admin-history a { color: var(--green-800); font-size: 13px; font-weight: 800; }
.admin-save { display: flex; align-items: center; gap: 18px; padding-top: 30px; }
.admin-save p { margin: 0; color: #6e776f; font-size: 13px; }


.admin-meta { margin: 12px 0 0; color: var(--muted); font-size: 12px; }
.admin-history__info { display: grid; gap: 2px; }
.admin-history__info small { color: var(--muted); font-size: 12px; }
.admin-user-form { max-width: 680px; }
.admin-user-form .admin-field input { width: 100%; padding: 11px 12px; border: 1px solid #c8d0c6; background: #fff; }
.admin-user-passwords { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-users { display: grid; gap: 14px; max-width: 760px; margin-bottom: 26px; }
.admin-user-card { padding: 18px; border: 1px solid #cdd5cb; background: #fff; }
.admin-user-card__top { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; margin-bottom: 14px; }
.admin-user-card__top h3 { margin: 0 0 4px; }
.admin-user-status { display: inline-flex; align-items: center; min-height: 26px; padding: 0 9px; border-radius: 999px; font-size: 11px; font-weight: 800; }
.admin-user-status--active { background: #e6f1e7; color: #2d6336; }
.admin-user-status--inactive { background: #f1ece8; color: #7a5140; }
.admin-user-card__actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.admin-user-card__actions form { margin: 0; }
.admin-button-secondary { min-height: 38px; padding: 0 13px; border: 1px solid #bfc8bd; background: #fff; color: #354239; font-size: 12px; font-weight: 800; }
.admin-button-danger { min-height: 38px; padding: 0 13px; border: 1px solid #d3aaa1; background: #fff5f2; color: #8b392f; font-size: 12px; font-weight: 800; }
.admin-password-box { margin-top: 15px; padding-top: 15px; border-top: 1px solid #e0e5de; }
.admin-password-box .admin-user-passwords { margin-bottom: 10px; }
.admin-add-user { max-width: 760px; padding-top: 4px; }
.admin-add-user h3 { margin-bottom: 14px; }
.admin-limit-note { margin: 0 0 16px; color: var(--muted); font-size: 13px; }
.admin-history-note { margin-top: 12px; color: var(--muted); font-size: 12px; }


@media (max-width: 920px) {
  .header__phone { display: none; }
  .menu { gap: 16px; }
  .about, .settlement, .contact { grid-template-columns: 1fr; width: min(100% - 32px, 920px); gap: 24px; }
  .about { min-height: auto; padding: 56px 0; }
  .settlement { min-height: auto; padding: 56px 0; }
  .contact { gap: 35px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__contact { grid-column: 1 / -1; }
  .history-layout { grid-template-columns: 1fr; }
  .history-dates { grid-template-columns: repeat(3, 1fr); border-left: 1px solid var(--line); }
  .history-dates a { border-right: 1px solid var(--line); }
  .header.is-scrolled .menu {
    background: var(--green-950);
    border-color: rgba(255,255,255,.15);
  }
  .header.is-scrolled .menu a {
    color: #fff;
    border-bottom-color: rgba(255,255,255,.12);
  }
  .header.is-scrolled .menu a:hover { color: var(--yellow); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 24px, var(--max)); }
  .top-message__inner { justify-content: center; text-align: center; }
  .header__inner { min-height: 64px; }
  .menu-button { display: block; }
  .menu { position: absolute; top: 64px; left: 12px; right: 12px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 6px 12px; border: 1px solid var(--line); background: #fff; }
  .menu.is-open { display: flex; }
  .menu a { padding: 12px 3px; border-bottom: 1px solid #ecefeb; }
  .menu a:last-child { border-bottom: 0; }
  .hero { min-height: calc(100vh - 64px); min-height: calc(100svh - 64px); }
  .hero__content { padding: 65px 0; }
  .hero__text { font-size: 16px; }
  .section { padding: 66px 0; }
  .section--about, .section--green { padding: 0; }
  .section-title--row { align-items: flex-start; flex-direction: column; gap: 12px; }
  .prices-wrap { margin-right: -12px; padding-right: 12px; }
  .prices { min-width: 720px; }
  .prices th, .prices td { white-space: nowrap; }
  .prices th:first-child, .prices td:first-child { white-space: normal; min-width: 210px; }
  .price-notes { flex-direction: column; }
  .about__text, .settlement__content { padding: 12px 0 0; }
  .photos { min-height: 330px; }
  .steps li { grid-template-columns: 45px 1fr; gap: 10px; }
  .settlement__photo, .settlement__photo img { min-height: 280px; }
  .document-row { align-items: flex-start; flex-wrap: wrap; }
  .footer__top { grid-template-columns: 1fr; gap: 25px; }
  .footer__contact { grid-column: auto; }
  .footer__bottom { flex-direction: column; }
  .history-dates { grid-template-columns: 1fr; }
  .history-content { padding: 18px; }
  .admin-price-row { grid-template-columns: 45px 1fr; padding: 13px 0; }
  .admin-price-input { grid-column: 1 / -1; grid-template-columns: 1fr 90px 30px; }
  .admin-gross-preview { grid-column: 1 / -1; }
  .admin-save { align-items: flex-start; flex-direction: column; }
  .admin-user-passwords { grid-template-columns: 1fr; gap: 0; }
  .admin-user-card__top { flex-direction: column; gap: 8px; }
  .admin-user-card__actions { flex-direction: column; align-items: stretch; }
  .admin-user-card__actions form, .admin-user-card__actions button { width: 100%; }
}

@media (max-width: 720px) {
    .contact__map,
    .map-consent { min-height: 410px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 32px; text-align: center; }
.map-consent strong { font-size: 20px; }
.map-consent p { max-width: 410px; margin: 0; font-size: 14px; color: var(--muted); }
.map-consent > a { color: var(--green-800); font-size: 13px; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.contact__map iframe {
        min-height: 320px;
    }
}

.form-message {
  margin: 0 0 22px;
  padding: 12px 14px;
  border: 1px solid #c7d1c5;
  background: #fff;
  color: #344038;
  font-size: 14px;
}
.form-message--success { border-color: #a9c9ad; background: #edf6ee; color: #24562d; }
.form-message--error { border-color: #d8b5ae; background: #fff1ee; color: #8d372c; }
.form-message--info { border-color: #c7d1c5; background: #f7f8f5; color: #586159; }

.setup-box { width: min(520px, 100%); }
.setup-copy { margin-bottom: 22px; color: var(--muted); }
.setup-warning { margin-top: 20px; color: #8d372c; font-size: 13px; }

.admin-gross-preview { display: grid; gap: 3px; }
.admin-gross-preview span { color: var(--muted); font-size: 12px; }
.admin-gross-preview strong { color: var(--green-800); font-size: 14px; }
.history-empty { padding: 24px; border: 1px solid var(--line); background: #fff; color: var(--muted); }

@media (max-width: 1100px) {
  .admin-price-row { grid-template-columns: 55px 1fr 220px; }
  .admin-gross-preview { grid-column: 2 / -1; }
}
