:root {
  --background: hsl(40 20% 97%);
  --foreground: hsl(30 10% 15%);
  --card: hsl(40 25% 95%);
  --muted: hsl(35 10% 93%);
  --muted-foreground: hsl(30 5% 44%);
  --primary: hsl(35 80% 45%);
  --primary-foreground: hsl(0 0% 100%);
  --border: hsl(35 15% 88%);
  --shadow-elegant: 0 10px 40px -10px hsla(35, 30%, 20%, 0.15);
  --shadow-card: 0 4px 20px -4px hsla(35, 30%, 20%, 0.1);
  --hero-overlay: linear-gradient(90deg, hsla(28, 28%, 9%, 0.94) 0%, hsla(28, 26%, 12%, 0.84) 38%, hsla(31, 24%, 16%, 0.38) 66%, hsla(34, 34%, 20%, 0.12) 100%);
  --hero-backdrop: radial-gradient(circle at top left, hsla(38, 75%, 58%, 0.16), transparent 28%), linear-gradient(135deg, hsl(28, 28%, 10%), hsl(24, 18%, 14%) 42%, hsl(29, 24%, 18%) 100%);
  --hero-image-mask: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  --gold-gradient: linear-gradient(135deg, hsl(35, 80%, 45%), hsl(40, 90%, 55%));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: var(--foreground);
  background: var(--background);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 56px 0 80px;
}

.page-main {
  padding-top: 84px;
}

.section-card {
  background: var(--card);
}

.section-head {
  margin-bottom: 40px;
  text-align: center;
}

.section-title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.section-subtitle {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.65;
}

.design-projects-intro {
  max-width: 980px;
  margin: 0 auto 40px;
}

.design-projects-intro-text {
  margin: 0;
  color: var(--muted-foreground);
  font-size: clamp(1rem, 0.98rem + 0.2vw, 1.08rem);
  line-height: 1.72;
  text-align: left;
}

.section-button {
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--primary-foreground);
  background: hsl(35 80% 45%);
  box-shadow: var(--shadow-card);
}

a.button-primary,
a.button-primary:visited,
a.button-primary:hover,
a.button-primary:active {
  color: var(--primary-foreground);
}

a.button-primary.text-primary-foreground,
a.button-primary.text-primary-foreground:visited,
a.button-primary.text-primary-foreground:hover,
a.button-primary.text-primary-foreground:active {
  color: #fff;
}

.button-danger {
  color: white;
  background: hsl(4 68% 52%);
  box-shadow: var(--shadow-card);
}

.admin-home-actions > a.button-light {
  color: white;
  background: hsl(162 58% 34%);
  border-color: transparent;
  box-shadow: var(--shadow-card);
}

.admin-home-actions > a.button-light:hover,
.admin-home-actions > a.button-light:visited,
.admin-home-actions > a.button-light:active {
  color: white;
}

.admin-home-actions > button.button-primary {
  background: hsl(35 80% 45%);
}

.admin-home-actions > button.button-light {
  color: white;
  background: hsl(4 68% 52%);
  border-color: transparent;
  box-shadow: var(--shadow-card);
}

.admin-home-actions > button[data-admin-open-section="promo"] {
  color: white;
  background: hsl(221 60% 46%);
  border-color: transparent;
  box-shadow: var(--shadow-card);
}

.admin-home-actions > button[data-admin-open-section="editor"] {
  color: hsl(30 10% 15%);
  background: hsl(39 86% 46%);
  border-color: transparent;
  box-shadow: var(--shadow-card);
}

.admin-category-actions > a.button-light {
  color: white;
  background: hsl(210 55% 42%);
  border-color: transparent;
  box-shadow: var(--shadow-card);
}

.admin-category-actions > a.button-light:hover,
.admin-category-actions > a.button-light:visited,
.admin-category-actions > a.button-light:active {
  color: white;
}

