/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #2D2A26;
  background: #FDF8F4;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --terracotta: #B85D42;
  --terracotta-dark: #9A4B34;
  --terracotta-light: #D4826A;
  --sand: #E8D5C0;
  --sand-light: #F5EDE3;
  --sand-dark: #C4A882;
  --charcoal: #2D2A26;
  --warm-gray: #6B6560;
  --cream: #FDF8F4;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(45,42,38,0.06);
  --shadow-md: 0 8px 30px rgba(45,42,38,0.10);
  --shadow-lg: 0 20px 60px rgba(45,42,38,0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 560px;
  line-height: 1.7;
}
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(184,93,66,0.3);
}
.btn--primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,93,66,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--sand-dark);
}
.btn--ghost:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}
.btn--light {
  background: var(--white);
  color: var(--terracotta);
  box-shadow: var(--shadow-md);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn--full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,248,244,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196,168,130,0.2);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--charcoal);
}
.logo--light { color: var(--white); }
.logo__mark {
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.logo--light .logo__mark { background: var(--white); color: var(--terracotta); }
.logo__text { font-family: 'DM Serif Display', Georgia, serif; font-size: 1.2rem; }
.nav__list { display: flex; gap: 32px; }
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--warm-gray);
  transition: var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: var(--transition);
}
.nav__link:hover { color: var(--terracotta); }
.nav__link:hover::after { width: 100%; }
.header__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--terracotta);
  padding: 10px 20px;
  border: 2px solid var(--terracotta);
  border-radius: 50px;
  transition: var(--transition);
}
.header__cta:hover { background: var(--terracotta); color: var(--white); }
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.mobile-toggle span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  padding: 24px;
  transform: translateY(-120%);
  transition: var(--transition);
  z-index: 999;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu__list { display: flex; flex-direction: column; gap: 16px; }
.mobile-menu__link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 8px 0;
  border-bottom: 1px solid var(--sand-light);
}
.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--terracotta);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  padding: 0;
  border-bottom: none;
}

/* ===== HERO ===== */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--terracotta);
}
.hero__headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.hero__accent { color: var(--terracotta); font-style: italic; }
.hero__body {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero__stat-num {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.75rem;
  color: var(--charcoal);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.78rem;
  color: var(--warm-gray);
  margin-top: 4px;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--sand-dark);
  opacity: 0.5;
}
.hero__visual { position: relative; }
.hero__image-stack { position: relative; }
.hero__img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero__img--main { width: 100%; }
.hero__img--main img { width: 100%; height: 100%; object-fit: cover; }
.hero__img--accent {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 55%;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-md);
}
.hero__img--accent img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute;
  top: 24px;
  right: -16px;
  background: var(--white);
  color: var(--charcoal);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--white);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sand);
  background: var(--white);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--sand-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-card__icon { background: var(--terracotta); color: var(--white); }
.service-card__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--cream);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__images { position: relative; }
.about__img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about__img-main img { width: 100%; height: 100%; object-fit: cover; }
.about__img-secondary {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-md);
}
.about__img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about__body {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.about__highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
}
.about__highlight svg { color: var(--terracotta); flex-shrink: 0; }

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: var(--charcoal);
  color: var(--white);
}
.why-us .section-eyebrow { color: var(--sand-dark); }
.why-us .section-title { color: var(--white); }
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.why-card__number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.5rem;
  color: var(--terracotta-light);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}
.why-card__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: var(--terracotta);
  overflow: hidden;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-banner__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.cta-banner__body {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
}
.cta-banner__actions { display: flex; gap: 16px; flex-shrink: 0; }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact__body {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact__details { display: flex; flex-direction: column; gap: 24px; }
.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__detail svg { color: var(--terracotta); flex-shrink: 0; margin-top: 2px; }
.contact__detail strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.contact__detail span,
.contact__detail a {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.6;
}
.contact__detail a:hover { color: var(--terracotta); }

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--sand);
}
.contact-form__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.contact-form__group { margin-bottom: 20px; }
.contact-form__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--warm-gray);
  margin-bottom: 8px;
}
.contact-form__input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--charcoal);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.contact-form__input:focus { border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(184,93,66,0.1); }
.contact-form__input::placeholder { color: var(--sand-dark); }
.contact-form__select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6560' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.contact-form__textarea { resize: vertical; min-height: 120px; }
.contact-form__success {
  display: none;
  margin-top: 16px;
  padding: 16px;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: var(--radius);
  color: #2E7D32;
  font-size: 0.9rem;
  text-align: center;
}
.contact-form__success.show { display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer__links strong,
.footer__contact strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__links ul,
.footer__contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a,
.footer__contact a {
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer__links a:hover,
.footer__contact a:hover { color: var(--terracotta-light); }
.footer__contact li:last-child { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer__bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__grid { gap: 40px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav, .header__cta { display: none; }
  .mobile-toggle { display: flex; }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 40px;
  }
  .hero__visual { order: -1; }
  .hero__img--accent { left: 16px; bottom: -24px; width: 50%; }
  .hero__badge { right: 16px; }
  .hero__stats { flex-wrap: wrap; gap: 16px; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__img-secondary { right: -16px; bottom: -24px; }
  .services__grid { grid-template-columns: 1fr; }
  .why-us__grid { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { flex-direction: column; width: 100%; }
  .cta-banner__actions .btn { justify-content: center; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .about__highlights { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__img--accent { display: none; }
}
