:root {
  --font-heading: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ruby: #b3134f;
  --ruby-dark: #7f0e3a;
  --copper: #c96428;
  --amber: #f59e0b;
  --ink: #111827;
  --paper: #ffffff;
  --cream: #fff7f1;
  --night: #171018;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-size: 16px; line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
p { font-size: 16px; }
h1, h2, h3, h4 { font-weight: 900; letter-spacing: -0.045em; line-height: 1.05; }
h1 { font-size: clamp(39px, 6vw, 76px); }
h2 { font-size: clamp(31px, 4.2vw, 52px); }
h3, h4 { font-size: 22px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(23, 16, 24, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.24);
}

.nav-link { color: #ffffff; font-size: 16px; font-weight: 800; transition: color .2s ease; }
.nav-link:hover { color: #fbbf24; }
.logo-mark { width: 44px; height: 44px; }
.logo-text { color: #ffffff; font-family: var(--font-heading); font-size: 24px; font-weight: 900; letter-spacing: -0.04em; }
.desktop-nav, .desktop-phone { display: none !important; }
.mobile-menu-button { display: inline-flex !important; }
.mobile-panel { display: none; }
.mobile-panel.is-open { display: block; }

@media (min-width: 768px) {
  .desktop-nav { display: flex !important; }
  .desktop-phone { display: inline-flex !important; }
  .mobile-menu-button, .mobile-panel, .mobile-sticky-call { display: none !important; }
}

.phone-button, .cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 52px;
  padding: 0 1.25rem;
  border: 0;
  border-radius: 0;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--ruby), var(--copper));
  box-shadow: 0 18px 40px rgba(179, 19, 79, .34);
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  transition: transform .2s ease, filter .2s ease;
}
.phone-button:hover, .cta-button:hover { transform: translateY(-2px); filter: brightness(1.08); color: #ffffff !important; }
.phone-button::after, .cta-button::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(255,255,255,.46);
  animation: pulseGlow 1.8s infinite;
  pointer-events: none;
}

.desktop-phone { display: none !important; }
@media (min-width: 768px) { .desktop-phone { display: inline-flex !important; } }

@keyframes pulseGlow {
  0% { opacity: .65; transform: scale(.98); }
  70% { opacity: 0; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1.08); }
}

.hero-section {
  position: relative;
  min-height: 780px;
  display: grid;
  place-items: center;
  color: #ffffff;
  isolation: isolate;
  background: linear-gradient(rgba(19, 10, 19, .76), rgba(19, 10, 19, .88)), url('../images/kitchen-premium.jpg') center/cover no-repeat;
}
.hero-section h1, .hero-section p { color: #ffffff; }
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 24%, rgba(245,158,11,.38), transparent 28%),
    radial-gradient(circle at 82% 32%, rgba(179,19,79,.44), transparent 31%);
}
.hero-card {
  background: rgba(23, 16, 24, .58);
  border: 1px solid rgba(255,255,255,.18);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  box-shadow: 0 40px 120px rgba(0,0,0,.42);
}
.stars { color: #fbbf24; font-size: 25px; letter-spacing: .18em; }
.hero-gallery-icon {
  width: auto;
  height: 48px;
  max-width: 92px;
  object-fit: contain;
  padding: 6px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(245,158,11,.46);
}
.badge-accent {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: linear-gradient(135deg, rgba(245,158,11,.16), rgba(179,19,79,.14));
  color: #7f0e3a;
  border-left: 4px solid var(--amber);
  padding: .48rem .7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}
.section-dark .badge-accent { background: rgba(255,255,255,.1); color: #ffffff; }
.section-shell { padding: clamp(4rem, 7vw, 7rem) 0; }
.gradient-ruby { background: linear-gradient(135deg, #fff7f1 0%, #ffffff 44%, #fff0e7 100%); }
.section-dark { background: radial-gradient(circle at 20% 10%, rgba(201,100,40,.22), transparent 34%), linear-gradient(135deg, #171018, #27111f); }
.glass-card, .service-card, .review-card, .process-card, .faq-card {
  border-radius: 0;
  border: 1px solid rgba(179,19,79,.14);
  background: #ffffff;
  color: #374151;
  box-shadow: 0 22px 60px rgba(17,24,39,.08);
}
.glass-card h3, .service-card h3, .review-card h3, .process-card h3, .faq-card h3 { color: #111827; }
.service-card { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(245,158,11,.62); box-shadow: 0 32px 90px rgba(179,19,79,.14); }
.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ruby), var(--copper));
  color: #ffffff;
  flex: 0 0 auto;
}
.icon-box svg, .small-icon svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: square; stroke-linejoin: miter; }
.small-icon { width: 42px; height: 42px; display: grid; place-items: center; background: #fff7f1; color: #b3134f; }
.two-col { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .two-col { grid-template-columns: 7fr 3fr; } .two-col.reverse { grid-template-columns: 3fr 7fr; } }
.feature-image { width: 100%; height: 340px; object-fit: cover; box-shadow: 24px 24px 0 #f3d2bf; }
.reverse .feature-image { box-shadow: -24px 24px 0 #f3d2bf; }
.models-strip { background: #171018; color: #ffffff; border-left: 6px solid var(--amber); }
.models-strip h2, .models-strip h3, .models-strip p { color: #ffffff; }
.process-number { color: transparent; -webkit-text-stroke: 1px rgba(179,19,79,.48); font-size: 62px; font-weight: 900; line-height: 1; }
.reviews-track { transition: transform .35s ease; }
.review-card { min-height: 310px; }
.review-card p, .review-card strong { color: #374151; }
.review-stars { color: #f59e0b; letter-spacing: .1em; }
.carousel-button { width: 46px; height: 46px; border: 1px solid rgba(179,19,79,.28); background: #ffffff; color: #111827; border-radius: 0; font-weight: 900; }
.cta-band { background: linear-gradient(135deg, #7f0e3a, #b3134f 48%, #c96428); color: #ffffff; position: relative; overflow: hidden; }
.cta-band h2, .cta-band p { color: #ffffff; }
.cta-band::before { content: ""; position: absolute; width: 420px; height: 420px; right: -120px; top: -140px; background: rgba(255,255,255,.14); transform: rotate(35deg); }
.footer { background: #100b11; color: #e5e7eb; font-size: 14px; }
.footer h3, .footer h4, .footer a { color: #ffffff; }
.footer p, .footer li { font-size: 14px; color: #d1d5db; }
.mobile-sticky-call {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  transform: translateY(110%);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  padding: .65rem .75rem calc(.65rem + env(safe-area-inset-bottom));
  background: rgba(23,16,24,.94);
}
.mobile-sticky-call.is-visible { display: block; transform: translateY(0); opacity: 1; }
.mobile-sticky-call a { width: 100%; min-height: 50px; font-size: 16px; }
@media (max-width: 767px) {
  h1 { font-size: clamp(39px, 12vw, 53px); }
  h2 { font-size: clamp(31px, 9vw, 36px); }
  .hero-section { min-height: 740px; padding-top: 3rem; }
  .hero-card { margin: 1rem; }
  .feature-image { height: 260px; box-shadow: 14px 14px 0 #f3d2bf; }
  .review-card { min-height: auto; }
  body.has-sticky-call { padding-bottom: 78px; }
}
@media (min-width: 768px) { .mobile-sticky-call, .mobile-sticky-call.is-visible { display: none !important; } }

.fade-up { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