.button-small {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.button-light {
  color: hsl(30 10% 15%);
  border-color: hsl(0 0% 100% / 0.2);
  background: hsl(0 0% 100%);
}

.button-large {
  min-width: 220px;
  min-height: 46px;
  padding: 0 28px;
}

.select-wrap svg {
  width: 18px;
  height: 18px;
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 16px;
  left: 16px;
  z-index: 60;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(201, 182, 154, 0.4);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(221, 180, 96, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(245, 237, 225, 0.98));
  box-shadow: 0 24px 60px -28px rgba(58, 40, 24, 0.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.mobile-nav::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 22px;
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(201, 182, 154, 0.4);
  border-left: 1px solid rgba(201, 182, 154, 0.4);
  background: rgba(255, 248, 238, 0.98);
  transform: rotate(45deg);
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: hsl(0 0% 100% / 0.45);
  color: hsl(30 10% 15%);
  font-weight: 600;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mobile-nav a:hover {
  transform: translateX(2px);
  border-color: hsl(35 80% 45% / 0.2);
  background: hsl(40 20% 97% / 0.95);
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(36, 26, 16, 0.18);
  backdrop-filter: blur(4px);
}

.home-container {
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
}
.home-mobile-callback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  border: 0;
  border-color: transparent;
  border-radius: 0.375rem;
  appearance: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--primary-foreground)) !important;
  background: hsl(var(--primary)) !important;
  background-color: hsl(var(--primary)) !important;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-mobile-callback:hover {
  background: hsl(35 80% 41%) !important;
  background-color: hsl(35 80% 41%) !important;
  transform: translateY(-1px);
}

.home-mobile-callback:active {
  transform: translateY(0);
}

.home-mobile-callback svg {
  width: 16px;
  height: 16px;
}

.home-mobile-panel {
  position: static;
  top: auto;
  right: auto;
  left: auto;
  z-index: auto;
  display: none;
  gap: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  border-radius: 0;
  background: var(--background);
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.home-mobile-panel::before {
  display: none;
}

.home-mobile-panel.is-open {
  display: block;
  animation: fadeIn 0.8s ease-out forwards;
}

.home-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.home-mobile-nav a {
  min-height: 56px;
  padding: 14px 20px;
  border-radius: 18px;
  background: hsl(0 0% 100% / 0.82);
  box-shadow: 0 12px 30px -24px rgba(58, 40, 24, 0.32);
  text-align: left;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.home-mobile-nav a:hover {
  color: var(--primary);
  background: hsl(0 0% 100% / 0.96);
  transform: translateX(2px);
}

.mobile-nav-group {
  display: grid;
  gap: 10px;
}

.mobile-nav-submenu {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.mobile-nav-submenu a {
  min-height: 48px;
  font-size: 0.95rem;
  background: hsl(40 25% 96%);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  gap: 8px;
  min-width: 220px;
  padding: 12px;
  border: 1px solid rgba(201, 182, 154, 0.4);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(221, 180, 96, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(245, 237, 225, 0.98));
  box-shadow: 0 24px 60px -28px rgba(58, 40, 24, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-dropdown-menu a {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.68);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-menu a:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.92);
  transform: translateX(2px);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.home-mobile-callback {
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  padding: 0 20px;
}

.catalog-grid {
  display: flex;
  gap: 24px;
  padding-bottom: 4px;
  overflow-x: auto;
}

.catalog-grid-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  overflow: visible;
}

.catalog-grid::-webkit-scrollbar {
  height: 8px;
}

.catalog-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(145, 102, 32, 0.25);
}

.catalog-card {
  display: block;
  flex: 1 0 260px;
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--card);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.catalog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-elegant);
}

.catalog-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--muted);
}

.catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.catalog-image-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
}

.catalog-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.catalog-overlay span {
  margin-bottom: 20px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(248, 245, 240, 0.95);
  color: var(--foreground);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.catalog-card:hover .catalog-image img,
.work-card:hover img {
  transform: scale(1.05);
}

.catalog-card:hover .catalog-image-shade {
  background: rgba(0, 0, 0, 0.35);
}

.catalog-card:hover .catalog-overlay {
  transform: translateY(0);
  opacity: 1;
}

.catalog-body {
  padding: 20px;
}

.catalog-body h3,
.work-caption h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.12rem;
  font-weight: 600;
}

