:root {
  --bg: #090a0c;
  --bg-elevated: #12141a;
  --bg-card: #171a22;
  --line: #2a2e38;
  --text: #f2eee6;
  --muted: #a39c90;
  --accent: #c1f500;
  --accent-2: #ee0388;
  --on-accent: #0b0c0e;
  --danger: #c45a2d;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --header-h: auto;
  --radius: 14px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Oswald", "Manrope", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 10, 12, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 160px;
  padding: 8px 0 4px;
}

.header-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 10px;
  padding: 8px 12px 8px 10px;
  background: #151820;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 10px;
  margin-left: 2px;
  border-left: 1px solid var(--line);
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.header-contact .contact-item {
  padding: 4px 12px 4px 4px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.contact-item:hover {
  color: var(--accent);
}

.header-contact .contact-item:hover {
  background: rgba(193, 245, 0, 0.08);
  border-color: rgba(193, 245, 0, 0.22);
}

.icon-btn,
.social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  line-height: 0;
  padding: 0;
  box-sizing: border-box;
}

.icon-btn svg,
.social svg {
  display: block;
  width: 58%;
  height: 58%;
  margin: 0;
  flex: none;
  transform: none;
}

.icon-btn svg {
  fill: currentColor;
}

.icon-phone {
  background: var(--accent);
  color: var(--on-accent);
}

.icon-mail {
  background: var(--accent-2);
  color: #fff;
}

.social {
  border: 0;
}

.social-fb {
  background: #1877f2;
}

.social-fb svg {
  fill: #fff;
}

.social-fb:hover {
  background: #0d65d9;
}

.social-tt {
  background: #111;
}

.social-tt:hover {
  background: #000;
}

