:root {
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --charcoal: #333333;
  --gray: #777777;
  --light-gray: #c8c8c8;
  --border: #e5e2dd;
  --cream: #f5f2ed;
  --off-white: #faf9f7;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Inter', 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(0.25, 0, 0.25, 1);
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s var(--ease);
}

a:hover {
  opacity: 0.6;
}

.section-label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

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

.section-heading {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

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

.body-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s var(--ease);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s var(--ease);
}

.header.scrolled .header-inner {
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--white);
  transition: color 0.4s var(--ease);
}

.header.scrolled .logo {
  color: var(--black);
}

.nav {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.4s var(--ease), opacity 0.3s var(--ease);
}

.header.scrolled .nav-link {
  color: var(--charcoal);
}

.nav-link:hover {
  opacity: 0.5;
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
}

.header.scrolled .lang-selector {
  color: var(--gray);
}

.lang-btn {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 4px;
  transition: all 0.3s var(--ease);
  font-weight: 300;
}

.lang-btn.active {
  color: var(--white);
  font-weight: 500;
}

.header.scrolled .lang-btn.active {
  color: var(--black);
}

.lang-btn:hover:not(.active) {
  opacity: 0.8;
}

.header-phone {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.4s var(--ease);
}

.header.scrolled .header-phone {
  color: var(--charcoal);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

.header.scrolled .hamburger span {
  background: var(--black);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
  background: var(--black);
}

.hamburger.active span:nth-child(2) {
  transform: rotate(-45deg) translate(1px, -1px);
  background: var(--black);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: absolute;
  bottom: 80px;
  left: 40px;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-cta:hover {
  opacity: 1;
  border-bottom-color: var(--white);
}

.intro {
  padding: 140px 0;
  background: var(--white);
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
  letter-spacing: 0.2px;
}

.about-visual {
  background: var(--white);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-image-block {
  position: relative;
}

.about-img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  display: block;
}

.about-text-block {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-stats {
  display: flex;
  gap: 60px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-text {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.services {
  padding: 140px 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-item {
  padding: 48px 40px;
  background: var(--off-white);
  transition: background 0.4s var(--ease);
}

.service-item:hover {
  background: var(--white);
}

.service-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--light-gray);
  margin-bottom: 20px;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
}

.portfolio {
  padding: 140px 0 0;
  background: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 60px;
}

.portfolio-item:last-child {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
}

.portfolio-item:last-child .portfolio-img-wrapper {
  width: 33.333%;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .portfolio-item:last-child {
    grid-column: span 1;
  }
  .portfolio-item:last-child .portfolio-img-wrapper {
    width: 100%;
  }
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-wide {
  grid-column: span 2;
}

.portfolio-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.8s var(--ease);
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.03);
}

.portfolio-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease);
}

.portfolio-item:hover .portfolio-caption {
  opacity: 1;
  transform: translateY(0);
}

.process {
  padding: 140px 0;
  background: var(--black);
  color: var(--white);
}

.process .section-label {
  color: var(--light-gray);
}

.process .section-heading {
  color: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.process-item {
  padding: 32px 28px;
  position: relative;
}

.process-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 32px;
}

.process-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

.process-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.process-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.cta-banner {
  padding: 100px 0;
  background: var(--cream);
  text-align: center;
}

.cta-heading {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.cta-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 4px;
}

.cta-link:hover {
  opacity: 0.6;
}

.contact {
  padding: 140px 0;
  background: var(--off-white);
}

.contact-centered {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.contact-details-centered {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.detail-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}

.detail-value {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--black);
}

.contact-social {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.instagram-link:hover {
  opacity: 0.5;
}

.footer-social {
  display: inline-block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-social:hover {
  opacity: 1;
  color: rgba(255, 255, 255, 0.8);
}

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.5);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px 40px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.75rem;
  margin-top: 8px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
}

.footer-center {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.footer-center a {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.footer-center a:hover {
  opacity: 1;
  color: rgba(255, 255, 255, 0.8);
}

.footer-right {
  text-align: right;
}

.footer-right p,
.footer-right a {
  font-size: 0.8rem;
  display: block;
  margin-bottom: 4px;
  font-weight: 300;
}

.footer-right a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 40px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 1px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .section-heading {
    font-size: 2.4rem;
  }

  .hero-title {
    font-size: 4rem;
  }

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

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .portfolio-wide {
    grid-column: span 1;
  }

  .about-text-block {
    padding: 60px 48px;
  }

  .intro {
    padding: 100px 0;
  }

  .intro-text {
    font-size: 1.35rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--charcoal);
  }

  .lang-selector {
    margin-left: 0;
    margin-top: 10px;
    color: var(--gray);
    font-size: 0.8rem;
    gap: 12px;
  }

  .lang-btn.active {
    color: var(--black);
  }

  .hamburger {
    display: flex;
  }

  .header-phone {
    display: none;
  }

  .header-inner {
    padding: 20px 24px;
  }

  .hero-content {
    left: 24px;
    bottom: 60px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .intro {
    padding: 80px 0;
  }

  .intro-text {
    font-size: 1.2rem;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-img {
    min-height: 360px;
  }

  .about-text-block {
    padding: 60px 24px;
  }

  .about-stats {
    gap: 40px;
  }

  .services {
    padding: 80px 0;
  }

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

  .portfolio {
    padding: 80px 0 0;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .portfolio-img {
    height: 280px;
  }

  .process {
    padding: 80px 0;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .cta-banner {
    padding: 60px 0;
  }

  .cta-heading {
    font-size: 2rem;
  }

  .cta-link {
    font-size: 1.5rem;
  }

  .contact {
    padding: 80px 0;
  }

  .section-heading {
    font-size: 2rem;
    margin-bottom: 36px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 24px 24px;
  }

  .footer-center {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px;
  }

  .footer-right {
    text-align: left;
  }

  .footer-bottom {
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-direction: column;
    gap: 32px;
  }

  .section-heading {
    font-size: 1.8rem;
  }
}