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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  line-height: 1.6;
  color: #374151;
  background-color: #fafaf9;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 249, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(55, 65, 81, 0.08);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(55, 65, 81, 0.06);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: #1F2937;
}

.nav-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #6B7280;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #FF6B4A;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #1F2937;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link--cta {
  color: #FF6B4A;
  font-weight: 500;
}

.nav-link--cta::after {
  display: none;
}

.nav-link--cta:hover {
  color: #e5553a;
}

/* Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-right: -8px;
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #374151;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(250, 250, 249, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-menu-link {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #374151;
  padding: 12px 24px;
  transition: color 0.2s ease;
}

.mobile-menu-link:hover {
  color: #FF6B4A;
}

.mobile-menu-link--cta {
  color: #FF6B4A;
  font-weight: 500;
  margin-top: 8px;
}

.mobile-menu-contact {
  margin-top: 40px;
  text-align: center;
  font-size: 0.875rem;
  color: #9CA3AF;
  line-height: 2;
}

.mobile-menu-phone {
  color: #FF6B4A;
  font-weight: 500;
  font-size: 1rem;
  display: block;
  margin-top: 4px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: #FF6B4A;
  color: #fff;
  border: 1.5px solid #FF6B4A;
}

.btn--primary:hover {
  background: #e5553a;
  border-color: #e5553a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 107, 74, 0.3);
}

.btn--ghost {
  background: transparent;
  color: #374151;
  border: 1.5px solid rgba(55, 65, 81, 0.25);
}

.btn--ghost:hover {
  border-color: #374151;
  background: rgba(55, 65, 81, 0.04);
}

.btn--light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn--light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn--full {
  width: 100%;
}

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

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255, 107, 74, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 90%, rgba(55, 65, 81, 0.04) 0%, transparent 50%);
  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: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FF6B4A;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1F2937;
  margin-bottom: 24px;
}

.hero-headline-accent {
  font-style: italic;
  color: #FF6B4A;
}

.hero-sub {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  color: #6B7280;
  max-width: 480px;
  margin-bottom: 36px;
}

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

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

.hero-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(55, 65, 81, 0.1);
}

.hero-card--main {
  width: 100%;
  position: relative;
  z-index: 2;
}

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

.hero-card--stat {
  position: absolute;
  background: #fff;
  padding: 20px 24px;
  box-shadow: 0 4px 30px rgba(55, 65, 81, 0.12);
  z-index: 3;
}

.stat-card-1 {
  bottom: -20px;
  left: -30px;
}

.stat-card-2 {
  top: 40px;
  right: -20px;
}

.stat-card-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #FF6B4A;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-card-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9CA3AF;
}

.hero-line {
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(to right, rgba(55, 65, 81, 0.15), transparent);
}

/* ─── SECTION COMMON ─── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FF6B4A;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1F2937;
  margin-bottom: 20px;
}

/* ─── SERVICES ─── */
.services {
  padding: 120px 0;
}

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

.section-header {
  margin-bottom: 64px;
}

.section-header .section-title {
  max-width: 560px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(55, 65, 81, 0.08);
  border: 1px solid rgba(55, 65, 81, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.service-card {
  background: #fafaf9;
  padding: 40px 32px;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: #fff;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 107, 74, 0.3);
  border-radius: 6px;
  margin-bottom: 24px;
  color: #FF6B4A;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: #FF6B4A;
  border-color: #FF6B4A;
  color: #fff;
}

.service-title {
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #1F2937;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  color: #6B7280;
}

/* ─── WHY US ─── */
.why-us {
  padding: 120px 0;
  background: #fff;
  border-top: 1px solid rgba(55, 65, 81, 0.06);
  border-bottom: 1px solid rgba(55, 65, 81, 0.06);
}

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

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

.why-us-body {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.75;
  color: #6B7280;
  margin-bottom: 40px;
}

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

.why-us-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(55, 65, 81, 0.08);
}

.why-us-item:first-child {
  border-top: 1px solid rgba(55, 65, 81, 0.08);
}

.why-us-item-line {
  width: 24px;
  height: 1px;
  background: #FF6B4A;
  flex-shrink: 0;
}

.why-us-item span {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #374151;
}

/* Why Us Visual */
.why-us-image-stack {
  position: relative;
  height: 540px;
}

.why-us-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(55, 65, 81, 0.1);
}

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

.why-us-image--1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 75%;
}

.why-us-image--2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 50%;
  border: 4px solid #fff;
}

/* ─── ABOUT ─── */
.about {
  padding: 120px 0;
}

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

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

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(55, 65, 81, 0.1);
}

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

.about-body {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.75;
  color: #6B7280;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(55, 65, 81, 0.08);
}

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

.about-stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #FF6B4A;
  line-height: 1;
}

.about-stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9CA3AF;
}

.about-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(55, 65, 81, 0.12);
}

/* ─── CTA ─── */
.cta {
  padding: 120px 0;
  background: #374151;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(255, 107, 74, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FF6B4A;
  margin-bottom: 20px;
}

.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}

.cta-body {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── CONTACT ─── */
.contact {
  padding: 120px 0;
  background: #fff;
  border-top: 1px solid rgba(55, 65, 81, 0.06);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-body {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  color: #6B7280;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail {
  display: flex;
  gap: 16px;
}

.contact-detail svg {
  color: #FF6B4A;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #374151;
  line-height: 1.6;
}

.contact-detail-value a {
  color: #374151;
  transition: color 0.2s ease;
}

.contact-detail-value a:hover {
  color: #FF6B4A;
}

/* Form */
.contact-form-wrap {
  background: #fafaf9;
  border: 1px solid rgba(55, 65, 81, 0.08);
  border-radius: 8px;
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #374151;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-weight: 300;
  font-family: inherit;
  color: #1F2937;
  background: #fff;
  border: 1px solid rgba(55, 65, 81, 0.15);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: #9CA3AF;
}

.form-input:focus {
  border-color: #FF6B4A;
  box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.1);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 107, 74, 0.08);
  border: 1px solid rgba(255, 107, 74, 0.2);
  border-radius: 4px;
  color: #FF6B4A;
  font-size: 0.9375rem;
  font-weight: 400;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  flex-shrink: 0;
}

/* ─── FOOTER ─── */
.footer {
  padding: 64px 0 32px;
  background: #1F2937;
}

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

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 12px;
}

.footer-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.footer-tagline {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  max-width: 280px;
  line-height: 1.6;
}

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

.footer-links a {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }

  .why-us-grid,
  .about-inner,
  .contact-grid {
    gap: 48px;
  }

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

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

  .nav-toggle {
    display: flex;
  }

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

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

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

  .stat-card-1 {
    left: 0;
    bottom: -16px;
  }

  .stat-card-2 {
    right: 0;
    top: 24px;
  }

  .hero-card-img {
    height: 280px;
  }

  .services {
    padding: 80px 0;
  }

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

  .service-card {
    padding: 32px 28px;
  }

  .why-us {
    padding: 80px 0;
  }

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

  .why-us-image-stack {
    height: 360px;
    order: -1;
  }

  .about {
    padding: 80px 0;
  }

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

  .about-image img {
    height: 280px;
  }

  .about-stats {
    flex-wrap: wrap;
  }

  .cta {
    padding: 80px 0;
  }

  .contact {
    padding: 80px 0;
  }

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

  .contact-form-wrap {
    padding: 28px;
  }

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

  .footer-bottom {
    padding-top: 20px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .stat-card-1,
  .stat-card-2 {
    padding: 14px 18px;
  }

  .stat-card-number {
    font-size: 1.5rem;
  }
}
