:root {
  --font-heading: Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 8% 10%, rgba(241, 250, 121, 0.16), transparent 24rem), radial-gradient(circle at 92% 15%, rgba(98, 137, 171, 0.14), transparent 22rem);
  z-index: -1;
}

.site-shell {
  overflow: hidden;
}

.container-pad {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}

.logo-text,
h1,
h2,
h3,
h4 {
  font-weight: 800;
  letter-spacing: -0.035em;
}

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

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

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

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

.desktop-only {
  display: none !important;
}

.mobile-only {
  display: flex !important;
}

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

  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: clamp(39px, 10vw, 54px);
  }

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

.accent-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--accent);
  color: #111827;
  padding: 0.45rem 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.accent-badge::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  background: var(--primary);
  border-radius: 999px;
}

.heading-rule {
  width: 92px;
  height: 2px;
  background: var(--accent);
  margin-top: 1rem;
  position: relative;
}

.heading-rule::after {
  content: "";
  position: absolute;
  right: -0.65rem;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--brass);
}

.hero-section {
  min-height: 760px;
  background-image: linear-gradient(90deg, rgba(23, 40, 56, 0.88), rgba(38, 64, 87, 0.76), rgba(23, 40, 56, 0.72)), url('../images/hero-kitchen.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-section h1,
.hero-section p {
  color: #fff;
}

.hero-stars {
  color: var(--accent);
  font-size: clamp(24px, 5vw, 34px);
  letter-spacing: 0.08em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.review-logo-row img {
  width: auto;
  height: 48px;
  max-width: 86px;
  object-fit: contain;
  background: #fff;
  padding: 0.4rem;
}

.cta-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 54px;
  padding: 0.85rem 1.35rem;
  background: var(--accent);
  color: #111827 !important;
  font-weight: 900;
  text-decoration: none;
  border: 2px solid var(--accent);
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.cta-button::before {
  content: "";
  position: absolute;
  inset: -8px;
  background: rgba(255, 255, 255, 0.42);
  z-index: -1;
  opacity: 0.5;
  animation: pulseGlow 1.9s ease-in-out infinite;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: #fff;
}

.header-phone {
  color: #111827 !important;
  background: var(--accent);
  border: 2px solid var(--accent);
  padding: 0.7rem 0.95rem;
  font-weight: 900;
  white-space: nowrap;
  text-decoration: none;
}

.mobile-menu-phone {
  color: #111827 !important;
  background: var(--accent);
  border: 2px solid var(--accent);
  padding: 0.8rem 1rem;
  font-weight: 900;
  white-space: nowrap;
  text-decoration: none;
}

.arch-frame {
  position: relative;
  overflow: hidden;
  border-radius: 999px 999px 0 0;
  border: 1px solid rgba(184, 161, 95, 0.72);
  min-height: 360px;
  background: var(--primary);
}

.arch-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.arch-frame::after {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(241, 250, 121, 0.58);
  border-radius: 999px 999px 0 0;
  pointer-events: none;
}

.section-block {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.dark-panel {
  background: var(--primary-dark);
  color: #fff;
}

.dark-panel h2,
.dark-panel h3,
.dark-panel h4,
.dark-panel p,
.dark-panel li {
  color: #fff;
}

.light-panel {
  background: var(--surface-alt);
}

.service-card,
.trust-card,
.review-card,
.payment-card {
  border: 1px solid rgba(38, 64, 87, 0.18);
  background: #fff;
  color: var(--text);
  box-shadow: 0 22px 52px rgba(23, 40, 56, 0.08);
}

.service-card h3,
.trust-card h3,
.review-card h3,
.payment-card h3 {
  color: #111827;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--accent);
}

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

.brass-line {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--brass), transparent);
}

.two-col-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .two-col-feature {
    grid-template-columns: 7fr 3fr;
  }
}

.reveal-top {
  animation: revealTop 760ms ease both;
}

.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  scroll-snap-align: start;
}

@media (min-width: 1024px) {
  .review-track {
    grid-auto-columns: calc((100% - 3rem) / 3);
  }
}

.carousel-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(38, 64, 87, 0.25);
  background: #fff;
  color: #111827;
  font-size: 24px;
  line-height: 1;
}

.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none !important;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
  padding: 0.75rem 0.85rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(23, 40, 56, 0.98);
}

.sticky-call.is-visible {
  display: flex !important;
  transform: translateY(0);
  opacity: 1;
}

.sticky-call a {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #111827 !important;
  font-weight: 900;
  white-space: nowrap;
  text-decoration: none;
}

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

footer {
  font-size: 14px;
}

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

@keyframes pulseGlow {
  0%, 100% { transform: scale(0.98); opacity: 0.35; }
  50% { transform: scale(1.06); opacity: 0.68; }
}

@keyframes revealTop {
  from { opacity: 0; transform: translateY(-22px); clip-path: inset(0 0 100% 0); }
  to { opacity: 1; transform: translateY(0); clip-path: inset(0 0 0 0); }
}
