:root {
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
  --ink: #120b08;
  --amber: #f27800;
  --amber-dark: #9d4e00;
  --cream: #fff8f0;
  --line: rgba(242, 120, 0, 0.32);
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-size: 16px;
  line-height: 1.65;
  background: #fffaf4;
  color: #2f2924;
}

*,
*::before,
*::after {
  border-radius: 0 !important;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.03em;
  font-weight: 700;
}

h1 {
  font-size: clamp(39px, 6vw, 72px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(31px, 4.5vw, 52px);
  line-height: 1.08;
}

h3,
h4 {
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.15;
}

p,
li,
a,
button,
input,
textarea {
  font-size: 16px;
}

.site-shell {
  overflow: hidden;
}

.container-wide {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(242, 120, 0, 0.22);
  background: rgba(18, 11, 8, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.05;
  text-decoration: none;
  white-space: nowrap;
}

.logo img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.desktop-nav a {
  color: #fff3e6;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
}

.desktop-nav a:hover {
  color: var(--amber);
}

.phone-button,
.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid #ff9b32;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.38), 0 16px 42px rgba(242, 120, 0, 0.32);
  animation: pulseGlow 2.4s ease-in-out infinite;
  transition: transform 180ms ease, filter 180ms ease;
}

.phone-button:hover,
.cta-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(242, 120, 0, 0.56);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(242, 120, 0, 0.24);
  background: #120b08;
}

.mobile-nav a {
  display: block;
  padding: 13px 16px;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero {
  min-height: 880px;
  padding: 154px 0 76px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(18, 11, 8, 0.92), rgba(18, 11, 8, 0.72), rgba(18, 11, 8, 0.88)), url("../images/kitchen-premium.jpg") center/cover no-repeat;
}

.hero h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.cta-band h2,
.footer h2,
.footer h3 {
  color: #ffffff !important;
}

.hero-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: #ffb262;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--amber);
}

.stars {
  margin-top: 22px;
  color: var(--amber);
  font-size: 34px;
  letter-spacing: 0.08em;
  text-shadow: 0 0 20px rgba(242, 120, 0, 0.5);
}

.hero-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 22px 0 30px;
}

.hero-icons img {
  width: auto;
  height: 48px;
  max-width: 118px;
  object-fit: contain;
  padding: 8px 12px;
  border: 1px solid rgba(242, 120, 0, 0.56);
  background: rgba(255, 255, 255, 0.08);
}

.hero-lead {
  max-width: 780px;
  margin: 0 auto 26px;
  color: #fff7ef;
  font-size: 19px;
}

.hero-kicker {
  margin: 0 0 14px;
  color: #ffffff;
  font-weight: 800;
}

.section {
  padding: 86px 0;
}

.section-dark {
  background: radial-gradient(circle at 20% 10%, rgba(242, 120, 0, 0.18), transparent 34%), #120b08;
  color: #f8efe6;
}

.section-cream {
  background: #fff8f0;
}

.section-white {
  background: #ffffff;
}

.section-header {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.accent-rule::after {
  content: "";
  display: block;
  width: 86px;
  height: 4px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--amber), var(--amber-dark));
}

.section-header.center .accent-rule::after {
  margin-left: auto;
  margin-right: auto;
}

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

.service-card,
.trust-card,
.review-card,
.faq-item,
.model-card {
  border: 1px solid rgba(157, 78, 0, 0.22);
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(65, 31, 9, 0.09);
}

.service-card {
  padding: 24px;
}

.service-icon,
.trust-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  color: var(--amber);
}

.service-card h3,
.trust-card h3 {
  margin-bottom: 12px;
}

.trust-card h3::after,
.faq-item h3::after,
.footer h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--amber), var(--amber-dark));
}

.service-card ul,
.trust-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.service-card li + li {
  margin-top: 9px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(260px, 3fr);
  gap: 42px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(260px, 3fr) minmax(0, 7fr);
}

.split-media img,
.image-panel img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid rgba(242, 120, 0, 0.34);
  box-shadow: 18px 18px 0 rgba(242, 120, 0, 0.18);
}

