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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 700; line-height: 1.2; }
em { font-style: italic; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600;
  border-radius: 50px; transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #F97583; color: #fff;
  box-shadow: 0 4px 14px rgba(249,117,131,0.35);
}
.btn-primary:hover {
  background: #E85A6F; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,117,131,0.45);
}
.btn-outline {
  background: transparent; color: #374151;
  border: 2px solid #374151;
}
.btn-outline:hover { background: #374151; color: #fff; }
.btn-ghost {
  background: rgba(255,255,255,0.12); color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(245,240,235,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(55,65,81,0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(55,65,81,0.1); }
.nav-inner {
  display: flex; align-items: center;
  height: 72px; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-text {
  font-family: 'Fraunces', serif; font-weight: 800;
  font-size: 18px; color: #374151;
}
.main-nav {
  display: flex; align-items: center; gap: 8px;
  margin-left: auto;
}
.main-nav a:not(.btn) {
  padding: 8px 16px; border-radius: 50px;
  font-size: 14px; font-weight: 500; color: #374151;
  transition: all 0.2s ease;
}
.main-nav a:not(.btn):hover { background: rgba(249,117,131,0.1); color: #F97583; }

/* Mobile nav toggle */
.nav-toggle {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 12px; margin-left: auto;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block; width: 22px; height: 2px;
  background: #374151; border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
  content: ''; position: absolute; left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 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 { top: 0; transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  padding: 120px 0 0;
  background: #F5F0EB;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,117,131,0.1); color: #C2415A;
  padding: 8px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  color: #1F2937;
  margin-bottom: 24px;
  line-height: 1.08;
}
.hero-subtitle {
  font-size: 18px; color: #4B5563;
  line-height: 1.7; margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: #374151;
}

/* Hero visual */
.hero-visual { position: relative; }
.hero-img-wrapper {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(55,65,81,0.15);
}
.hero-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute; bottom: -24px; left: -32px;
  background: #fff; border-radius: 20px;
  padding: 16px 20px; display: flex; align-items: flex-start; gap: 14px;
  box-shadow: 0 12px 40px rgba(55,65,81,0.12);
  max-width: 300px;
}
.float-card-quote {
  font-size: 13px; color: #374151; line-height: 1.5;
  font-style: italic; margin-bottom: 6px;
}
.float-card-author { font-size: 12px; color: #6B7280; font-weight: 500; }
.hero-wave { margin-top: -1px; }
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #F97583; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  color: #1F2937; margin-bottom: 16px;
}
.section-subtitle { font-size: 17px; color: #6B7280; line-height: 1.7; }

/* ===== SERVICES ===== */
.services { padding: 96px 0; background: #F5F0EB; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff; border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(55,65,81,0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(55,65,81,0.05);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(55,65,81,0.12);
  border-color: rgba(249,117,131,0.2);
}
.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(249,117,131,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 20px; color: #1F2937; margin-bottom: 12px;
  font-family: 'Fraunces', serif;
}
.service-card p { font-size: 15px; color: #6B7280; line-height: 1.7; }

/* ===== ABOUT ===== */
.about { padding: 96px 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { position: relative; }
.about-img-main { border-radius: 24px; overflow: hidden; box-shadow: 0 16px 48px rgba(55,65,81,0.12); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -40px; right: -24px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(55,65,81,0.15);
  border: 6px solid #fff;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-stat {
  position: absolute; top: -20px; right: 40px;
  background: #F97583; color: #fff;
  border-radius: 20px; padding: 20px 28px;
  text-align: center; box-shadow: 0 12px 32px rgba(249,117,131,0.35);
}
.stat-number {
  display: block; font-family: 'Fraunces', serif;
  font-size: 42px; font-weight: 800; line-height: 1;
}
.stat-number span { font-size: 24px; }
.stat-label { font-size: 13px; font-weight: 600; opacity: 0.9; margin-top: 4px; display: block; }
.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 20px; }
.about-text { font-size: 16px; color: #4B5563; line-height: 1.8; margin-bottom: 16px; }
.about-features { margin: 28px 0 36px; display: grid; gap: 14px; }
.about-feature { display: flex; align-items: center; gap: 12px; font-size: 15px; color: #374151; font-weight: 500; }

/* ===== GALLERY ===== */
.gallery { padding: 96px 0; background: #F5F0EB; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.gallery-item {
  position: relative; border-radius: 20px; overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(5) { grid-row: span 2; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(55,65,81,0.7) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 24px;
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff; font-weight: 600; font-size: 16px;
}
.gallery-cta {
  text-align: center;
  background: #fff; border-radius: 24px;
  padding: 40px; box-shadow: 0 4px 20px rgba(55,65,81,0.06);
}
.gallery-cta p { font-size: 16px; color: #6B7280; margin-bottom: 20px; }

/* ===== FAQ ===== */
.faq { padding: 96px 0; background: #fff; }
.faq-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.faq-header .section-tag { text-align: left; }
.faq-header .section-title { text-align: left; margin-bottom: 16px; }
.faq-header .section-subtitle { text-align: left; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid rgba(55,65,81,0.08); border-radius: 16px; overflow: hidden; transition: all 0.3s ease; }
.faq-item:hover { border-color: rgba(249,117,131,0.25); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; text-align: left;
  font-size: 16px; font-weight: 600; color: #1F2937;
  background: transparent; gap: 16px;
}
.faq-question:hover { color: #F97583; }
.faq-chevron { flex-shrink: 0; transition: transform 0.3s ease; color: #F97583; }
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 20px; font-size: 15px;
  color: #6B7280; line-height: 1.75;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: #374151;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(249,117,131,0.15) 0%, transparent 60%);
}
.cta-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-title {
  font-size: clamp(28px, 4vw, 44px); color: #fff; margin-bottom: 12px;
}
.cta-subtitle { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 480px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 96px 0; background: #F5F0EB; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info .section-tag { text-align: left; }
.contact-info .section-title { text-align: left; margin-bottom: 16px; }
.contact-desc { font-size: 16px; color: #6B7280; line-height: 1.7; margin-bottom: 36px; }
.contact-details { display: grid; gap: 24px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(249,117,131,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 14px; color: #374151; margin-bottom: 4px; }
.contact-item p { font-size: 15px; color: #6B7280; line-height: 1.6; }
.contact-item a { color: #F97583; font-weight: 600; transition: color 0.2s; }
.contact-item a:hover { color: #E85A6F; }
.contact-map { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 24px rgba(55,65,81,0.1); }

/* Form */
.contact-form-card {
  background: #fff; border-radius: 24px;
  padding: 40px; box-shadow: 0 8px 32px rgba(55,65,81,0.08);
}
.form-title { font-size: 24px; color: #1F2937; margin-bottom: 8px; }
.form-subtitle { font-size: 15px; color: #6B7280; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: #374151; margin-bottom: 6px; letter-spacing: 0.02em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px;
  border: 2px solid rgba(55,65,81,0.1);
  border-radius: 12px; font-size: 15px;
  font-family: 'Inter', sans-serif; color: #1F2937;
  background: #F9FAFB; transition: all 0.2s ease;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #F97583; background: #fff;
  box-shadow: 0 0 0 4px rgba(249,117,131,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #9CA3AF; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

/* Success state */
.form-success {
  text-align: center; padding: 40px 20px;
}
.form-success h4 { font-size: 22px; color: #1F2937; margin: 16px 0 8px; }
.form-success p { font-size: 15px; color: #6B7280; }

/* ===== FOOTER ===== */
.site-footer { background: #1F2937; color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: 15px; line-height: 1.7; margin-top: 16px; color: rgba(255,255,255,0.6); }
.footer-links, .footer-contact { display: grid; gap: 12px; }
.footer-links strong, .footer-contact strong {
  font-size: 14px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px;
}
.footer-links a {
  font-size: 15px; color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: #F97583; }
.footer-contact p { font-size: 15px; line-height: 1.7; }
.footer-contact a { color: #F97583; font-weight: 500; transition: color 0.2s; }
.footer-contact a:hover { color: #ffb4b9; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.4); text-align: center; }

/* ===== REVEAL ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Fallback: always visible if JS disabled or reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1), .gallery-item:nth-child(5) { grid-row: span 1; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-header { text-align: center; }
  .faq-header .section-tag, .faq-header .section-title, .faq-header .section-subtitle { text-align: center; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(245,240,235,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column; padding: 24px;
    gap: 4px; border-bottom: 1px solid rgba(55,65,81,0.08);
    transform: translateY(-120%); opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 12px 32px rgba(55,65,81,0.1);
  }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .main-nav a:not(.btn) { padding: 14px 16px; font-size: 16px; width: 100%; }
  .main-nav .btn { width: 100%; justify-content: center; margin-top: 8px; }

  .hero { padding: 100px 0 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 60px; }
  .hero-visual { order: -1; }
  .hero-float-card { left: 16px; bottom: -16px; max-width: 260px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-trust { gap: 20px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-content .section-tag, .about-content .section-title { text-align: center; }
  .about-features { max-width: 400px; margin-left: auto; margin-right: auto; }
  .about-content .btn { margin: 0 auto; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }

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

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info .section-tag, .contact-info .section-title { text-align: center; }
  .contact-desc { text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 32px; }
  .hero-float-card { display: none; }
  .about-stat { position: relative; top: 0; right: 0; margin-top: 20px; display: inline-block; }
  .about-img-secondary { display: none; }
  .contact-form-card { padding: 24px; }
}
