:root {
  --gold: #d4af37;
  --gold-bright: #f4d36b;
  --black: #050505;
  --charcoal: #111111;
  --ink: #111827;
  --muted: #6b7280;
  --line: rgba(212, 175, 55, 0.28);
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: #050505;
  color: #f8fafc;
  font-size: 16px;
  line-height: 1.7;
  padding-bottom: 76px;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

h1,
h2,
h3,
h4,
.brand-name {
  font-family: var(--font-heading);
}

h1 {
  font-size: 39px;
  line-height: 1.05;
  color: #ffffff;
}

h2 {
  font-size: 31px;
  line-height: 1.12;
  color: #111827;
}

h3,
h4 {
  font-size: 22px;
  line-height: 1.25;
}

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

button,
input,
textarea,
select {
  border-radius: 0;
}

@media (min-width: 768px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 42px;
  }

  h3,
  h4 {
    font-size: 24px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand-name {
  font-size: 24px;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.logo-icon {
  width: 44px;
  height: 44px;
}

.desktop-nav,
.desktop-phone {
  display: none !important;
}

.mobile-toggle {
  display: inline-flex !important;
}

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

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

.nav-link {
  color: #f9fafb;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 16px;
  transition: color 180ms ease;
}

.nav-link:hover {
  color: var(--gold-bright);
}

.mobile-menu {
  background: #080808;
  border-top: 1px solid var(--line);
}

.phone-btn,
.gold-btn {
  border-radius: 0;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #050505 !important;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  animation: whitePulse 2.2s ease-in-out infinite;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.phone-btn:hover,
.gold-btn:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: #ffffff;
  color: #050505 !important;
}

.outline-btn {
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #ffffff !important;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.outline-btn:hover {
  background: #ffffff;
  color: #050505 !important;
}

@keyframes whitePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.38);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
}

.hero {
  min-height: 760px;
  background-image: linear-gradient(180deg, rgba(0,0,0,0.78), rgba(0,0,0,0.66)), url('../images/hero-kitchen.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(5,5,5,0), #050505);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.stars {
  color: var(--gold-bright);
  font-size: 24px;
  letter-spacing: 0.16em;
  text-shadow: 0 0 22px rgba(244, 211, 107, 0.28);
}

.review-icons img {
  width: auto;
  height: 48px;
  max-width: 78px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  padding: 6px;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #050505;
  background: var(--gold);
  padding: 7px 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.dark-eyebrow {
  color: #050505;
  background: var(--gold);
}

.heading-rule::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  background: var(--gold);
  margin-top: 18px;
}

.heading-rule.center::after {
  margin-left: auto;
  margin-right: auto;
}

.section-light {
  background: #f8f8f6;
  color: #1f2937;
}

.section-white {
  background: #ffffff;
  color: #1f2937;
}

.section-dark {
  background: #050505;
  color: #f9fafb;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #ffffff;
}

.gold-panel {
  background: linear-gradient(135deg, #d4af37, #f4d36b);
  color: #050505;
}

.black-card {
  background: #0b0b0b;
  border: 1px solid var(--line);
  color: #f9fafb;
}

.light-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #1f2937;
}

.service-card,
.process-card,
.review-card,
.faq-item {
  border-radius: 0;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: #050505;
  color: var(--gold);
  border: 1px solid var(--gold);
  flex: 0 0 auto;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.two-col-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border: 1px solid var(--line);
}

@media (min-width: 768px) {
  .two-col-grid {
    grid-template-columns: minmax(0, 7fr) minmax(260px, 3fr);
  }

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

.process-number {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
}

.review-track {
  transition: transform 400ms ease;
}

.review-slide {
  min-width: 100%;
}

@media (min-width: 768px) {
  .review-slide {
    min-width: 33.333333%;
  }
}

.carousel-btn {
  border-radius: 0;
  border: 1px solid var(--gold);
  color: #050505;
  background: var(--gold);
  font-weight: 900;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 900;
  color: #111827;
  font-size: 18px;
}

.footer {
  background: #050505;
  color: #f9fafb;
  border-top: 1px solid var(--line);
}

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

.mobile-sticky-call {
  display: flex !important;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #050505 !important;
  font-weight: 900;
  white-space: nowrap;
  border-top: 2px solid #ffffff;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-sticky-call.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

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

.fade-up {
  animation: fadeUp 700ms ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mapless-local {
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 34%), #0b0b0b;
}
