/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== NAVBAR ===== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
  border-bottom: 1px solid #f0f0f0;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  color: #1a1a1a;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 0.95rem;
}

.nav-links a {
  color: #444;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #000;
}

.btn {
  border: 1.5px solid #1a1a1a;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
  background: #fff;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  z-index: -1;
  transition: left 0.4s ease;
  border-radius: 999px;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: #fff;
}

.nav-links .btn {
  color: #1a1a1a !important;
}

.nav-links .btn:hover {
  color: #fff !important;
}

/* ===== HERO ===== */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 60px;
  min-height: 90vh;
  background: #f5f5f0;
  gap: 40px;
}

.hero-left {
  max-width: 520px;
}

.hero-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: #555;
}

.hero-sub {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

.btn-dark {
  background: #1a1a1a;
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.btn-dark:hover {
  opacity: 0.85;
}

.btn-outline {
  border: 1.5px solid #1a1a1a;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #1a1a1a;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  z-index: -1;
  transition: left 0.4s ease;
  border-radius: 999px;
}

.btn-outline:hover::before {
  left: 0;
}

.btn-outline:hover {
  color: #fff;
}

.hero-right {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.hero-image-blob {
  width: 420px;
  height: 480px;
  border-radius: 60% 40% 55% 45% / 50% 50% 50% 50%;
  overflow: hidden;
}

.hero-image-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-side-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  writing-mode: vertical-rl;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #999;
}

/* ===== ABOUT ===== */
.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 60px;
  gap: 60px;
  background: #1a1a1a;
  color: #fff;
}

.section-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 16px;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  color: #aaa;
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 40px;
}

.about-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  border: 1px solid #333;
  padding: 14px 24px;
  border-radius: 8px;
  color: #ccc;
  width: fit-content;
  min-width: 160px;
}

.about-image {
  width: 420px;
  height: 480px;
  border-radius: 60% 40% 55% 45% / 50% 50% 50% 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 60px;
  background: #fff;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 60px;
}

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

.service-item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid #eee;
  font-size: 1.4rem;
  font-weight: 500;
  transition: padding-left 0.3s;
  cursor: default;
}

.service-item:hover {
  padding-left: 20px;
  background: #f9f9f9;
}

.service-num {
  font-size: 0.85rem;
  color: #aaa;
  font-weight: 400;
  min-width: 30px;
}

/* ===== WORK ===== */
.work {
  padding: 100px 60px;
  background: #f5f5f0;
}

.work-subtitle {
  text-align: center;
  color: #888;
  margin-top: -40px;
  margin-bottom: 50px;
  font-size: 0.95rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.work-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.work-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.work-card:hover img {
  transform: scale(1.04);
}

.work-label {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
}

.coming-soon {
  background: #1a1a1a;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.coming-soon-inner {
  text-align: center;
  color: #fff;
}

.coming-soon-inner span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888;
}

.coming-soon-inner p {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-top: 8px;
  font-style: italic;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 60px;
  background: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #f5f5f0;
  padding: 36px;
  border-radius: 16px;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.testimonial-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888;
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 60px;
  background: #f5f5f0;
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid #ddd;
}

.faq-q {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
}

.faq-a {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 60px;
  background: #1a1a1a;
  color: #fff;
  text-align: center;
}

.contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  margin-bottom: 16px;
}

.contact h2 em {
  font-style: italic;
  color: #aaa;
}

.contact p {
  color: #888;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* ===== FOOTER ===== */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 60px;
  background: #111;
  color: #666;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: #666;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.75rem;
  }

  .btn {
    padding: 8px 14px;
    font-size: 0.75rem;
  }

  .hero {
    flex-direction: column;
    padding: 60px 24px;
    min-height: auto;
    text-align: center;
  }

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

  .hero-right {
    justify-content: center;
  }

  .hero-image-blob {
    width: 300px;
    height: 340px;
  }

  .hero-btns {
    justify-content: center;
  }

  .about {
    flex-direction: column;
    padding: 60px 24px;
    text-align: center;
  }

  .about-image {
    width: 300px;
    height: 340px;
  }

  .about-steps {
    align-items: center;
  }

  .services {
    padding: 60px 24px;
  }

  .work {
    padding: 60px 24px;
  }

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

  .testimonials {
    padding: 60px 24px;
  }

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

  .faq {
    padding: 60px 24px;
  }

  .contact {
    padding: 80px 24px;
  }

  .contact h2 {
    font-size: 2.5rem;
  }

  footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 40px 24px;
  }

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

  .hero-side-text {
    display: none;
  }

  .section-title {
    font-size: 2rem;
  }
}