:root {
  --bg: #1a1a1a;
  --bg-card: #242424;
  --bg-card-hover: #2e2e2e;
  --text: #f0efe9;
  --text-muted: #9d9d9f;
  --accent: #e63946;
  --accent-dim: rgba(230, 57, 70, 0.15);
  --border: rgba(255, 255, 255, 0.08);
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --radius: 12px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--text);
}
.logo span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 0.85rem;
  border-radius: 9999px;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-link:hover {
  color: var(--accent);
  background: var(--accent-dim);
}
.nav-link--cta {
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
  margin-left: var(--space-xs);
}
.nav-link--cta:hover {
  background: #c12f3a !important;
}
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  position: absolute;
  left: 7px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.nav-burger span:nth-child(1) {
  top: 11px;
}
.nav-burger span:nth-child(2) {
  top: 17px;
}
.nav-burger span:nth-child(3) {
  top: 23px;
}
.nav-burger.open span:nth-child(1) {
  top: 17px;
  transform: rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  top: 17px;
  transform: rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(72px + var(--space-xl)) var(--space-md) var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
      ellipse at 30% 50%,
      rgba(230, 57, 70, 0.06) 0%,
      transparent 60%
    ),
    var(--bg);
}
.hero-content {
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(230, 57, 70, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  margin-bottom: var(--space-md);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}
.hero-accent {
  color: var(--accent);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}
.hero-stats {
  display: flex;
  gap: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  border-radius: 9999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: #c12f3a;
  border-color: #c12f3a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--accent);
  border-color: rgba(230, 57, 70, 0.3);
}
.btn--ghost:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}
.btn--large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.styles,
.portfolio,
.process,
.hygiene,
.reviews,
.contact {
  padding: var(--space-2xl) var(--space-md);
}
.styles-inner,
.portfolio-inner,
.process-inner,
.hygiene-inner,
.reviews-inner,
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.styles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}
.style-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.style-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
.style-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}
.style-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}
.portfolio-item {
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition:
    background 0.3s,
    border-color 0.3s;
}
.portfolio-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
}
.portfolio-item--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  text-align: center;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.process-step h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hygiene {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hygiene-inner {
  text-align: center;
  max-width: 700px;
}
.hygiene-inner p {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}
.hygiene-features {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.hygiene-feature {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
}
.review-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-style: italic;
}
.review-card span {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

.contact-row {
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-row a {
  color: var(--accent);
  font-weight: 500;
}
.contact-row a:hover {
  text-decoration: underline;
}

.site-footer {
  background: #111;
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  text-align: center;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: var(--space-md);
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.floating-cta {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  background: #25d366;
  color: #fff;
  padding: 0.85rem 1.4rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s;
}
.floating-cta:hover {
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-stats {
    gap: var(--space-lg);
  }
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: var(--space-md);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-link {
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: center;
  }
  .nav-link--cta {
    margin-left: 0;
    margin-top: var(--space-xs);
  }
  .nav-burger {
    display: block;
  }
  .hero {
    min-height: auto;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .styles-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-item--wide {
    grid-column: span 2;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .hygiene-features {
    flex-direction: column;
    align-items: center;
  }
  .floating-cta {
    display: flex;
  }
}
@media (max-width: 480px) {
  .styles-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
}