.catalog-body p {
  margin: 6px 0 0;
  color: var(--muted-foreground);
  font-size: 0.92rem;
  line-height: 1.55;
}

.works-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.catalog-carousel {
  margin-top: 8px;
}

.works-track {
  display: flex;
  margin-left: -16px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.catalog-track {
  align-items: stretch;
}

.work-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding-left: 16px;
}

.catalog-slide {
  display: flex;
}

.catalog-slide .catalog-card {
  width: 100%;
  flex: initial;
}

.work-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.75rem;
  aspect-ratio: 4 / 3;
}

.work-card img,
.work-gradient {
  position: absolute;
  inset: 0;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.work-gradient {
  background: linear-gradient(180deg, transparent 35%, rgba(38, 30, 24, 0.72));
}

.work-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
  color: var(--primary-foreground);
}

.work-caption p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.about-subtitle {
  margin-left: 0;
  max-width: 760px;
}

.about-facts {
  display: grid;
  gap: 16px;
}

.about-fact-card,
.about-card,
.about-point {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(221, 180, 96, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 236, 0.98));
  box-shadow: var(--shadow-card);
}

.about-fact-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-foreground);
  font-size: 0.88rem;
}

.about-fact-card strong {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-card h2 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  line-height: 1.15;
}

.about-card p {
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.about-card p + p {
  margin-top: 12px;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.about-point {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #e7cfa5;
  cursor: pointer;
  transition: width 0.2s ease, background-color 0.2s ease;
}

.slider-dots button.is-active {
  width: 28px;
  background: #d58712;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.92rem;
  font-weight: 500;
}

.field input,
.field select {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--background);
  color: var(--foreground);
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.modal-form input:focus,
.modal-form textarea:focus {
  outline: 2px solid rgba(181, 120, 23, 0.3);
  outline-offset: 1px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(17, 13, 10, 0.55);
}

.modal-backdrop[hidden] {
  display: none !important;
}

.modal {
  position: relative;
  width: min(100%, 430px);
  max-height: calc(100vh - 32px);
  padding: 24px;
  overflow-y: auto;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 40px 100px -40px rgba(0, 0, 0, 0.55);
}

.modal h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: hsl(30 10% 15%);
}

.modal p {
  margin: 16px 0 0;
  color: hsl(30 4% 49%);
  font-size: 1rem;
  line-height: 1.4;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: transparent;
  color: var(--muted-foreground);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.modal-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.modal-form input,
.modal-form textarea {
  height: 48px;
  padding: 0 16px;
  border: 1px solid hsl(35 28% 80%);
  border-radius: 0.75rem;
  background: hsl(40 33% 97%);
  color: var(--foreground);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.modal-form textarea {
  min-height: 96px;
  padding: 12px 16px;
  resize: vertical;
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
  color: hsl(220 8% 62%);
}

.modal-form input:hover,
.modal-form textarea:hover {
  border-color: hsl(35 45% 68%);
}

.modal-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.modal-submit svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modal-success {
  margin-top: 16px;
  color: hsl(143 70% 30%);
  font-weight: 600;
}

.modal-success.is-success {
  color: hsl(143 70% 30%);
}

.modal-success.is-error {
  color: hsl(0 55% 34%);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-8px);
  }

  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

@media (min-width: 1025px) {
  .catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
  }

  .catalog-card {
    min-width: 0;
  }

  .work-slide {
    flex-basis: 33.3333%;
  }

  .catalog-slide {
    flex-basis: 33.3333%;
  }
}

@media (min-width: 721px) and (max-width: 1024px) {
  .work-slide {
    flex-basis: 50%;
  }

  .catalog-slide {
    flex-basis: 50%;
  }
}

@media (max-width: 720px) {
  .home-container {
    width: min(1400px, calc(100% - 32px));
  }

  .section {
    padding: 56px 0;
  }

  .mobile-nav {
    top: calc(100% + 10px);
    right: 12px;
    left: 12px;
    padding: 16px;
    border-radius: 22px;
  }

  .home-mobile-panel {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    padding: 0;
    border-radius: 0;
  }

  .modal {
    padding: 24px;
  }

  .modal {
    width: min(100%, 400px);
    max-height: calc(100vh - 24px);
    padding: 20px;
  }

  .modal h2 {
    font-size: 1.45rem;
  }

  .modal p {
    margin-top: 14px;
    font-size: 0.95rem;
  }

  .modal-form {
    gap: 10px;
    margin-top: 14px;
  }

  .modal-form input,
  .modal-form textarea {
    height: 44px;
  }

  .modal-form textarea {
    min-height: 88px;
  }

  .button-large,
  .button-light {
    width: 100%;
  }

  .works-track {
    margin-left: 0;
  }

  .work-slide {
    padding-left: 0;
  }

  .catalog-slide {
    padding-left: 0;
  }
}

.button-admin-link {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.92rem;
}

.empty-state {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 32px;
  border-radius: 1rem;
  text-align: center;
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.empty-state h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.empty-state p {
  margin: 14px 0 0;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted-foreground);
  font-size: 0.92rem;
}

.breadcrumbs strong {
  color: var(--foreground);
}

.detail-page-head {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.button-back {
  width: fit-content;
  border-color: var(--border);
}

.button-back svg {
  width: 18px;
  height: 18px;
}

.detail-copy {
  max-width: 640px;
}

.detail-copy-simple {
  margin-bottom: 32px;
}

.detail-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.detail-product-card {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.detail-product-media {
  aspect-ratio: 4 / 3;
  padding: 16px;
  background: rgba(145, 102, 32, 0.08);
}

.detail-product-media img {
  object-fit: contain;
}

.detail-product-summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.detail-product-body h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
}

.detail-product-body p {
  margin: 6px 0 0;
  color: var(--muted-foreground);
  font-size: 0.92rem;
}

.detail-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  margin-left: auto;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(181, 120, 23, 0.16), rgba(234, 196, 135, 0.38));
  border: 1px solid rgba(181, 120, 23, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.detail-product-badge-price {
  color: hsl(30 65% 30%);
}

.detail-product-badge-unit {
  color: var(--foreground);
}

.detail-product-badge.is-empty,
.detail-product-badge-unit.is-empty {
  color: var(--muted-foreground);
  font-weight: 500;
}

.image-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(16, 12, 8, 0.82);
  backdrop-filter: blur(10px);
}

.image-modal-backdrop[hidden] {
  display: none;
}

.image-modal {
  position: relative;
  width: min(1100px, 100%);
  max-height: calc(100vh - 48px);
  padding: 20px 20px 16px;
  border-radius: 1.25rem;
  background: rgba(248, 245, 240, 0.98);
  box-shadow: var(--shadow-elegant);
}

.image-modal-layout {
  display: grid;
  gap: 14px;
}

.image-modal-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  max-height: calc(100vh - 140px);
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(145, 102, 32, 0.08);
}

