:root {
  --ink: #1f1711;
  --muted: #6e6258;
  --paper: #fffaf3;
  --cream: #f4eadc;
  --wood: #9a541f;
  --orange: #d86d1c;
  --orange-dark: #a94e18;
  --green: #2f4d39;
  --coffee: #2b1a10;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;
  --line: #e2d4c5;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(54, 35, 20, .16);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 250, 243, .96);
  border-bottom: 1px solid rgba(154, 84, 31, .18);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 280px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  border: 1px solid rgba(154, 84, 31, .24);
  background: var(--white);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.15;
}

.brand small {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.main-nav {
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 14px;
  color: #44362c;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--orange-dark);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-decoration: none;
  min-height: 44px;
  padding: 12px 18px;
}

.header-cta {
  color: var(--white);
  background: var(--whatsapp-dark);
  white-space: nowrap;
}

.whatsapp-link {
  gap: 9px;
}

.wa-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: inline-block;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.03 3.2A12.6 12.6 0 0 0 5.1 25.1L3.5 30l5.05-1.56A12.6 12.6 0 1 0 16.03 3.2Zm0 2.35a10.25 10.25 0 0 1 8.62 15.77 10.19 10.19 0 0 1-12.2 3.6l-.43-.2-3 .93.96-2.9-.28-.47A10.25 10.25 0 0 1 16.03 5.55Zm-4.08 5.44c-.22 0-.57.08-.87.41-.3.33-1.14 1.12-1.14 2.73s1.17 3.16 1.34 3.38c.16.22 2.26 3.62 5.62 4.93 2.8 1.1 3.36.88 3.97.82.6-.06 1.94-.8 2.22-1.56.27-.77.27-1.42.19-1.56-.08-.14-.3-.22-.63-.39-.33-.16-1.94-.96-2.24-1.07-.3-.11-.52-.16-.74.17-.22.33-.85 1.07-1.04 1.3-.19.22-.39.25-.72.08-.33-.16-1.39-.51-2.65-1.63-.98-.87-1.64-1.95-1.83-2.28-.19-.33-.02-.51.14-.67.15-.14.33-.39.5-.58.16-.19.22-.33.33-.55.11-.22.06-.41-.03-.58-.08-.16-.74-1.78-1.01-2.44-.27-.64-.54-.55-.74-.56l-.63-.01Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  color: var(--white);
  background: var(--coffee);
  overflow: hidden;
}

.hero-slider {
  position: relative;
  min-height: calc(100vh - 88px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: clamp(34px, 7vw, 92px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.25s ease;
  background-image:
    linear-gradient(90deg, rgba(33, 20, 12, .88) 0%, rgba(45, 25, 12, .76) 42%, rgba(45, 25, 12, .28) 100%),
    var(--slide-image);
  background-size: cover;
  background-position: center 58%;
}

.hero-slide::before,
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-slide::before {
  background: radial-gradient(circle at 74% 42%, rgba(255, 204, 145, .14), transparent 34%);
  opacity: .65;
}

.hero-slide::after {
  transform: translateX(-120%) skewX(-18deg);
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 234, 204, .22), transparent);
  opacity: 0;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide.is-active::after {
  animation: floorShine 6.5s ease-in-out infinite;
}

.hero-slide-before {
  background-image:
    linear-gradient(90deg, rgba(33, 20, 12, .92) 0%, rgba(56, 34, 19, .78) 45%, rgba(75, 46, 24, .38) 100%),
    var(--slide-image);
  filter: saturate(.84) brightness(.86) contrast(.98);
}

.hero-slide-before::before {
  background:
    linear-gradient(90deg, rgba(31, 23, 17, .22), transparent 62%),
    radial-gradient(circle at 74% 38%, rgba(255, 204, 145, .08), transparent 32%);
  opacity: .75;
}

.hero-slide-after {
  background-image:
    linear-gradient(90deg, rgba(33, 20, 12, .72) 0%, rgba(95, 45, 12, .34) 42%, rgba(255, 177, 106, .12) 100%),
    var(--slide-image);
  filter: saturate(1.18) brightness(1.08) contrast(1.08);
}

.hero-slide-after::before {
  background:
    radial-gradient(circle at 72% 36%, rgba(255, 230, 187, .42), transparent 30%),
    radial-gradient(circle at 68% 74%, rgba(255, 255, 255, .18), transparent 28%),
    linear-gradient(135deg, transparent 38%, rgba(255, 255, 255, .22) 52%, transparent 68%);
  opacity: .9;
}

@keyframes floorShine {
  0% {
    opacity: 0;
    transform: translateX(-125%) skewX(-18deg);
  }
  32% {
    opacity: .85;
  }
  72% {
    opacity: .35;
    transform: translateX(245%) skewX(-18deg);
  }
  100% {
    opacity: 0;
    transform: translateX(245%) skewX(-18deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(700px, 100%);
  padding: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .26);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
}

.hero .eyebrow {
  color: #ffb16a;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 700;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-copy {
  margin: 22px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, .88);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(16px, 1.6vw, 19px);
}

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

.btn.primary {
  color: var(--white);
  background: var(--whatsapp-dark);
  box-shadow: 0 12px 28px rgba(18, 140, 74, .24);
}

.btn.primary:hover {
  background: #0f7d42;
}

.btn.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .28);
}

