*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Breakpoints: XS base, then SM 480, MD 768, LG 1024, XL 1200 — см. docs/superpowers/specs/2026-05-14-responsive-five-breakpoints-design.md */
:root {
  --page-pad-x: 1rem;
  --body-font-size: 1rem;
  --grid-card-min: 148px;
  --hero-featured-max-h: 280px;
  --hero-thumb-size: 64px;
  --site-header-h: 7.5rem;
}

@media (min-width: 480px) {
  :root {
    --page-pad-x: 1.25rem;
    --body-font-size: 1.0625rem;
    --grid-card-min: 168px;
    --hero-featured-max-h: 320px;
    --hero-thumb-size: 72px;
  }
}

@media (min-width: 768px) {
  :root {
    --body-font-size: 1.125rem;
    --grid-card-min: 190px;
    --hero-featured-max-h: 420px;
    --hero-thumb-size: 88px;
  }
}

@media (min-width: 1024px) {
  :root {
    --grid-card-min: 210px;
    --hero-featured-max-h: 480px;
    --hero-thumb-size: 96px;
  }
}

@media (min-width: 1200px) {
  :root {
    --grid-card-min: 220px;
    --hero-featured-max-h: 520px;
    --hero-thumb-size: 104px;
  }
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: var(--body-font-size);
  line-height: 1.5;
  color: #2b241c;
  background: #faf6f0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

#about,
#benefits,
#specs,
#catalog,
#reviews,
#contacts {
  scroll-margin-top: calc(var(--site-header-h) + 0.5rem);
}

a {
  color: #8a5a0a;
}

a:hover {
  color: #6b4508;
}

.site-header {
  padding: 0;
  background: #fff8ef;
  border-bottom: 1px solid #e8dcc8;
  position: sticky;
  top: 0;
  z-index: 100;
  /* Резиновый кегль и иконки в зоне контактов (не трогаем каталог и main) */
  --header-contact-fs: clamp(0.78rem, 0.62rem + 0.55vw, 1.0625rem);
  --header-social-icon: clamp(1.2rem, 0.95rem + 0.85vw, 1.75rem);
}

.site-footer {
  padding: 0.65rem var(--page-pad-x) 0.5rem;
  background: #fff8ef;
  border-top: 1px solid #e8dcc8;
  border-bottom: none;
  margin-top: 2rem;
  font-size: clamp(0.78rem, 0.68rem + 0.35vw, 0.875rem);
  --header-contact-fs: clamp(0.72rem, 0.62rem + 0.35vw, 0.8125rem);
  --header-social-icon: clamp(1.05rem, 0.9rem + 0.5vw, 1.35rem);
  --footer-social-icon: clamp(2.25rem, 1.75rem + 1.25vw, 3rem);
}

.header-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.45rem var(--page-pad-x);
  background: #f5ebe0;
  border-bottom: 1px solid #e8dcc8;
  font-size: clamp(0.75rem, 0.65rem + 0.4vw, 0.9375rem);
}

.header-top-main {
  display: contents;
}

.header-top-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
  flex: 1 1 12rem;
  min-width: 0;
}

.header-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 2px solid #e8dcc8;
  border-radius: 10px;
  background: #fffdf8;
  color: #3d2f1f;
  cursor: pointer;
}

.header-nav-toggle:hover {
  background: #fff3d6;
  border-color: #b8860b;
}

.header-nav-toggle:focus-visible {
  outline: 3px solid #b8860b;
  outline-offset: 2px;
}

.header-nav-toggle-icon,
.header-nav-toggle-icon::before,
.header-nav-toggle-icon::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
}

.header-nav-toggle-icon {
  position: relative;
}

.header-nav-toggle-icon::before,
.header-nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.header-nav-toggle-icon::before {
  top: -6px;
}

.header-nav-toggle-icon::after {
  top: 6px;
}

.site-header--nav-open .header-nav-toggle-icon {
  background: transparent;
}

.site-header--nav-open .header-nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header--nav-open .header-nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.header-top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 0.65rem;
  flex: 1 1 auto;
  min-width: 0;
}

.header-top-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.15rem 0.45rem;
  font-weight: 600;
  text-decoration: none;
  color: #5c4a38;
  border-radius: 8px;
  white-space: nowrap;
}

.header-top-nav-link:hover {
  color: #6b4508;
  background: rgba(184, 134, 11, 0.1);
}

.header-top-nav-link:focus-visible {
  outline: 3px solid #b8860b;
  outline-offset: 2px;
}