.image-modal-media img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
}

.image-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.image-modal-price-block {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 0 14px;
  min-height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(181, 120, 23, 0.16), rgba(234, 196, 135, 0.38));
  border: 1px solid rgba(181, 120, 23, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.image-modal-price {
  color: hsl(30 65% 30%);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.image-modal-unit {
  color: var(--foreground);
  font-size: 0.95rem;
  font-weight: 500;
}

.image-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 15, 12, 0.76);
  color: white;
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1;
}

.image-modal-title {
  margin: 0;
  flex: 1;
  min-width: 0;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.admin-layout {
  display: grid;
  gap: 24px;
}

.admin-card {
  padding: 24px;
  border-radius: 1rem;
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.admin-card h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
}

.admin-card p {
  margin: 8px 0 0;
  color: var(--muted-foreground);
}

.admin-form {
  display: grid;
  gap: 16px;
}

.admin-home-card {
  display: grid;
  place-items: center;
  min-height: 220px;
}

.admin-login-card {
  width: min(480px, 100%);
  margin: 0 auto;
}

.admin-login-form {
  gap: 18px;
}

.admin-home-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.admin-upload-card,
.admin-upload-form {
  gap: 20px;
}

.admin-switches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.admin-switch input {
  margin: 0;
}

.admin-target-block,
.admin-file-block {
  display: grid;
  gap: 14px;
}

.admin-target-hint {
  margin: 0;
  color: var(--text-secondary);
}

[data-admin-catalog-targets][hidden],
.admin-target-hint[hidden],
.admin-file-block[hidden] {
  display: none;
}

.admin-manage-picker {
  max-width: 420px;
  margin-top: 20px;
}

.admin-categories-list {
  gap: 14px;
  margin-top: 20px;
}

.admin-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
}

