/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #f5f0eb;
  background: #0f0d0c;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 13, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232, 160, 176, 0.1);
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-size: 20px;
  font-weight: 500;
  color: #f5f0eb;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 14px;
  color: #f5f0eb;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.25s;
}

.nav-link:hover {
  opacity: 1;
}

/* Language */
.lang-switch {
  display: flex;
  gap: 4px;
}

.lang-btn {
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 500;
  color: #8a7f78;
  cursor: pointer;
  padding: 4px 7px;
  border-radius: 4px;
  transition: all 0.2s;
}

.lang-btn:hover {
  color: #f5f0eb;
}

.lang-btn.active {
  color: #e8a0b0;
  background: rgba(232, 160, 176, 0.12);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1600') center/cover no-repeat;
  padding: 120px 24px 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 13, 12, 0.7), rgba(15, 13, 12, 0.85));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-label {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8a0b0;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(42px, 8vw, 68px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #f5f0eb;
}

.hero-sub {
  font-size: clamp(17px, 2.5vw, 20px);
  color: rgba(245, 240, 235, 0.75);
  margin-bottom: 40px;
  font-weight: 400;
}

/* Button */
.btn {
  display: inline-block;
  background: transparent;
  color: #e8a0b0;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 32px;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid #e8a0b0;
  cursor: pointer;
  transition: all 0.3s;
}

.btn:hover {
  background: #e8a0b0;
  color: #0f0d0c;
}

/* About */
.about {
  padding: 120px 0;
  text-align: center;
}

.about-text {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(245, 240, 235, 0.8);
  max-width: 620px;
  margin: 0 auto;
}

/* Services */
.services {
  padding: 40px 0 120px;
}

.services h2 {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e8a0b0;
  text-align: center;
  margin-bottom: 56px;
  font-weight: 500;
}

.services-list {
  max-width: 640px;
  margin: 0 auto;
}

.service-row {
  padding: 28px 0;
  border-bottom: 1px solid rgba(232, 160, 176, 0.12);
}

.service-row:first-child {
  border-top: 1px solid rgba(232, 160, 176, 0.12);
}

.service-row h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #f5f0eb;
}

.service-row p {
  font-size: 15px;
  color: rgba(245, 240, 235, 0.6);
}

/* Contact */
.contact {
  padding: 100px 0 120px;
  text-align: center;
  background: #161311;
}

.contact h2 {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e8a0b0;
  margin-bottom: 12px;
  font-weight: 500;
}

.contact-text {
  font-size: 22px;
  color: #f5f0eb;
  margin-bottom: 40px;
  font-weight: 400;
}

.contact-form {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(232, 160, 176, 0.2);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: transparent;
  color: #f5f0eb;
  transition: border-color 0.25s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(245, 240, 235, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #e8a0b0;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Footer */
.footer {
  padding: 32px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(245, 240, 235, 0.35);
  border-top: 1px solid rgba(232, 160, 176, 0.08);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

body.lang-changing [data-i18n],
body.lang-changing [data-i18n-placeholder] {
  opacity: 0;
  transform: translateY(6px);
  filter: blur(3px);
  transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

[data-i18n],
[data-i18n-placeholder] {
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 38px;
  }

  .about-text {
    font-size: 18px;
  }
}