.hero-stats {
  position: absolute;
  left: clamp(18px, 7vw, 92px);
  right: clamp(18px, 7vw, 92px);
  bottom: clamp(18px, 4vw, 36px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 0;
}

.hero-stats div {
  position: relative;
  overflow: hidden;
  padding: 20px 16px;
  border: 1px solid rgba(255, 214, 164, .26);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .05)),
    rgba(43, 26, 16, .42);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 14px 32px rgba(0, 0, 0, .16);
  backdrop-filter: blur(8px);
}

.hero-stats div::after {
  content: "";
  position: absolute;
  inset: -20% auto -20% -55%;
  width: 36%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 232, 199, .28), transparent);
  animation: statShine 5.4s ease-in-out infinite;
}

.hero-stats div:nth-child(2)::after {
  animation-delay: .9s;
}

.hero-stats div:nth-child(3)::after {
  animation-delay: 1.8s;
}

.hero-stats dt {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #ffd4ad;
}

.hero-stats dd {
  font-family: Arial, Helvetica, sans-serif;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

@keyframes statShine {
  0% { left: -55%; opacity: 0; }
  35% { opacity: .75; }
  70% { left: 120%; opacity: 0; }
  100% { left: 120%; opacity: 0; }
}

.hero-controls {
  position: absolute;
  z-index: 4;
  right: clamp(18px, 5vw, 58px);
  bottom: clamp(28px, 5vw, 52px);
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 34px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .42);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--orange);
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.section-band {
  background: var(--cream);
  border-block: 1px solid var(--line);
}

.intro {
  padding: 58px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.intro-grid p:last-child {
  margin: 34px 0 0;
  color: #4a3d34;
  font-size: 18px;
}

.services,
.gallery-section,
.process,
.quote {
  padding: clamp(64px, 8vw, 104px) 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(22px, 4vw, 70px);
  align-items: end;
}

.section-heading.split p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 10px 34px rgba(64, 44, 26, .06);
}

.service-grid span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--orange);
  font-weight: 800;
}

.service-grid p,
.steps p,
.coverage p,
.quote p {
  margin: 0;
  color: var(--muted);
}

.gallery-section {
  background: #201711;
  color: var(--white);
}

.gallery-section .section-heading p,
.gallery-section .section-heading.split p:last-child {
  color: rgba(255, 255, 255, .74);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
}

.gallery-item {
  padding: 0;
  border: 0;
  border-radius: 7px;
  overflow: hidden;
  background: #332318;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

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

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.process-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(28px, 5vw, 80px);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.steps span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-weight: 800;
}

.coverage {
  padding: 64px 0;
}

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

.coverage-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.coverage-list li {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
}

.quote-box {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  color: var(--white);
  background: var(--coffee);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.location {
  padding: clamp(64px, 8vw, 104px) 0;
  background: #fff6ea;
  border-top: 1px solid var(--line);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.location-copy p {
  margin: 18px 0 26px;
  max-width: 600px;
  color: var(--muted);
  font-size: 17px;
}

.map-frame {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(154, 84, 31, .2);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--whatsapp);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(18, 140, 74, .34);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.floating-whatsapp .wa-icon {
  width: 26px;
  height: 26px;
}

.quote-box h2 {
  max-width: 760px;
}

.quote-box p {
  color: rgba(255, 255, 255, .78);
  margin-top: 16px;
}

.contact-panel {
  padding: 24px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 7px;
}

.btn.full {
  width: 100%;
}

.contact-panel p {
  margin: 16px 0 0;
  font-size: 14px;
}

.contact-panel strong {
  color: var(--white);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: rgba(255, 255, 255, .72);
  background: #18110d;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffb16a;
  text-decoration: none;
}

.footer-rights {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, .62);
}

.creator-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
}

.creator-mark {
  position: relative;
  width: 25px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  padding-left: 4px;
  color: rgba(255, 255, 255, .78);
  background: transparent;
  border-radius: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: none;
}

.creator-mark::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, .78);
  border-radius: 50%;
  transform: translateY(-50%);
}

.creator-credit:hover .creator-mark {
  color: var(--white);
}

.creator-credit:hover .creator-mark::before {
  background: var(--white);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(19, 12, 8, .88);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: 82vh;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--orange);
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .intro-grid,
  .section-heading.split,
  .process-grid,
  .coverage-grid,
  .quote-box,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-slider,
  .hero-slide {
    min-height: 620px;
  }

  .hero-slide {
    align-items: flex-start;
    padding-top: 72px;
    background-image:
      linear-gradient(180deg, rgba(33, 20, 12, .9) 0%, rgba(45, 25, 12, .72) 56%, rgba(45, 25, 12, .34) 100%),
      var(--slide-image);
  }

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

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 340px;
    height: 340px;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .header-cta {
    width: auto;
  }

  h1 {
    font-size: 34px;
  }

  .hero-content {
    padding: 0;
  }

  .hero-slide {
    min-height: 650px;
    padding: 52px 18px 160px;
  }

  .hero-stats,
  .service-grid,
  .coverage-list {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    left: 18px;
    right: 18px;
    bottom: 18px;
    gap: 8px;
  }

  .hero-stats div {
    padding: 12px;
  }

  .hero-controls {
    right: 18px;
    bottom: 138px;
  }

  .gallery {
    display: block;
  }

  .gallery-item {
    width: 100%;
    height: 230px;
    margin-bottom: 12px;
  }

  .steps li {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 10px;
  }

  .footer-rights {
    justify-content: flex-start;
    margin-top: 10px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 52px;
    padding: 13px 15px;
  }
}