.header-top-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.35rem, 0.2rem + 0.35vw, 0.65rem);
  flex: 0 1 auto;
  margin-left: auto;
  font-size: var(--header-contact-fs);
}

.header-address-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0.2rem 0.5rem;
  margin: -0.2rem -0.5rem;
  font-weight: 600;
  text-decoration: none;
  color: #3d2f1f;
  border-radius: 8px;
}

.header-address-btn:hover {
  color: #6b4508;
  background: rgba(184, 134, 11, 0.1);
}

.header-address-btn:focus-visible {
  outline: 3px solid #b8860b;
  outline-offset: 2px;
}

.pin-icon {
  flex-shrink: 0;
  color: #b8860b;
}

.header-hours {
  margin: 0;
  color: #5c4a38;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  align-items: baseline;
}

.header-hours-label {
  font-weight: 600;
  color: #3d2f1f;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0 0.85rem;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid #b8860b;
  outline-offset: 2px;
}

.btn-call {
  background: #2d6a3e;
  border-color: #245a34;
  color: #fffdf8;
}

.btn-call:hover {
  background: #245a34;
  color: #fffdf8;
}

.btn-call--secondary {
  background: #fffaf0;
  border-color: #2d6a3e;
  color: #2d6a3e;
}

.btn-call--secondary:hover {
  background: #e8f5eb;
}

.btn-call--compact {
  padding: 0 0.65rem;
  font-size: 0.9em;
}

.btn-route {
  background: #fff3d6;
  border-color: #b8860b;
  color: #5c3d08;
  box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.25);
}

.btn-route:hover {
  background: #f5e4bc;
  color: #3d2806;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.35);
}

.btn-route--footer {
  margin-top: 0.5rem;
}

.btn-route--compact {
  padding: 0 0.65rem;
  font-size: 0.92em;
}

@media (min-width: 1024px) {
  .header-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: clamp(0.75rem, 0.35rem + 1vw, 1.5rem);
    row-gap: 0.3rem;
    padding-block: clamp(0.35rem, 0.2rem + 0.25vw, 0.45rem);
  }

  .header-top-info {
    grid-column: 1;
    grid-row: 1;
    flex: none;
    min-width: 0;
  }

  .header-top-actions {
    grid-column: 2;
    grid-row: 1;
    flex: none;
    flex-wrap: nowrap;
    margin-left: 0;
    justify-self: end;
    gap: clamp(0.35rem, 0.15rem + 0.45vw, 0.65rem);
  }

  .header-top-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: calc(100% + 2 * var(--page-pad-x));
    max-width: 100vw;
    margin-inline: calc(-1 * var(--page-pad-x));
    padding-inline: var(--page-pad-x);
    box-sizing: border-box;
    flex: none;
    min-width: 0;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: clamp(0.15rem, 0.05rem + 0.35vw, 0.75rem);
    padding-top: 0.35rem;
    border-top: 1px solid #e0d4c2;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
  }

  .header-top-nav-link {
    flex: 1 1 0;
    justify-content: center;
    min-height: clamp(34px, 30px + 0.35vw, 38px);
    padding: 0.1rem clamp(0.25rem, 0.05rem + 0.35vw, 0.65rem);
    font-size: clamp(0.78rem, 0.66rem + 0.35vw, 0.9375rem);
  }

  .header-top-actions .btn {
    min-height: clamp(38px, 34px + 0.35vw, 44px);
    padding-inline: clamp(0.55rem, 0.25rem + 0.55vw, 0.85rem);
    font-size: clamp(0.78rem, 0.66rem + 0.3vw, 0.92em);
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .header-top-info {
    gap: 0.35rem 0.75rem;
  }

  .header-hours {
    font-size: clamp(0.72rem, 0.62rem + 0.25vw, 0.8125rem);
  }
}

.header-bar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem var(--page-pad-x);
  padding: 0.75rem var(--page-pad-x);
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.header-logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  line-height: 0;
  border-radius: 8px;
}

.header-logo-link:focus-visible {
  outline: 3px solid #b8860b;
  outline-offset: 3px;
}

.header-logo {
  display: block;
  height: clamp(40px, 2rem + 1.25vw, 52px);
  width: auto;
  max-width: min(200px, 38vw);
  object-fit: contain;
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 12rem;
  min-width: 0;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(0.35rem, 0.2rem + 0.35vw, 0.65rem);
  font-size: var(--header-contact-fs);
}

