:root {
  --bg: #fafafa;
  --text: #333e49;
  --accent: #e4aa45;
  --accent-hover: #eab151;
  --muted: #6b7278;
  --line: #e6e2d8;
  --white: #ffffff;
  --footer: #333e49;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: min(1440px, calc(100% - 80px));
  margin: 0 auto;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.section-label {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-title {
  margin: 0 0 20px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-copy {
  margin: 0;
  color: var(--muted);
}

.body-large {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
}

.text-link {
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  transition: color 300ms var(--ease);
}

.text-link:hover {
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: revealIn 700ms var(--ease) forwards;
  animation-play-state: paused;
}

.reveal.is-in {
  animation-play-state: running;
}

@keyframes revealIn {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 400ms var(--ease), backdrop-filter 400ms var(--ease),
    box-shadow 400ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(250, 250, 250, 0.84);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 24px;
}

.logo img {
  width: 148px;
  height: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 300ms var(--ease);
}

.nav-desktop a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-wa {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  transition: background 300ms var(--ease);
}

.header-wa:hover {
  background: var(--accent-hover);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: var(--accent);
  transition: transform 400ms var(--ease), opacity 400ms var(--ease);
}

.burger[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.burger[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background:
    radial-gradient(ellipse 80% 50% at 70% -10%, rgba(228, 170, 69, 0.16), transparent 55%),
    #2b333b;
  padding: calc(var(--header-h) + 28px) 0 48px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 400ms var(--ease), transform 400ms var(--ease), visibility 400ms;
}

.site-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.site-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
}

.site-menu-nav a {
  display: block;
  font-size: clamp(32px, 7vw, 52px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.15;
  color: #fafafa;
  padding: 6px 0;
  width: fit-content;
  transition: color 300ms var(--ease), transform 300ms var(--ease);
}

.site-menu-nav a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.menu-open .logo img {
  filter: brightness(0) invert(1);
}

/* Hero */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 48px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  text-align: center;
  padding-top: 24px;
}

.hero-visual {
  position: absolute;
  inset: -20% -15% -10%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 58% 48% at 50% 42%,
      rgba(228, 170, 69, 0.2) 0%,
      rgba(228, 170, 69, 0.08) 32%,
      transparent 72%
    );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 50% 45%,
    #000 20%,
    rgba(0, 0, 0, 0.55) 50%,
    transparent 78%
  );
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 45%,
    #000 20%,
    rgba(0, 0, 0, 0.55) 50%,
    transparent 78%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 900ms var(--ease) 120ms forwards;
}

.hero-focus {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  margin: 0 0 28px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.2;
}

.hero-focus-sep {
  display: inline-block;
  width: 1px;
  height: 0.85em;
  background: var(--line);
}

.hero-title {
  margin: 0 0 24px;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.hero-lead {
  margin: 0 auto 40px;
  max-width: 640px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px 14px 22px;
  background: var(--footer);
  color: var(--white);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background 400ms var(--ease);
}

.cta:hover {
  background: #2a323a;
}

.cta-arrow {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  transition: transform 400ms var(--ease);
}

.cta-arrow::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin: auto;
  background: var(--text);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2.5 8h9.2M8.2 3.8 12.5 8 8.2 12.2' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2.5 8h9.2M8.2 3.8 12.5 8 8.2 12.2' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.cta:hover .cta-arrow {
  transform: translateX(5px);
}

.cta--block {
  width: 100%;
  justify-content: space-between;
}

.cta-ghost {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color 300ms var(--ease), border-color 300ms var(--ease);
}

.cta-ghost:hover {
  color: var(--text);
  border-color: var(--accent);
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Services */
.services {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: var(--white);
  min-height: 220px;
}

.service-icon {
  display: flex;
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* About */
.about {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: end;
}

.about-copy p {
  max-width: 58ch;
  color: var(--muted);
}

.about-copy .body-large {
  color: var(--text);
}

.about-copy strong {
  font-weight: 600;
  color: var(--text);
}

.about-aside {
  background: var(--footer);
  color: var(--white);
  padding: 40px 36px;
  min-height: 280px;
}

.about-kicker {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-guarantee {
  margin: 0 0 24px;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.about-note,
.about-fine {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.about-fine {
  margin-top: 12px;
  font-size: 12px;
}

/* Why */
.why {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  counter-reset: none;
}

.why-grid li {
  background: var(--bg);
  padding: 28px 24px 32px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-grid span {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 500;
}

.why-grid p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* Gallery */
.gallery {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 240px);
  gap: 12px;
}

.gallery-grid a {
  overflow: hidden;
  background: #ece8de;
}

.gallery-grid a:first-child {
  grid-row: 1 / span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.gallery-grid a:hover img {
  transform: scale(1.04);
}

/* Hours */
.hours {
  border-top: 1px solid var(--line);
  background: var(--accent);
}

.hours-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hours p {
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

/* Reviews */
.reviews {
  padding: 96px 0;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.review-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.review-card p {
  margin: 0 0 24px;
  font-size: 17px;
  letter-spacing: -0.015em;
  line-height: 1.55;
}

.review-card footer {
  font-size: 13px;
  font-weight: 600;
}

.review-card footer span {
  display: block;
  margin-top: 4px;
  font-weight: 400;
  color: var(--muted);
}

.review-card:last-child {
  grid-column: auto;
}

/* Contact */
.contact {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.contact-copy .body-large {
  color: var(--muted);
  max-width: 52ch;
}

.contact-panel {
  background: var(--footer);
  color: var(--white);
  padding: 40px 36px;
}

.contact-kicker {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.contact-heading {
  margin: 0 0 28px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.contact-mail {
  display: inline-block;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(228, 170, 69, 0.5);
}

.contact-mail:hover {
  color: var(--accent);
}

.contact-hint {
  margin: 16px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* Coverage */
.coverage {
  padding: 0 0 96px;
}

.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.coverage-list li {
  padding: 10px 16px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  background: var(--white);
}

/* Footer */
.site-footer {
  background: var(--footer);
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 0 48px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  width: 140px;
  height: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 36ch;
  margin: 0 0 20px;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  border-bottom: 1px solid transparent;
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-legal p {
  margin: 0 0 12px;
  font-size: 13px;
  max-width: 52ch;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(28, 32, 36, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .container {
    width: calc(100% - 48px);
  }

  .nav-desktop {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .service-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-inner,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 180px 180px;
  }

  .gallery-grid a:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 32px);
  }

  .hero {
    min-height: auto;
    padding: 32px 0 72px;
  }

  .services,
  .about,
  .why,
  .gallery,
  .reviews,
  .contact {
    padding: 72px 0;
  }

  .coverage {
    padding-bottom: 72px;
  }

  .service-grid,
  .why-grid,
  .review-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-rows: none;
  }

  .gallery-grid a,
  .gallery-grid a:first-child {
    height: 220px;
    grid-column: auto;
  }

  .review-card:last-child {
    grid-column: auto;
  }

  .logo img {
    width: 128px;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
  }

  .header-wa {
    padding: 0 12px;
    font-size: 12px;
  }
}
