*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", sans-serif;
  color: #f0ebe3;
  background: #0c0b09;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.038;
  pointer-events: none;
  z-index: 9998;
}

::-moz-selection {
  background: rgba(201, 169, 110, 0.1);
  color: #c9a96e;
}

::selection {
  background: rgba(201, 169, 110, 0.1);
  color: #c9a96e;
}

section {
  padding: 130px 6vw;
}

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #c9a96e;
  margin-bottom: 1.4rem;
}
.section-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: #c9a96e;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: #f0ebe3;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
h2 em {
  font-family: "Lora", serif;
  font-style: italic;
  color: #c9a96e;
}

.section-intro {
  font-size: 1.05rem;
  color: #b5ad9f;
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 4rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #c9a96e;
  color: #0c0b09;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: rgb(212.0713567839, 186.632160804, 139.7286432161);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f0ebe3;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-weight: 500;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  border-color: #c9a96e;
  color: #c9a96e;
}

.hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 72px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(12, 11, 9, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 201;
}
.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo-mark {
  display: block;
  height: 28px;
  width: auto;
  filter: brightness(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  color: #b5ad9f;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #f0ebe3;
}
.nav-links a.nav-cta {
  background: #c9a96e;
  color: #0c0b09;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}
.nav-links a.nav-cta:hover {
  background: rgb(212.0713567839, 186.632160804, 139.7286432161);
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 201;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lang-switcher span {
  color: rgba(255, 255, 255, 0.14);
}
.lang-switcher a {
  text-decoration: none;
  color: #6e6860;
  transition: color 0.2s;
}
.lang-switcher a:hover {
  color: #f0ebe3;
}
.lang-switcher a.active {
  color: #c9a96e;
  pointer-events: none;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (max-width: 768px) {
  .nav-burger {
    display: flex;
  }
}
.nav-burger span {
  display: block;
  height: 1.5px;
  background: #f0ebe3;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.25s ease, width 0.25s ease;
}
.nav-burger span:nth-child(1) {
  width: 26px;
}
.nav-burger span:nth-child(2) {
  width: 20px;
}
.nav-burger span:nth-child(3) {
  width: 26px;
}
.nav-burger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  width: 26px;
}
.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  width: 26px;
}

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: #0c0b09;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 8vw 8vw;
}
.nav-mobile::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}
.nav-mobile {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), visibility 0s linear 0.35s;
}
.nav-mobile.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), visibility 0s linear 0s;
}

.nav-mobile-links {
  list-style: none;
  position: relative;
  z-index: 1;
}
.nav-mobile-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.nav-mobile-links li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-mobile-links li:nth-child(1) a {
  transition-delay: 0.05s;
}
.nav-mobile-links li:nth-child(2) a {
  transition-delay: 0.1s;
}
.nav-mobile-links li:nth-child(3) a {
  transition-delay: 0.15s;
}
.nav-mobile-links li:nth-child(4) a {
  transition-delay: 0.2s;
}
.nav-mobile-links a {
  display: block;
  padding: 1.4rem 0;
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 700;
  color: #b5ad9f;
  text-decoration: none;
  letter-spacing: -0.5px;
  transform: translateY(20px);
  opacity: 0;
  transition: color 0.2s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease;
}
.nav-mobile-links a:hover {
  color: #c9a96e;
}
.is-open .nav-mobile-links a {
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile-footer {
  position: absolute;
  bottom: 40px;
  left: 8vw;
  right: 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.nav-mobile-url {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6e6860;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 6vw 80px;
  position: relative;
  overflow: hidden;
  background: #0c0b09;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #0c0b09;
  background-image: url("/img/photo-1763568258191-4095520e045b.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}
@supports (background-image: url("x.avif")) {
  .hero-bg {
    background-image: url("/img/photo-1763568258191-4095520e045b.avif");
  }
}
@media (min-width: 769px) {
  .hero-bg {
    top: -30%;
    bottom: -30%;
    will-change: transform;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(12, 11, 9, 0.7) 100%), linear-gradient(to right, rgba(12, 11, 9, 0.94) 0%, rgba(12, 11, 9, 0.7) 40%, rgba(18, 13, 6, 0.28) 100%), linear-gradient(to bottom, rgba(12, 11, 9, 0.5) 0%, rgba(12, 11, 9, 0.3) 50%, rgba(12, 11, 9, 0.6) 100%);
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2.5rem;
}
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9a96e;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}
h1 {
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -2px;
  color: #f0ebe3;
  margin-bottom: 2.5rem;
  max-width: 14ch;
}
h1 em {
  font-family: "Lora", serif;
  font-style: italic;
  color: #c9a96e;
  font-weight: 400;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

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

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 6vw;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.35);
  z-index: 2;
}
.hero-scroll-line {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}
@media (max-width: 768px) {
  .hero-scroll {
    display: none;
  }
}

#services {
  background: #141310;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
  align-items: end;
  margin-bottom: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 768px) {
  .services-header {
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
  }
}

.services-intro-text {
  font-size: 1rem;
  color: #b5ad9f;
  line-height: 1.8;
  max-width: 420px;
  align-self: end;
}
@media (max-width: 768px) {
  .services-intro-text {
    max-width: 100%;
  }
}

.service-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: start;
  gap: 0 2.5rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: default;
  transition: background 0.2s;
  border-radius: 6px;
}
.service-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.service-item:hover .service-num {
  color: #c9a96e;
}
.service-item:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #c9a96e;
}
.service-item:hover .service-item-title {
  color: #c9a96e;
}
@media (max-width: 768px) {
  .service-item {
    grid-template-columns: 40px 1fr;
  }
  .service-item .service-arrow {
    display: none;
  }
}