.admin-category-row h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
}

.admin-category-row p {
  margin: 6px 0 0;
}

.admin-category-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
}

.admin-category-card[hidden] {
  display: none;
}

[data-admin-section][hidden] {
  display: none;
}

.admin-category-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-category-actions form {
  margin: 0;
}

.admin-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.admin-image-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 0.9rem;
  background: rgba(145, 102, 32, 0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.admin-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.75rem;
  object-fit: cover;
}

.admin-image-meta {
  display: grid;
  gap: 10px;
}

.admin-image-meta span {
  word-break: break-word;
  color: var(--foreground);
  font-size: 0.92rem;
}

.admin-image-file {
  color: var(--muted-foreground);
  font-size: 0.84rem;
}

.admin-image-meta form {
  margin: 0;
}

.admin-image-grid-pricing {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.admin-image-price-card {
  align-content: start;
}

.admin-save-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  opacity: 0;
  transform: translateY(-6px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.admin-save-badge span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: hsl(145 55% 40%);
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 12px 24px -16px rgba(16, 90, 48, 0.6);
}

.admin-image-price-card.is-saved {
  background: rgba(52, 168, 83, 0.12);
  box-shadow: 0 0 0 1px rgba(52, 168, 83, 0.22);
}

.admin-image-price-card.is-saved .admin-save-badge {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.admin-image-price-card.is-save-error {
  background: rgba(210, 66, 66, 0.1);
  box-shadow: 0 0 0 1px rgba(210, 66, 66, 0.2);
}

.admin-price-form {
  gap: 12px;
}

.admin-empty-photos {
  margin: 0;
}

.admin-categories {
  display: grid;
  gap: 24px;
}

.admin-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.flash-list {
  display: grid;
  gap: 12px;
}

.flash-item {
  padding: 14px 16px;
  border-radius: 0.75rem;
  font-weight: 500;
}

.flash-success {
  background: rgba(34, 139, 34, 0.12);
  color: hsl(120 42% 28%);
}

.flash-error {
  background: rgba(180, 42, 42, 0.12);
  color: hsl(0 55% 34%);
}

.admin-requests-table-wrap {
  overflow-x: auto;
}

.admin-requests-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.admin-requests-table th,
.admin-requests-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.admin-requests-table th {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.admin-requests-table td {
  color: var(--foreground);
}

.admin-requests-table td form {
  margin: 0;
}

.admin-requests-table td a {
  color: inherit;
  text-decoration: none;
}

.admin-note-form {
  display: grid;
  gap: 10px;
  min-width: 260px;
}

.admin-note-form .button {
  display: none;
}

.admin-note-input {
  width: 100%;
  min-height: 44px;
  height: 44px;
  padding: 12px 14px;
  border: 1px solid hsl(35 28% 80%);
  border-radius: 12px;
  background: hsl(0 0% 100%);
  color: var(--foreground);
  font: inherit;
  line-height: 1.5;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-note-input:focus,
.admin-note-input.is-filled {
  min-height: 96px;
  height: 96px;
}

.admin-note-input.is-dirty + .button {
  display: inline-flex;
}

.admin-note-input::placeholder {
  color: var(--muted-foreground);
}

.admin-note-input:hover {
  border-color: hsl(35 45% 68%);
}

.admin-note-input:focus {
  outline: 2px solid rgba(181, 120, 23, 0.3);
  outline-offset: 1px;
}

.promo-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(24, 18, 10, 0.62);
  backdrop-filter: blur(6px);
}

.promo-popup-backdrop[hidden] {
  display: none;
}

.promo-popup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: min(100%, 960px);
  border-radius: 28px;
  background: transparent;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.promo-popup-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 90vh;
  height: auto;
}

.promo-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: hsl(26 38% 18%);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.installation-page {
  background:
    radial-gradient(circle at top left, rgba(220, 178, 98, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 247, 1), rgba(249, 243, 235, 0.88) 42%, rgba(255, 252, 247, 1) 100%);
}

.installation-hero {
  position: relative;
  overflow: hidden;
  padding: 124px 0 72px;
  background:
    linear-gradient(120deg, rgba(33, 25, 20, 0.92) 0%, rgba(52, 40, 31, 0.84) 34%, rgba(82, 67, 52, 0.34) 70%, rgba(255, 248, 239, 0.12) 100%),
    url("../images/hero-facade.webp") center/cover no-repeat;
  color: #fff8f0;
}

.installation-hero::before,
.installation-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
}

.installation-hero::before {
  top: 64px;
  left: max(16px, calc((100vw - 1180px) / 2));
  width: 180px;
  height: 180px;
  background: rgba(220, 176, 84, 0.16);
}

.installation-hero::after {
  right: 5%;
  bottom: 40px;
  width: 240px;
  height: 240px;
  background: rgba(240, 216, 170, 0.12);
}

.installation-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.72fr);
  align-items: end;
}

