/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-weight: 300; line-height: 1.7; color: #2D2D2D; background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── Utility ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45,45,45,0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-text {
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  color: #2D2D2D;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 13px; font-weight: 400; letter-spacing: 0.04em;
  text-transform: uppercase; color: #5D5D5D;
  transition: color 0.2s ease;
}
.nav-link:hover { color: #FF6F61; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  color: #FF6F61; border: 1.5px solid #FF6F61;
  padding: 8px 18px; border-radius: 100px;
  transition: all 0.25s ease;
}
.nav-cta:hover { background: #FF6F61; color: #fff; }
.nav-toggle { display: none; padding: 8px; }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu-inner { text-align: center; }
.mobile-menu-link {
  display: block; font-size: 24px; font-weight: 300;
  color: #2D2D2D; padding: 16px 0;
  transition: color 0.2s ease;
}
.mobile-menu-link:hover { color: #FF6F61; }
.mobile-menu-divider { width: 40px; height: 1px; background: #D6D6D6; margin: 8px auto 16px; }
.mobile-menu-phone {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 18px; font-weight: 400; color: #FF6F61; padding: 12px 0;
}
.mobile-menu-email {
  display: block; font-size: 14px; color: #888; padding: 8px 0;
}

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: 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(26,26,26,0.82) 0%, rgba(45,45,45,0.72) 50%, rgba(26,26,26,0.65) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 800px; padding: 120px 24px 80px;
  text-align: center;
}
.hero-badge {
  display: inline-block; font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #FF6F61; margin-bottom: 24px;
  border: 1px solid rgba(255,111,97,0.4);
  padding: 6px 16px; border-radius: 100px;
}
.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 400; line-height: 1.15;
  color: #fff; margin-bottom: 24px;
}
.hero-accent {
  display: block; color: #FFD5CF;
  font-family: 'Inter', sans-serif; font-weight: 300;
  font-size: clamp(16px, 2vw, 22px); margin-top: 8px;
}
.hero-subtitle {
  font-size: clamp(15px, 1.6vw, 18px); font-weight: 300;
  color: rgba(255,255,255,0.78); line-height: 1.75;
  max-width: 580px; margin: 0 auto 40px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-number {
  display: block; font-family: 'DM Serif Display', Georgia, serif;
  font-size: 28px; color: #fff;
}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,0.2); align-self: stretch; margin-top: 4px; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); z-index: 1;
  animation: heroScrollBounce 2s ease-in-out infinite;
}
@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  padding: 14px 28px; border-radius: 100px;
  transition: all 0.25s ease;
}
.btn-primary {
  background: #FF6F61; color: #fff;
  box-shadow: 0 4px 20px rgba(255,111,97,0.3);
}
.btn-primary:hover { background: #FF5A4A; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,111,97,0.4); }
.btn-ghost-light {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Sections ── */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-label {
  display: inline-block; font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #FF6F61; margin-bottom: 16px;
}
.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400; line-height: 1.2;
  color: #2D2D2D; margin-bottom: 20px;
}
.section-subtitle {
  font-size: 16px; font-weight: 300;
  color: #6D6D6D; line-height: 1.75;
}

/* ── Services ── */
.services { background: #FAFAFA; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff; border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid rgba(45,45,45,0.06);
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: rgba(255,111,97,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(255,111,97,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #FF6F61; margin-bottom: 20px;
  transition: all 0.25s ease;
}
.service-card:hover .service-icon { background: #FF6F61; color: #fff; }
.service-title {
  font-size: 18px; font-weight: 500; color: #2D2D2D;
  margin-bottom: 10px;
}
.service-desc { font-size: 14px; font-weight: 300; color: #6D6D6D; line-height: 1.75; }

/* ── About ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-image-wrapper { position: relative; z-index: 1; border-radius: 12px; overflow: hidden; }
.about-image-wrapper img { width: 100%; height: 480px; object-fit: cover; }
.about-image-accent {
  position: absolute; bottom: -16px; right: -16px;
  width: 120px; height: 120px; border-radius: 12px;
  background: #FF6F61; z-index: 0;
}
.about-content .section-title { text-align: left; margin-bottom: 24px; }
.about-text {
  font-size: 15px; font-weight: 300; color: #5D5D5D;
  line-height: 1.8; margin-bottom: 16px;
}
.about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about-value { display: flex; align-items: flex-start; gap: 16px; }
.about-value-line {
  flex-shrink: 0; width: 24px; height: 1px;
  background: #FF6F61; margin-top: 10px;
}
.about-value span { font-size: 14px; font-weight: 400; color: #4F4F4F; line-height: 1.6; }

/* ── Why Us ── */
.why-us { background: #2D2D2D; }
.why-us .section-label { color: #FF6F61; }
.why-us .section-title { color: #fff; }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}
.why-card { padding: 32px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.why-number {
  display: block; font-family: 'DM Serif Display', Georgia, serif;
  font-size: 48px; color: rgba(255,111,97,0.25);
  line-height: 1; margin-bottom: 16px;
}
.why-title {
  font-size: 18px; font-weight: 500; color: #fff;
  margin-bottom: 12px;
}
.why-text { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.75; }

/* ── CTA Banner ── */
.cta-banner { position: relative; padding: 80px 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(26,26,26,0.88) 0%, rgba(45,45,45,0.78) 100%);
}
.cta-content {
  position: relative; z-index: 1;
  max-width: 600px;
}
.cta-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400; color: #fff; line-height: 1.2;
  margin-bottom: 16px;
}
.cta-text { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Contact ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.contact-info .section-title { text-align: left; margin-bottom: 20px; }
.contact-desc { font-size: 15px; font-weight: 300; color: #6D6D6D; line-height: 1.8; margin-bottom: 36px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,111,97,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #FF6F61;
}
.contact-detail-label {
  display: block; font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #888; margin-bottom: 2px;
}
.contact-detail-value { font-size: 15px; font-weight: 400; color: #2D2D2D; }
.contact-link { transition: color 0.2s ease; }
.contact-link:hover { color: #FF6F61; }

/* ── Form ── */
.contact-form-wrapper {
  background: #FAFAFA; border-radius: 16px;
  padding: 40px; border: 1px solid rgba(45,45,45,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #888; margin-bottom: 8px;
}
.form-input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #E8E8E8; border-radius: 8px;
  background: #fff; color: #2D2D2D;
  font-size: 15px; font-weight: 300;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-input:focus { border-color: #FF6F61; box-shadow: 0 0 0 3px rgba(255,111,97,0.1); }
.form-input::placeholder { color: #B0B0B0; }
.form-select { appearance: none; 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='%23888' 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 14px center;
  padding-right: 40px;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-success { text-align: center; padding: 40px 20px; }
.form-success-icon { color: #FF6F61; margin-bottom: 16px; }
.form-success-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 24px; color: #2D2D2D; margin-bottom: 8px;
}
.form-success-text { font-size: 14px; color: #6D6D6D; font-weight: 300; line-height: 1.7; }

/* ── Footer ── */
.footer { background: #1A1A1A; padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo span { font-size: 14px; font-weight: 500; color: #fff; letter-spacing: 0.02em; }
.footer-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 260px; }
.footer-heading {
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}
.footer-link:hover { color: #FF6F61; }
.footer-address { line-height: 1.6; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.07); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
}
.footer-copy { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.35); }
.footer-location { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.35); }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrapper img { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .section { padding: 72px 0; }
  .hero-content { padding: 100px 24px 100px; }
  .hero-stats { gap: 24px; }
  .hero-stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { justify-content: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
