:root {
  --bg: #f6f6f6;
  --bg-alt: #ffffff;
  --fg: #151515;
  --muted: #666666;
  --accent: #ff7a1a;
  --accent-soft: rgba(255, 122, 26, 0.12);
  --border: #e4e4e4;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 999px;
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.08);
  --shadow-subtle: 0 8px 20px rgba(0, 0, 0, 0.05);
  --transition-fast: 0.2s ease-out;
  --header-height: 64px;
  --container-padding: 16px;
}

*, 
*::before, 
*::after {
  box-sizing: border-box;
}

html, 
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(246, 246, 246, 0.92);
  border-bottom: 1px solid rgba(228, 228, 228, 0.7);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: var(--shadow-subtle);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-size: 15px;
  font-weight: 700;
}

.brand-tagline {
  font-size: 11px;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.main-nav a {
  text-decoration: none;
  color: var(--fg);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.main-nav a:hover {
  background: rgba(0, 0, 0, 0.04);
}

.main-nav .nav-cta {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-subtle);
}

.main-nav .nav-cta:hover {
  background: #ff6b00;
}

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 0;
  margin: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--fg);
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px var(--container-padding) 32px;
}

/* Hero */

.hero {
  padding-top: 18px;
  padding-bottom: 26px;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(21px, 4vw, 30px);
  line-height: 1.2;
  margin: 0 0 10px;
}

.hero-subtitle {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
  font-size: 13px;
  color: var(--muted);
}

.hero-bullets li::before {
  content: "•";
  color: var(--accent);
  margin-right: 6px;
}

.hero-visual {
  position: relative;
  min-height: 210px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 20% 0, #ffe4cc 0, #ffd4b0 25%, #fff 50%);
  overflow: hidden;
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  filter: blur(0.5px);
}

.bubble-large {
  width: 130px;
  height: 130px;
  top: -30px;
  right: -20px;
}

.bubble-medium {
  width: 70px;
  height: 70px;
  left: -20px;
  bottom: 20px;
}

.bubble-small {
  width: 45px;
  height: 45px;
  right: 30px;
  bottom: 10px;
}

.hero-card {
  position: relative;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 12px;
  width: 70%;
  max-width: 230px;
  box-shadow: var(--shadow-subtle);
  font-size: 12px;
}

.hero-card-car {
  margin-top: 8px;
}

.hero-card-sofa {
  margin-top: 18px;
  margin-left: auto;
}

.hero-card-label {
  font-weight: 600;
  margin-bottom: 6px;
}

.hero-card-main {
  font-size: 18px;
  font-weight: 700;
}

.hero-card-note {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

/* Generic section */

.section {
  padding: 26px 0;
}

.section-header {
  margin-bottom: 18px;
}

.section-header h2 {
  margin: 0 0 4px;
  font-size: 19px;
}

.section-header p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: #ff6b00;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(255, 122, 26, 0.4);
}

.btn-secondary {
  background: #fff;
  color: var(--fg);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: #f9f9f9;
}