.social-tt svg {
  width: 26px;
  height: 26px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo img {
  height: 176px;
  width: 380px;
  max-width: 42vw;
  object-fit: fill;
  object-position: left center;
}

.brand-skip {
  color: #ee0388;
}

.brand-max {
  color: #c1f500;
}

.brand-inline {
  font-weight: 800;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 6px;
  margin: 0 0 10px;
  padding: 6px 10px;
  background: #151820;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  transition: 0.2s ease;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  color: var(--on-accent);
  background: var(--accent);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: #000;
  padding: 0;
  margin: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.slide.active {
  position: relative;
  inset: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide img.slide-img-subject {
  object-position: center center;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 10, 12, 0.12) 0%, rgba(9, 10, 12, 0.48) 100%);
}

.slide-copy {
  position: relative;
  z-index: 2;
  padding: 22px 0 44px;
}

.kicker {
  color: var(--accent-2);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 10px;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(1.45rem, 3.2vw, 2.4rem);
  max-width: 18ch;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  text-transform: uppercase;
}

.slide-copy .kicker {
  margin-bottom: 6px;
  color: #fff;
}

.slide-copy h1,
.slide-copy h2 {
  font-size: clamp(1.45rem, 3.2vw, 2.4rem);
  max-width: 18ch;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.slide-copy > p:not(.kicker) {
  max-width: 52ch;
  color: #ddd6c8;
  margin: 0 0 16px;
  font-size: 0.95rem;
  padding: 16px 16px 14px;
  background: rgba(9, 10, 12, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.slide-how::after {
  background: linear-gradient(180deg, rgba(9, 10, 12, 0.35) 0%, rgba(9, 10, 12, 0.72) 100%);
}

.slide-how .slide-copy h2 {
  max-width: none;
}

.slide-how-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
  margin: 0 0 20px;
}

.slide-how-steps article {
  background: rgba(9, 10, 12, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px 16px 14px;
}

.slide-how-steps span {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 6px;
}

.slide-how-steps h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.slide-copy .slide-how-steps p {
  margin: 0;
  max-width: none;
  font-size: 0.88rem;
  color: #ddd6c8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--accent-2);
  color: #fff;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--on-accent);
  background: var(--accent);
}

.slider-nav {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #6d675c;
  cursor: pointer;
}

.dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 999px;
}

.arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(9, 10, 12, 0.45);
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
}

.arrow.prev {
  left: 18px;
}

.arrow.next {
  right: 18px;
}

section {
  padding: 84px 0;
}

.section-head {
  margin-bottom: 36px;
}

.section-head p {
  color: var(--muted);
  max-width: 72ch;
  margin: 0 0 14px;
}

.kontenery-intro {
  margin-bottom: 36px;
  align-items: start;
}

.kontenery-heading {
  margin-bottom: 0;
}

.kontenery-copy p {
  color: var(--muted);
  max-width: none;
  margin: 0 0 14px;
}

.kontenery-photos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
}

.fill-guide {
  margin: 0 auto;
  padding: 0;
  width: 75%;
  background: transparent;
  border: 0;
}

.fill-guide img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 210px !important;
  max-height: 210px;
  min-height: 0 !important;
  margin: 0;
  object-fit: contain !important;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.fill-guide figcaption {
  margin: 10px 0 0;
  padding: 0;
  background: transparent;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 0;
}

.kontenery-intro .section-head {
  margin-bottom: 0;
}

.grid-3,
.grid-2,
.gallery-grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: 1.1fr 0.9fr;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img {
  height: 210px;
  width: 100%;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.card h3 {
  font-size: 1.25rem;
}

.card p,
.muted {
  color: var(--muted);
}

.sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.sizes-label {
  margin: 16px 0 0 !important;
  color: var(--text) !important;
  font-size: 0.88rem;
  font-weight: 700;
}

.sizes span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  color: var(--accent);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.split img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.split img.split-img-full {
  height: auto;
  max-height: none;
  object-fit: contain;
  background: var(--bg-elevated);
}

.split .btn {
  margin-top: 18px;
}

.split-start {
  align-items: stretch;
}

.split-media {
  display: grid;
  align-self: stretch;
  min-height: 100%;
}

.split-start .split-media img {
  position: static;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.split-start .kontenery-photos {
  align-self: start;
  min-height: 0;
}

.split-start .kontenery-photos > img {
  width: 75%;
  height: 210px;
  min-height: 0;
  margin-inline: auto;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.checklist {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding: 6px 0 6px 28px;
  color: var(--text);
  font-size: 0.95rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  height: 240px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.05);
}

.gallery-grid a:nth-child(n + 7) {
  display: none;
}

.gallery-grid.is-open a:nth-child(n + 7) {
  display: block;
}

.gallery-more {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

.contact-card,
form {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-card .contact-item {
  display: flex;
  margin: 10px 0;
  color: var(--text);
}

.contact-card .contact-item:hover {
  color: var(--accent);
}

.contact-logo {
  width: min(280px, 85%);
  height: auto;
  margin: 0 0 12px;
  object-fit: contain;
}

.contact-name {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 1.15rem;
}

.contact-address {
  margin: 0 0 16px;
  color: var(--text);
  line-height: 1.55;
}

.account-copy {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 4px;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.account-no {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.account-copy:hover .account-no,
.account-copy:hover .account-copy-hint {
  color: var(--accent-2);
}

.account-copy-hint {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.account-copy.is-copied .account-copy-hint {
  color: var(--accent);
}

.hours-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.hours-table caption {
  caption-side: top;
  text-align: left;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--accent-2);
  margin-bottom: 8px;
}

.hours-table th,
.hours-table td {
  padding: 6px 8px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.hours-table th {
  text-align: left;
  color: var(--text);
}

.hours-table td {
  text-align: right;
  color: var(--accent);
  white-space: nowrap;
}

.hours-table tbody tr:last-child th,
.hours-table tbody tr:last-child td {
  color: var(--accent-2);
}

.map-wrap {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  height: 220px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

form {
  display: grid;
  gap: 12px;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
}

.form-status-ok {
  background: rgba(193, 245, 0, 0.12);
  border: 1px solid rgba(193, 245, 0, 0.35);
  color: var(--accent);
}

.form-status-err {
  background: rgba(196, 90, 45, 0.15);
  border: 1px solid rgba(196, 90, 45, 0.45);
  color: #f0c4b0;
}

.form-note {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 14px 16px 16px;
  background: rgba(193, 245, 0, 0.08);
  border: 1px solid rgba(193, 245, 0, 0.28);
  border-radius: 12px;
}

.form-note p {
  margin: 0;
}

.form-note-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.form-note-phone:hover {
  color: var(--accent);
}

.form-note-phone .icon-btn {
  width: 42px;
  height: 42px;
}

label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  background: #0c0d11;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  border-radius: 12px;
}

.call-fab {
  display: none;
}

@media (max-width: 980px) {
  .container {
    width: calc(100% - 24px);
  }

  body {
    padding-bottom: 64px;
  }

  .call-fab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: fixed;
    left: auto;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 70;
    width: auto;
    height: 40px;
    padding: 0 12px 0 8px;
    background: var(--accent);
    color: var(--on-accent);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
  }

  .call-fab .icon-btn {
    width: 26px;
    height: 26px;
    background: var(--on-accent);
    color: var(--accent);
  }

  .call-fab:hover {
    color: var(--on-accent);
  }

  section {
    padding: 48px 0;
  }

  .site-header {
    position: relative;
  }

  .header-top {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo toggle"
      "contact contact";
    align-items: center;
    min-height: 0;
    gap: 12px 10px;
    padding: 10px 0 10px;
  }

  .logo {
    grid-area: logo;
    min-width: 0;
  }

  .logo img {
    height: 96px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
  }

  .menu-toggle {
    grid-area: toggle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
    border-width: 2px;
  }

  .header-contact {
    grid-area: contact;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "phone socials"
      "email socials";
    align-items: center;
    column-gap: 10px;
    row-gap: 8px;
    padding: 0;
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .header-contact .contact-item {
    padding: 0;
  }

  .header-contact .contact-item:nth-of-type(1) {
    grid-area: phone;
  }

  .header-contact .contact-item:nth-of-type(2) {
    grid-area: email;
  }

  .contact-item {
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
    font-size: 0.82rem;
    background: none;
    border: 0;
    border-radius: 0;
    padding: 0;
    gap: 8px;
  }

  .contact-item .icon-btn,
  .icon-btn,
  .social {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .icon-btn svg,
  .social svg,
  .social-tt svg {
    width: 58%;
    height: 58%;
  }

  .contact-item span {
    display: inline;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 58vw;
  }

  .header-socials {
    grid-area: socials;
    justify-content: flex-end;
    align-self: center;
    gap: 8px;
    padding: 0;
    margin-left: 0;
    border-left: 0;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    background: #0d0f14;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    padding: 8px 12px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    max-height: min(70vh, 520px);
    overflow-y: auto;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    white-space: normal;
    text-align: left;
    padding: 12px 14px;
    font-size: 0.86rem;
    border-radius: 10px;
  }

  .grid-3,
  .grid-2,
  .split,
  .contact-wrap,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .split > img,
  .split > .split-media {
    order: -1;
  }

  .split.kontenery-intro > .split-media.kontenery-photos {
    order: 1;
    margin-top: 8px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-grid a {
    height: 150px;
  }

  .split img,
  .split-start img,
  .split-start .split-media img {
    height: 220px;
    min-height: 0;
    position: static;
  }

  .split-start .kontenery-photos > img {
    height: 165px;
  }

  .fill-guide img {
    height: 165px !important;
    max-height: 165px;
  }

  .split img.split-img-full {
    height: auto;
  }

  .split-media {
    height: auto;
    min-height: 0;
  }

  .slide-copy {
    padding: 16px 0 64px;
  }

  .slide-copy > p:not(.kicker) {
    font-size: 0.88rem;
    margin-bottom: 12px;
    padding: 12px 14px;
  }

  h1,
  .slide-copy h1 {
    font-size: 1.05rem;
    line-height: 1.2;
    max-width: none;
    margin-bottom: 6px;
  }

  .slide-copy h2 {
    font-size: 1.2rem;
    max-width: none;
  }

  .slide-how-steps {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 14px;
  }

  .slide-how-steps article {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 10px;
    align-items: baseline;
    padding: 10px 12px;
  }

  .slide-how-steps span {
    margin: 0;
    font-size: 1rem;
  }

  .slide-how-steps h3 {
    margin: 0;
    font-size: 1rem;
  }

  .slide-copy .slide-how-steps p {
    display: none;
  }

  .slider-nav {
    bottom: 16px;
  }

  .arrow {
    top: auto;
    bottom: 8px;
    transform: none;
    width: 36px;
    height: 36px;
    font-size: 1.15rem;
  }

  .arrow.prev {
    left: 8px;
  }

  .arrow.next {
    right: 8px;
  }

  .btn {
    padding: 12px 18px;
  }

  .account-no {
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    word-break: break-word;
  }

  .contact-logo {
    width: min(220px, 100%);
  }

  .map-wrap {
    height: 200px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    gap: 8px;
  }

  .gallery-grid a {
    height: 120px;
  }

  .card img {
    height: 180px;
  }

  .news-post img {
    height: 200px;
  }

  .sizes span {
    font-size: 0.72rem;
    padding: 5px 8px;
  }
}

.page-news {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.news-page {
  flex: 1;
  padding: 40px 0 72px;
}

.news-page .section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.news-page .section-head p {
  margin: 0 auto;
}

.news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
}

.news-post {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.news-post img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.news-post-body {
  padding: 22px 24px 26px;
}

.news-post time {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-post h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.news-post p {
  margin: 0 0 10px;
  color: var(--muted);
}

.news-post p:last-child {
  margin-bottom: 0;
}

.news-empty {
  text-align: center;
}

.seo-page {
  max-width: 800px;
  margin: 0 auto;
}

.seo-page .section-head {
  max-width: none;
}

.seo-block {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin-bottom: 18px;
}

.seo-block h2,
.seo-block h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.seo-block p,
.seo-list {
  color: var(--muted);
}

.seo-list {
  margin: 0;
  padding-left: 18px;
}

.seo-list li {
  margin: 6px 0;
}

.seo-block .btn {
  margin-top: 8px;
}

.reviews-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px 36px;
  box-shadow: var(--shadow);
}

.reviews-score {
  margin: 0;
  font-family: var(--display);
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 600;
}

.reviews-stars {
  margin: 6px 0 4px;
  color: var(--accent);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
}

.reviews-count {
  margin: 0 0 12px;
  font-weight: 700;
}

.reviews-box .muted {
  margin: 0 auto 22px;
  max-width: 42ch;
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