.installation-hero-copy,
.installation-hero-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  box-shadow: 0 30px 90px -42px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(18px);
}

.installation-hero-copy {
  padding: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
}

.installation-hero-panel {
  padding: 22px;
  background: linear-gradient(180deg, rgba(29, 23, 19, 0.48), rgba(255, 255, 255, 0.08));
}

.installation-kicker,
.installation-tech-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.installation-kicker {
  margin-top: 18px;
  color: rgba(255, 245, 230, 0.88);
  background: rgba(255, 255, 255, 0.09);
}

.installation-tech-label {
  color: hsl(34 52% 34%);
  background: rgba(219, 183, 111, 0.16);
}

.installation-hero-title {
  margin: 18px 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.installation-hero-text {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 244, 233, 0.82);
  font-size: 1.06rem;
  line-height: 1.72;
}

.installation-hero-actions,
.installation-pdf-actions,
.installation-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.installation-hero-actions {
  margin-top: 30px;
}

.installation-hero-actions .button-light,
.installation-pdf-actions .button-light,
.installation-cta-actions .button-light {
  border-color: rgba(188, 157, 107, 0.26);
}

.installation-hero-panel-card {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.16), rgba(255, 255, 255, 0.06));
}

.installation-hero-panel-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 242, 222, 0.66);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.installation-hero-panel-card strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  line-height: 1.28;
}

.installation-hero-stats {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.installation-hero-stats div {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.installation-hero-stats strong {
  display: block;
  color: #f6d49a;
  font-size: 1.6rem;
  font-weight: 700;
}

.installation-hero-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 244, 233, 0.74);
  font-size: 0.94rem;
  line-height: 1.55;
}

.installation-section-title,
.installation-section-subtitle {
  text-align: left;
}

.installation-intro-card,
.installation-pdf-card,
.installation-final-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.72fr);
  padding: 32px;
  border: 1px solid rgba(201, 182, 154, 0.42);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(222, 189, 118, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(246, 238, 229, 0.98));
  box-shadow: 0 24px 70px -44px rgba(84, 59, 36, 0.34);
}

