/* ═══════════════════════════════════════════════════════════
   HEARTWARMING CARE — Custom Styles
   Palette: Terracotta (#C0603A) · Sand (#F5F0EB) · Neutral Dark (#1C1C1E)
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1C1C1E;
  background: #FAFAF8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
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, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }

/* ── Section Labels ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C0603A;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: #C0603A;
  display: inline-block;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #1C1C1E;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: #555;
  max-width: 640px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: #C0603A;
  color: #fff;
  border-color: #C0603A;
}
.btn--primary:hover { background: #A84E2E; border-color: #A84E2E; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,96,58,0.3); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn--outline {
  background: transparent;
  color: #C0603A;
  border-color: #C0603A;
}
.btn--outline:hover { background: #C0603A; color: #fff; }
.btn--outline-light {
  background: transparent;
  color: #1C1C1E;
  border-color: rgba(28,28,30,0.3);
}
.btn--outline-light:hover { border-color: #1C1C1E; background: #1C1C1E; color: #fff; }
.btn--light {
  background: #fff;
  color: #C0603A;
  border-color: #fff;
}
.btn--light:hover { background: #F5F0EB; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  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: center; gap: 10px; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: #1C1C1E; }
.logo-accent { color: #C0603A; }
.logo-icon { flex-shrink: 0; }

/* ── Nav ── */
.nav-list { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #C0603A;
  transition: width 0.25s ease;
}
.nav-link:hover { color: #C0603A; }
.nav-link:hover::after { width: 100%; }
.nav-link--cta {
  background: #C0603A;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover { background: #A84E2E; }

/* ── Mobile Nav Toggle ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #1C1C1E;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger { position: relative; }
.hamburger::before { content: ''; position: absolute; top: -7px; left: 0; }
.hamburger::after { content: ''; position: absolute; top: 7px; left: 0; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1C1C1E 0%, #2D2D30 50%, #3A3A3E 100%);
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(192,96,58,0.15) 0%, transparent 50%),
                     radial-gradient(circle at 80% 20%, rgba(192,96,58,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,96,58,0.15);
  border: 1px solid rgba(192,96,58,0.3);
  color: #E8A87C;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: normal;
  color: #E8A87C;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Hero Visual + Float Cards ── */
.hero-visual { position: relative; min-height: 460px; }
.hero-card--main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}
.hero-card--main img { width: 100%; height: 380px; object-fit: cover; }

.hero-float {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}
.hero-float--1 { top: -20px; left: -30px; animation-delay: 0s; }
.hero-float--2 { bottom: 60px; right: -20px; animation-delay: 1.3s; }
.hero-float--3 { bottom: -20px; left: 20px; animation-delay: 2.6s; }
.float-stat { display: flex; flex-direction: column; }
.float-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #C0603A;
  line-height: 1;
}
.float-stat-label { font-size: 0.78rem; color: #666; margin-top: 4px; }

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

/* ── Services ── */
.services { padding: 100px 0; background: #FAFAF8; }
.services .container { text-align: center; }
.services .section-desc { margin: 0 auto 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #C0603A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(192,96,58,0.1);
  color: #C0603A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-title { font-size: 1.15rem; margin-bottom: 10px; color: #1C1C1E; }
.service-desc { font-size: 0.92rem; color: #666; line-height: 1.7; }

/* ── About ── */
.about { padding: 100px 0; background: #F5F0EB; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images { position: relative; min-height: 560px; }
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.1);
}
.about-img-main img { width: 100%; height: 560px; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  border: 4px solid #F5F0EB;
}
.about-img-secondary img { width: 300px; height: 260px; object-fit: cover; }
.about-accent-box {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #C0603A;
  color: #fff;
  padding: 20px 24px;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(192,96,58,0.3);
  z-index: 2;
}
.about-accent-box .accent-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; }
.about-accent-box .accent-text { font-size: 0.82rem; opacity: 0.85; margin-top: 4px; }
.about-content .section-desc { margin-bottom: 24px; }
.about-content p { color: #555; line-height: 1.8; margin-bottom: 16px; }
.about-stats {
  display: flex;
  gap: 40px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.about-stat { display: flex; flex-direction: column; }
.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #C0603A;
  line-height: 1;
}
.about-stat-label { font-size: 0.82rem; color: #666; margin-top: 4px; }

/* ── Why Us ── */
.why-us { padding: 100px 0; background: #FAFAF8; }
.why-us .container { text-align: center; }
.why-us .section-desc { margin: 0 auto 56px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.07); }
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(192,96,58,0.12);
  line-height: 1;
  margin-bottom: 12px;
}
.why-title { font-size: 1.2rem; margin-bottom: 10px; }
.why-desc { font-size: 0.92rem; color: #666; line-height: 1.7; }

/* ── Testimonials ── */
.testimonials { padding: 100px 0; background: #1C1C1E; color: #fff; }
.testimonials .section-label { color: #E8A87C; }
.testimonials .section-label::before { background: #E8A87C; }
.testimonials .section-title { color: #fff; }
.testimonials .container { text-align: center; }
.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: 24px;
  text-align: left;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s ease;
}
.testimonial-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: #C0603A;
  margin-bottom: -8px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { flex-shrink: 0; }
.testimonial-name { display: block; font-weight: 600; font-size: 0.95rem; color: #fff; }
.testimonial-location { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ── CTA Banner ── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #C0603A 0%, #A84E2E 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-title { font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; margin-bottom: 12px; }
.cta-desc { font-size: 1.05rem; color: rgba(255,255,255,0.8); line-height: 1.7; max-width: 480px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Contact ── */
.contact { padding: 100px 0; background: #F5F0EB; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-desc { font-size: 1.05rem; color: #555; line-height: 1.7; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(192,96,58,0.1);
  color: #C0603A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #999; margin-bottom: 4px; }
.contact-value { display: block; font-size: 0.95rem; color: #1C1C1E; line-height: 1.6; }
.contact-link { font-size: 0.95rem; color: #C0603A; font-weight: 500; transition: color 0.2s; }
.contact-link:hover { color: #A84E2E; text-decoration: underline; }

/* ── Form ── */
.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E0DCD8;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1C1C1E;
  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: #C0603A;
  box-shadow: 0 0 0 3px rgba(192,96,58,0.1);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-notice { font-size: 0.8rem; color: #999; margin-top: 12px; text-align: center; }
.form-success { text-align: center; padding: 40px 20px; }
.success-icon { margin-bottom: 16px; }
.form-success h3 { font-size: 1.4rem; margin-bottom: 8px; color: #1C1C1E; }
.form-success p { color: #666; margin-bottom: 24px; line-height: 1.6; }

/* ── Footer ── */
.footer { background: #1C1C1E; color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-links a:hover { color: #E8A87C; }
.footer-contact p { font-size: 0.9rem; line-height: 1.8; }
.footer-contact .contact-link { color: #E8A87C; }
.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.82rem; color: rgba(255,255,255,0.4); }

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; min-height: 360px; }
  .hero-card--main img { height: 300px; }
  .hero-float--1 { left: 0; }
  .hero-float--2 { right: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { min-height: 400px; order: -1; }
  .about-img-main img { height: 400px; }
  .about-img-secondary { right: -10px; bottom: -20px; }
  .about-accent-box { left: -10px; top: -10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-list {
    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: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .nav-list.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link--cta { text-align: center; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-float { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; text-align: center; }
  .cta-actions { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 1.75rem; }
  .about-stats { flex-direction: column; gap: 20px; }
}
