/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { color: #374151; background: #fff; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-eyebrow { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: #F97316; font-weight: 500; margin-bottom: 12px; }
.section-heading { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 400; line-height: 1.2; color: #1F2937; margin-bottom: 20px; }
.section-lead { font-size: 1.1rem; line-height: 1.7; color: #6B7280; max-width: 600px; }
.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-header--center .section-lead { margin: 0 auto; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; border-radius: 4px; font-size: 0.9rem; font-weight: 400; letter-spacing: 0.02em; transition: all 0.3s ease; white-space: nowrap; }
.btn--primary { background: #F97316; color: #fff; }
.btn--primary:hover { background: #EA6C0A; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(249,115,22,0.3); }
.btn--outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5); }
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn--white { background: #fff; color: #1F2937; }
.btn--white:hover { background: #f9fafb; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn--white-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5); }
.btn--white-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn--full { width: 100%; }

/* ── Navigation ── */
.nav-fixed { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background 0.3s ease, box-shadow 0.3s ease; }
.nav-fixed.scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 1px 0 rgba(0,0,0,0.06); }
.nav-fixed.scrolled .nav-logo-text { color: #1F2937; }
.nav-fixed.scrolled .nav-link { color: #374151; }
.nav-fixed.scrolled .nav-link:hover { color: #F97316; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 10px; z-index: 101; }
.nav-logo-icon { color: #F97316; }
.nav-logo-text { font-family: 'Playfair Display', Georgia, serif; font-size: 1rem; font-weight: 500; color: #fff; transition: color 0.3s; }
.nav-menu { display: flex; align-items: center; gap: 36px; margin-left: auto; }
.nav-link { font-size: 0.85rem; color: rgba(255,255,255,0.85); font-weight: 300; letter-spacing: 0.03em; transition: color 0.3s; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: #F97316; transition: width 0.3s; }
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.nav-link--cta { padding: 8px 20px; border: 1px solid rgba(255,255,255,0.4); border-radius: 4px; transition: all 0.3s; }
.nav-link--cta::after { display: none; }
.nav-link--cta:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.nav-fixed.scrolled .nav-link--cta { border-color: #F97316; color: #F97316; }
.nav-fixed.scrolled .nav-link--cta:hover { background: #F97316; color: #fff; }

/* Mobile menu */
.nav-menu-btn { display: none; flex-direction: column; gap: 5px; z-index: 101; padding: 4px; }
.nav-menu-btn span { display: block; width: 22px; height: 1.5px; background: #fff; transition: all 0.3s; }
.nav-fixed.scrolled .nav-menu-btn span { background: #374151; }
.nav-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-menu-btn.active span:nth-child(2) { opacity: 0; }
.nav-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

@media (max-width: 768px) {
  .nav-menu-btn { display: flex; }
  .nav-menu { position: fixed; top: 0; right: 0; width: 280px; height: 100vh; background: #fff; flex-direction: column; justify-content: center; align-items: center; gap: 28px; transform: translateX(100%); transition: transform 0.3s ease; box-shadow: -4px 0 20px rgba(0,0,0,0.1); }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu .nav-link { color: #374151; font-size: 1rem; }
  .nav-menu .nav-link--cta { border-color: #F97316; color: #F97316; }
  .nav-menu .nav-link--cta:hover { background: #F97316; color: #fff; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 99; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
  .nav-overlay.active { opacity: 1; pointer-events: all; }
}

/* ── Hero ── */
.hero { position: relative; height: 100vh; min-height: 640px; 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(31,41,55,0.82) 0%, rgba(55,65,81,0.65) 50%, rgba(31,41,55,0.5) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }
.hero-content-inner { max-width: 680px; }
.hero-greeting { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: #F97316; font-weight: 400; margin-bottom: 20px; opacity: 0; animation: fadeUp 0.8s 0.2s forwards; }
.hero-headline { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.25rem, 5.5vw, 4rem); font-weight: 400; line-height: 1.15; color: #fff; margin-bottom: 24px; opacity: 0; animation: fadeUp 0.8s 0.4s forwards; }
.hero-sub { font-size: 1.1rem; line-height: 1.75; color: rgba(255,255,255,0.75); font-weight: 300; margin-bottom: 40px; max-width: 520px; opacity: 0; animation: fadeUp 0.8s 0.6s forwards; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 0.8s forwards; }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; animation: fadeUp 0.8s 1s forwards; opacity: 0; }
.hero-scroll svg { animation: bounce 2s infinite; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ── Stats ── */
.stats { padding: 56px 0; border-bottom: 1px solid #E5E7EB; }
.stats-grid { display: flex; align-items: center; justify-content: center; gap: 0; }
.stat { text-align: center; padding: 0 48px; flex: 1; }
.stat--divider { border-left: 1px solid #E5E7EB; }
.stat-number { display: block; font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; font-weight: 400; color: #1F2937; margin-bottom: 6px; }
.stat-label { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: #6B7280; font-weight: 400; }

/* ── About ── */
.about { padding: 120px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; height: 500px; object-fit: cover; border-radius: 4px; }
.about-image-accent { position: absolute; bottom: -20px; right: -20px; width: 200px; height: 200px; border: 1px solid #F97316; border-radius: 4px; z-index: -1; }
.about-content { padding: 20px 0; }
.about-content .section-heading { margin-bottom: 28px; }
.about-content p { font-size: 1rem; line-height: 1.8; color: #4B5563; margin-bottom: 18px; font-weight: 300; }
.about-signature { margin-top: 36px; display: flex; align-items: center; gap: 16px; }
.about-signature span:first-child { font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-size: 1.1rem; color: #1F2937; }
.signature-line { flex: 1; height: 1px; background: #E5E7EB; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-accent { display: none; }
  .about-image img { height: 400px; }
}

/* ── Services ── */
.services { padding: 120px 0; background: #FAFAFA; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card { background: #fff; padding: 40px 32px; border-radius: 4px; border: 1px solid #E5E7EB; transition: all 0.3s ease; }
.service-card:hover { border-color: #F97316; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.service-icon { color: #F97316; margin-bottom: 24px; }
.service-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; font-weight: 400; color: #1F2937; margin-bottom: 12px; }
.service-desc { font-size: 0.92rem; line-height: 1.75; color: #6B7280; font-weight: 300; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ── Areas ── */
.areas { padding: 120px 0; }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid #E5E7EB; border-radius: 4px; overflow: hidden; }
.area-item { padding: 36px 32px; border-bottom: 1px solid #E5E7EB; transition: background 0.3s; }
.area-item:nth-child(3n) { border-right: none; }
.area-item:nth-child(n+4) { border-top: none; }
.area-item:hover { background: #FFFAF5; }
.area-name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.2rem; font-weight: 400; color: #1F2937; margin-bottom: 6px; }
.area-detail { font-size: 0.82rem; color: #9CA3AF; font-weight: 300; letter-spacing: 0.02em; }

@media (max-width: 768px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .area-item:nth-child(3n) { border-right: none; }
  .area-item:nth-child(2n) { border-right: none; }
  .area-item:nth-child(n+3) { border-top: none; }
}
@media (max-width: 480px) { .areas-grid { grid-template-columns: 1fr; } .area-item { border-right: none !important; } }

/* ── Testimonials ── */
.testimonials { padding: 120px 0; background: #1F2937; }
.testimonials .section-eyebrow { color: #F97316; }
.testimonials .section-heading { color: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; padding: 40px 32px; transition: all 0.3s; }
.testimonial-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(249,115,22,0.3); }
.testimonial-quote { color: #F97316; margin-bottom: 20px; opacity: 0.6; }
.testimonial-text { font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,0.7); font-weight: 300; margin-bottom: 24px; font-style: italic; }
.testimonial-author { font-size: 0.82rem; color: rgba(255,255,255,0.4); font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ── CTA Banner ── */
.cta-banner { position: relative; padding: 100px 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: rgba(31,41,55,0.88); z-index: 1; }
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-heading { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 400; color: #fff; line-height: 1.25; margin-bottom: 20px; }
.cta-text { font-size: 1.05rem; line-height: 1.75; color: rgba(255,255,255,0.65); font-weight: 300; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ── */
.contact { padding: 120px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-lead { font-size: 1.05rem; line-height: 1.75; color: #6B7280; font-weight: 300; margin-bottom: 40px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-detail-icon { width: 40px; height: 40px; border: 1px solid #E5E7EB; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #F97316; flex-shrink: 0; }
.contact-detail-label { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: #9CA3AF; margin-bottom: 4px; }
.contact-detail-value { font-size: 0.95rem; color: #374151; font-weight: 300; }
.contact-detail-value a { color: #374151; transition: color 0.3s; }
.contact-detail-value a:hover { color: #F97316; }

.contact-form-wrapper { background: #FAFAFA; border: 1px solid #E5E7EB; border-radius: 4px; padding: 48px; }
.contact-form { }
.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: #6B7280; margin-bottom: 8px; font-weight: 400; }
.form-input { width: 100%; padding: 12px 16px; border: 1px solid #E5E7EB; border-radius: 4px; background: #fff; color: #374151; font-size: 0.92rem; transition: border-color 0.3s, box-shadow 0.3s; outline: none; }
.form-input:focus { border-color: #F97316; box-shadow: 0 0 0 3px rgba(249,115,22,0.1); }
.form-input::placeholder { color: #9CA3AF; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-success { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 32px; text-align: center; color: #059669; }
.form-success svg { color: #059669; }
.form-success p { font-size: 0.95rem; color: #374151; font-weight: 300; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrapper { padding: 32px; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 24px; }
}

/* ── Footer ── */
.footer { background: #1F2937; padding: 80px 0 0; color: rgba(255,255,255,0.6); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; color: #fff; }
.footer-logo svg { color: #F97316; }
.footer-tagline { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.45); font-weight: 300; max-width: 280px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.5); font-weight: 300; transition: color 0.3s; }
.footer-links a:hover { color: #F97316; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact p { font-size: 0.88rem; color: rgba(255,255,255,0.45); font-weight: 300; }
.footer-contact a { transition: color 0.3s; }
.footer-contact a:hover { color: #F97316; }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); font-weight: 300; }
.footer-disclaimer { font-style: italic; }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
