/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1f2937;
  background: #f9fafb;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; color: #111827; }
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #F97316;
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .9375rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-coral {
  background: #F97316;
  color: #fff;
  border-color: #F97316;
}
.btn-coral:hover { background: #ea6c0a; border-color: #ea6c0a; box-shadow: 0 4px 14px rgba(249,115,22,.35); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-sm { padding: .5rem 1rem; font-size: .8125rem; }
.btn-lg { padding: .875rem 1.75rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(17, 24, 39, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.0625rem;
}
.nav-logo-text { font-family: 'Playfair Display', serif; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-menu a {
  color: rgba(255,255,255,.78);
  font-size: .9375rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-menu a:hover { color: #F97316; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #111827;
  padding: 6rem 0 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,24,39,.95) 0%, rgba(17,24,39,.7) 50%, rgba(17,24,39,.5) 100%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}
.hero-tag {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #F97316;
  margin-bottom: 1rem;
}
.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-desc {
  color: rgba(255,255,255,.72);
  font-size: 1.0625rem;
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  transition: transform .2s, background .2s;
}
.hero-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.1); }
.hero-card--main { background: rgba(249,115,22,.15); border-color: rgba(249,115,22,.3); }
.hero-card--main:hover { background: rgba(249,115,22,.22); }
.hero-card-icon { margin-bottom: .75rem; }
.hero-card-title {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: .5rem;
}
.hero-card p {
  color: rgba(255,255,255,.7);
  font-size: .9375rem;
  margin-bottom: .75rem;
}
.hero-card-link {
  color: #F97316;
  font-weight: 600;
  font-size: .9375rem;
  transition: color .2s;
}
.hero-card-link:hover { color: #fdba74; }
.hero-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem;
}
.hero-stat-label {
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
}

/* ─── Section spacing ─── */
.section {
  padding: 5rem 0;
}
.section:nth-child(even) { background: #fff; }

/* ─── Services ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 2rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  border-color: #F97316;
}
.svc-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249,115,22,.1);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}
.svc-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: .5rem;
}
.svc-card p {
  font-size: .9375rem;
  color: #4b5563;
  line-height: 1.65;
}

/* ─── About ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content .section-desc { margin-bottom: 1.5rem; }
.about-content p {
  color: #4b5563;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.about-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.about-stat {
  display: flex;
  flex-direction: column;
}
.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F97316;
}
.about-stat-label {
  font-size: .8125rem;
  color: #6b7280;
  margin-top: .15rem;
}

/* ─── Why ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #F97316;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.why-card:hover::before { transform: scaleX(1); }
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: #f3f4f6;
  line-height: 1;
  margin-bottom: .75rem;
}
.why-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: .5rem;
}
.why-card p {
  font-size: .9375rem;
  color: #4b5563;
  line-height: 1.65;
}

/* ─── Testimonials ─── */
.testimonials { background: #111827; }
.testimonials .section-title { color: #fff; }
.testimonials .section-desc { color: rgba(255,255,255,.6); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.test-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 2rem;
  transition: transform .2s, background .2s;
}
.test-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.08); }
.test-stars {
  display: flex;
  gap: .25rem;
  margin-bottom: 1rem;
}
.test-quote {
  font-size: 1rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.test-author {
  font-size: .875rem;
  color: #F97316;
  font-weight: 600;
}

/* ─── CTA ─── */
.cta { background: #F97316; padding: 4rem 0; }
.cta-card {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-tag {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: .75rem;
}
.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 1rem;
}
.cta-desc {
  color: rgba(255,255,255,.85);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.cta .btn-outline-light {
  border-color: rgba(255,255,255,.6);
}
.cta .btn-outline-light:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-details {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249,115,22,.1);
  border-radius: 10px;
}
.contact-details strong {
  display: block;
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #111827;
  margin-bottom: .15rem;
}
.contact-details span,
.contact-details a {
  font-size: .9375rem;
  color: #4b5563;
}
.contact-details a:hover { color: #F97316; }
.contact-map {
  border-radius: 12px;
  overflow: hidden;
  margin-top: .5rem;
}

/* ─── Form ─── */
.contact-form-wrap {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
}
.contact-form-wrap h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: .375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  color: #111827;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #F97316;
  box-shadow: 0 0 0 3px rgba(249,115,22,.15);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: .8125rem;
  color: #6b7280;
  margin-top: .75rem;
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 2rem;
}
.form-success h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: #16a34a;
  margin: .75rem 0 .5rem;
}
.form-success p {
  color: #4b5563;
  font-size: .9375rem;
}

/* ─── Footer ─── */
.footer {
  background: #111827;
  color: rgba(255,255,255,.65);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 1rem;
}
.footer-logo-text { font-family: 'Playfair Display', serif; }
.footer-brand p {
  font-size: .9375rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.footer-links a,
.footer-contact a {
  font-size: .9375rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-links a:hover,
.footer-contact a:hover { color: #F97316; }
.footer-contact li {
  font-size: .9375rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
}
.footer-bottom p {
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
  text-align: center;
}

/* ─── Scroll reveal (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .test-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(17,24,39,.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    transform: translateY(-110%);
    transition: transform .3s ease;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-wrap { order: -1; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .test-card:last-child { grid-column: auto; max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 5rem 0 3rem; min-height: auto; }
  .hero-headline { font-size: clamp(1.625rem, 6vw, 2.25rem); }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 3.5rem 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
