/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2D2D2D;
  background: #FAFAF8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
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 ── */
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 400 900; font-display: swap; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }
.section-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FF6B4A;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: #1A1A1A;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.125rem;
  color: #555;
  max-width: 560px;
  line-height: 1.7;
}
.light .section-eyebrow { color: #FF8F75; }
.light .section-title { color: #F5F5F3; }
.light .section-sub { color: #C0C0BA; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #FF6B4A;
  color: #fff;
  border-color: #FF6B4A;
}
.btn-primary:hover { background: #E85A3A; border-color: #E85A3A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,74,0.35); }
.btn-secondary {
  background: transparent;
  color: #F5F5F3;
  border-color: rgba(245,245,243,0.5);
}
.btn-secondary:hover { border-color: #F5F5F3; background: rgba(245,245,243,0.1); }
.btn-outline-light {
  background: transparent;
  color: #1A1A1A;
  border-color: #1A1A1A;
}
.btn-outline-light:hover { background: #1A1A1A; color: #F5F5F3; }
.btn-large { padding: 18px 36px; font-size: 1.0625rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.35s ease;
}
.navbar.scrolled {
  background: rgba(26,26,26,0.97);
  padding: 14px 0;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F5F5F3;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
}
.nav-logo-icon { color: #FF6B4A; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: rgba(245,245,243,0.8);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #FF6B4A; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FF6B4A;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.25s ease;
}
.nav-cta:hover { background: #E85A3A; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: #F5F5F3;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active .nav-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  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(26,26,26,0.92) 0%, rgba(26,26,26,0.75) 50%, rgba(26,26,26,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FF6B4A;
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(255,107,74,0.4);
  border-radius: 100px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  color: #F5F5F3;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-headline br { display: none; }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(245,245,243,0.75);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,245,243,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Services ── */
.services {
  padding: 120px 0;
  background: #FAFAF8;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-sub { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: rgba(255,107,74,0.2);
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(255,107,74,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6B4A;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon { background: #FF6B4A; color: #fff; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  color: #1A1A1A;
  margin-bottom: 12px;
}
.service-card p { color: #666; font-size: 0.9375rem; line-height: 1.7; }

/* ── About ── */
.about {
  padding: 120px 0;
  background: #1A1A1A;
  overflow: hidden;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image { position: relative; }
.about-image img {
  border-radius: 12px;
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 200px;
  border: 3px solid #FF6B4A;
  border-radius: 12px;
  z-index: -1;
}
.about-content .section-title { color: #F5F5F3; margin-bottom: 24px; }
.about-text {
  color: rgba(245,245,243,0.7);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(245,245,243,0.1);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #FF6B4A;
}
.stat-label { font-size: 0.8125rem; color: rgba(245,245,243,0.5); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── Why Us ── */
.why-us {
  padding: 120px 0;
  background: #F3F3F0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 28px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #FF6B4A;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.why-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,107,74,0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #1A1A1A;
  margin-bottom: 12px;
}
.why-card p { color: #666; font-size: 0.9375rem; line-height: 1.7; }

/* ── CTA Band ── */
.cta-band {
  padding: 100px 0;
  background: #FF6B4A;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
}
.cta-text {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline-light { border-color: #fff; color: #FF6B4A; }
.btn-outline-light:hover { background: #fff; color: #FF6B4A; }

/* ── Contact ── */
.contact {
  padding: 120px 0;
  background: #FAFAF8;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 64px;
}
.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255,107,74,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6B4A;
}
.contact-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: #1A1A1A;
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  color: #666;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.contact-item a:hover { color: #FF6B4A; }
.contact-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1A1A1A;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #E0E0DC;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #1A1A1A;
  background: #FAFAF8;
  transition: all 0.2s ease;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #FF6B4A;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,107,74,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #AAA; }
.form-group 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: 8px;
  color: #C0392B;
  font-weight: 500;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success svg { color: #FF6B4A; flex-shrink: 0; }

/* ── Map ── */
.map-section { height: 380px; }
.map-section iframe { width: 100%; height: 100%; display: block; }

/* ── Footer ── */
.footer {
  background: #1A1A1A;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245,245,243,0.08);
}
.footer-brand p { color: rgba(245,245,243,0.5); font-size: 0.9375rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F5F5F3;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
}
.footer-logo-icon { color: #FF6B4A; }
.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FF6B4A;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-links li {
  color: rgba(245,245,243,0.55);
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #FF6B4A; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(245,245,243,0.35); font-size: 0.8125rem; }
.footer-bottom a { color: rgba(245,245,243,0.55); transition: color 0.2s; }
.footer-bottom a:hover { color: #FF6B4A; }

/* ── Mobile Menu ── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #1A1A1A;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right 0.35s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.125rem; color: rgba(245,245,243,0.85); }
  .hero-headline br { display: block; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-image img { height: 360px; }
  .about-image-accent { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-stats { flex-direction: column; gap: 24px; }
  .contact-form-wrap { padding: 24px; }
}

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