.installation-intro-note,
.installation-recommendation {
  position: relative;
  z-index: 2;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(201, 182, 154, 0.28);
}

.installation-intro-note p,
.installation-recommendation p {
  margin: 0 0 18px;
  color: var(--muted-foreground);
  line-height: 1.68;
}

.installation-intro-note .button {
  display: inline-flex;
  align-self: flex-start;
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.installation-tools-layout,
.installation-tech-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.installation-group-card,
.installation-tech-card {
  height: 100%;
  padding: 34px;
  border: 1px solid rgba(201, 182, 154, 0.35);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 243, 235, 0.96));
  box-shadow: 0 20px 54px -38px rgba(84, 59, 36, 0.28);
}

.installation-tech-card-accent {
  background:
    radial-gradient(circle at top right, rgba(220, 176, 84, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(245, 235, 223, 0.98));
}

.installation-group-head {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.installation-group-head h3,
.installation-step-card h3,
.installation-tech-card h2,
.installation-warning-card h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
}

.installation-group-head h3 {
  font-size: clamp(2rem, 2.4vw, 2.45rem);
  line-height: 1.04;
}

.installation-group-head p,
.installation-step-card p,
.installation-tech-card p,
.installation-warning-card p {
  margin: 10px 0 0;
  color: var(--muted-foreground);
  line-height: 1.68;
}

.installation-group-head p {
  max-width: 30rem;
  font-size: 1.32rem;
  line-height: 1.46;
}

.installation-group-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 26px;
  color: hsl(35 80% 45%);
  background: rgba(220, 176, 84, 0.14);
}

.installation-group-icon svg {
  width: 34px;
  height: 34px;
}

.installation-chip-grid,
.installation-checklist,
.installation-callout-grid,
.installation-warning-grid,
.installation-advice-list {
  display: grid;
  gap: 14px;
}

.installation-chip-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.installation-chip,
.installation-check-item,
.installation-callout,
.installation-warning-card,
.installation-advice-card {
  position: relative;
  padding: 18px 18px 18px 54px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(201, 182, 154, 0.22);
  line-height: 1.58;
}

.installation-chip::before,
.installation-check-item::before,
.installation-warning-card::before,
.installation-callout::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
}

.installation-chip::before {
  background:
    radial-gradient(circle at center, hsl(35 80% 45%) 0 38%, transparent 40%),
    rgba(220, 176, 84, 0.18);
}

.installation-checklist {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.installation-check-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 241, 232, 0.98));
}

.installation-check-item::before {
  background: rgba(196, 160, 86, 0.14);
}

.installation-check-item::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 23px;
  width: 8px;
  height: 14px;
  border-right: 2px solid hsl(35 80% 45%);
  border-bottom: 2px solid hsl(35 80% 45%);
  transform: rotate(40deg);
}

.installation-steps-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.installation-step-card {
  position: relative;
  min-height: 100%;
  padding: 74px 28px 28px;
  border: 1px solid rgba(201, 182, 154, 0.34);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 241, 231, 0.94));
  box-shadow: 0 22px 54px -40px rgba(84, 59, 36, 0.3);
}

.installation-step-card h3 {
  font-size: 1.08rem;
  line-height: 1.3;
}

.installation-step-card p {
  font-size: 1.02rem;
  line-height: 1.7;
}

.installation-step-number {
  position: absolute;
  left: 24px;
  top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: hsl(35 74% 34%);
  background: rgba(220, 176, 84, 0.18);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.installation-callout-grid {
  margin-top: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.installation-callout {
  padding-right: 22px;
}

.installation-callout::before {
  background: rgba(220, 176, 84, 0.16);
}

.installation-callout strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.installation-callout p {
  margin: 0;
  color: var(--muted-foreground);
}

.installation-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted-foreground);
  line-height: 1.68;
}

.installation-list li + li {
  margin-top: 10px;
}

.installation-warning-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.installation-warning-card {
  padding-right: 22px;
  background: linear-gradient(180deg, rgba(255, 249, 245, 0.98), rgba(253, 238, 228, 0.96));
}

