/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2D2D2D;
  background: #FDF6F4;
  -webkit-font-smoothing: antialiased;
}
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; }

/* ─── Color Tokens ─── */
:root {
  --coral: #E8645A;
  --coral-dark: #D15248;
  --coral-light: #FDEDEB;
  --charcoal: #2D2D2D;
  --charcoal-light: #4A4A4A;
  --cream: #FDF6F4;
  --cream-dark: #F5E6E2;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(45,45,45,.06);
  --shadow-md: 0 8px 30px rgba(45,45,45,.08);
  --shadow-lg: 0 16px 60px rgba(45,45,45,.12);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; color: var(--charcoal); }
.text-coral { color: var(--coral); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-coral { background: var(--coral); color: var(--white); border-color: var(--coral); }
.btn-coral:hover { background: var(--coral-dark); border-color: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,100,90,.3); }
.btn-outline-dark { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }
.btn-outline-coral { background: transparent; color: var(--coral); border-color: var(--coral); }
.btn-outline-coral:hover { background: var(--coral); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--charcoal); }
.btn-white { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Section Tags ─── */
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--coral);
  margin-bottom: 12px;
}
.section-title { font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; }
.section-desc { font-size: 18px; color: var(--charcoal-light); max-width: 560px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,246,244,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,100,90,.1);
  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: flex; align-items: center; gap: 10px; }
.logo-icon { flex-shrink: 0; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--charcoal); }
.logo-accent { color: var(--coral); }
.nav-list { display: flex; align-items: center; gap: 8px; }
.nav-list a { padding: 8px 16px; font-weight: 600; font-size: 15px; color: var(--charcoal); border-radius: 50px; transition: var(--transition); }
.nav-list a:hover { color: var(--coral); background: var(--coral-light); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 44px; height: 44px; position: relative; }
.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: var(--transition);
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }
.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 { bottom: 0; transform: rotate(-45deg); }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral-light);
  color: var(--coral);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--charcoal);
}
.hero-sub { font-size: 19px; color: var(--charcoal-light); margin-bottom: 36px; max-width: 480px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--coral); line-height: 1; }
.stat-label { font-size: 13px; color: var(--charcoal-light); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; background: rgba(232,100,90,.2); align-self: stretch; }

/* Hero Image */
.hero-image { position: relative; }
.hero-img-wrapper { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
  position: absolute;
  inset: 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: calc(var(--radius-xl) - 8px);
  pointer-events: none;
}
.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.floating-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--coral-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.floating-text strong { display: block; font-size: 14px; color: var(--charcoal); }
.floating-text span { font-size: 12px; color: var(--charcoal-light); }
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; }

/* ─── Services ─── */
.services { padding: 100px 0; background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  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: rgba(232,100,90,.15); }
.service-icon { width: 64px; height: 64px; border-radius: 16px; background: var(--coral-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-name { font-size: 20px; margin-bottom: 10px; }
.service-card p { font-size: 15px; color: var(--charcoal-light); line-height: 1.7; }

/* ─── About ─── */
.about { padding: 100px 0; background: var(--white); }
.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-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--coral);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-experience-badge .exp-num { display: block; font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; line-height: 1; }
.about-experience-badge .exp-label { font-size: 13px; font-weight: 600; opacity: .9; }
.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; }
.about-text { font-size: 17px; color: var(--charcoal-light); margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.value-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; color: var(--charcoal); }

/* ─── Gallery ─── */
.gallery { padding: 100px 0; background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: auto auto; gap: 20px; }
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,45,45,.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 700; font-size: 16px; }
.gallery-item--tall { grid-column: span 4; grid-row: span 2; }
.gallery-item:not(.gallery-item--tall) { grid-column: span 4; height: 260px; }
.gallery-item--tall img { height: 100%; }

/* ─── Testimonials ─── */
.testimonials { padding: 100px 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-quote { position: absolute; top: 20px; right: 24px; }
.testimonial-text { font-size: 16px; color: var(--charcoal-light); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.author-name { display: block; font-size: 15px; color: var(--charcoal); }
.author-detail { font-size: 13px; color: var(--charcoal-light); }

/* ─── CTA Banner ─── */
.cta-banner { padding: 80px 0; background: var(--charcoal); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-title { font-size: clamp(28px, 4vw, 44px); color: var(--white); margin-bottom: 12px; }
.cta-desc { font-size: 18px; color: rgba(255,255,255,.7); max-width: 480px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── Contact ─── */
.contact { padding: 100px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-desc { font-size: 17px; color: var(--charcoal-light); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--coral-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 15px; color: var(--charcoal); margin-bottom: 4px; }
.contact-item p { font-size: 15px; color: var(--charcoal-light); line-height: 1.6; }
.contact-item a { color: var(--coral); font-weight: 600; transition: var(--transition); }
.contact-item a:hover { color: var(--coral-dark); }
.map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-title { font-size: 24px; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 14px; color: var(--charcoal); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E8E4E2;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--coral); background: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0A8A6; }
.form-note { font-size: 13px; color: var(--charcoal-light); text-align: center; margin-top: 12px; }
.form-success { text-align: center; padding: 40px 20px; }
.form-success h4 { font-size: 24px; margin: 16px 0 8px; color: var(--charcoal); }
.form-success p { color: var(--charcoal-light); margin-bottom: 24px; }

/* ─── Footer ─── */
.footer { background: var(--charcoal); color: rgba(255,255,255,.7); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer-brand .logo-text { color: var(--white); }
.footer-tagline { font-size: 15px; margin-top: 16px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-link { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-link:hover { background: var(--coral); color: var(--white); }
.footer-links h4, .footer-contact h4 { color: var(--white); font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 15px; transition: var(--transition); }
.footer-links a:hover { color: var(--coral); }
.footer-contact address { font-style: normal; font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.footer-contact p { font-size: 15px; }
.footer-contact a { color: var(--coral); font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 14px; }

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav { position: fixed; top: 72px; left: 0; right: 0; background: rgba(253,246,244,.98); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 20px 24px; border-bottom: 1px solid rgba(232,100,90,.1); transform: translateY(-120%); opacity: 0; transition: var(--transition); pointer-events: none; }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; box-shadow: var(--shadow-md); }
  .nav-list { flex-direction: column; gap: 4px; }
  .nav-list a { padding: 12px 16px; width: 100%; }
  .nav-list li:last-child { margin-top: 8px; }

  .hero { padding: 100px 0 80px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; max-width: 480px; margin: 0 auto; }
  .hero-floating-card { left: 10px; bottom: -10px; }
  .hero-stats { gap: 20px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 480px; margin: 0 auto; }
  .about-content .section-tag, .about-content .section-title { text-align: center; }
  .about-content .about-text { text-align: center; }
  .about-content { text-align: center; }
  .about-content .btn { margin: 0 auto; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--tall { grid-column: span 2; grid-row: span 1; height: 300px; }
  .gallery-item:not(.gallery-item--tall) { height: 200px; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 1; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 28px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 100%; height: 1px; }
  .about-values { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--tall { grid-column: span 1; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal { transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