@media (min-width: 1024px) {
  .header-actions {
    flex: 0 1 auto;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: clamp(0.3rem, 0.15rem + 0.45vw, 0.75rem);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1023px) {
  .site-header {
    --header-contact-fs: clamp(0.66rem, 0.48rem + 1.85vw, 0.9rem);
    --header-social-icon: clamp(0.92rem, 0.62rem + 2.4vw, 1.35rem);
  }

  .header-top-info {
    display: none;
  }

  .header-top {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.25rem var(--page-pad-x);
    border-bottom: none;
  }

  .header-top-main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
    width: 100%;
  }

  .header-nav-toggle {
    display: inline-flex;
    order: 0;
    width: 40px;
    height: 40px;
    margin-right: auto;
  }

  .header-top-actions {
    flex: 0 0 auto;
    order: 1;
    margin-left: 0;
    gap: 0.25rem;
  }

  .header-top-actions .btn {
    min-height: 40px;
    padding: 0 0.5rem;
    gap: 0;
  }

  .header-top-actions .btn-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .header-top-actions .route-icon {
    width: 1.15em;
    height: 1.15em;
    flex-shrink: 0;
    color: #b8860b;
  }

  .header-top-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: 0;
    padding: 0.35rem 0 0.15rem;
    border-top: 1px solid #e8dcc8;
    gap: 0.1rem;
  }

  .site-header--nav-open .header-top-nav {
    display: flex;
  }

  .header-top-nav-link {
    min-height: 40px;
    padding: 0.4rem 0.5rem;
    white-space: normal;
  }

  .header-bar {
    gap: 0.3rem;
    padding: 0.25rem var(--page-pad-x) 0.35rem;
    border-top: 1px solid #e8dcc8;
  }

  .header-logo {
    height: clamp(28px, 4vw + 16px, 36px);
    max-width: min(110px, 24vw);
  }

  .header-actions {
    flex-wrap: nowrap;
    flex: 1 1 0;
    min-width: 0;
    gap: 0.15rem;
  }

  .header-more {
    display: none;
  }

  .site-header .social-strip {
    gap: 0.1rem 0.2rem;
  }

  .site-footer {
    --header-social-icon: clamp(0.92rem, 0.62rem + 2.4vw, 1.35rem);
    --header-contact-fs: clamp(0.66rem, 0.48rem + 1.85vw, 0.9rem);
  }
}

@media (max-height: 520px) and (max-width: 1023px) {
  .site-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.5rem;
    padding: 0.2rem var(--page-pad-x);
  }

  .header-top,
  .header-bar,
  .header-top-main {
    display: contents;
  }

  .header-logo-link {
    order: 1;
  }

  .header-nav-toggle {
    order: 2;
    margin-right: 0;
    margin-left: auto;
  }

  .header-top-actions {
    order: 3;
  }

  .header-actions {
    display: none;
  }

  .header-top-nav {
    order: 4;
    flex-basis: 100%;
    width: 100%;
    border-top: 1px solid #e8dcc8;
    padding-top: 0.25rem;
  }

  .header-logo {
    height: 32px;
    max-width: 100px;
  }

  .header-nav-toggle,
  .header-top-actions .btn {
    min-height: 36px;
    height: 36px;
  }
}

.header-actions .btn-call {
  flex: 0 0 auto;
}

.header-actions .btn-route {
  flex: 0 0 auto;
}

.header-more {
  display: none;
  border: none;
}

@media (min-width: 1024px) {
  .header-more {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
  }
}

.header-more-summary {
  list-style: none;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  color: #8a5a0a;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.35rem 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  border-radius: 8px;
}

.header-more-summary::-webkit-details-marker {
  display: none;
}

.header-more-summary:focus-visible {
  outline: 3px solid #b8860b;
  outline-offset: 2px;
}

.site-header .phone-icon,
.site-header .mail-icon,
.site-footer .mail-icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

.site-header .social-strip svg {
  display: block;
  width: var(--header-social-icon);
  height: var(--header-social-icon);
}

.site-footer .social-strip svg {
  display: block;
  width: var(--footer-social-icon);
  height: var(--footer-social-icon);
}

@media (min-width: 1024px) {
  /*
    Нельзя скрывать <summary> через display:none — ломается <details>.
    Скрываем только визуально; open на LG+ выставляет public/app.js (syncHeaderMoreDetailsOpen).
  */
  .header-more-summary {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .header-more-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-evenly;
    gap: clamp(0.3rem, 0.15rem + 0.45vw, 0.75rem);
    flex: 1 1 auto;
    padding-top: 0;
    width: 100%;
    min-width: 0;
  }
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0 0.15rem;
  text-decoration: none;
  color: #8a5a0a;
  font-weight: 600;
}