.btn-outline {
  background: #fff;
  color: var(--fg);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-full {
  width: 100%;
}

/* Services */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.service-card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 12px 12px 14px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-icon {
  font-size: 20px;
  margin-bottom: 4px;
}

.service-card h3 {
  margin: 0;
  font-size: 14px;
}

.service-card p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.service-tag {
  margin-top: 6px;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  align-self: flex-start;
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.pricing-card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 14px 14px 16px;
  box-shadow: var(--shadow-subtle);
  position: relative;
}

.pricing-card h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.pricing-sub {
  margin: 0 0 10px;
  font-size: 12px;
  color: var(--muted);
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  font-size: 13px;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 3px 0;
}

.pricing-list span {
  color: var(--muted);
}

.pricing-list strong {
  font-weight: 600;
}

.pricing-note {
  margin: 4px 0 10px;
  font-size: 11px;
  color: var(--muted);
}

.pricing-note.emphasized {
  color: var(--fg);
  font-weight: 500;
}

.pricing-card .btn {
  margin-top: 4px;
}

.pricing-highlight {
  border: 1px solid rgba(255, 122, 26, 0.4);
  box-shadow: 0 18px 40px rgba(255, 122, 26, 0.22);
}

.pricing-highlight .pricing-main {
  margin: 0 0 4px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.pricing-highlight .price {
  font-size: 22px;
  font-weight: 800;
}

.pricing-highlight .label {
  font-size: 12px;
  color: var(--muted);
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.gallery-item {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: var(--shadow-subtle);
}

.gallery-label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.gallery-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery-side {
  padding: 18px 10px;
  font-size: 12px;
  text-align: center;
  color: #fff;
  position: relative;
}

.gallery-side.before {
  background: linear-gradient(135deg, #555, #222);
}

.gallery-side.after {
  background: linear-gradient(135deg, #ff7a1a, #ffc89b);
}

.gallery-side::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

/* Subtle thumbnails */

.thumb-strip {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.thumb-strip img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.service-thumb {
  margin-top: 8px;
  width: 100%;
  max-width: 130px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-thumb {
  margin-top: 8px;
  width: 100%;
  max-width: 130px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-thumb-row {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.review-thumb-row img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 9px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Zone */

.zone-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 16px;
  align-items: center;
}

.zone-map-placeholder {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
}

.zone-map-circle {
  width: 160px;
  height: 160px;
  margin: 0 auto 8px;
  border-radius: 50%;
  border: 2px dashed rgba(21, 21, 21, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
  background: radial-gradient(circle at 30% 20%, #ffe4cc, #fff);
}

.zone-map-note {
  font-size: 11px;
  color: var(--muted);
}

.zone-cities h3 {
  margin: 0 0 6px;
  font-size: 14px;
}

.zone-cities ul {
  margin: 0 0 6px;
  padding-left: 18px;
  font-size: 12px;
  color: var(--muted);
  columns: 2;
  column-gap: 24px;
}

.zone-note {
  font-size: 12px;
  color: var(--fg);
  font-weight: 500;
}

/* Why */

.chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid var(--border);
  background: #fff;
}

/* Forms */

form {
  margin: 0;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.form-row label {
  font-size: 12px;
  font-weight: 500;
}

input[type="text"], 
input[type="date"], 
input[type="tel"], 
input[type="email"], 
select, 
textarea {
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 7px 10px;
  font-size: 13px;
  font-family: inherit;
  background: #fff;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

input:focus, 
select:focus, 
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 122, 26, 0.3);
  background: #fffdfa;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.form-helper {
  margin: 6px 0 0;
  font-size: 11px;
  color: var(--muted);
}

.quote-form, 
.contact-form {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 14px 14px 16px;
  box-shadow: var(--shadow-subtle);
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
}

.contact-card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-subtle);
  font-size: 12px;
}

.contact-card h3 {
  margin: 0 0 6px;
  font-size: 14px;
}

.contact-card p {
  margin: 3px 0;
}

.contact-label {
  font-weight: 600;
}

.contact-card a {
  color: var(--fg);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card.highlight {
  border: 1px solid rgba(255, 122, 26, 0.4);
  background: linear-gradient(135deg, #fff7f1, #ffffff);
}

/* Reviews */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.review-card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-subtle);
  font-size: 12px;
}

.review-stars {
  color: #ffb400;
  margin-bottom: 4px;
}

.review-text {
  margin: 0 0 6px;
  color: var(--fg);
}

.review-author {
  margin: 0;
  color: var(--muted);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(228, 228, 228, 0.9);
  background: #ffffff;
  margin-top: 12px;
}

.footer-top {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px var(--container-padding) 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  font-size: 12px;
}

.footer-column h3 {
  margin: 0 0 4px;
  font-size: 13px;
}

.footer-column p {
  margin: 2px 0;
}

.footer-column a {
  color: var(--fg);
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(228, 228, 228, 0.9);
  padding: 8px var(--container-padding);
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .zone-layout {
    grid-template-columns: 1fr;
  }

  .zone-cities ul {
    columns: 1;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .main-nav {
    position: absolute;
    inset: calc(var(--header-height) - 2px) 12px auto;
    border-radius: 16px;
    background: rgba(246, 246, 246, 0.98);
    border: 1px solid rgba(228, 228, 228, 0.9);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    gap: 4px;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}