/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #1a0719;
  color: #e8d8e8;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4A017;
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: #f5eff5;
  margin-bottom: 32px;
}

.accent {
  color: #D4A017;
  font-style: italic;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.btn-primary {
  background: #D4A017;
  color: #1a0719;
}

.btn-primary:hover {
  background: #e8b82a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.3);
}

.btn-ghost {
  background: transparent;
  color: #e8d8e8;
  border: 1px solid rgba(232, 216, 232, 0.3);
}

.btn-ghost:hover {
  border-color: #D4A017;
  color: #D4A017;
}

.btn-full {
  width: 100%;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(26, 7, 25, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(212, 160, 23, 0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: 'Playfair Display', serif;
}

.nav-logo-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: #D4A017;
}

.nav-logo-word {
  font-size: 1rem;
  font-weight: 400;
  color: #f5eff5;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a:not(.nav-cta) {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d4b5d4;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #D4A017;
  transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover {
  color: #D4A017;
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #D4A017 !important;
  letter-spacing: 0.05em;
  text-transform: none !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  color: #e8b82a !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #f5eff5;
}

.nav-line-top, .nav-line-mid, .nav-line-bot {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(74, 25, 66, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, #1a0719, transparent);
  pointer-events: none;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #D4A017;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: #D4A017;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: #f5eff5;
  margin-bottom: 32px;
}

.hero-headline .accent {
  display: block;
  font-style: italic;
  color: #D4A017;
  margin-top: 8px;
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #d4b5d4;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #D4A017;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b889b8;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(184, 137, 184, 0.3);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 700px;
}

.hero-img {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

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

.hero-img--main {
  width: 380px;
  height: 520px;
  top: 40px;
  right: 0;
  z-index: 2;
}

.hero-img--accent {
  width: 260px;
  height: 180px;
  bottom: 140px;
  left: -40px;
  z-index: 3;
  border: 3px solid rgba(212, 160, 23, 0.3);
}

.hero-img--detail {
  width: 220px;
  height: 160px;
  bottom: 0;
  right: 40px;
  z-index: 1;
}

.hero-line {
  position: absolute;
  bottom: 60px;
  left: 24px;
  right: 24px;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.hero-line span {
  display: block;
  height: 1px;
  background: linear-gradient(to right, #D4A017, transparent 80%);
}

/* ── Services ── */
.services {
  padding: 120px 0;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 160, 23, 0.3), transparent);
}

.services-header {
  margin-bottom: 72px;
}

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

.service-card {
  background: rgba(74, 25, 66, 0.2);
  border: 1px solid rgba(74, 25, 66, 0.5);
  border-radius: 4px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #D4A017;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  background: rgba(74, 25, 66, 0.35);
  border-color: rgba(212, 160, 23, 0.3);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50%;
  color: #D4A017;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(212, 160, 23, 0.1);
  border-color: #D4A017;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #f5eff5;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #b889b8;
}

/* ── About ── */
.about {
  padding: 120px 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 600px;
}

.about-img-main {
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

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

.about-img-float {
  position: absolute;
  bottom: 0;
  right: -40px;
  width: 260px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(212, 160, 23, 0.2);
}

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

.about-content .section-headline {
  margin-bottom: 24px;
}

.about-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #d4b5d4;
  margin-bottom: 20px;
}

.about-values {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: #e8d8e8;
}

.about-value svg {
  color: #D4A017;
  flex-shrink: 0;
}

/* ── Why ── */
.why {
  padding: 120px 0;
  background: rgba(74, 25, 66, 0.15);
  position: relative;
}

.why::before,
.why::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 160, 23, 0.2), transparent);
}

.why::before { top: 0; }
.why::after { bottom: 0; }

.why-header {
  text-align: center;
  margin-bottom: 72px;
}

.why-header .section-headline {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.why-item {
  position: relative;
  padding-left: 72px;
}

.why-num {
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(212, 160, 23, 0.2);
  line-height: 1;
}

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: #f5eff5;
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #b889b8;
}

/* ── Testimonial Strip ── */
.testimonial-strip {
  padding: 100px 0;
  background: rgba(74, 25, 66, 0.2);
  border-top: 1px solid rgba(74, 25, 66, 0.5);
  border-bottom: 1px solid rgba(74, 25, 66, 0.5);
}

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

.testimonial-mark {
  color: #D4A017;
  margin-bottom: 32px;
  opacity: 0.5;
}

.testimonial-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: #f5eff5;
  margin-bottom: 32px;
}

.testimonial-attr {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D4A017;
}

/* ── CTA / Contact ── */
.cta {
  padding: 120px 0;
  position: relative;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cta-content .section-headline {
  margin-bottom: 24px;
}

.cta-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #d4b5d4;
  margin-bottom: 40px;
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-phone,
.cta-address {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #e8d8e8;
  transition: color 0.3s ease;
}

.cta-phone:hover {
  color: #D4A017;
}

.cta-phone svg,
.cta-address svg {
  color: #D4A017;
  flex-shrink: 0;
}

/* Form */
.cta-form-wrap {
  background: rgba(74, 25, 66, 0.25);
  border: 1px solid rgba(74, 25, 66, 0.6);
  border-radius: 4px;
  padding: 48px 40px;
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #f5eff5;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b889b8;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(26, 7, 25, 0.6);
  border: 1px solid rgba(184, 137, 184, 0.2);
  border-radius: 2px;
  color: #f5eff5;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #7a2d7a;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #D4A017;
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  font-size: 0.8125rem;
  color: #7a2d7a;
  text-align: center;
  margin-top: 16px;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success svg {
  color: #D4A017;
  margin-bottom: 24px;
}

.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #f5eff5;
  margin-bottom: 12px;
}

.form-success p {
  font-size: 0.9375rem;
  color: #d4b5d4;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ── Footer ── */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(74, 25, 66, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
}

.footer-logo-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: #D4A017;
}

.footer-logo-word {
  font-size: 1.125rem;
  font-weight: 400;
  color: #f5eff5;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: #b889b8;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
  color: #f5eff5;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: #b889b8;
  transition: color 0.3s ease;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
  color: #b889b8;
}

.footer-contact a {
  color: #D4A017;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #e8b82a;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(74, 25, 66, 0.3);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: #7a2d7a;
}

/* ── Mobile Menu ── */
.nav-links.open {
  display: flex;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    height: 480px;
    order: -1;
  }

  .hero-img--main {
    width: 260px;
    height: 360px;
    right: 20px;
  }

  .hero-img--accent {
    width: 180px;
    height: 130px;
    left: -20px;
    bottom: 100px;
  }

  .hero-img--detail {
    width: 160px;
    height: 120px;
    right: 20px;
    bottom: 0;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    height: 400px;
    order: -1;
  }

  .about-img-float {
    right: -20px;
    width: 200px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(26, 7, 25, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(212, 160, 23, 0.15);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a:not(.nav-cta) {
    font-size: 1rem;
  }

  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .hero-visual {
    height: 360px;
  }

  .hero-img--main {
    width: 200px;
    height: 280px;
  }

  .hero-img--accent {
    width: 140px;
    height: 100px;
  }

  .hero-img--detail {
    width: 130px;
    height: 95px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-stat-divider {
    display: none;
  }

  .services {
    padding: 80px 0;
  }

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

  .about {
    padding: 80px 0;
  }

  .about-visual {
    height: 300px;
  }

  .about-img-main {
    height: 300px;
  }

  .about-img-float {
    display: none;
  }

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

  .why {
    padding: 80px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-item {
    padding-left: 56px;
  }

  .why-num {
    font-size: 2rem;
  }

  .cta {
    padding: 80px 0;
  }

  .cta-form-wrap {
    padding: 32px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

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

  .section-headline {
    font-size: 1.75rem;
  }

  .hero-visual {
    height: 280px;
  }

  .hero-img--main {
    width: 160px;
    height: 220px;
  }

  .hero-img--accent {
    width: 120px;
    height: 85px;
    left: -10px;
  }

  .hero-img--detail {
    width: 110px;
    height: 80px;
  }
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