.phone-link:hover {
  color: #6b4508;
}

.phone-link:focus-visible {
  outline: 3px solid #b8860b;
  outline-offset: 2px;
  border-radius: 8px;
}

.phone-icon {
  flex-shrink: 0;
  color: #b8860b;
}

.social-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  flex-shrink: 0;
}

.social-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* min-width: 44px; */
  min-height: 44px;
  color: #9a6b12;
}

.social-slot--pending {
  opacity: 0.65;
  color: #7a6a58;
  cursor: default;
  user-select: none;
}

.header-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0 0.15rem;
  font-weight: 600;
  text-decoration: none;
}

.header-mail:hover {
  color: #6b4508;
}

.header-mail:focus-visible {
  outline: 3px solid #b8860b;
  outline-offset: 2px;
  border-radius: 8px;
}

.mail-icon {
  flex-shrink: 0;
  color: #b8860b;
}

.footer-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  align-items: center;
}

.footer-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  width: 100%;
  max-width: 20rem;
}

.footer-action-btn {
  width: 100%;
  margin: 0;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  border-radius: 8px;
}

.footer-logo-link:focus-visible {
  outline: 3px solid #b8860b;
  outline-offset: 3px;
}

.footer-logo {
  display: block;
  height: clamp(36px, 1.75rem + 1vw, 46px);
  width: auto;
  max-width: min(160px, 34vw);
  object-fit: contain;
}

.max-messenger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 0;
  padding: 0;
  color: #9a6b12;
  text-decoration: none;
}

.max-messenger:hover {
  color: #7a550e;
}

.max-messenger:focus-visible {
  outline: 3px solid #b8860b;
  outline-offset: 3px;
  border-radius: 8px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.35fr);
  align-items: center;
  gap: 0.65rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    align-items: stretch;
  }

  .footer-social-block {
    order: 2;
  }

  .footer-legal {
    order: 3;
  }
}

.footer-address-block {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-social-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 0.45rem;
  padding: 0 0.5rem;
}

.site-footer .social-strip {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.55rem;
}

.site-footer .social-slot {
  min-width: calc(var(--footer-social-icon) + 0.5rem);
  min-height: calc(var(--footer-social-icon) + 0.5rem);
}

.site-footer .max-messenger {
  min-height: calc(var(--footer-social-icon) + 0.5rem);
}

.footer-legal {
  min-width: 0;
  justify-self: end;
}

@media (max-width: 767px) {
  .footer-legal {
    justify-self: stretch;
    text-align: left;
  }
}

.footer-address-block p {
  margin: 0;
}

@media (max-width: 479px) {
  .site-footer .footer-address-block p {
    font-size: 0.95rem;
  }
}

.landing-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem var(--page-pad-x);
}

.section-heading {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 1rem + 1vw, 1.625rem);
  font-weight: 700;
  color: #3d2f1f;
}

.section-heading--in-main {
  margin-top: 0;
}

.section-note {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  color: #6a5a48;
}

.usp-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}

.usp-card {
  background: #fffdf8;
  border: 1px solid #e8dcc8;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  box-shadow: 0 2px 6px rgba(43, 36, 28, 0.05);
}

.usp-icon {
  font-size: 1.5rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.35rem;
}

.usp-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: #3d2f1f;
}

.usp-text {
  margin: 0;
  font-size: 0.9375rem;
  color: #5c4a38;
}

.info-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
}

.info-card {
  background: #fff8ef;
  border-left: 4px solid #b8860b;
  border-radius: 0 10px 10px 0;
  padding: 0.85rem 1rem;
}

.info-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: #3d2f1f;
}

.info-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: #5c4a38;
}

.benefits-tabs {
  margin-top: 0.25rem;
}

.benefits-panel {
  margin-top: 0.75rem;
}

.benefits-lead {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  color: #3d2f1f;
  max-width: 52rem;
}

.reviews-section {
  background: #fffdf8;
  border-top: 1px solid #e8dcc8;
}

.reviews-widget-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0.75rem;
}

.reviews-widget {
  display: block;
  width: min(100%, 528px);
  max-width: 100%;
  height: 824px;
  border: 1px solid #e8dcc8;
  border-radius: 12px;
  background: #fff;
}

