:root {
  --bg: #fff6ef;
  --bg-2: #fffaf5;
  --panel: #ffffff;
  --line: #f2d5bf;
  --text: #2b1b12;
  --muted: #7a5a48;
  --accent: #f97316;
  --accent-2: #ea580c;
  --radius: 18px;
  --shell: min(1160px, 92vw);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(50vw 50vw at 100% -10%, #f9731630, transparent 60%),
    radial-gradient(60vw 60vw at -10% 25%, #fb923c24, transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .09;
  background-image: radial-gradient(#9a5f3e45 0.5px, transparent 0.5px);
  background-size: 3px 3px;
}

img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: #fffaf6de;
  backdrop-filter: blur(8px);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand { margin-right: auto; }
.brand img {
  width: 158px;
  filter: drop-shadow(0 2px 6px #ea580c33);
}

.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1.05rem;
}

.menu a {
  color: var(--text);
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}

.nav-cta,
.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: .65rem 1rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.nav-cta {
  color: #ffffff;
  background: linear-gradient(130deg, #fb923c, var(--accent));
}

.menu-toggle {
  display: none;
  border: 1px solid #d9a17d;
  background: transparent;
  color: var(--text);
  border-radius: 10px;
  padding: .45rem .8rem;
}

.hero {
  padding: 3.7rem 0 3rem;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 1.8rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 .9rem;
  color: #c2410c;
  letter-spacing: .08em;
  font-size: .78rem;
  text-transform: uppercase;
  font-weight: 700;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  line-height: 1.08;
}

h1 { font-size: clamp(2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.7rem); }

.lead {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(130deg, #fb923c, var(--accent));
}

.btn-ghost {
  color: var(--text);
  border: 1px solid #e6b594;
  background: #ffffff;
}

.hero-media {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff4ea;
  padding: .9rem;
  position: relative;
  overflow: hidden;
}

.hero-main {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
}

.hero-float {
  position: absolute;
  width: 34%;
  left: 1rem;
  bottom: 1rem;
  border-radius: 12px;
  border: 1px solid #f0c6a8;
  transform: rotate(-4deg);
  background: #fff;
}

.section { padding: 4rem 0; }
.section-head { margin-bottom: 1.3rem; }

.label {
  margin: 0 0 .45rem;
  color: #c2410c;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .75rem;
  font-weight: 700;
}

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

.process-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 1.15rem;
  box-shadow: 0 8px 24px #1f29370d;
}

.process-card span {
  display: inline-block;
  margin-bottom: .6rem;
  color: var(--accent);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.process-card h3 { margin-bottom: .45rem; }
.process-card p,
.contact-card p { color: var(--muted); }

.filters {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.chip {
  border: 1px solid #e7ba98;
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: .43rem .8rem;
  cursor: pointer;
}

.chip.active {
  background: linear-gradient(130deg, #fdba74, var(--accent-2));
  color: #ffffff;
  border-color: transparent;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}

.gallery-item {
  border: 1px solid var(--line);
  padding: .5rem;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  cursor: zoom-in;
  min-height: 230px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .3s ease;
  background: #fff;
}

.gallery-item:hover img { transform: scale(1.03); }
.gallery-item.wide,
.gallery-item.tall {
  grid-column: auto;
  grid-row: auto;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-card a { color: #c2410c; }
.contact-card .dev { margin-top: 1rem; }

.contact iframe {
  width: 100%;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 1.2rem;
  background: #fff;
}

.footer-row {
  min-height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: .92rem;
}

.footer-row a {
  color: #c2410c;
  text-decoration: none;
}

.lightbox {
  width: min(94vw, 1080px);
  border: 0;
  padding: 0;
  background: #fff;
}

.lightbox::backdrop { background: #000d; }

.lightbox img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  background: #fff;
}

.page-hero {
  padding-bottom: 1rem;
}

.about-hero {
  padding-bottom: 0.6rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
}

.about-story h2 {
  margin-bottom: 0.8rem;
}

.about-media {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 0.7rem;
  box-shadow: 0 8px 24px #1f29370d;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: contain;
  border-radius: 12px;
  border: 0;
}

.about-visual {
  min-height: 340px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff8f2, #ffffff);
  border: 1px solid var(--line);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.75rem;
  padding: 1rem;
}

.about-visual p {
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-weight: 600;
}

.about-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.timeline-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 1rem;
  box-shadow: 0 8px 24px #1f29370d;
}

.timeline-card span {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--accent-2);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.timeline-card h3 {
  margin-bottom: 0.45rem;
}

.timeline-card p {
  margin: 0;
  color: var(--muted);
}

.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 1.15rem;
  box-shadow: 0 8px 24px #1f29370d;
}

.content-card p {
  color: var(--muted);
  margin: 0 0 0.8rem;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.owners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.owner-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 1.15rem;
  box-shadow: 0 8px 24px #1f29370d;
}

.owner-card h3 {
  margin-bottom: 0.6rem;
}

.owner-card p {
  color: var(--muted);
  margin: 0 0 0.45rem;
}

.owner-card a {
  color: #c2410c;
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid #1fa855;
  background: linear-gradient(130deg, #34d06a, #25d366);
  color: #ffffff;
  text-decoration: none;
  padding: 0.58rem 0.88rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  box-shadow: 0 12px 24px #25d36657;
  animation: whatsapp-pulse 1.8s ease-in-out infinite;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  animation: whatsapp-icon-wave 1.2s ease-in-out infinite;
  transform-origin: 50% 60%;
}

@keyframes whatsapp-pulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 12px 24px #25d36657;
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px #25d36673;
  }
}

@keyframes whatsapp-icon-wave {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(8deg); }
  40% { transform: rotate(-6deg); }
  60% { transform: rotate(4deg); }
  80% { transform: rotate(-2deg); }
}

.close-btn {
  position: absolute;
  right: .65rem;
  top: .65rem;
  border: 1px solid #e2b391;
  border-radius: 999px;
  background: #fff;
  padding: .35rem .7rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: var(--delay, 0s);
}

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

@media (max-width: 1020px) {
  .hero,
  .process-grid,
  .contact { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .owners-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-timeline { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .nav-cta { display: none; }

  .brand img { width: 136px; }

  .menu {
    position: absolute;
    top: 84px;
    left: 4vw;
    right: 4vw;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: .8rem;
    display: none;
    flex-direction: column;
    gap: .8rem;
  }

  .menu.open { display: flex; }

  .hero { padding-top: 2.6rem; }

  .hero-media { min-height: 340px; }
  .hero-main { min-height: 310px; }
  .hero-float { width: 40%; }

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

  .footer-row {
    min-height: auto;
    padding: .9rem 0;
    flex-direction: column;
    text-align: center;
    gap: .3rem;
  }

  .whatsapp-float {
    right: 10px;
    bottom: 10px;
    padding: 0.55rem 0.75rem;
    font-size: 0.9rem;
  }
}
