/* ─── 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: var(--dark);
  background: var(--sand);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Custom Properties ─── */
:root {
  --terracotta: #B85446;
  --terracotta-dark: #9A4438;
  --terracotta-light: #D47568;
  --sand: #F5F0EB;
  --sand-light: #FAF7F4;
  --sand-dark: #E8E0D6;
  --dark: #1C1C1E;
  --dark-soft: #3A3A3C;
  --gray: #6E6E73;
  --gray-light: #8E8E93;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(28,28,30,.06);
  --shadow-md: 0 4px 20px rgba(28,28,30,.08);
  --shadow-lg: 0 12px 40px rgba(28,28,30,.10);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }
p { color: var(--gray); }

/* ─── Layout ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 6rem 0; }

/* ─── Section Headers ─── */
.section-eyebrow {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: .75rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub { font-size: 1.125rem; max-width: 600px; }
.section-header-center { text-align: center; }
.section-header-center .section-sub { margin: 0 auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--terracotta); color: var(--white); }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--dark); border: 1.5px solid var(--sand-dark); }
.btn-secondary:hover { border-color: var(--terracotta); color: var(--terracotta); }
.btn-light { background: var(--white); color: var(--terracotta); }
.btn-light:hover { background: var(--sand-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline-light:hover { background: var(--white); color: var(--terracotta); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245,240,235,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand-dark);
  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: .625rem; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.125rem; color: var(--dark); }
.logo-accent { color: var(--terracotta); }

/* ─── Nav ─── */
.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-link {
  padding: .5rem .875rem;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--dark-soft);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover { color: var(--terracotta); background: rgba(184,84,70,.06); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .625rem 1.125rem;
  background: var(--terracotta);
  color: var(--white);
  font-size: .875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  margin-left: .5rem;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--terracotta-dark); transform: translateY(-1px); }
.nav-toggle { display: none; padding: .5rem; color: var(--dark); }

/* ─── Hero ─── */
.hero { padding: 8rem 0 6rem; background: var(--sand); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-eyebrow {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.hero-headline { margin-bottom: 1.5rem; letter-spacing: -.02em; }
.hero-sub { font-size: 1.125rem; color: var(--gray); margin-bottom: 2rem; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-badges { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--dark-soft);
}
.hero-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/6;
}
.hero-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.stat { display: flex; flex-direction: column; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--terracotta); }
.stat-label { font-size: .8125rem; color: var(--gray); }
.stat-divider { width: 1px; height: 40px; background: var(--sand-dark); }

/* ─── Services ─── */
.services { background: var(--white); }
.services .section-header { margin-bottom: 3.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  padding: 2rem;
  background: var(--sand-light);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition);
}
.service-card:hover { border-color: var(--terracotta-light); transform: translateY(-4px); box-shadow: var(--shadow-lg); background: var(--white); }
.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184,84,70,.08);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}
.service-title { margin-bottom: .75rem; }
.service-desc { font-size: .9375rem; margin-bottom: 1.25rem; }
.service-list { display: flex; flex-direction: column; gap: .5rem; }
.service-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--dark-soft);
}
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── About ─── */
.about { background: var(--sand); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; 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; aspect-ratio: 7/6; }
.about-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--sand);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5/4; }
.about-content .section-title { margin-bottom: 1.5rem; }
.about-body { margin-bottom: 1rem; }
.about-body:last-of-type { margin-bottom: 2rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem 1.5rem; margin-bottom: 2rem; }
.value-item { display: flex; align-items: center; gap: .625rem; font-size: .9375rem; font-weight: 500; color: var(--dark-soft); }

/* ─── Why Us ─── */
.why-us { background: var(--dark); color: var(--white); }
.why-us .section-eyebrow { color: var(--terracotta-light); }
.why-us .section-title { color: var(--white); }
.why-us .section-sub { color: rgba(255,255,255,.6); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.why-card {
  padding: 2.25rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.07); border-color: rgba(184,84,70,.4); transform: translateY(-3px); }
.why-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--terracotta); line-height: 1; margin-bottom: 1rem; }
.why-title { color: var(--white); margin-bottom: .75rem; }
.why-text { font-size: .9375rem; color: rgba(255,255,255,.6); }

/* ─── CTA Banner ─── */
.cta-banner { background: var(--terracotta); padding: 4.5rem 0; }
.cta-grid { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-title { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: .75rem; }
.cta-text { color: rgba(255,255,255,.8); font-size: 1.0625rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── Contact ─── */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-body { font-size: 1.0625rem; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; }
.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184,84,70,.08);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.contact-label { font-size: .8125rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gray-light); margin-bottom: .25rem; }
.contact-value { font-size: 1rem; color: var(--dark-soft); }
.contact-value a { color: var(--terracotta); transition: var(--transition); }
.contact-value a:hover { color: var(--terracotta-dark); text-decoration: underline; }

/* ─── Form ─── */
.contact-form-wrapper {
  background: var(--sand-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--sand-dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark-soft);
  margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .9375rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(184,84,70,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-light); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .8125rem; color: var(--gray-light); margin-top: .75rem; text-align: center; }
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.form-success h3 { font-size: 1.5rem; margin: 1rem 0 .5rem; color: var(--dark); }
.form-success p { color: var(--gray); }

/* ─── Footer ─── */
.footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand .logo-text { color: var(--white); }
.footer-desc { margin-top: 1rem; font-size: .9375rem; }
.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .625rem; }
.footer-links a { font-size: .9375rem; transition: var(--transition); }
.footer-links a:hover { color: var(--terracotta-light); }
.footer-contact p { font-size: .9375rem; margin-bottom: .5rem; }
.footer-contact a { color: var(--terracotta-light); transition: var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.4); transition: var(--transition); }
.footer-bottom a:hover { color: var(--terracotta-light); }

/* ─── Mobile Nav ─── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--sand);
    flex-direction: column;
    padding: 1.5rem;
    gap: .25rem;
    border-bottom: 1px solid var(--sand-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { padding: .75rem 1rem; width: 100%; }
  .nav-cta { margin-left: 0; margin-top: .5rem; justify-content: center; }
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 7rem 0 4rem; }
  .hero-image { order: -1; }
  .hero-img-wrapper { aspect-ratio: 4/3; }
  .about-img-secondary { right: 1rem; bottom: -1.5rem; }
  .cta-grid { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}
@media (max-width: 600px) {
  section { padding: 4rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-badges { flex-direction: column; gap: .75rem; }
  .about-values { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 1.5rem; }
}
