:root {
  --orange: #E85A1A;
  --orange-deep: #C44A12;
  --cream: #FDFBF7;
  --cream-dark: #F3EFE8;
  --espresso: #1C1410;
  --charcoal: #2A221C;
  --gray: #6E6560;
  --gray-light: #9A928C;
  --white: #FFFFFF;
  --hairline: rgba(28, 20, 16, 0.08);
  --ease-out: cubic-bezier(0.32, 0.72, 0, 1);
  --font: "Poppins", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-family: var(--font); }
button, input, textarea, select { font-family: inherit; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--espresso);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 1.25rem 1rem 0;
  pointer-events: none;
}

nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(1120px, 100%);
  padding: 0.65rem 0.65rem 0.65rem 1.25rem;
  background: var(--white);
  border-radius: 999px;
  border: 1px solid var(--hairline);
  box-shadow: 0 8px 40px rgba(28, 20, 16, 0.06);
  transition: transform 0.7s var(--ease-out), box-shadow 0.7s var(--ease-out);
}

nav.scrolled {
  box-shadow: 0 16px 48px rgba(28, 20, 16, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--espresso);
}

.site-logo {
  height: 3rem;
  width: auto;
  flex-shrink: 0;
  display: block;
}

@media (min-width: 769px) {
  .site-logo {
    height: 4rem;
  }
}

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

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--espresso);
  text-decoration: none;
  transition: color 0.4s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active,
.menu-overlay a.active { color: var(--orange); }

.btn-nav {
  background: var(--espresso);
  color: var(--cream) !important;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  transition: background 0.4s var(--ease-out), transform 0.4s var(--ease-out) !important;
}

.btn-nav:hover,
.nav-links a.btn-nav.active {
  background: var(--orange);
  color: var(--cream) !important;
  transform: scale(0.98);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(28, 20, 16, 0.06);
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hamburger span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: var(--espresso);
  border-radius: 2px;
  transition: transform 0.5s var(--ease-out), opacity 0.4s var(--ease-out);
}

.hamburger span:nth-child(1) { transform: translateY(-5px); }
.hamburger span:nth-child(2) { transform: translateY(5px); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { transform: rotate(-45deg); }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.menu-overlay a {
  font-family: var(--font);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--espresso);
  text-decoration: none;
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), color 0.4s;
}

.menu-overlay.open a {
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay.open a:nth-child(1) { transition-delay: 0.08s; }
.menu-overlay.open a:nth-child(2) { transition-delay: 0.14s; }
.menu-overlay.open a:nth-child(3) { transition-delay: 0.2s; }
.menu-overlay.open a:nth-child(4) { transition-delay: 0.26s; }
.menu-overlay.open a:nth-child(5) { transition-delay: 0.32s; }

.menu-overlay a:hover { color: var(--orange); }

#hero {
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("img/hero.webp") center/cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12, 10, 9, 0.65) 0%, rgba(12, 10, 9, 0.60) 55%, rgba(28, 20, 16, 0.40) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 8rem 1.5rem 10rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  margin-bottom: 1.75rem;
}

.hero-title {
  font-family: var(--font);
  font-size: clamp(2.5rem, 6.5vw, 4.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 14ch;
  text-wrap: balance;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  font-weight: 700;
  color: #F4A574;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: white;
  padding: 0.95rem 1.5rem 0.95rem 1.65rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  box-shadow: 0 12px 40px rgba(232, 90, 26, 0.35);
}

.btn-primary:hover { background: var(--orange-deep); }
.btn-primary:active { transform: scale(0.98); }

.btn-icon-wrap {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease-out);
}

.btn-primary:hover .btn-icon-wrap {
  transform: translate(2px, -2px) scale(1.05);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: white;
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transition: border-color 0.5s var(--ease-out), background 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.btn-secondary:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:active { transform: scale(0.98); }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-num {
  font-family: var(--font);
  font-size: 2.5rem;
  font-weight: 400;
  color: white;
  line-height: 1;
}

.stat-num span { color: #F4A574; }

.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

section {
  padding: 6rem 1.5rem;
}

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-title em {
  font-style: italic;
  color: var(--orange);
}

.section-desc {
  margin-top: 1rem;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 32rem;
}

#services {
  background: var(--cream-dark);
}

.services-header {
  margin-bottom: 3.5rem;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  scrollbar-width: none;
  cursor: grab;
  padding-bottom: 0.5rem;
}

.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.dragging { cursor: grabbing; }

.service-shell {
  flex: 0 0 min(340px, 85vw);
  scroll-snap-align: start;
  padding: 0.4rem;
  background: rgba(28, 20, 16, 0.04);
  border-radius: 2rem;
  border: 1px solid var(--hairline);
}

.service-card {
  background: var(--white);
  border-radius: calc(2rem - 0.4rem);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.7s var(--ease-out);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover { transform: translateY(-4px); }

.service-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.service-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-family: var(--font);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.service-card-desc {
  font-size: 0.86rem;
  color: var(--gray);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.5rem;
}

.btn-consult {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  background: var(--espresso);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem 0.75rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.btn-consult:hover { background: var(--orange); }
.btn-consult:active { transform: scale(0.98); }

.btn-consult .btn-icon-wrap {
  width: 1.65rem;
  height: 1.65rem;
  background: rgba(255, 255, 255, 0.15);
}

.btn-consult .btn-icon-wrap svg { width: 12px; height: 12px; fill: white; }

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(28, 20, 16, 0.08);
  transition: background 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.carousel-btn:hover {
  background: var(--espresso);
  transform: scale(0.96);
}

.carousel-btn:hover svg { stroke: white; }

.carousel-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--espresso);
  fill: none;
  stroke-width: 2;
  transition: stroke 0.4s;
}

.carousel-dots { display: flex; gap: 0.5rem; margin-left: 0.5rem; }

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(28, 20, 16, 0.15);
  cursor: pointer;
  transition: all 0.5s var(--ease-out);
}

