:root {
  --black: #111111;
  --gray-900: #232323;
  --gray-700: #5c5c5c;
  --gray-500: #8a8a8a;
  --gray-300: #dcdcdc;
  --gray-200: #ececec;
  --gray-100: #f6f6f4;
  --white: #ffffff;
  --accent: #b99a6f;
  --radius: 24px;
  --shadow: 0 18px 60px rgba(17, 17, 17, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-900);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  background: var(--black);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  backdrop-filter: blur(14px);
}

.navbar {
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--black);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  font-size: 0.72rem;
  color: var(--gray-500);
}

.nav-link {
  color: var(--gray-700);
  font-weight: 600;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--black);
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  padding-inline: 22px;
}

.btn-dark {
  background: var(--black);
  border-color: var(--black);
}

.btn-dark:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
}

.section-space {
  padding: 96px 0;
}

.hero {
  padding-top: 88px;
  overflow: hidden;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gray-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--black);
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.75rem, 7vw, 5.85rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.06;
}

h3 {
  font-size: 1.15rem;
}

.lead {
  max-width: 650px;
  margin-top: 24px;
  color: var(--gray-700);
  font-size: 1.15rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-row div {
  padding-top: 16px;
  border-top: 1px solid var(--gray-300);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-size: 0.9rem;
}

.trust-row span {
  margin-top: 4px;
  color: var(--gray-500);
  font-size: 0.76rem;
}

.hero-card {
  padding: 16px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.7) 50%),
    linear-gradient(#e8e4de 0 70%, #d5ccbf 70% 100%);
}

.room-shape {
  position: absolute;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.9);
}

.room-shape-1 {
  width: 42%;
  height: 44%;
  left: 7%;
  top: 8%;
}

.room-shape-2 {
  width: 33%;
  height: 29%;
  right: 8%;
  top: 15%;
  border-radius: 50% 50% 0 0;
}

.furniture {
  position: absolute;
}

.sofa {
  left: 13%;
  bottom: 17%;
  width: 58%;
  height: 27%;
  background: #b8a793;
  border-radius: 36px 36px 18px 18px;
  box-shadow: inset 0 -18px 0 rgba(0,0,0,.08);
}

.sofa::before,
.sofa::after {
  content: "";
  position: absolute;
  bottom: -14px;
  width: 14px;
  height: 25px;
  background: #6c5a49;
}

.sofa::before { left: 28px; }
.sofa::after { right: 28px; }

.table {
  right: 10%;
  bottom: 18%;
  width: 23%;
  height: 8%;
  background: #6f5945;
  border-radius: 50%;
}

.table::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 90px;
  left: 50%;
  transform: translateX(-50%);
  top: 22px;
  background: #6f5945;
}

.lamp {
  right: 13%;
  top: 32%;
  width: 12%;
  height: 16%;
  background: #efe6d6;
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
}

.lamp::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 6px;
  height: 170px;
  transform: translateX(-50%);
  background: #292929;
}

.hero-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
}

.hero-caption span,
.hero-caption strong {
  display: block;
}

.hero-caption span {
  color: var(--gray-500);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
}

.hero-caption strong {
  margin-top: 6px;
  color: var(--black);
}

.info-strip {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.info-item {
  display: flex;
  gap: 20px;
  min-height: 170px;
  padding: 38px;
  border-right: 1px solid var(--gray-200);
}

.info-item:last-child {
  border-right: 0;
}

.info-number {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
}

.info-item strong {
  display: block;
  margin-bottom: 8px;
}

.info-item p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.9rem;
}

.section-heading {
  max-width: 760px;
}

.section-heading.text-center {
  max-width: 720px;
}

.section-heading p {
  color: var(--gray-700);
  font-size: 1.05rem;
}

.category-card,
.service-card {
  height: 100%;
  padding: 30px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.category-card:hover,
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--gray-300);
  box-shadow: var(--shadow);
}

.category-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-700);
  font-weight: 900;
}

.category-card p,
.service-card p {
  color: var(--gray-700);
}

.category-card a,
.text-link {
  color: var(--black);
  font-weight: 800;
  text-underline-offset: 4px;
}

.bg-soft {
  background: var(--gray-100);
}

.company-panel {
  padding: 38px;
  border-radius: 28px;
  background: var(--black);
  color: #fff;
  box-shadow: var(--shadow);
}

.panel-label {
  color: #bfbfbf;
  font-size: 0.75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}

.company-data {
  margin: 26px 0 0;
}

.company-data div {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.company-data dt {
  color: #aaa;
  font-weight: 500;
}

.company-data dd {
  margin: 0;
  text-align: right;
  font-weight: 700;
}

.service-card span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--accent);
  font-size: .8rem;
  font-weight: 900;
}

.contact-section {
  padding-top: 30px;
}

.contact-box {
  padding: 56px;
  border-radius: 32px;
  background: var(--black);
  color: #fff;
}

.contact-box h2 {
  color: #fff;
}

.contact-box p {
  color: #cfcfcf;
}

.eyebrow-light {
  color: #b8b8b8;
}

.contact-list {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
}

.contact-list a,
.contact-list div {
  display: block;
  padding: 18px 20px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.contact-list > *:last-child {
  border-bottom: 0;
}

.contact-list span,
.contact-list strong {
  display: block;
}

.contact-list span {
  color: #a9a9a9;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.contact-list strong {
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.accordion-item {
  border-color: var(--gray-200);
}

.accordion-button {
  padding: 22px 4px;
  font-weight: 800;
}

.accordion-button:not(.collapsed) {
  color: var(--black);
  background: #fff;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 0 4px 22px;
  color: var(--gray-700);
}

.footer {
  padding: 72px 0 24px;
  background: #0c0c0c;
  color: #c8c8c8;
}

.brand-footer strong {
  color: #fff;
}

.brand-footer small {
  color: #a8a8a8;
}

.footer-text {
  max-width: 460px;
  margin-top: 20px;
}

.footer h3 {
  color: #fff;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.footer li {
  margin: 8px 0;
}

.footer a,
.footer button {
  color: #c8c8c8;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
}

.footer a:hover,
.footer button:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #8f8f8f;
  font-size: .82rem;
}

.cookie-banner {
  position: fixed;
  z-index: 1050;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 20px 60px rgba(0,0,0,.16);
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  margin: 3px 0 0;
  color: var(--gray-700);
  font-size: .85rem;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.policy-content h3 {
  margin-top: 24px;
  font-size: 1.05rem;
}

.policy-content p {
  color: var(--gray-700);
}

@media (max-width: 991.98px) {
  .section-space {
    padding: 72px 0;
  }

  .hero {
    padding-top: 56px;
  }

  .navbar-collapse {
    padding: 18px 0 8px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .info-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--gray-200);
  }

  .info-item:last-child {
    border-bottom: 0;
  }

  .contact-box {
    padding: 38px;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: clamp(2.6rem, 15vw, 4.2rem);
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 410px;
  }

  .hero-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .company-data div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .company-data dd {
    text-align: left;
  }

  .contact-box {
    padding: 28px 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