.specs-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #e8dcc8;
  border-radius: 10px;
  background: #fffdf8;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.specs-table th,
.specs-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid #efe4d6;
}

.specs-table thead th {
  background: #f5ebe0;
  font-weight: 700;
}

.specs-table tbody tr:last-child th,
.specs-table tbody tr:last-child td {
  border-bottom: none;
}

.specs-table tbody th {
  font-weight: 600;
  color: #3d2f1f;
  white-space: nowrap;
}

.contacts-section {
  background: #fff8ef;
  border-top: 1px solid #e8dcc8;
  border-bottom: 1px solid #e8dcc8;
  margin-bottom: 0;
}

.contacts-address,
.contacts-hours {
  margin: 0 0 0.5rem;
  color: #3d2f1f;
}

.contacts-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 1rem;
}

.map-embed-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8dcc8;
  box-shadow: 0 2px 10px rgba(43, 36, 28, 0.08);
}

.map-embed {
  display: block;
  width: 100%;
  height: min(360px, 55vh);
  border: 0;
}

.footer-hours {
  margin: 0;
  font-size: inherit;
  color: #5c4a38;
}

.footer-address-link {
  font-size: inherit;
  line-height: 1.35;
}

.site-footer .footer-action-btn {
  min-height: 38px;
  padding: 0 0.65rem;
  font-size: inherit;
  justify-content: center;
}

.footer-legal-title {
  margin: 0 0 0.35rem;
  font-size: inherit;
  font-weight: 700;
  color: #3d2f1f;
}

.footer-legal-list {
  margin: 0;
  display: grid;
  gap: 0.15rem;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: #5c4a38;
}

.footer-legal-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.5rem;
  align-items: baseline;
}

@media (max-width: 767px) {
  .footer-legal-row {
    grid-template-columns: minmax(5.5rem, 7rem) 1fr;
  }
}

@media (min-width: 768px) {
  .footer-legal-row {
    justify-items: end;
  }

  .footer-legal-row dt {
    text-align: right;
  }

  .footer-legal-row dd {
    text-align: right;
  }
}

.footer-legal-row dt {
  margin: 0;
  font-weight: 600;
  color: #3d2f1f;
}

.footer-legal-row dd {
  margin: 0;
  min-height: 1.25em;
  color: #9a8a78;
}

.footer-legal-row dd.footer-legal-filled {
  color: #5c4a38;
  font-style: normal;
}

.footer-legal-row dd:not(.footer-legal-filled) {
  font-style: italic;
}

@media (max-width: 479px) {
  .footer-legal-row {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}

.fab-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0 1rem 0 0.85rem;
  background: #2d6a3e;
  color: #fffdf8;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(45, 106, 62, 0.45);
}

.fab-call:hover {
  background: #245a34;
  color: #fffdf8;
}

.fab-call:focus-visible {
  outline: 3px solid #b8860b;
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .fab-call-label {
    display: inline;
  }
}

@media (max-width: 479px) {
  .fab-call-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .fab-call {
    padding: 0;
    width: 52px;
    height: 52px;
    justify-content: center;
    border-radius: 50%;
  }
}

.main {
  padding: 1rem var(--page-pad-x) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-slider-root:empty {
  display: none;
}

.hero-slider-root {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem var(--page-pad-x) 0;
}

.hero-showcase {
  background: #fffdf8;
  border: 1px solid #e8dcc8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(43, 36, 28, 0.08);
}

.hero-featured {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: var(--hero-featured-max-h);
  margin: 0 auto;
  overflow: hidden;
  background: #efe4d6;
  touch-action: pan-y;
}

.hero-featured-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-featured-inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-featured--broken {
  background: #efe4d6;
}

.hero-slider-placeholder-img {
  width: 56px;
  height: 70px;
  object-fit: contain;
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  min-width: 44px;
  min-height: 44px;
  padding: 0 0.65rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #b8860b;
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.92);
  color: #3d2f1f;
}

.hero-nav-btn:hover {
  background: #fff3d6;
}

.hero-nav-btn:focus-visible {
  outline: 3px solid #b8860b;
  outline-offset: 2px;
}

.hero-nav-btn--prev {
  left: 0.5rem;
}

.hero-nav-btn--next {
  right: 0.5rem;
}

.hero-counter {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin: 0;
  padding: 0.2rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fffdf8;
  background: rgba(43, 36, 28, 0.55);
  border-radius: 999px;
}

