/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--sand);
  overflow-x: hidden;
}
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; }
.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  padding: 0.75rem 1.5rem; background: var(--terracotta); color: #fff;
  border-radius: 0 0 8px 8px; z-index: 200; font-weight: 500;
}
.skip-link:focus { top: 0; }

/* ─── Custom Properties ─── */
:root {
  --terracotta: #C4704B;
  --terracotta-dark: #A85A3A;
  --sand: #F5F0EB;
  --sand-light: #FAF7F4;
  --sand-dark: #E8DFD6;
  --charcoal: #2C2C2C;
  --charcoal-light: #5A5A5A;
  --white: #FFFFFF;
  --line: rgba(196, 112, 75, 0.15);
  --shadow-sm: 0 2px 8px rgba(44,44,44,0.06);
  --shadow-md: 0 8px 30px rgba(44,44,44,0.08);
  --shadow-lg: 0 20px 60px rgba(44,44,44,0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.25rem; }
.hero-accent { color: var(--terracotta); font-style: italic; }

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

/* ─── Section Headers ─── */
.section-header { margin-bottom: 4rem; }
.section-header--center { text-align: center; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-desc { color: var(--charcoal-light); max-width: 520px; }
.section-header--center .section-desc { margin: 0 auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem; border-radius: 50px;
  font-weight: 500; font-size: 0.9375rem;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta); color: var(--white);
  box-shadow: 0 4px 16px rgba(196,112,75,0.3);
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,112,75,0.35); }
.btn-ghost {
  background: transparent; color: var(--charcoal);
  border: 1px solid var(--sand-dark);
}
.btn-ghost:hover { border-color: var(--terracotta); color: var(--terracotta); }
.btn-full { width: 100%; justify-content: center; }

/* ─── Header ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,240,235,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex; align-items: center; gap: 0.625rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem; font-weight: 500; color: var(--charcoal);
}
.nav-toggle {
  display: none; padding: 0.5rem; color: var(--charcoal);
}
.main-nav ul { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  font-size: 0.875rem; font-weight: 400; color: var(--charcoal-light);
  transition: var(--transition); position: relative;
}
.main-nav a:hover { color: var(--terracotta); }
.main-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--terracotta); transition: var(--transition);
}
.main-nav a:hover::after { width: 100%; }
.nav-cta {
  padding: 0.5rem 1.25rem !important; border-radius: 50px;
  background: var(--terracotta); color: var(--white) !important;
  font-weight: 500 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--terracotta-dark); color: var(--white) !important; }

/* ─── Hero ─── */
.hero {
  padding: 8rem 0 6rem;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,112,75,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--terracotta); margin-bottom: 1rem;
}
.hero-headline { margin-bottom: 1.25rem; }
.hero-desc {
  color: var(--charcoal-light); font-size: 1.0625rem;
  max-width: 460px; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 480px;
}
.hero-card-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 100%;
}
.hero-card-main img { width: 100%; height: 100%; object-fit: cover; }
.stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 0.25rem;
  animation: float 4s ease-in-out infinite;
}
.stat-card--top { top: -20px; right: -20px; animation-delay: 0s; }
.stat-card--bottom { bottom: 40px; left: -30px; animation-delay: 1.5s; }
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem; font-weight: 500; color: var(--terracotta);
}
.stat-label { font-size: 0.8125rem; color: var(--charcoal-light); }
.hero-card-accent {
  position: absolute;
  bottom: -20px; right: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  width: 200px; height: 150px;
  border: 4px solid var(--white);
  animation: float 5s ease-in-out infinite;
  animation-delay: 2.5s;
}
.hero-card-accent img { width: 100%; height: 100%; object-fit: cover; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─── Services ─── */
.services { background: var(--sand-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid transparent;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--line);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(196,112,75,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { color: var(--charcoal-light); font-size: 0.9375rem; }

/* ─── About ─── */
.about { background: var(--sand); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-accent-line {
  position: absolute; bottom: -20px; left: -20px;
  width: 120px; height: 120px;
  border-left: 2px solid var(--terracotta);
  border-bottom: 2px solid var(--terracotta);
  border-radius: 0 0 0 var(--radius);
}
.about-content .section-title { margin-bottom: 1.5rem; }
.about-content p { color: var(--charcoal-light); margin-bottom: 1rem; }
.about-values { margin-top: 2rem; display: grid; gap: 0.75rem; }
.value-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9375rem; color: var(--charcoal);
}
.value-item svg { flex-shrink: 0; }

/* ─── Why Us ─── */
.why-us { background: var(--sand-light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--sand-dark);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--terracotta);
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.why-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem; font-weight: 500; color: var(--sand-dark);
  margin-bottom: 0.75rem; display: block;
  transition: var(--transition);
}
.why-card:hover .why-number { color: var(--terracotta); }
.why-card h3 { margin-bottom: 0.5rem; }
.why-card p { color: var(--charcoal-light); font-size: 0.9375rem; }

/* ─── Reviews ─── */
.reviews { background: var(--sand); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--sand-dark);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.review-card:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.review-quote { margin-bottom: 1rem; flex-shrink: 0; }
.review-text {
  color: var(--charcoal-light);
  font-size: 0.9375rem;
  flex: 1;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.review-meta { display: flex; align-items: center; justify-content: space-between; }
.review-stars {
  color: var(--terracotta);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
.review-name { font-size: 0.8125rem; color: var(--charcoal-light); }

/* ─── Contact ─── */
.contact { background: var(--sand-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-desc { color: var(--charcoal-light); margin-bottom: 2rem; }
.contact-details { display: grid; gap: 1.5rem; }
.contact-details li {
  display: flex; align-items: flex-start; gap: 1rem;
}
.contact-details svg { flex-shrink: 0; margin-top: 0.125rem; }
.contact-details strong {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--charcoal);
  margin-bottom: 0.125rem;
}
.contact-details span,
.contact-details a {
  color: var(--charcoal-light);
  font-size: 0.9375rem;
  transition: var(--transition);
}
.contact-details a:hover { color: var(--terracotta); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--sand-dark);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--sand-light);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(196,112,75,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem; margin-top: 1rem;
  background: rgba(196,112,75,0.08);
  border-radius: 8px;
  color: var(--terracotta-dark);
  font-size: 0.9375rem;
}
.form-success svg { flex-shrink: 0; }

/* ─── Footer ─── */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.6); padding: 4rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.875rem; margin-top: 0.75rem; }
.footer-brand .logo { color: var(--white); }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact a { font-size: 0.9375rem; transition: var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  text-align: center;
}

/* ─── Mobile Nav ─── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .main-nav {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(245,240,235,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .main-nav ul { flex-direction: column; gap: 0.5rem; }
  .main-nav a { display: block; padding: 0.75rem 1rem; border-radius: 8px; }
  .main-nav a:hover { background: rgba(196,112,75,0.06); }
  .nav-cta { text-align: center; }
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .hero { padding: 7rem 0 4rem; }
  .hero-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { height: 320px; order: -1; }
  .stat-card--top { right: 10px; top: -10px; }
  .stat-card--bottom { left: 10px; bottom: 20px; }
  .hero-card-accent { width: 140px; height: 105px; right: 10px; bottom: -10px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-accent-line { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-links { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .footer-contact { align-items: center; }
  h1 { font-size: clamp(2rem, 7vw, 3rem); }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .contact-form-wrap { padding: 1.5rem; }
}

/* ─── Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