.carousel-dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 999px;
}

#process {
  background: #0A0A0A;
  color: white;
}

#process .section-eyebrow { color: #F4A574; }
#process .section-title { color: white; }
#process .section-desc { color: rgba(255, 255, 255, 0.5); }

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.process-shell {
  padding: 0.4rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-card {
  padding: 2.25rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: calc(2rem - 0.4rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  height: 100%;
  transition: transform 0.7s var(--ease-out), background 0.7s var(--ease-out);
}

.process-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
}

.process-card.final {
  background: rgba(232, 90, 26, 0.12);
  border: 1px solid rgba(232, 90, 26, 0.25);
}

.process-num {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F4A574;
  margin-bottom: 1rem;
}

.process-title {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.process-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}

#why {
  background: var(--cream);
}

.why-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.why-shell {
  padding: 0.4rem;
  background: rgba(28, 20, 16, 0.04);
  border-radius: 2rem;
  border: 1px solid var(--hairline);
}

.why-shell:nth-child(1) { grid-column: span 5; }
.why-shell:nth-child(2) { grid-column: span 4; }
.why-shell:nth-child(3) { grid-column: span 3; }

.why-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: calc(2rem - 0.4rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  height: 100%;
  transition: transform 0.7s var(--ease-out);
}

.why-card:hover { transform: translateY(-4px); }

.why-card h3 {
  font-family: var(--font);
  font-size: 1.65rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
}

#contact { background: var(--cream-dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-info { display: flex; flex-direction: column; gap: 1rem; }

.contact-shell {
  padding: 0.35rem;
  background: rgba(28, 20, 16, 0.04);
  border-radius: 1.25rem;
  border: 1px solid var(--hairline);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border-radius: calc(1.25rem - 0.35rem);
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s var(--ease-out);
}

.contact-item:hover { transform: translateX(4px); }

.contact-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(232, 90, 26, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
}

.contact-item-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 0.25rem;
}

.contact-item-value {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-cta-shell {
  padding: 0.5rem;
  background: rgba(28, 20, 16, 0.08);
  border-radius: 2rem;
}

.contact-cta-card {
  background: var(--espresso);
  border-radius: calc(2rem - 0.5rem);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.contact-cta-card::before {
  content: "";
  position: absolute;
  bottom: -6rem;
  right: -4rem;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(232, 90, 26, 0.25) 0%, transparent 70%);
}

.contact-cta-card .section-title { color: white; font-size: 2rem; }
.contact-cta-card .section-eyebrow { color: #F4A574; }
.contact-cta-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 1rem 0 2rem;
  position: relative;
}

.about-hero {
  padding: 9rem 1.5rem 5rem;
  background: var(--espresso);
  color: white;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(232, 90, 26, 0.2) 0%, transparent 70%);
}

.about-hero .container { position: relative; z-index: 1; }

.about-hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.about-quote {
  font-family: var(--font);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 20ch;
  text-wrap: balance;
  margin-bottom: 2rem;
}

.about-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  max-width: 42rem;
}

.about-content { padding: 5rem 1.5rem 6rem; }

.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.vm-shell {
  padding: 0.4rem;
  background: rgba(28, 20, 16, 0.04);
  border-radius: 2rem;
  border: 1px solid var(--hairline);
}

.vm-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: calc(2rem - 0.4rem);
  height: 100%;
}

.vm-card h3 {
  font-family: var(--font);
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.vm-card p,
.vm-card li {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
}

.vm-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.vm-card li {
  padding-left: 1.25rem;
  position: relative;
}

.vm-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.about-cta-wrap {
  margin-top: 3rem;
  text-align: center;
}

footer {
  background: var(--white);
  color: var(--gray);
  padding: 2.5rem 1.5rem;
  font-size: 0.8rem;
  border-top: 1px solid var(--hairline);
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-brand {
  display: block;
  text-decoration: none;
}

footer span { color: var(--orange); font-weight: 600; }

.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition: transform 0.5s var(--ease-out);
  text-decoration: none;
}

.wa-float:hover { transform: scale(1.06); }
.wa-float:active { transform: scale(0.96); }
.wa-float img { width: 32px; height: 32px; object-fit: contain; }

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
}

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

@media (max-width: 992px) {
  .process-grid { grid-template-columns: 1fr; }
  .why-shell:nth-child(1),
  .why-shell:nth-child(2),
  .why-shell:nth-child(3) { grid-column: span 12; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .vision-mission { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 4.5rem 1rem; }
  .hero-inner { padding: 7rem 1rem 6rem; }
  .hero-stats { gap: 2rem; }
  .stat-num { font-size: 2rem; }
}
