/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #2d2d2d;
  background: #faf9f7;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; line-height: 1.2; font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Color Variables ── */
:root {
  --coral: #E8735A;
  --coral-light: #f4a896;
  --coral-pale: #fdf0ed;
  --charcoal: #2a2a2a;
  --charcoal-light: #4a4a4a;
  --cream: #faf9f7;
  --cream-dark: #f3f0ec;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(42,42,42,0.06);
  --shadow-md: 0 8px 30px rgba(42,42,42,0.08);
  --shadow-lg: 0 16px 50px rgba(42,42,42,0.10);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Accent Utility ── */
.accent { color: var(--coral); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn--primary:hover {
  background: #d4614a;
  border-color: #d4614a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,115,90,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--ghost:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}
.btn--white {
  background: var(--white);
  color: var(--coral);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn--full { width: 100%; justify-content: center; }

/* ── Section Tags ── */
.section-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
  background: var(--coral-pale);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  max-width: 560px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-sub { margin: 0 auto; }

/* ── Section Spacing ── */
.section {
  padding: 100px 0;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,249,247,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(42,42,42,0.06);
  transition: var(--transition);
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: 'Outfit', sans-serif;
}
.logo-mark {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--coral);
  letter-spacing: -0.02em;
}
.logo-word {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--charcoal);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.925rem;
  color: var(--charcoal-light);
  transition: var(--transition);
  position: relative;
}
.nav-links a:not(.btn):hover { color: var(--coral); }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #faf9f7 0%, #fdf6f3 50%, #f7f3ef 100%);
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.shape--1 {
  width: 500px;
  height: 500px;
  background: var(--coral-pale);
  top: -100px;
  right: -100px;
}
.shape--2 {
  width: 400px;
  height: 400px;
  background: #e8f4f8;
  bottom: -80px;
  left: -80px;
}
.shape--3 {
  width: 250px;
  height: 250px;
  background: #f5e6ff;
  top: 40%;
  left: 45%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(42,42,42,0.05);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--coral);
  background: var(--coral-pale);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
}
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 520/480;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Floating Cards ── */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  border: 1px solid rgba(42,42,42,0.05);
  animation: float 4s ease-in-out infinite;
}
.float-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--coral-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}
.float-card strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.float-card span {
  font-size: 0.78rem;
  color: var(--charcoal-light);
  line-height: 1.3;
}
.float-card--1 {
  bottom: 40px;
  left: -30px;
  animation-delay: 0s;
}
.float-card--2 {
  top: 40px;
  right: -20px;
  animation-delay: 1.3s;
}
.float-card--3 {
  bottom: 140px;
  right: -40px;
  animation-delay: 2.6s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── SERVICES ── */
.services {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(42,42,42,0.04);
  transition: var(--transition);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--coral-light);
  background: var(--white);
}
.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--coral-pale);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.svc-card:hover .svc-icon {
  background: var(--coral);
  color: var(--white);
}
.svc-card h3 {
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.svc-card p {
  font-size: 0.925rem;
  color: var(--charcoal-light);
  line-height: 1.65;
}

/* ── ABOUT ── */
.about {
  background: var(--cream);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-group {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 520/420;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--cream);
  aspect-ratio: 300/200;
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}
.about-stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  flex: 1;
}
.about-stat strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  color: var(--coral);
  margin-bottom: 4px;
}
.about-stat span {
  font-size: 0.85rem;
  color: var(--charcoal-light);
}
.about-text .section-title { margin-top: 8px; }
.about-text p {
  color: var(--charcoal-light);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.75;
}
.about-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
}
.about-list li svg {
  color: var(--coral);
  flex-shrink: 0;
}

/* ── GALLERY ── */
.gallery {
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 480/360;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,42,42,0.7) 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 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--cream);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(42,42,42,0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testi-quote {
  color: var(--coral);
  margin-bottom: 16px;
  opacity: 0.7;
}
.testi-card p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid rgba(42,42,42,0.06);
}
.testi-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.testi-loc {
  font-size: 0.82rem;
  color: var(--charcoal-light);
}

/* ── CTA ── */
.cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3d3d3d 100%);
  padding: 80px 0;
}
.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.cta-content .section-tag { background: rgba(232,115,90,0.2); }
.cta-content .section-title { color: var(--white); margin-bottom: 16px; }
.cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── CONTACT ── */
.contact {
  background: var(--white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-sub {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  margin-bottom: 36px;
  line-height: 1.7;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--coral-pale);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail dt {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal-light);
  margin-bottom: 4px;
}
.contact-detail dd {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
}
.contact-detail a {
  color: var(--coral);
  transition: var(--transition);
}
.contact-detail a:hover { color: #d4614a; }

/* ── Form ── */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(42,42,42,0.05);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(42,42,42,0.12);
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,115,90,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 20px;
  background: #e8f5e9;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.925rem;
  color: #2e7d32;
}
.form-success svg { flex-shrink: 0; }
.form-success.show { display: flex; }

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo-word { color: var(--white); }
.footer-brand p {
  margin-top: 16px;
  font-size: 0.925rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--coral-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.85rem;
  text-align: center;
  color: rgba(255,255,255,0.4);
}

/* ── Mobile Menu ── */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(250,249,247,0.98);
  backdrop-filter: blur(16px);
  padding: 24px;
  gap: 20px;
  border-bottom: 1px solid rgba(42,42,42,0.06);
  box-shadow: var(--shadow-md);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { padding: 36px; }
  .hero-visual { max-width: 520px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img-accent { right: 0; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card { grid-template-columns: 1fr; gap: 32px; }
  .cta-actions { justify-content: flex-start; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; }
  .section { padding: 72px 0; }
  .hero { padding: 100px 0 60px; }
  .hero-card { padding: 28px; }
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .float-card { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 16px; }
}