.installation-warning-card::before {
  background: rgba(200, 98, 67, 0.12);
}

.installation-warning-card::after {
  content: "!";
  position: absolute;
  left: 25px;
  top: 18px;
  color: hsl(11 58% 44%);
  font-weight: 800;
}

.installation-advice-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.installation-advice-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
}

.installation-advice-card span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: hsl(35 74% 34%);
  background: rgba(220, 176, 84, 0.18);
  font-weight: 700;
}

.installation-advice-card p {
  margin: 0;
  line-height: 1.68;
}

.installation-pdf-actions,
.installation-cta-actions {
  align-items: center;
  justify-content: flex-start;
}

.installation-final-cta {
  background:
    linear-gradient(120deg, rgba(41, 31, 25, 0.96), rgba(70, 53, 41, 0.92) 54%, rgba(112, 87, 61, 0.86) 100%);
  color: #fff5ea;
}

.installation-final-cta .installation-kicker {
  margin-top: 0;
}

.installation-final-cta .installation-section-title,
.installation-final-cta .installation-section-subtitle {
  color: inherit;
}

.installation-final-cta .installation-section-subtitle {
  max-width: 720px;
  margin-top: 16px;
  color: rgba(255, 244, 233, 0.78);
}

.installation-final-cta .button-light {
  color: hsl(30 10% 15%);
  background: rgba(255, 250, 244, 0.96);
}

@media (max-width: 1024px) {
  .about-hero,
  .about-grid,
  .about-points,
  .installation-hero-grid,
  .installation-intro-card,
  .installation-pdf-card,
  .installation-final-cta,
  .installation-tools-layout,
  .installation-tech-grid,
  .installation-checklist,
  .installation-warning-grid,
  .installation-advice-list,
  .installation-callout-grid {
    grid-template-columns: 1fr;
  }

  .installation-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .installation-chip-grid {
    grid-template-columns: 1fr;
  }

  .button-admin-link {
    display: none;
  }
}

@media (max-width: 720px) {
  .design-projects-intro {
    margin-bottom: 32px;
  }

  .design-projects-intro-text {
    font-size: 1rem;
    line-height: 1.68;
  }

  .installation-hero {
    padding: 108px 0 56px;
  }

  .installation-hero-copy,
  .installation-hero-panel,
  .installation-group-card,
  .installation-tech-card,
  .installation-intro-card,
  .installation-pdf-card,
  .installation-final-cta {
    padding: 22px;
    border-radius: 24px;
  }

  .installation-hero-title {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .installation-group-head h3 {
    font-size: clamp(1.7rem, 7vw, 2.15rem);
  }

  .installation-group-head p {
    font-size: 1.08rem;
    line-height: 1.5;
  }

  .installation-group-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
  }

  .installation-group-icon svg {
    width: 28px;
    height: 28px;
  }

  .installation-hero-actions,
  .installation-pdf-actions,
  .installation-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .installation-hero-actions .button,
  .installation-pdf-actions .button,
  .installation-cta-actions .button {
    width: 100%;
  }

  .installation-steps-grid {
    grid-template-columns: 1fr;
  }

  .installation-step-card {
    padding: 70px 22px 24px;
  }

  .installation-step-card p {
    font-size: 0.98rem;
    line-height: 1.64;
  }

  .installation-chip,
  .installation-check-item,
  .installation-callout,
  .installation-warning-card {
    padding-left: 50px;
  }

  .empty-state,
  .admin-card {
    padding: 20px;
  }

  .admin-card-head {
    flex-direction: column;
  }

  .admin-category-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-category-actions {
    width: 100%;
  }

  .admin-home-actions {
    width: 100%;
  }

  .image-modal {
    width: min(920px, 100%);
  }

  .image-modal-layout {
    gap: 16px;
  }

  .image-modal-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .image-modal-title {
    text-align: center;
  }

  .image-modal-price-block {
    justify-content: center;
  }

  .promo-popup {
    border-radius: 24px;
  }
}
