:root {
  --bg: #0f1923;
  --bg-soft: #1a2734;
  --panel: rgba(26, 39, 52, 0.7);
  --panel-strong: rgba(15, 25, 35, 0.85);
  --text: #f4efe6;
  --muted: #d8cdbb;
  --accent: #f08a5d;
  --accent-2: #f2d680;
  --line: rgba(242, 214, 128, 0.25);
  --radius: 20px;
  --shadow: 0 24px 40px rgba(8, 13, 20, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(240, 138, 93, 0.22), transparent 65%),
    radial-gradient(1000px 700px at -5% 20%, rgba(242, 214, 128, 0.15), transparent 62%),
    linear-gradient(150deg, #0d161f 0%, #152230 45%, #111a24 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

.background-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
  z-index: -1;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background-color: rgba(13, 22, 31, 0.72);
  border-bottom: 1px solid rgba(216, 205, 187, 0.12);
}

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

.brand {
  color: var(--text);
  text-decoration: none;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.4px;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.top-nav {
  display: flex;
  gap: 22px;
}

.top-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: var(--accent-2);
}

.lang-switcher {
  display: inline-flex;
  border: 1px solid rgba(216, 205, 187, 0.34);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(216, 205, 187, 0.05);
}

.lang-btn {
  border: 0;
  color: var(--muted);
  background: transparent;
  padding: 7px 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  color: var(--accent-2);
  outline: none;
}

.lang-btn.is-active {
  background: linear-gradient(120deg, var(--accent) 0%, #f6a16e 100%);
  color: #1f130b;
}

.section {
  padding: 92px 0;
}

.hero {
  padding-top: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.kicker {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.hero-copy h1,
.section-head h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 550;
  line-height: 1.1;
  letter-spacing: 0.2px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 5.8vw, 4rem);
  max-width: 18ch;
}

.hero-copy p {
  margin-top: 18px;
  max-width: 50ch;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #1f130b;
  background: linear-gradient(120deg, var(--accent) 0%, #f6a16e 100%);
  box-shadow: 0 10px 22px rgba(240, 138, 93, 0.35);
}

.btn-ghost {
  color: var(--muted);
  border-color: rgba(216, 205, 187, 0.35);
  background-color: rgba(216, 205, 187, 0.05);
}

.hero-card {
  background: linear-gradient(160deg, rgba(242, 214, 128, 0.1), rgba(240, 138, 93, 0.05)), var(--panel);
  border: 1px solid rgba(242, 214, 128, 0.2);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-family: "Fraunces", Georgia, serif;
  margin-top: 0;
  margin-bottom: 14px;
}

.hero-card ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}

.hero-card li + li {
  margin-top: 12px;
}

.section-head p {
  margin: 14px 0 0;
  color: var(--muted);
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.about-prose {
  margin-top: 20px;
  max-width: 75ch;
}

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

.info-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
}

.info-card p {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--muted);
}

.info-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.info-card li + li {
  margin-top: 8px;
}

.consulting-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 214, 128, 0.5);
}

.service-card h3 {
  margin-top: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.3rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.gallery-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  min-height: 180px;
  border: 1px solid rgba(216, 205, 187, 0.2);
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
  grid-column: span 7;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6),
.gallery-item:nth-child(7) {
  grid-column: span 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}

.gallery-item:hover {
  transform: translateY(-5px) scale(1.01);
}

.site-footer {
  border-top: 1px solid rgba(216, 205, 187, 0.15);
  background: rgba(9, 14, 20, 0.75);
}

.site-footer .container {
  min-height: 86px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible {
  animation: rise-in 700ms ease forwards;
}

@keyframes rise-in {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .consulting-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7) {
    grid-column: span 1;
    min-height: 240px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 74px 0;
  }

  .nav-wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
  }

  .site-footer .container {
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    text-align: center;
    padding: 18px 0;
  }

  .top-nav {
    gap: 14px;
  }

  .lang-btn {
    padding: 6px 10px;
  }
}