.model-card {
  padding: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #fff1df 100%);
}

.city-list,
.payment-list,
.reasons-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.city-list li,
.payment-list li,
.reasons-list li {
  border-left: 4px solid var(--amber);
  background: rgba(255, 255, 255, 0.08);
  padding: 13px 14px;
  font-weight: 800;
}

.section-white .city-list li,
.section-cream .payment-list li,
.section-white .reasons-list li {
  background: #fff8f0;
}

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

.trust-card {
  padding: 22px;
}

.process-list {
  counter-reset: step;
  display: grid;
  gap: 18px;
}

.process-item {
  position: relative;
  padding: 24px 24px 24px 92px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(242, 120, 0, 0.3);
}

.process-item::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 24px;
  color: var(--amber);
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1;
}

.reviews-shell {
  position: relative;
}

.reviews-track-wrap {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 380ms ease;
}

.review-card {
  flex: 0 0 calc(33.333% - 14px);
  margin-right: 21px;
  padding: 26px;
  background: #ffffff;
}

.review-card strong {
  display: block;
  margin-bottom: 10px;
  color: #111827;
  font-family: var(--font-heading);
  font-size: 22px;
}

.review-stars {
  color: var(--amber);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.carousel-controls button {
  width: 50px;
  height: 50px;
  border: 1px solid var(--amber);
  background: #120b08;
  color: #ffffff;
  font-size: 24px;
}

.cta-band {
  position: relative;
  padding: 58px;
  background: linear-gradient(135deg, #120b08, #2a1307 54%, #9d4e00);
  color: #ffffff;
  overflow: hidden;
}

.cta-band p {
  max-width: 720px;
  color: #fff5ea;
}

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

.faq-item {
  padding: 24px;
}

.footer {
  padding: 58px 0 34px;
  background: #120b08;
  color: #f7eee5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
}

.footer a {
  color: #ffffff;
}

.footer p,
.footer li,
.footer a {
  font-size: 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.footer-links li + li {
  margin-top: 8px;
}

.disclaimer {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(242, 120, 0, 0.28);
  color: #d9c9ba;
}

.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(18, 11, 8, 0.96);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 260ms ease, opacity 260ms ease;
}

.sticky-call.visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-call a {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
  border: 1px solid #ffb262;
}

.icon-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.28), 0 16px 42px rgba(242, 120, 0, 0.32); }
  50% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0), 0 18px 50px rgba(242, 120, 0, 0.48); }
}

@media (max-width: 767px) {
  .desktop-nav,
  .header .desktop-phone {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .header-inner {
    min-height: 74px;
    flex-wrap: wrap;
  }

  .mobile-header-phone {
    display: flex;
    width: 100%;
    min-height: 44px;
    margin: -8px 0 10px;
  }

  .mobile-nav.open {
    display: block;
  }

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

  .city-list,
  .payment-list,
  .reasons-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .mobile-header-phone {
    display: none !important;
  }

  .mobile-nav,
  .menu-toggle {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .header-inner {
    min-height: 106px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
    padding: 12px 0;
  }

  .desktop-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 14px;
  }

  .desktop-nav a {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 78px;
  }

  h1 {
    font-size: clamp(39px, 11vw, 50px);
  }

  h2 {
    font-size: clamp(31px, 9vw, 38px);
  }

  .header-inner {
    gap: 12px;
  }

  .logo {
    font-size: 24px;
    max-width: calc(100% - 64px);
    white-space: normal;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 780px;
    padding-top: 150px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-icons img {
    height: 42px;
    max-width: 94px;
  }

  .section {
    padding: 64px 0;
  }

  .grid-services,
  .trust-grid,
  .faq-grid,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media {
    order: 2;
  }

  .review-card {
    flex-basis: 100%;
    margin-right: 0;
  }

  .reviews-track {
    gap: 0;
  }

  .city-list,
  .payment-list,
  .reasons-list {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 34px 24px;
  }

  .sticky-call {
    display: block;
  }
}

@media (min-width: 768px) {
  .sticky-call {
    display: none !important;
  }
}
