:root {
  --bg: #f3f1ed;
  --bg-soft: #e8e5e1;
  --panel: rgba(43, 37, 43, 0.06);
  --panel-border: rgba(43, 37, 43, 0.14);
  --text: #2b252b;
  --muted: #6b646a;
  --accent: #4c414b;
  --accent-strong: #6e5d6c;
  --shadow: rgba(43, 37, 43, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #f3f1ed 0%, #e8e5e1 100%);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0 0 1rem;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.05em;
}

p {
  margin: 0;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(243, 241, 237, 0.82);
  border-bottom: 1px solid rgba(43, 37, 43, 0.1);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand img {
  width: 56px;
  height: 58px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--text);
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--panel);
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-links a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.language-picker select {
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  padding: 0.45rem 0.55rem;
  background: rgba(255, 255, 255, 0.38);
  color: var(--text);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
}

.hero-copy {
  max-width: 620px;
}

.lead {
  margin-top: 1.2rem;
  font-size: 1.08rem;
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #111827;
  box-shadow: 0 18px 35px rgba(239, 125, 74, 0.25);
}

.button.secondary {
  border-color: rgba(43, 37, 43, 0.2);
  background: rgba(255, 255, 255, 0.38);
}

.button.full {
  width: 100%;
}

.stats {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 2.2rem 0 0;
  flex-wrap: wrap;
}

.stats li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.stats strong {
  font-size: 1.6rem;
}

.stats span {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.showcase-card {
  position: relative;
  width: min(100%, 520px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  box-shadow: 0 28px 60px var(--shadow);
}

.showcase-card img {
  height: 640px;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: end;
}

.intro {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.section-heading {
  margin-bottom: 2.2rem;
}

.section-heading.center {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--panel-border);
  background: #d8d3d1;
}

.gallery-item::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  width: 150px;
  height: 88px;
  background: url("FullLogo_Transparent_NoBuffer.png") center / contain no-repeat;
  opacity: 0.92;
  pointer-events: none;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.03);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.services {
  background: rgba(255, 255, 255, 0.35);
}

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

.service-card {
  padding: 1.5rem;
  border-radius: 22px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.2);
}

.service-card h3 {
  font-size: 1.35rem;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  color: var(--text);
  display: grid;
  gap: 0.55rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  color: var(--text);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: var(--text);
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: rgba(167, 180, 199, 0.8);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(255, 159, 105, 0.45);
  border-color: rgba(255, 159, 105, 0.6);
}

.form-status {
  min-height: 1.6rem;
  margin-top: 0.8rem;
  color: var(--accent-strong);
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid rgba(43, 37, 43, 0.12);
  padding: 1.5rem 0 3rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 820px) {
  .hero-grid,
  .split,
  .contact-wrap,
  .service-grid,
  .field-row,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .showcase-card img {
    height: 480px;
  }

  .nav-wrap,
  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
  }

  .footer-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .main-nav {
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}