.service-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: #6e6860;
  letter-spacing: 0.06em;
  padding-top: 0.35rem;
  transition: color 0.2s;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-item-title {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #f0ebe3;
  line-height: 1.3;
  letter-spacing: -0.2px;
  transition: color 0.25s;
}

.service-item-desc {
  font-size: 0.9rem;
  color: #b5ad9f;
  line-height: 1.7;
  max-width: 440px;
}

.service-arrow {
  font-size: 1.2rem;
  color: #6e6860;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s, transform 0.25s, color 0.25s;
  padding-top: 0.2rem;
}

#about {
  background: #0c0b09;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-statement {
  font-family: "Lora", serif;
  font-style: italic;
  font-size: clamp(1.7rem, 4vw, 3rem);
  color: #f0ebe3;
  line-height: 1.25;
  letter-spacing: -0.3px;
  max-width: 18ch;
  margin-bottom: 5rem;
  border: none;
  padding: 0;
  font-weight: 400;
}
.about-statement em {
  color: #c9a96e;
  font-style: italic;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about-text p {
  font-size: 1rem;
  color: #b5ad9f;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.about-text p:last-child {
  margin-bottom: 0;
}
.about-text p strong {
  color: #f0ebe3;
  font-weight: 600;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.highlight-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.highlight-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hi-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 6px;
  color: #c9a96e;
}

.hi-text strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: #f0ebe3;
  display: block;
  margin-bottom: 0.25rem;
}
.hi-text span {
  font-size: 0.85rem;
  color: #6e6860;
  line-height: 1.6;
}

#process {
  background: #141310;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
  margin-bottom: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 768px) {
  .process-header {
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
  }
}

.process-intro-text {
  font-size: 1rem;
  color: #b5ad9f;
  line-height: 1.8;
  max-width: 400px;
  align-self: end;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  padding: 3rem 3rem 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.step:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 3rem;
}
@media (max-width: 768px) {
  .step:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }
}
.step:nth-child(even) {
  padding-left: 3rem;
}
@media (max-width: 768px) {
  .step:nth-child(even) {
    padding-left: 0;
  }
}
.step:nth-last-child(-n+2) {
  border-bottom: none;
}
@media (max-width: 768px) {
  .step:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}
.step:last-child {
  border-bottom: none;
}

.step-num {
  font-size: 0.68rem;
  font-weight: 700;
  color: #c9a96e;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  display: block;
}

.step-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f0ebe3;
  margin-bottom: 0.6rem;
  letter-spacing: -0.2px;
}
.step-body p {
  font-size: 0.92rem;
  color: #6e6860;
  line-height: 1.75;
}

#contact {
  background: #0c0b09;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-info h2 {
  margin-bottom: 1rem;
}
.contact-info p {
  font-size: 0.95rem;
  color: #b5ad9f;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1.2rem 1.4rem;
  background: #1d1b15;
  border-left: 2px solid #c9a96e;
  border-radius: 0 6px 6px 0;
  font-size: 0.85rem;
  color: #6e6860;
  font-style: italic;
  line-height: 1.6;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b5ad9f;
  margin-bottom: 0.5rem;
}

input[type=text],
input[type=email],
select,
textarea {
  width: 100%;
  background: #1d1b15;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #f0ebe3;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  padding: 0.85rem 1.1rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #6e6860;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #6e6860;
}
input[type=text]:focus,
input[type=email]:focus,
select:focus,
textarea:focus {
  border-color: #c9a96e;
  background: #262318;
}
input[type=text] option,
input[type=email] option,
select option,
textarea option {
  background: #1d1b15;
}

textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.btn-submit {
  background: #c9a96e;
  color: #0c0b09;
  border: none;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}
.btn-submit:hover {
  background: rgb(212.0713567839, 186.632160804, 139.7286432161);
  transform: translateY(-2px);
}
.btn-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.form-feedback {
  font-size: 0.88rem;
  color: #b5ad9f;
  min-height: 1.2em;
}

.hp-field {
  display: none !important;
}

footer {
  background: #141310;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (max-width: 520px) {
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
footer p {
  font-size: 0.78rem;
  color: #6e6860;
  line-height: 1.6;
}
footer p strong {
  color: #b5ad9f;
  font-weight: 600;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-logo-mark {
  display: block;
  height: 22px;
  width: auto;
  opacity: 0.75;
  flex-shrink: 0;
}