/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #2D2D2D;
  background: #FAFAF8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }
ul { list-style: none; }

/* ─── UTILITIES ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: #E8634B; color: #fff; padding: 8px 16px;
  border-radius: 0 0 8px 8px; z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ─── SECTION SHARED ─── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E8634B;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: #555;
  max-width: 620px;
  line-height: 1.7;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 8px;
  padding: 14px 28px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--coral {
  background: #E8634B; color: #fff;
  box-shadow: 0 4px 16px rgba(232, 99, 75, 0.3);
}
.btn--coral:hover { background: #D4543A; box-shadow: 0 6px 24px rgba(232, 99, 75, 0.4); }
.btn--outline {
  background: transparent; color: #1A1A1A;
  border: 2px solid #1A1A1A;
}
.btn--outline:hover { background: #1A1A1A; color: #fff; }
.btn--light {
  background: #fff; color: #1A1A1A;
  border: 2px solid #fff;
}
.btn--light:hover { background: transparent; color: #fff; }
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--lg { padding: 16px 32px; 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(250, 250, 248, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav__inner {
  display: flex; align-items: center;
  height: 72px; gap: 32px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem; font-weight: 800; color: #1A1A1A;
}
.nav__logo-text { letter-spacing: -0.01em; }
.nav__menu {
  display: flex; align-items: center; gap: 32px;
  margin-left: auto;
}
.nav__menu a {
  font-size: 0.9375rem; font-weight: 500; color: #444;
  transition: color 0.2s;
}
.nav__menu a:hover { color: #E8634B; }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; margin-left: auto;
}
.nav__toggle-line {
  display: block; width: 24px; height: 2px;
  background: #1A1A1A; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #FAFAF8 0%, #F0EDE8 100%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-block;
  background: rgba(232, 99, 75, 0.1);
  color: #E8634B;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: #1A1A1A;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__desc {
  font-size: 1.0625rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 40px;
}
.hero__trust { display: flex; flex-wrap: wrap; gap: 24px; }
.hero__trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.875rem; font-weight: 500; color: #444;
}

/* Hero image */
.hero__image-wrap { position: relative; }
.hero__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; }
.hero__image-accent {
  position: absolute; top: -20px; right: -20px;
  width: 120px; height: 120px;
  background: #E8634B;
  border-radius: 16px;
  z-index: -1;
  opacity: 0.2;
}
.hero__stat-card {
  position: absolute; bottom: -24px; left: -24px;
  background: #1A1A1A; color: #fff;
  padding: 20px 28px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.hero__stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem; font-weight: 800;
  color: #E8634B;
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ─── SERVICES ─── */
.services {
  padding: 100px 0;
  background: #fff;
}
.services .container { text-align: center; }
.services .section-desc { margin: 0 auto 56px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #FAFAF8;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: left;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border-color: rgba(232, 99, 75, 0.2);
}
.service-card--featured {
  background: #1A1A1A;
  border-color: transparent;
  color: #fff;
}
.service-card--featured .service-card__title { color: #fff; }
.service-card--featured .service-card__desc { color: rgba(255,255,255,0.7); }
.service-card--featured .service-card__list li { color: rgba(255,255,255,0.7); }
.service-card--featured .service-card__list li::before { color: #E8634B; }
.service-card__badge {
  position: absolute; top: 20px; right: 20px;
  background: #E8634B; color: #fff;
  font-size: 0.6875rem; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.service-card__icon {
  width: 64px; height: 64px;
  background: rgba(232, 99, 75, 0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.service-card--featured .service-card__icon { background: rgba(232, 99, 75, 0.2); }
.service-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem; font-weight: 700;
  color: #1A1A1A; margin-bottom: 12px;
}
.service-card__desc {
  font-size: 0.9375rem; color: #555;
  line-height: 1.7; margin-bottom: 20px;
}
.service-card__list { display: flex; flex-direction: column; gap: 10px; }
.service-card__list li {
  font-size: 0.875rem; color: #555;
  padding-left: 18px;
  position: relative;
}
.service-card__list li::before {
  content: "✓";
  position: absolute; left: 0;
  color: #E8634B; font-weight: 700; font-size: 0.8125rem;
}

/* ─── ABOUT ─── */
.about {
  padding: 100px 0;
  background: #FAFAF8;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__images { position: relative; }
.about__img-main {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 56px rgba(0,0,0,0.1);
}
.about__img-main img { width: 100%; height: 100%; object-fit: cover; }
.about__img-secondary {
  position: absolute; bottom: -32px; right: -32px;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border: 4px solid #FAFAF8;
}
.about__experience {
  position: absolute; top: -24px; left: -24px;
  background: #E8634B; color: #fff;
  padding: 20px 24px; border-radius: 12px;
  box-shadow: 0 8px 24px rgba(232, 99, 75, 0.3);
  max-width: 200px;
}
.about__experience-number {
  display: block; font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem; font-weight: 800; margin-bottom: 4px;
}
.about__experience-text {
  font-size: 0.8125rem; line-height: 1.4; opacity: 0.9;
}
.about__content .section-title { margin-bottom: 24px; }
.about__text {
  font-size: 1rem; color: #555; line-height: 1.8;
  margin-bottom: 16px;
}
.about__values {
  display: flex; flex-direction: column; gap: 24px;
  margin-top: 36px;
}
.about__value {
  display: flex; gap: 16px; align-items: flex-start;
}
.about__value svg { flex-shrink: 0; margin-top: 2px; }
.about__value strong {
  display: block; font-size: 1rem; color: #1A1A1A;
  margin-bottom: 2px;
}
.about__value span {
  font-size: 0.875rem; color: #666; line-height: 1.6;
}

/* ─── PROJECTS ─── */
.projects {
  padding: 100px 0;
  background: #fff;
}
.projects .container { text-align: center; }
.projects .section-desc { margin: 0 auto 56px; }
.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project-card {
  background: #FAFAF8;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.project-card__img { overflow: hidden; }
.project-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.project-card:hover .project-card__img img { transform: scale(1.04); }
.project-card__body { padding: 28px; text-align: left; }
.project-card__tag {
  display: inline-block;
  font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #E8634B; margin-bottom: 8px;
}
.project-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem; font-weight: 700;
  color: #1A1A1A; margin-bottom: 8px;
}
.project-card__desc {
  font-size: 0.875rem; color: #666; line-height: 1.7;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 100px 0;
  background: #1A1A1A;
  color: #fff;
}
.testimonials .container { text-align: center; }
.testimonials .section-title { color: #fff; }
.testimonials .section-desc { color: rgba(255,255,255,0.6); margin: 0 auto 56px; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: left;
  transition: background 0.25s, border-color 0.25s;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(232, 99, 75, 0.3);
}
.testimonial-card__quote {
  margin-bottom: 20px; opacity: 0.8;
}
.testimonial-card__text {
  font-size: 0.9375rem; color: rgba(255,255,255,0.8);
  line-height: 1.75; margin-bottom: 24px;
}
.testimonial-card__footer {
  display: flex; flex-direction: column; gap: 2px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}
.testimonial-card__name {
  font-weight: 600; font-size: 0.9375rem; color: #fff;
}
.testimonial-card__role {
  font-size: 0.8125rem; color: #E8634B;
}

/* ─── CTA ─── */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #E8634B 0%, #C94E3A 100%);
  color: #fff;
}
.cta__inner { text-align: center; max-width: 700px; margin: 0 auto; }
.cta__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 16px;
}
.cta__text {
  font-size: 1.0625rem; color: rgba(255,255,255,0.85);
  line-height: 1.7; margin-bottom: 32px;
}
.cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.btn--light:hover { background: #fff; color: #E8634B; }

/* ─── CONTACT ─── */
.contact {
  padding: 100px 0;
  background: #FAFAF8;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__text {
  font-size: 1rem; color: #555; line-height: 1.75;
  margin-bottom: 32px;
}
.contact__details {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 32px;
}
.contact__item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9375rem; color: #444;
  transition: color 0.2s;
}
.contact__item:hover { color: #E8634B; }
.contact__hours {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 24px 28px;
}
.contact__hours strong {
  display: block; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: #1A1A1A; margin-bottom: 12px;
}
.contact__hours p {
  font-size: 0.875rem; color: #666; line-height: 1.8;
}

/* Form */
.contact__form-wrap {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}
.contact__form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem; font-weight: 700;
  color: #1A1A1A; margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.8125rem; font-weight: 600;
  color: #444; margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #E0E0DC;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #1A1A1A;
  background: #FAFAF8;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #E8634B;
  box-shadow: 0 0 0 3px rgba(232, 99, 75, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact__form-note {
  font-size: 0.8125rem; color: #888;
  text-align: center; margin-top: 12px;
}
.form-success {
  text-align: center; padding: 32px 16px;
}
.form-success svg { margin: 0 auto 16px; color: #1A3A2D; }
.form-success h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem; color: #1A1A1A; margin-bottom: 8px;
}
.form-success p { font-size: 0.9375rem; color: #666; line-height: 1.6; }

/* ─── FOOTER ─── */
.footer {
  background: #1A1A1A; color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem; font-weight: 800; color: #fff;
  margin-bottom: 12px;
}
.footer__brand p { font-size: 0.875rem; line-height: 1.7; }
.footer__links strong,
.footer__contact strong {
  display: block;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #fff; margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__links a:hover { color: #E8634B; }
.footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__contact a {
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__contact a:hover { color: #E8634B; }
.footer__contact p { font-size: 0.875rem; line-height: 1.7; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer__bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }

/* ─── MOBILE NAV ─── */
@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
  }
  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav__menu a { font-size: 1.0625rem; }
  .nav__menu .btn--coral { margin-top: 8px; text-align: center; width: 100%; justify-content: center; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__image-wrap { max-width: 480px; }
  .hero__stat-card { bottom: -16px; left: 16px; }
  .hero__image-accent { display: none; }
  .services__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__images { max-width: 480px; }
  .about__img-secondary { right: 16px; bottom: -24px; }
  .about__experience { left: 16px; top: -16px; }
  .projects__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 100px 0 60px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__trust { flex-direction: column; gap: 12px; }
  .contact__form-wrap { padding: 24px; }
  .cta__actions { flex-direction: column; }
  .cta__actions .btn { width: 100%; justify-content: center; }
}
