/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2C2C2C;
  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 ===== */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }
.section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E07A5F;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2C2C2C;
  margin-bottom: 20px;
}
.section-lead {
  font-size: 1.125rem;
  color: #5A5A5A;
  max-width: 560px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: #E07A5F;
  color: #fff;
  border-color: #E07A5F;
}
.btn-primary:hover { background: #C9664D; border-color: #C9664D; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: #2C2C2C;
  border-color: #2C2C2C;
}
.btn-outline:hover { background: #2C2C2C; color: #fff; }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-light:hover { background: #fff; color: #2C2C2C; }
.btn-dark {
  background: #2C2C2C;
  color: #fff;
  border-color: #2C2C2C;
}
.btn-dark:hover { background: #3D3D3D; border-color: #3D3D3D; transform: translateY(-1px); }
.btn-lg { padding: 18px 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(250, 250, 248, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44, 44, 44, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: baseline; gap: 4px; }
.logo-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2C2C2C;
}
.logo-accent { color: #E07A5F; font-weight: 400; font-style: italic; }
.logo-tag {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7A7A7A;
  margin-left: 6px;
}
.main-nav ul { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #5A5A5A;
  transition: color 0.2s;
  position: relative;
}
.main-nav a:hover { color: #E07A5F; }
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #E07A5F;
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }
.nav-cta {
  background: #2C2C2C;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 600;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: #E07A5F; }

/* Mobile nav toggle */
.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: #2C2C2C;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #FAFAF8;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}
.hero-content { max-width: 520px; }
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E07A5F;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.05;
  color: #2C2C2C;
  margin-bottom: 24px;
}
.hero-headline br { display: none; }
.hero-sub {
  font-size: 1.15rem;
  color: #5A5A5A;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #7A7A7A;
}
.trust-item svg { color: #E07A5F; }

/* Hero images */
.hero-image-col { position: relative; height: 680px; }
.hero-img-main {
  width: 75%;
  height: 560px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  border: 4px solid #FAFAF8;
}
.hero-img-float img { width: 100%; height: 100%; object-fit: cover; }
.float-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: #2C2C2C;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 3px;
}
.hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(224,122,95,0.04) 0%, rgba(224,122,95,0.08) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: #fff;
}
.services .container { text-align: center; }
.services .section-lead { margin: 0 auto 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}
.service-card {
  padding: 36px 28px;
  border-radius: 4px;
  border: 1px solid rgba(44,44,44,0.08);
  transition: all 0.3s ease;
  background: #FAFAF8;
}
.service-card:hover {
  border-color: #E07A5F;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(224,122,95,0.1);
}
.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(224,122,95,0.1);
  color: #E07A5F;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #2C2C2C;
}
.service-card p {
  font-size: 0.95rem;
  color: #5A5A5A;
  line-height: 1.65;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: #FAFAF8;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-col { position: relative; }
.about-img-wrap {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-accent-box {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #E07A5F;
  color: #fff;
  padding: 24px 32px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(224,122,95,0.3);
}
.accent-box-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.accent-box-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}
.about-content .section-title { margin-top: 4px; }
.about-body {
  font-size: 1.05rem;
  color: #5A5A5A;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin: 32px 0 40px;
  padding: 28px 0;
  border-top: 1px solid rgba(44,44,44,0.1);
  border-bottom: 1px solid rgba(44,44,44,0.1);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #E07A5F;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7A7A7A;
}

/* ===== WHY US ===== */
.why {
  padding: 100px 0;
  background: #2C2C2C;
  color: #fff;
}
.why .section-title { color: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 56px;
}
.why-item { position: relative; padding-left: 60px; }
.why-number {
  position: absolute;
  left: 0;
  top: -4px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(224,122,95,0.3);
  line-height: 1;
}
.why-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}
.why-item p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 400px;
}

/* ===== AREAS ===== */
.areas {
  padding: 100px 0;
  background: #fff;
}
.areas-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.areas-content { max-width: 500px; }
.areas-lead {
  font-size: 1.05rem;
  color: #5A5A5A;
  line-height: 1.75;
  margin-bottom: 32px;
}
.areas-list { display: flex; flex-direction: column; gap: 12px; }
.areas-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #2C2C2C;
}
.areas-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #E07A5F;
  border-radius: 50%;
  flex-shrink: 0;
}
.areas-visual { border-radius: 4px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.areas-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ===== CTA ===== */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #E07A5F 0%, #C9664D 100%);
  color: #fff;
  text-align: center;
}
.cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.85;
}
.cta-headline {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 20px;
}
.cta-body {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline-light:hover { background: #fff; color: #E07A5F; }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: #FAFAF8;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-title { margin-top: 4px; }
.contact-lead {
  font-size: 1.05rem;
  color: #5A5A5A;
  line-height: 1.75;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.detail-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(224,122,95,0.1);
  border-radius: 4px;
  color: #E07A5F;
  flex-shrink: 0;
}
.detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7A7A7A;
  margin-bottom: 2px;
}
.contact-detail a {
  font-size: 1rem;
  font-weight: 500;
  color: #2C2C2C;
  transition: color 0.2s;
}
.contact-detail a:hover { color: #E07A5F; }
.contact-detail > div > span {
  font-size: 1rem;
  font-weight: 500;
  color: #2C2C2C;
}

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  border: 1px solid rgba(44,44,44,0.06);
}
.form-title {
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: #2C2C2C;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7A7A7A;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid rgba(44,44,44,0.15);
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: #2C2C2C;
  background: #FAFAF8;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #E07A5F;
  box-shadow: 0 0 0 3px rgba(224,122,95,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.8rem;
  color: #999;
  margin-top: 12px;
  text-align: center;
}
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(224,122,95,0.08);
  border: 1px solid rgba(224,122,95,0.2);
  border-radius: 4px;
  color: #C9664D;
  font-weight: 500;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success svg { flex-shrink: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: #1E1E1E;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.logo-mark--light { color: #fff; }
.logo-tag--light { color: rgba(255,255,255,0.4); }
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
  color: rgba(255,255,255,0.5);
}
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact p { font-size: 0.9rem; }
.footer-contact a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-contact a:hover { color: #E07A5F; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: #E07A5F; }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .hero-image-col { height: 520px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,250,248,0.98);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-bottom: 1px solid rgba(44,44,44,0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .main-nav ul { flex-direction: column; gap: 16px; }
  .nav-cta { display: inline-block; }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 40px 0 60px;
  }
  .hero-content { max-width: 100%; }
  .hero-headline br { display: block; }
  .hero-image-col { display: none; }
  .hero-pattern { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-col { order: -1; }
  .about-accent-box { right: 16px; bottom: -16px; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .areas-inner { grid-template-columns: 1fr; }
  .areas-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-stats { flex-direction: column; gap: 20px; }
}
