/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  color: #2D2D2D;
  background: #FFFDF9;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Fraunces', serif; font-weight: 700; line-height: 1.2; color: #2D2D2D; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E06050;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: #E06050;
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}
.section-lead {
  font-size: 1.1rem;
  color: #5A5A5A;
  max-width: 600px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #E06050;
  color: #fff;
  border-color: #E06050;
}
.btn-primary:hover {
  background: #C94E3E;
  border-color: #C94E3E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 96, 80, 0.35);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: #fff;
  color: #2D2D2D;
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(224, 96, 80, 0.1);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #2D2D2D;
}
.logo-accent { color: #E06050; }

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4A4A4A;
  transition: color 0.2s;
  position: relative;
}
.main-nav a:not(.btn):hover { color: #E06050; }
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #E06050;
  border-radius: 2px;
  transition: width 0.3s ease;
}
.main-nav a:not(.btn):hover::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #2D2D2D;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 45, 45, 0.82) 0%,
    rgba(45, 45, 45, 0.65) 50%,
    rgba(224, 96, 80, 0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224, 96, 80, 0.2);
  border: 1px solid rgba(224, 96, 80, 0.4);
  color: #FFB4A8;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.hero-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 600;
}
.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Services ── */
.services {
  padding: 100px 0;
  background: #FFFDF9;
}
.services .container { text-align: center; }
.services .section-lead { margin: 0 auto 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(224, 96, 80, 0.08);
  transition: all 0.35s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(224, 96, 80, 0.12);
  border-color: rgba(224, 96, 80, 0.2);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(224, 96, 80, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #2D2D2D;
}
.service-card p {
  font-size: 0.92rem;
  color: #6A6A6A;
  line-height: 1.7;
}

/* ── Why Us ── */
.why-us {
  padding: 100px 0;
  background: #F7F0EC;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/7;
}
.why-stat-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #E06050;
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #5A5A5A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.why-content .section-lead { margin-bottom: 36px; }
.why-features { display: flex; flex-direction: column; gap: 24px; }
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(224, 96, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.why-feature h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: #2D2D2D;
}
.why-feature p {
  font-size: 0.9rem;
  color: #6A6A6A;
  line-height: 1.65;
}

/* ── Process ── */
.process {
  padding: 100px 0;
  background: #FFFDF9;
}
.process .container { text-align: center; }
.process .section-lead { margin: 0 auto 64px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  position: relative;
  padding: 0 32px;
  text-align: left;
}
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(224, 96, 80, 0.12);
  line-height: 1;
  margin-bottom: 12px;
}
.step-content h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #2D2D2D;
}
.step-content p {
  font-size: 0.92rem;
  color: #6A6A6A;
  line-height: 1.7;
}
.step-connector {
  position: absolute;
  top: 32px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, rgba(224, 96, 80, 0.3), rgba(224, 96, 80, 0.1));
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #E06050;
  border-radius: 50%;
  opacity: 0.4;
}

/* ── Compliance ── */
.compliance {
  padding: 100px 0;
  background: #2D2D2D;
  color: #fff;
}
.compliance-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.compliance .section-title { color: #fff; }
.compliance .section-lead { color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.compliance-list { display: flex; flex-direction: column; gap: 16px; }
.compliance-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 20px;
  transition: all 0.3s ease;
}
.compliance-item:hover {
  background: rgba(224, 96, 80, 0.15);
  border-color: rgba(224, 96, 80, 0.3);
}
.compliance-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.compliance-item strong {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}
.compliance-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.compliance-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.compliance-visual img {
  width: 100%;
  aspect-ratio: 11/10;
  object-fit: cover;
}

/* ── CTA ── */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #E06050 0%, #C94E3E 100%);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 12px;
}
.cta-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 480px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Contact ── */
.contact {
  padding: 100px 0;
  background: #FFFDF9;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-lead { margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(224, 96, 80, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 2px;
}
.contact-detail span,
.contact-detail a {
  font-size: 0.95rem;
  color: #2D2D2D;
  font-weight: 600;
}
.contact-detail a:hover { color: #E06050; }

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  border: 1px solid rgba(224, 96, 80, 0.08);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #2D2D2D;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #E8E4E0;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #2D2D2D;
  background: #FFFDF9;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #E06050;
  box-shadow: 0 0 0 3px rgba(224, 96, 80, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0A8A0; }
.form-note {
  font-size: 0.82rem;
  color: #999;
  text-align: center;
}
.form-note a { color: #E06050; font-weight: 700; }

/* Success */
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.form-success h3 {
  font-size: 1.5rem;
  color: #2D2D2D;
}
.form-success p {
  color: #6A6A6A;
  font-size: 0.95rem;
  line-height: 1.7;
}
.form-success a { color: #E06050; font-weight: 700; }

/* ── Footer ── */
.site-footer {
  background: #1E1E1E;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: #E06050; }
.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 4px;
}
.footer-contact a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact a:hover { color: #E06050; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: #E06050; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid,
  .compliance-inner,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image { max-width: 500px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 253, 249, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(224, 96, 80, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.35s ease;
    pointer-events: none;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .hero-content { padding: 100px 24px 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .services, .why-us, .process, .compliance, .contact { padding: 64px 0; }
  .service-card { padding: 28px 22px; }
}
