/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charcoal: #2D2D2D;
  --charcoal-light: #3D3D3D;
  --coral: #FF6B57;
  --coral-dark: #E85A45;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --gray-50: #F5F5F3;
  --gray-100: #EDECE9;
  --gray-200: #D4D3CF;
  --gray-400: #999894;
  --gray-600: #6B6A66;
  --gray-800: #3D3C39;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ───────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 24px;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-coral {
  background: var(--coral);
  color: var(--white);
  border: 1.5px solid var(--coral);
}
.btn-coral:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 87, 0.3);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-full { width: 100%; }

/* ── Navigation ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gray-100);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  transition: color 0.3s;
}

.nav.scrolled .nav-logo { color: var(--charcoal); }

.nav-logo-accent { color: var(--coral); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--coral);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }

.nav.scrolled .nav-links a { color: var(--gray-600); }
.nav.scrolled .nav-links a:hover { color: var(--charcoal); }

.nav-cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--coral-dark) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav.scrolled .nav-toggle span { background: var(--charcoal); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 45, 45, 0.82) 0%,
    rgba(45, 45, 45, 0.55) 50%,
    rgba(45, 45, 45, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 72px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-title-accent {
  color: var(--coral);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255, 255, 255, 0.5);
  animation: float 2.4s ease-in-out infinite;
  transition: color 0.3s;
}
.hero-scroll:hover { color: var(--coral); }

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

/* ── Sections ─────────────────────────────────────── */
.section {
  padding: 120px 0;
}

/* ── Services ─────────────────────────────────────── */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  padding: 48px 36px;
  transition: all 0.4s var(--ease);
}

.service-card:hover {
  background: var(--charcoal);
}

.service-card:hover .service-icon { stroke: var(--coral); }
.service-card:hover h3 { color: var(--white); }
.service-card:hover p { color: rgba(255, 255, 255, 0.65); }

.service-icon {
  margin-bottom: 24px;
  stroke: var(--charcoal);
  transition: stroke 0.4s var(--ease);
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 12px;
  transition: color 0.4s var(--ease);
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  transition: color 0.4s var(--ease);
}

/* ── About ────────────────────────────────────────── */
.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content .section-title { margin-bottom: 24px; }

.about-content p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-100);
}

.stat { flex: 1; text-align: left; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--gray-400);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
}

/* ── Gallery ──────────────────────────────────────── */
.gallery { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(transparent, rgba(45, 45, 45, 0.7));
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ── Process ──────────────────────────────────────── */
.process {
  background: var(--charcoal);
  color: var(--white);
}

.process .section-title { color: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}

.process-step { position: relative; }

.process-step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  color: rgba(255, 107, 87, 0.2);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.process-step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 300px;
}

/* ── Contact ──────────────────────────────────────── */
.contact { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-intro {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 440px;
}

.contact-details { display: flex; flex-direction: column; gap: 28px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail svg { flex-shrink: 0; margin-top: 2px; }

.contact-detail strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
  font-weight: 400;
}

.contact-detail span,
.contact-detail a {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-detail a:hover { color: var(--coral); }

/* ── Form ─────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--white);
  border-radius: 8px;
  padding: 48px;
  box-shadow: 0 4px 32px rgba(45, 45, 45, 0.06);
  border: 1px solid var(--gray-100);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 8px;
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
  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(255, 107, 87, 0.1);
}

.form-group textarea { resize: vertical; }

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success svg { margin: 0 auto 20px; }

.form-success h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.6);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 64px;
  padding-bottom: 56px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--coral); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}
.footer-contact a:hover { color: var(--coral); }
.footer-contact span { font-size: 0.875rem; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── Scroll Animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .contact-grid { gap: 48px; }
  .process-steps { gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: -8px 0 32px rgba(0,0,0,0.2);
  }

  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: rgba(255,255,255,0.8) !important; font-size: 1rem; }
  .nav-links a:hover { color: var(--white) !important; }

  .nav-toggle { display: flex; z-index: 1001; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 28px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image { aspect-ratio: 16/10; }
  .about-stats { flex-direction: column; gap: 24px; align-items: flex-start; }
  .stat-divider { width: 48px; height: 1px; }

  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-caption { transform: translateY(0); }

  .process-steps { grid-template-columns: 1fr; gap: 48px; }
  .process-step-num { font-size: 3rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-content { padding: 0 20px; padding-top: 72px; }
  .section-title { font-size: 1.75rem; }
}
