:root {
  --ink: #11171d;
  --ink-2: #1b252d;
  --muted-ink: #667078;
  --line: #d9dddf;
  --paper: #ffffff;
  --soft: #f2f3f1;
  --warm: #ebe7df;
  --accent: #9a7a5d;
  --dark: #101820;
  --dark-2: #17222b;
  --green: #355a43;
  --red: #9a2f2f;
  --background: #ffffff;
  --foreground: #11171d;
  --card: #ffffff;
  --card-foreground: #11171d;
  --popover: #ffffff;
  --popover-foreground: #11171d;
  --primary: #11171d;
  --primary-foreground: #ffffff;
  --secondary: #ebe7df;
  --secondary-foreground: #11171d;
  --muted: #f2f3f1;
  --muted-foreground: #667078;
  --destructive: #9a2f2f;
  --border: #d9dddf;
  --input: #cbd1d4;
  --ring: #9a7a5d;
  --accent-foreground: #11171d;
  --radius: 0.25rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
.form-field input, .form-field textarea, .form-field select,
.admin-editor-grid input, .admin-editor-grid textarea, .admin-editor-grid select {
  width: 100%;
  border: 1px solid var(--input);
  padding: 10px 12px;
  color: var(--ink);
  outline: none;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus,
.admin-editor-grid input:focus, .admin-editor-grid textarea:focus, .admin-editor-grid select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(154,122,93,.14);
}
.public-button, .admin-button {
  min-height: 42px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  padding: 9px 16px;
  background: var(--dark);
  color: #fff;
  font-weight: 750;
  cursor: pointer;
}
.admin-button.secondary { background: #e9e4dc; color: var(--ink); border-color: #c8b9aa; }
.admin-button.outline { background: #fff; color: var(--ink); border-color: var(--line); }
.admin-button.danger { background: var(--red); border-color: var(--red); }
.admin-button:disabled, .public-button:disabled { cursor: wait; opacity: .62; }
.native-checkbox { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); }
.flash { margin: 20px 0; padding: 13px 16px; border: 1px solid #b8d0bf; background: #edf7ef; color: var(--green); }
.flash.error { border-color: #d6a5a5; background: #fff0f0; color: var(--red); }
.admin-nav { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 18px; }
.admin-nav a { padding: 10px 14px; border: 1px solid var(--line); background: #fff; font-size: 14px; font-weight: 750; }
.admin-nav a.active { background: var(--dark); color: #fff; border-color: var(--dark); }
.admin-card, .admin-create-card { padding: 22px; border: 1px solid var(--line); background: #fff; }
.admin-create-card { border-color: var(--accent); }
.admin-card-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.admin-card-header h2 { margin: 0; font-size: 21px; }
.admin-list { display: grid; gap: 16px; }
.admin-image-current { display: flex !important; flex-direction: row !important; align-items: center !important; gap: 14px !important; }
.admin-image-current img { width: 130px; height: 90px; object-fit: cover; border: 1px solid var(--line); }
.admin-checkbox-row { display: flex !important; grid-column: 1 / -1; align-items: center !important; gap: 10px !important; }
.admin-checkbox-row input { width: auto; }
.empty-note { color: var(--muted-ink); }
.article-body h2, .article-body h3 { margin-top: 1.8em; line-height: 1.2; }
.article-body ul, .article-body ol { padding-left: 1.3em; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.metrika-pixel, .honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 104px;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 245, 241, 0.96);
  backdrop-filter: blur(12px);
}
.site-header-inner {
  width: min(1440px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-logo { width: 335px; flex: 0 0 auto; overflow: hidden; }
.site-logo img, .footer-logo img, .admin-header > img, .login-card > img { width: 100%; height: auto; mix-blend-mode: multiply; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(14px, 1.55vw, 25px); }
.desktop-nav a { font-size: 14px; font-weight: 650; white-space: nowrap; transition: opacity .18s ease; }
.desktop-nav a:hover { opacity: .55; }
.header-action, .button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.header-action { white-space: nowrap; }
.header-action:hover, .button-dark { background: var(--dark); color: #fff; }
.button-dark:hover { background: #26323b; transform: translateY(-2px); }
.button-light { background: #fff; border-color: #aeb5b9; }
.button-light:hover, .button-outline:hover { border-color: var(--accent); color: var(--accent); }
.button-outline { background: transparent; border-color: #9da5aa; }
.mobile-navigation { display: none; margin-left: auto; position: relative; }
.mobile-navigation summary { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; border: 1px solid var(--line); background: #fff; cursor: pointer; list-style: none; }
.mobile-navigation summary::-webkit-details-marker { display: none; }
.mobile-navigation summary span { display: block; width: 20px; height: 2px; background: var(--ink); }
.mobile-navigation nav { position: fixed; top: 104px; left: 0; right: 0; padding: 14px 20px 24px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px rgba(17, 23, 29, .12); }
.mobile-navigation nav a { display: block; padding: 13px 0; border-bottom: 1px solid #edf0f1; font-weight: 700; }

.hero-section { min-height: 650px; display: grid; grid-template-columns: 1.08fr .92fr; background: linear-gradient(90deg, #f6f5f1 0%, #f6f5f1 56%, #e9e6e0 56%, #e9e6e0 100%); }
.hero-copy { padding: 82px 5vw 58px; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 18px; color: var(--accent); font-size: 12px; line-height: 1.3; letter-spacing: .18em; font-weight: 850; text-transform: uppercase; }
.hero-section h1 { max-width: 900px; margin: 0 0 18px; font-size: clamp(52px, 6.3vw, 88px); line-height: .96; letter-spacing: -.058em; font-weight: 760; }
.hero-subtitle { margin: 0 0 24px; color: var(--accent); font-size: clamp(24px, 2.2vw, 32px); line-height: 1.25; }
.hero-text { max-width: 650px; margin: 0; color: #515a60; font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px 24px; margin-top: 35px; padding-top: 22px; border-top: 1px solid #d3d6d5; color: #50595f; font-size: 13px; }
.hero-facts span::before { content: "✓"; margin-right: 8px; font-weight: 900; }
.hero-visual { position: relative; min-height: 650px; overflow: hidden; background: #dcd8d1; }
.hero-visual > img { object-fit: cover; filter: grayscale(.45) saturate(.72) contrast(1.04); }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16, 24, 32, .05), rgba(16, 24, 32, .4)); }
.technical-grid { position: absolute; z-index: 1; inset: 0; background: repeating-linear-gradient(90deg, transparent 0 72px, rgba(255,255,255,.1) 73px), repeating-linear-gradient(0deg, transparent 0 72px, rgba(255,255,255,.08) 73px); }
.hero-brand-stamp { position: absolute; z-index: 2; top: 34px; right: 32px; color: #fff; font-size: 12px; letter-spacing: .38em; font-weight: 900; }
.hero-visual-card { position: absolute; z-index: 3; left: 32px; bottom: 32px; width: min(340px, calc(100% - 64px)); padding: 20px 22px; background: rgba(16, 24, 32, .92); color: #fff; }
.hero-visual-card strong { display: block; margin-bottom: 5px; font-size: 19px; }
.hero-visual-card span { color: #cdd3d7; font-size: 13px; }

.site-section { padding: 72px 5vw; scroll-margin-top: 100px; }
.section-light { background: #fff; }
.section-soft { background: var(--soft); }
.section-warm { background: var(--warm); }
.section-dark { background: var(--dark); color: #fff; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 30px; }
.section-heading h2, .contact-copy h2 { margin: 0; font-size: clamp(36px, 4vw, 52px); line-height: 1.02; letter-spacing: -.04em; }
.section-heading > p { max-width: 650px; margin: 0; color: var(--muted-ink); line-height: 1.65; }
.section-dark .section-heading > p { color: #c5cdd2; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.service-card { min-height: 220px; padding: 22px; border: 1px solid var(--line); background: #fff; }
.service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 1; }
.card-number { display: block; min-height: 52px; color: var(--accent); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.new-badge { display: inline-block; margin: -7px 0 15px; padding: 5px 8px; background: var(--accent); color: #fff; font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.service-card h3, .professional-card h3, .review-card h3, .article-card h3, .article-card h2 { margin: 0 0 10px; font-size: 21px; line-height: 1.25; }
.service-card p, .professional-card p, .article-card p { margin: 0; color: var(--muted-ink); font-size: 15px; line-height: 1.65; }

.featured-project { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 320px; border: 1px solid var(--line); background: #fff; }
.project-media { position: relative; min-height: 360px; overflow: hidden; background: #d7d4ce; }
.project-media img { object-fit: cover; }
.project-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(16,24,32,.58)); }
.project-media span { position: absolute; z-index: 2; left: 24px; bottom: 22px; padding: 7px 10px; background: rgba(255,255,255,.9); color: var(--ink); font-size: 14px; font-weight: 850; }
.project-copy { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.project-meta { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.project-copy h3 { margin: 15px 0 12px; font-size: clamp(28px, 3vw, 40px); line-height: 1.1; }
.project-copy p { max-width: 730px; margin: 0 0 24px; color: var(--muted-ink); font-size: 16px; line-height: 1.7; }
.project-copy a { font-weight: 800; }
.works-actions { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.project-gallery-details { margin-top: 16px; border: 1px solid var(--line); background: #fff; }
.project-gallery-details summary { padding: 16px 20px; cursor: pointer; font-size: 14px; font-weight: 800; list-style: none; }
.project-gallery-details summary::-webkit-details-marker { display: none; }
.project-gallery-details summary::after { content: "+"; float: right; color: var(--accent); font-size: 20px; line-height: 1; }
.project-gallery-details[open] summary::after { content: "−"; }
.project-gallery { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 8px; padding: 0 8px 8px; }
.project-gallery img, .project-gallery video { width: 100%; height: 310px; object-fit: cover; background: #d7d4ce; }

.professional-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.professional-card { min-height: 235px; padding: 25px; border: 1px solid #2c3943; background: var(--dark-2); }
.professional-card > span { display: block; margin-bottom: 52px; color: #b99a7c; font-size: 12px; font-weight: 900; }
.professional-card p { color: #c8d0d5; }
.rental-card-link { position: relative; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.rental-card-link:hover { transform: translateY(-4px); border-color: #9a7a5d; background: #202d36; }
.rental-card-link strong { display: inline-block; margin-top: 18px; color: #d6b99c; font-size: 14px; }

.review-grid, .article-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.review-card, .article-card { padding: 22px; border: 1px solid var(--line); background: #fff; }
.review-card-top { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 30px; }
.review-card-top span, .article-category { display: inline-block; padding: 4px 8px; background: #eeefed; font-size: 12px; }
.review-card-top b { color: var(--accent); font-size: 13px; letter-spacing: 2px; }
.review-service { margin: 0 0 12px; color: #899096; font-size: 13px; }
.review-card blockquote { margin: 0; color: #505960; font-size: 15px; line-height: 1.7; }
.review-form { max-width: 980px; margin-top: 28px; padding: 25px; border: 1px solid var(--line); background: #fff; }
.review-form-title h3 { margin: 0; font-size: 23px; }
.review-form-title p { margin: 4px 0 20px; color: var(--muted-ink); }
.form-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: grid; gap: 7px; margin-bottom: 14px; }
.form-field label { line-height: 1.35; }
.form-field input, .form-field textarea, .form-field [data-slot="select-trigger"] { min-height: 46px; border-radius: 3px; background: #fff; }
.form-field textarea { min-height: 120px; }
.public-button { min-height: 46px; border-radius: 3px; background: var(--dark); color: #fff; }
.public-button:hover { background: #26323b; }
.form-message { min-height: 24px; margin: 12px 0 0; font-size: 14px; font-weight: 700; }
.form-message.success { color: var(--green); }
.form-message.error { color: var(--red); }
.content-empty { padding: 28px; border: 1px dashed #bfc6ca; background: rgba(255,255,255,.58); color: var(--muted-ink); }
.content-empty.large { min-height: 180px; display: grid; place-items: center; text-align: center; }

.article-card { padding: 0 22px 22px; overflow: hidden; }
.article-card > img, .article-placeholder { width: calc(100% + 44px); height: 190px; margin: 0 -22px 20px; object-fit: cover; }
.article-placeholder { display: flex; align-items: end; justify-content: flex-end; padding: 18px; background: linear-gradient(135deg, #d8d4cc, #f5f3ee); color: #6c6d6a; font-size: 12px; font-weight: 900; letter-spacing: .18em; }
.article-card h3, .article-card h2 { margin-top: 14px; }
.article-card-bottom { display: flex; justify-content: space-between; align-items: end; gap: 18px; margin-top: 24px; padding-top: 14px; border-top: 1px solid var(--line); }
.article-card-bottom span { color: #899096; font-size: 12px; }
.article-card-bottom a { font-size: 14px; font-weight: 800; white-space: nowrap; }
.section-action { display: flex; justify-content: flex-end; margin-top: 20px; }

.contact-section { display: grid; grid-template-columns: .82fr 1.18fr; background: var(--dark); color: #fff; }
.contact-copy { padding: 70px 5vw; }
.contact-copy > p:not(.eyebrow) { max-width: 620px; margin: 20px 0 0; color: #c5cdd2; line-height: 1.7; }
.contact-list { margin-top: 32px; }
.contact-list a { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid #39444d; }
.contact-list span { color: #aeb6bc; }
.lead-form { padding: 70px 5vw; background: #151f27; border-left: 1px solid #2c3943; }
.choice-fieldset { margin: 0 0 22px; padding: 0; border: 0; }
.choice-fieldset legend { margin-bottom: 10px; color: #d2d7db; font-size: 14px; font-weight: 750; }
.choice-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.choice-button { min-height: 42px; padding: 8px 14px; border: 1px solid #43505a; border-radius: 3px; background: transparent; color: #fff; cursor: pointer; }
.choice-button:hover { border-color: #9a7a5d; }
.choice-button.is-active { background: var(--warm); border-color: var(--warm); color: var(--ink); font-weight: 800; }
.lead-form .form-field input { background: #101820; border-color: #43505a; color: #fff; }
.lead-form .form-field label { color: #d2d7db; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 18px; color: #c5cdd2; }
.consent-row [data-slot="checkbox"] { margin-top: 2px; border-color: #7d878e; }
.lead-form .public-button { background: var(--warm); color: var(--ink); }

.site-footer { padding: 32px 5vw 18px; border-top: 1px solid var(--line); background: #f6f5f1; }
.site-footer-inner { display: flex; align-items: center; gap: 38px; }
.footer-logo { width: 230px; margin-right: auto; }
.footer-location { display: flex; flex-direction: column; gap: 3px; font-size: 14px; }
.footer-location span { color: var(--muted-ink); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; font-weight: 700; }
.footer-bottom { margin-top: 20px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted-ink); font-size: 13px; }

.inner-page { min-height: 70vh; padding: 64px 5vw 90px; background: var(--soft); }
.inner-page-heading { max-width: 1040px; margin-bottom: 44px; }
.inner-page-heading h1 { margin: 0 0 18px; font-size: clamp(50px, 7vw, 88px); line-height: .96; letter-spacing: -.055em; }
.inner-page-heading > p:not(.eyebrow) { max-width: 760px; margin: 0; color: var(--muted-ink); font-size: 18px; line-height: 1.7; }
.article-grid-full { grid-template-columns: repeat(3, minmax(0,1fr)); }
.article-page { width: min(900px, calc(100% - 40px)); margin: 0 auto; padding: 58px 0 96px; }
.back-link { display: inline-block; margin-bottom: 42px; color: var(--muted-ink); font-weight: 700; }
.article-heading h1 { margin: 18px 0; font-size: clamp(42px, 6vw, 70px); line-height: 1.02; letter-spacing: -.045em; }
.article-heading > p { max-width: 780px; color: var(--muted-ink); font-size: 20px; line-height: 1.6; }
.article-heading time { color: #899096; font-size: 13px; }
.article-cover { width: 100%; max-height: 560px; margin: 38px 0; object-fit: cover; }
.article-body { margin-top: 45px; font-size: 18px; line-height: 1.85; }
.article-body p { white-space: pre-line; }
.article-contact { margin-top: 58px; padding-top: 30px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.article-contact h2 { margin: 0; font-size: 28px; }

.rental-heading { max-width: 1120px; }
.rental-heading .hero-actions { margin-top: 28px; }
.equipment-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.equipment-card { border: 1px solid var(--line); background: #fff; }
.equipment-card > img, .equipment-placeholder { width: 100%; height: 290px; object-fit: contain; background: #fff; }
.equipment-placeholder { display: grid; place-items: center; background: linear-gradient(135deg, #d8d4cc, #f5f3ee); color: #6c6d6a; font-weight: 900; letter-spacing: .18em; }
.equipment-card-body { padding: 22px; }
.equipment-meta { display: flex; justify-content: space-between; gap: 12px; font-size: 12px; }
.equipment-meta span { color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.equipment-meta b.available { color: var(--green); }
.equipment-meta b.unavailable { color: var(--red); }
.equipment-card h2 { margin: 16px 0 10px; font-size: 23px; line-height: 1.2; }
.equipment-card p { margin: 0; color: var(--muted-ink); font-size: 15px; line-height: 1.65; }
.equipment-specs { margin-top: 18px; padding-top: 15px; border-top: 1px solid var(--line); color: #4e585f; white-space: pre-line; font-size: 14px; line-height: 1.65; }
.equipment-prices { margin: 22px 0; }
.equipment-prices div { display: flex; justify-content: space-between; gap: 15px; padding: 9px 0; border-bottom: 1px solid #edf0f1; }
.equipment-prices dt { color: var(--muted-ink); }
.equipment-prices dd { margin: 0; font-weight: 850; }
.equipment-action { width: 100%; }
.rental-rules { margin-top: 70px; padding-top: 38px; border-top: 1px solid var(--line); }
.rental-rules h2 { margin: 0 0 25px; font-size: 38px; }
.rental-rules > div { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.rental-rules article { padding: 22px; border: 1px solid var(--line); background: #fff; }
.rental-rules article span { color: var(--accent); font-size: 12px; font-weight: 900; }
.rental-rules article h3 { margin: 28px 0 8px; font-size: 20px; }
.rental-rules article p { margin: 0; color: var(--muted-ink); }

.login-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: var(--soft); }
.login-card { width: min(430px, 100%); padding: 32px; border: 1px solid var(--line); background: #fff; }
.login-card > img { width: 250px; margin-bottom: 32px; }
.login-card h1 { margin: 0 0 7px; font-size: 40px; line-height: 1; }
.login-card > p:not(.eyebrow):not(.form-message) { color: var(--muted-ink); }
.login-card .admin-button { width: 100%; min-height: 46px; margin-top: 5px; }

.admin-page { min-height: 100vh; padding: 38px 4vw 90px; background: #f2f4f5; }
.admin-header { display: grid; grid-template-columns: 240px 1fr auto; align-items: end; gap: 34px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.admin-header > img { width: 240px; }
.admin-header h1 { margin: 0 0 4px; font-size: 48px; line-height: 1; }
.admin-header p:not(.eyebrow) { margin: 0; color: var(--muted-ink); }
.admin-header-actions { display: flex; align-items: center; gap: 10px; }
.admin-header-actions > a { font-size: 14px; font-weight: 750; }
.admin-error { margin: 20px 0; padding: 14px 16px; border: 1px solid #d6a5a5; background: #fff0f0; color: var(--red); }
.admin-tabs { margin-top: 24px; }
.admin-list { display: grid; gap: 16px; margin-top: 18px; }
.admin-editor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.admin-editor-grid > div { display: grid; gap: 7px; align-content: start; }
.admin-wide { grid-column: 1 / -1; }
.admin-editor-grid input, .admin-editor-grid textarea, .admin-editor-grid [data-slot="select-trigger"] { min-height: 42px; border-radius: 3px; background: #fff; }
.admin-editor-grid textarea { resize: vertical; }
.admin-actions { display: flex !important; flex-direction: row !important; flex-wrap: wrap; gap: 8px !important; margin-top: 18px; }
.admin-message { grid-column: 1 / -1; margin: 8px 0 0; color: var(--green); font-size: 14px; font-weight: 700; }
.admin-image { grid-template-columns: 130px auto !important; align-items: center !important; justify-content: start !important; }
.admin-image img { width: 130px; height: 90px; object-fit: cover; border: 1px solid var(--line); }
.status-badge { padding: 5px 8px; background: #edf0f1; font-size: 12px; font-weight: 800; }
.status-published, .status-active { background: #e7f1e9; color: var(--green); }
.status-rejected, .status-hidden { background: #f4e7e7; color: var(--red); }
.status-pending, .status-draft, .status-unavailable { background: #eee9df; color: #71593e; }
.admin-empty { padding: 30px; border: 1px dashed #bfc6ca; background: #fff; color: var(--muted-ink); }

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .header-action { margin-left: auto; }
  .mobile-navigation { display: block; margin-left: 0; }
  .service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .article-grid-full, .equipment-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .site-header { height: 82px; }
  .site-header-inner { padding: 0 18px; }
  .site-logo { width: 245px; }
  .header-action { display: none; }
  .mobile-navigation { margin-left: auto; }
  .mobile-navigation nav { top: 82px; }
  .hero-section { grid-template-columns: 1fr; }
  .hero-copy { padding: 64px 5vw 42px; }
  .hero-visual { min-height: 460px; }
  .hero-facts { grid-template-columns: 1fr; }
  .featured-project, .contact-section { grid-template-columns: 1fr; }
  .professional-grid, .review-grid, .article-grid { grid-template-columns: 1fr; }
  .lead-form { border-left: 0; border-top: 1px solid #2c3943; }
  .site-footer-inner { align-items: flex-start; flex-wrap: wrap; }
  .footer-logo { width: 220px; flex-basis: 100%; }
  .admin-header { grid-template-columns: 190px 1fr; align-items: center; }
  .admin-header-actions { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 82px; }
  .site-logo { width: 210px; }
  .hero-copy { padding: 50px 20px 34px; }
  .hero-section h1 { font-size: 48px; }
  .hero-subtitle { font-size: 25px; }
  .hero-actions, .works-actions { display: grid; }
  .hero-actions .button, .works-actions .button { width: 100%; }
  .hero-visual { min-height: 380px; }
  .site-section { padding: 50px 20px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 16px; }
  .service-grid { grid-template-columns: 1fr; }
  .featured-project { min-height: 0; }
  .project-media { min-height: 360px; }
  .project-copy { padding: 28px 24px; }
  .project-gallery { grid-template-columns: 1fr 1fr; }
  .project-gallery img, .project-gallery video { height: 260px; }
  .form-columns { grid-template-columns: 1fr; }
  .contact-copy, .lead-form { padding: 52px 20px; }
  .site-footer { padding: 28px 20px 18px; }
  .site-footer-inner, .footer-links { flex-direction: column; gap: 14px; }
  .inner-page { padding: 46px 20px 70px; }
  .inner-page-heading h1 { font-size: 52px; }
  .article-grid-full, .equipment-grid { grid-template-columns: 1fr; }
  .article-page { width: calc(100% - 40px); padding: 40px 0 70px; }
  .article-heading h1 { font-size: 42px; }
  .article-heading > p { font-size: 17px; }
  .article-body { font-size: 17px; }
  .article-contact { display: block; }
  .article-contact .button { width: 100%; margin-top: 18px; }
  .rental-rules > div { grid-template-columns: 1fr; }
  .admin-page { padding: 24px 12px 60px; }
  .admin-header { display: block; }
  .admin-header > img { width: 220px; margin-bottom: 24px; }
  .admin-header-actions { margin-top: 18px; }
  .admin-nav { display: grid; grid-template-columns: 1fr; }
  .admin-editor-grid { grid-template-columns: 1fr; }
  .admin-wide { grid-column: auto; }
  .admin-image { grid-template-columns: 1fr !important; }
}

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