:root {
  --ink: #181619;
  --ink-soft: #302c31;
  --paper: #f8f4eb;
  --white: #ffffff;
  --gold: #f2b600;
  --gold-deep: #c99200;
  --sand: #e6dcc7;
  --sage: #dfe8df;
  --muted: #685f65;
  --line: rgba(24, 22, 25, 0.12);
  --shadow: 0 24px 60px rgba(24, 22, 25, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(242, 182, 0, 0.10), transparent 28%),
    linear-gradient(180deg, #f7f3ea 0%, #fffdf8 35%, #f2ede1 100%);
  overflow-x: hidden;
}

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

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

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 244, 235, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.brand-logo {
  width: 240px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a,
.lang-toggle {
  color: var(--ink-soft);
}

.lang-toggle {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(24, 22, 25, 0.06);
}

.lang-toggle {
  cursor: pointer;
  font: inherit;
}

.hero {
  padding: 72px 0 64px;
  background:
    radial-gradient(circle at 82% 70%, rgba(242, 182, 0, 0.26), transparent 28%),
    radial-gradient(circle at 14% 20%, rgba(242, 182, 0, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(24, 22, 25, 0.98), rgba(48, 44, 49, 0.94));
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

.hero-grid > *,
.work-grid > *,
.contact-layout > *,
.service-grid > *,
.why-grid > *,
.review-grid > * {
  min-width: 0;
}

.hero-copy,
.service-card,
.why-card,
.work-panel,
.review-card,
.contact-panel {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 22, 25, 0.08);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 26px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--white);
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.hero-copy::after {
  content: none;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold-deep);
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  max-width: 920px;
  margin-inline: auto;
}

.hero h1 span {
  color: var(--gold);
}

.hero-text,
.section-copy,
.service-card p,
.why-card p,
.work-panel p,
.review-card p,
.contact-panel p {
  margin: 18px 0 0;
  color: inherit;
  line-height: 1.65;
}

.hero-text {
  max-width: 52ch;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.button:hover,
.lang-toggle:hover,
.contact-row:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
}

.button-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-points {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  align-items: center;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(24, 22, 25, 0.08);
}

.contact-row-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
}

.section {
  padding: 44px 0;
  scroll-margin-top: 112px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

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

.service-grid,
.why-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 28px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--sand);
  color: var(--ink);
}

.service-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) saturate(100%) invert(8%) sepia(6%) saturate(935%) hue-rotate(257deg) brightness(93%) contrast(90%);
}

.service-card h3,
.why-card h3,
.work-panel h3,
.review-empty-title,
.footer-title {
  margin: 18px 0 0;
  font-size: 1.22rem;
}

.section-why .why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-card {
  padding: 28px;
}

.work-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.area-chip {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--sage);
  font-weight: 700;
}

.work-panel {
  padding: 30px;
  min-width: 0;
}

.showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.showcase-controls {
  display: flex;
  gap: 10px;
}

.showcase-button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(24, 22, 25, 0.12);
  background: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 1.2rem;
}

.showcase-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  max-width: 100%;
  margin-top: 22px;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.showcase-slide {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(24, 22, 25, 0.08);
  scroll-snap-align: start;
  min-width: 0;
}

.showcase-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  padding: 30px;
}

.review-stars {
  color: var(--gold-deep);
  letter-spacing: 0.18em;
  font-size: 1rem;
}

.review-quote {
  margin: 16px 0 0;
  color: var(--ink-soft);
}

.review-author {
  margin: 18px 0 0;
  font-weight: 800;
}

.reviews-link {
  display: inline-flex;
  margin-top: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}

.contact-panel {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.site-footer {
  padding: 36px 0 54px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.footer-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.footer-title {
  margin-top: 0;
}

.footer-copy,
.footer-meta {
  margin: 6px 0 0;
  color: var(--muted);
}

@media (max-width: 1040px) {
  .work-grid,
  .contact-layout,
  .service-grid,
  .section-why .why-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(1160px, calc(100% - 28px));
  }

  .nav-row,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    min-height: auto;
    padding: 14px 0;
  }

  .nav-links,
  .work-grid,
  .contact-layout,
  .service-grid,
  .section-why .why-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
  }

  .nav-links > a:not([href="#contact"]) {
    display: none;
  }

  .brand-logo {
    width: min(210px, 70vw);
  }

  .nav-links > a[href="#contact"] {
    order: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(24, 22, 25, 0.06);
  }

  .lang-toggle {
    order: 2;
    padding: 9px 14px;
  }

  .hero-copy,
  .service-card,
  .why-card,
  .work-panel,
  .review-card,
  .contact-panel {
    border-radius: 22px;
  }

  .hero-copy {
    padding: 32px 26px;
  }

  .section {
    scroll-margin-top: 156px;
  }

  .showcase-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .showcase-track {
    grid-auto-columns: 100%;
  }

  .showcase-slide {
    border-radius: 18px;
  }

  .showcase-slide img {
    aspect-ratio: 3 / 4;
  }
}
