:root {
  --bg: #f4efe8;
  --bg-soft: #ede3d5;
  --panel: rgba(255, 251, 245, 0.76);
  --surface: #fffaf3;
  --text: #1b1714;
  --muted: #6b5e55;
  --line: rgba(27, 23, 20, 0.12);
  --accent: #8c5b35;
  --accent-deep: #6b4020;
  --dark: #16120f;
  --shadow: 0 24px 60px rgba(35, 24, 16, 0.14);
  --shadow-soft: 0 18px 30px rgba(35, 24, 16, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 32px));
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(173, 128, 84, 0.15), transparent 30%),
    linear-gradient(180deg, #f8f3eb 0%, #f3ece1 100%);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
img,
div {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.intro {
  position: relative;
  overflow: hidden;
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 243, 235, 0.95) 0%, rgba(248, 243, 235, 0.82) 42%, rgba(248, 243, 235, 0.9) 100%),
    url("https://images.unsplash.com/photo-1493663284031-b7e3aefcae8e?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  transform: scale(1.04);
}

.intro .split-head {
  position: relative;
  z-index: 1;
  padding: 42px;
  border-radius: 30px;
  background: rgba(255, 251, 245, 0.55);
  border: 1px solid rgba(140, 91, 53, 0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 38px rgba(33, 22, 15, 0.08);
}

.site-header {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 50;
  transition: transform 220ms ease;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  min-height: 78px;
  background: rgba(255, 249, 241, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(33, 22, 15, 0.1);
  transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease, min-height 220ms ease, border-radius 220ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.brand strong,
.nav-links a,
.btn,
h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.brand small {
  color: var(--muted);
  font-size: 0.8rem;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 30%, #d9b184, #9a6538 70%),
    #9a6538;
  box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.24), 0 10px 18px rgba(140, 91, 53, 0.18);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c28a5f, #8c5b35);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(140, 91, 53, 0.18);
  background: rgba(140, 91, 53, 0.08);
  color: var(--accent-deep);
  font-family: "Sora", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: rgba(140, 91, 53, 0.14);
  box-shadow: 0 10px 20px rgba(140, 91, 53, 0.12);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(140, 91, 53, 0.08);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.menu-toggle:hover {
  background: rgba(140, 91, 53, 0.14);
  transform: translateY(-1px);
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.nav.is-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.nav.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.site-header.is-scrolled .nav {
  min-height: 70px;
  background: rgba(255, 248, 238, 0.84);
  border-color: rgba(140, 91, 53, 0.12);
  box-shadow: 0 18px 42px rgba(33, 22, 15, 0.14);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: slowZoom 18s ease-out forwards;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 10, 8, 0.78) 0%, rgba(13, 10, 8, 0.46) 48%, rgba(13, 10, 8, 0.18) 100%),
    linear-gradient(180deg, rgba(13, 10, 8, 0.08) 0%, rgba(13, 10, 8, 0.48) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 172px 0 72px;
  color: #fffaf4;
  max-width: 720px;
}

.eyebrow,
.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
}

.eyebrow {
  color: rgba(255, 244, 232, 0.82);
}

.hero-title {
  margin: 16px 0 14px;
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-subtitle {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  color: #f1d2b1;
}

.hero-copy {
  max-width: 600px;
  margin: 18px 0 0;
  font-size: 1.05rem;
  color: rgba(255, 247, 238, 0.84);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-primary {
  background: linear-gradient(135deg, #ab744a, #8a5530);
  color: #fff9f3;
  box-shadow: 0 12px 24px rgba(138, 85, 48, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ba8358, #955e37);
}

.btn-secondary {
  background: rgba(255, 250, 243, 0.12);
  color: #fffaf3;
  border-color: rgba(255, 250, 243, 0.3);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 250, 243, 0.2);
}

.btn-dark {
  background: var(--dark);
  color: #fff8ef;
}

.btn-large {
  min-width: 190px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero-meta div {
  min-width: 180px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 244, 0.12);
  border: 1px solid rgba(255, 250, 244, 0.18);
  backdrop-filter: blur(10px);
}

.hero-meta strong,
.stat-card strong {
  display: block;
  font-size: 1.8rem;
}

.hero-meta span,
.stat-card span {
  color: rgba(255, 244, 232, 0.74);
}

.split-head,
.location-grid,
.trust-panel,
.cta-panel {
  display: grid;
  gap: 28px;
}

.split-head,
.trust-panel,
.cta-panel {
  grid-template-columns: 1.2fr 0.9fr;
}

.split-head h2,
.section-head h2,
.trust-copy h2,
.cta-panel h2,
.location-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.split-head p:last-child,
.section-head p:last-child,
.trust-copy p:last-child,
.location-copy p:last-child {
  color: var(--muted);
  font-size: 1rem;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-tag {
  color: var(--accent);
}

.product-grid,
.feature-grid,
.work-grid {
  display: grid;
  gap: 24px;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card,
.feature-card,
.work-card,
.stat-card,
.cta-panel,
.trust-panel,
.location-copy {
  background: rgba(255, 251, 245, 0.78);
  border: 1px solid rgba(116, 86, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.product-card,
.feature-card,
.stat-card,
.location-copy {
  border-radius: var(--radius-md);
}

.product-card {
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover,
.feature-card:hover,
.work-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.card-image {
  aspect-ratio: 0.9;
  overflow: hidden;
}

.card-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.product-card:hover .card-image img {
  transform: scale(1.08);
}

.card-body,
.feature-card,
.location-copy {
  padding: 24px;
}

.card-body h3,
.feature-card h3,
.work-copy h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.card-body p,
.feature-card p,
.work-copy p,
.cta-panel p,
.trust-copy p {
  margin: 0;
  color: var(--muted);
}

.features {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.4), rgba(231, 219, 204, 0.24));
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(171, 116, 74, 0.18), rgba(140, 91, 53, 0.08));
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--accent-deep);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.work-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-card {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: var(--radius-lg);
}

.work-card img {
  position: absolute;
  inset: -10% 0 0;
  height: 120%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 10, 7, 0.02), rgba(15, 10, 7, 0.74));
}

.work-copy {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 1;
  color: #fff8f2;
}

.work-copy p {
  color: rgba(255, 246, 236, 0.8);
}

.trust-panel,
.cta-panel {
  padding: 38px;
  border-radius: 32px;
}

.trust {
  padding-top: 24px;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  display: grid;
  align-content: end;
  min-height: 180px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.9), rgba(239, 229, 216, 0.82));
}

.stat-card strong {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--accent-deep);
}

.stat-card span {
  color: var(--muted);
}

.cta-panel {
  align-items: center;
  background: linear-gradient(135deg, #fff8ef, #eadfce);
}

.location-grid {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  color: var(--muted);
}

.contact-list strong {
  color: var(--text);
}

.map-wrap {
  min-height: 440px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
}

.site-footer {
  padding: 28px 0 46px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #25d366;
  color: white;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(37, 211, 102, 0.32);
  animation: pulse 2.4s infinite;
}

.floating-whatsapp::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes slowZoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1.02);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 18px 30px rgba(37, 211, 102, 0.32);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 20px 36px rgba(37, 211, 102, 0.42);
  }
}

@media (max-width: 1080px) {
  .product-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-grid,
  .split-head,
  .trust-panel,
  .cta-panel,
  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    inset: 12px 0 auto;
  }

  .nav {
    min-height: 68px;
    padding: 10px 12px 10px 14px;
    border-radius: 20px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.74rem;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
  }

  .nav-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    gap: 14px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 248, 238, 0.96);
    border: 1px solid rgba(140, 91, 53, 0.12);
    box-shadow: 0 18px 40px rgba(33, 22, 15, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .nav.is-open .nav-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links {
    display: grid;
    gap: 10px;
  }

  .nav-links a {
    padding: 10px 4px;
    border-bottom: 1px solid rgba(27, 23, 20, 0.08);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    min-height: 48px;
  }

  .hero-content {
    padding-top: 148px;
  }

  .intro .split-head {
    padding: 26px;
    border-radius: 22px;
  }

  .section {
    padding: 78px 0;
  }

  .product-grid,
  .feature-grid,
  .trust-stats {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card {
    min-height: 380px;
  }

  .trust-panel,
  .cta-panel {
    padding: 26px;
  }

  .footer-content {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .work-card img {
    transform: none !important;
  }
}
