:root {
  --bg: #1C1A1E;
  --surface: #2A2830;
  --text: #FAF8F5;
  --muted: #9E939A;
  --accent: #BF7B75;
  --accent-2: #EEE5E3;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 0 1px rgba(238, 229, 227, 0.12), 0 12px 35px rgba(191, 123, 117, 0.18);
}

* { box-sizing: border-box; }

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(191, 123, 117, 0.22), transparent 65%),
    radial-gradient(800px 450px at -10% 30%, rgba(238, 229, 227, 0.09), transparent 70%),
    linear-gradient(165deg, #1c1a1e 0%, #1f1c23 45%, #17151a 100%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

main {
  width: min(1160px, 92vw);
  margin: 0 auto;
  padding-top: 122px;
}

.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, 94vw);
  z-index: 1000;
  transition: box-shadow .35s ease, background .35s ease, border-color .35s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(42, 40, 48, 0.68);
  border: 1px solid rgba(238, 229, 227, 0.16);
  border-radius: 999px;
  padding: 12px 20px;
  backdrop-filter: blur(12px);
}

.nav.scrolled .nav-inner {
  box-shadow: var(--shadow-soft);
  border-color: rgba(238, 229, 227, 0.24);
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.logo-main {
  font-family: 'Lora', serif;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}

.logo-accent {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.86rem;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu a {
  font-size: 0.92rem;
  color: var(--muted);
  transition: color .25s ease;
}

.menu a:hover { color: var(--accent-2); }

.btn {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

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

.btn-nav {
  background: linear-gradient(120deg, rgba(191, 123, 117, 0.28), rgba(238, 229, 227, 0.18));
  border: 1px solid rgba(238, 229, 227, 0.28);
  padding: 10px 16px;
  font-size: 0.9rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  min-height: 78vh;
  padding: 40px 0 24px;
}

.hero-label,
.hero h1,
.hero-sub,
.hero-actions,
.hero-stats {
  opacity: 0;
  transform: translateY(16px);
  animation: heroIn .7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-label { animation-delay: .1s; }
.hero h1 { animation-delay: .2s; }
.hero-sub { animation-delay: .3s; }
.hero-actions { animation-delay: .4s; }
.hero-stats { animation-delay: .5s; }

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(191, 123, 117, 0.8);
}

h1, h2, h3 { font-family: 'Lora', serif; line-height: 1.18; margin: 0; }

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  margin-bottom: 14px;
}

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

.hero-sub {
  margin: 0 0 28px;
  max-width: 52ch;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.btn-primary {
  padding: 14px 24px;
  color: #1c1a1e;
  background: linear-gradient(120deg, var(--accent-2), #d8cecc);
  box-shadow: var(--shadow-glow);
}

.btn-ghost {
  padding: 14px 24px;
  border: 1px solid rgba(238, 229, 227, 0.28);
  background: rgba(255, 255, 255, 0.03);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stats div {
  padding: 12px 14px;
  background: rgba(42, 40, 48, 0.7);
  border: 1px solid rgba(238, 229, 227, 0.14);
  border-radius: var(--radius-sm);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-stats strong {
  display: block;
  font-size: 1.25rem;
  font-family: 'Lora', serif;
  color: var(--accent-2);
}

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

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(238, 229, 227, 0.14);
  box-shadow: var(--shadow-soft);
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 26, 30, 0.12), rgba(28, 26, 30, 0.55));
}

.hero-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(28, 26, 30, 0.76);
  border: 1px solid rgba(238, 229, 227, 0.25);
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--accent-2);
  backdrop-filter: blur(8px);
  font-size: 0.84rem;
}

.hero-badge strong {
  font-family: 'Lora', serif;
  font-size: 1.08rem;
}

.section {
  padding: 90px 0;
}

.section-tag {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}

.section-head {
  margin-bottom: 32px;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

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

.card {
  background: linear-gradient(180deg, rgba(42, 40, 48, 0.94), rgba(35, 33, 41, 0.95));
  border: 1px solid rgba(238, 229, 227, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transform-style: preserve-3d;
  will-change: transform;
}

.card img {
  height: 210px;
  object-fit: cover;
  filter: brightness(0.9);
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  font-size: 1.32rem;
  margin-bottom: 10px;
}

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

.card-body a {
  color: var(--accent-2);
  font-weight: 600;
}

.card-body a span {
  display: inline-block;
  transition: transform .25s ease;
}

.card:hover .card-body a span { transform: translateX(5px); }

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(238, 229, 227, 0.16);
}

.about-media img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05);
}

.about-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(28, 26, 30, 0.76);
  border: 1px solid rgba(238, 229, 227, 0.28);
  backdrop-filter: blur(8px);
  font-family: 'Lora', serif;
  color: var(--accent-2);
}

.about-badge span {
  display: block;
  font-family: 'Inter', sans-serif;
  color: var(--muted);
  font-size: 0.78rem;
}

.about-content p { color: var(--muted); }

.credentials {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.credentials li {
  position: relative;
  padding-left: 26px;
}

.credentials li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.social-proof {
  background: linear-gradient(140deg, rgba(26, 24, 30, 0.9), rgba(34, 30, 36, 0.9));
  border: 1px solid rgba(238, 229, 227, 0.12);
  border-radius: var(--radius-lg);
  padding: 52px clamp(20px, 4vw, 42px);
}

.metrics {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  padding: 18px;
}

.metric strong {
  display: block;
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  color: var(--accent-2);
}

.metric span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact {
  text-align: center;
  padding-bottom: 110px;
}

.contact h2 { margin-bottom: 12px; }
.contact p {
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 24px;
}

.btn-wa {
  padding: 14px 26px;
  background: linear-gradient(120deg, #c89691, var(--accent));
  color: #1c1a1e;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
}

.btn-wa svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

footer {
  border-top: 1px solid rgba(238, 229, 227, 0.12);
  padding: 24px 4vw 34px;
  text-align: center;
  color: rgba(250, 248, 245, 0.58);
  background: #17151a;
}

footer a { color: var(--accent); }

footer .footer-description {
  margin-bottom: 8px;
  color: rgba(250, 248, 245, 0.85);
  font-weight: 600;
}

footer .footer-nap {
  margin: 4px 0;
  color: rgba(250, 248, 245, 0.7);
  font-size: 0.9rem;
}

.reveal,
.reveal-left {
  opacity: 0;
  transition: opacity .7s cubic-bezier(0.16, 1, .3, 1), transform .7s cubic-bezier(0.16, 1, .3, 1);
}

.reveal { transform: translateY(28px); }
.reveal-left { transform: translateX(-24px); }

.reveal.visible,
.reveal-left.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .menu { display: none; }
  .hero,
  .about {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 420px;
    order: 2;
  }

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

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

@media (max-width: 767px) {
  main { padding-top: 108px; }

  .nav {
    top: 10px;
    width: 94vw;
  }

  .nav-inner {
    border-radius: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    gap: 24px;
    min-height: auto;
  }

  .hero-stats,
  .services-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }
}