.hero-thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  padding: 0.75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid #e8dcc8;
  background: #fff8ef;
}

.hero-thumb {
  flex: 0 0 var(--hero-thumb-size);
  width: var(--hero-thumb-size);
  height: var(--hero-thumb-size);
  padding: 0;
  border: 2px solid #d4c4b0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #efe4d6;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.hero-thumb:hover {
  border-color: #b8860b;
  transform: translateY(-2px);
}

.hero-thumb[aria-current="true"] {
  border-color: #b8860b;
  box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.35);
}

.hero-thumb:focus-visible {
  outline: 3px solid #b8860b;
  outline-offset: 2px;
}

.hero-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-showcase--reduced .hero-thumb {
  transition: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.status {
  min-height: 1.5rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.btn-row button,
.nav-btn,
.icon-btn,
.retry-btn {
  font: inherit;
  cursor: pointer;
  border-radius: 10px;
  border: 2px solid #b8860b;
  background: #fffaf0;
  color: #3d2f1f;
  min-height: 44px;
  padding: 0 1rem;
}

.btn-row button:hover,
.nav-btn:hover,
.retry-btn:hover {
  background: #fff3d6;
}

.btn-row button:active,
.nav-btn:active,
.retry-btn:active {
  background: #f5e4bc;
}

.btn-row button:focus-visible,
.nav-btn:focus-visible,
.icon-btn:focus-visible,
.retry-btn:focus-visible,
.card:focus-visible {
  outline: 3px solid #b8860b;
  outline-offset: 2px;
}

.btn-row button[aria-pressed="true"] {
  background: #b8860b;
  color: #fffdf8;
}

.breadcrumbs {
  font-size: 0.9375rem;
  margin: 0.5rem 0 1rem;
  color: #5c4a38;
}

@media (min-width: 480px) {
  .breadcrumbs {
    font-size: 1rem;
  }
}

.breadcrumbs span[aria-current="page"] {
  font-weight: 600;
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(var(--grid-card-min), 1fr));
}

.card {
  border: none;
  padding: 0;
  text-align: left;
  background: #fffdf8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(43, 36, 28, 0.08);
  cursor: pointer;
}

.card:hover {
  box-shadow: 0 4px 14px rgba(43, 36, 28, 0.12);
}

.card:active {
  transform: translateY(1px);
}

.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #efe4d6;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-media.is-broken img {
  display: none;
}

.card-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40% auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 80'%3E%3Crect x='10' y='8' width='44' height='64' rx='3' fill='%23e6d5c3' stroke='%23b8860b' stroke-width='2'/%3E%3Ccircle cx='42' cy='44' r='3' fill='%23b8860b'/%3E%3C/svg%3E");
}

.card-media.is-broken .card-placeholder {
  display: block;
}

.card-title {
  padding: 0.75rem 1rem 1rem;
  font-weight: 600;
}

.empty-state {
  text-align: center;
  padding: 2rem 1rem;
  color: #5c4a38;
}

.placeholder-svg {
  width: 120px;
  height: 160px;
  margin: 0 auto 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 80'%3E%3Crect x='10' y='8' width='44' height='64' rx='3' fill='%23e6d5c3' stroke='%23b8860b' stroke-width='2'/%3E%3Ccircle cx='42' cy='44' r='3' fill='%23b8860b'/%3E%3C/svg%3E");
}

.retry-btn {
  display: block;
  margin-top: 0.5rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 8, 0.55);
}

.modal-panel {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 2vh auto;
  padding: 0.5rem var(--page-pad-x) 1rem;
  background: #fffdf8;
  border-radius: 12px;
  max-height: 96vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.modal-close {
  align-self: flex-end;
  border: none;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
}

.modal-counter {
  text-align: center;
  margin: 0.25rem 0 0.5rem;
}

.modal-stage {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  touch-action: pan-y;
}

.modal-stage img {
  flex: 1;
  order: -1;
  max-height: 52vh;
  width: 100%;
  object-fit: contain;
  background: #efe4d6;
}

.modal-stage .nav-btn {
  width: 100%;
}

@media (min-width: 480px) {
  .modal-stage {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .modal-stage img {
    order: 0;
    max-height: 78vh;
  }

  .modal-stage .nav-btn {
    width: auto;
  }
}

.nav-btn {
  flex: 0 0 auto;
}

.copy {
  margin: 0.5rem auto 0;
  max-width: 1200px;
  font-size: 0.8125rem;
  color: #6a5a48;
  text-align: center;
}
