:root {
  --earth: #985e3b;
  --olive: #5c664a;
  --stone: #aea586;
  --base: #eee5d5;
  --ink: #25231f;
  --muted: #6e685e;
  --paper: #fbf8f1;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(37, 35, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 7px;
  color: var(--white);
  background: var(--earth);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(37, 35, 31, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.brand img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 32px);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--earth);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 35, 31, 0.16);
}

.btn-primary {
  color: var(--white);
  background: var(--earth);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(37, 35, 31, 0.28);
}

.btn-secondary.solid {
  color: var(--olive);
  border-color: var(--olive);
  background: transparent;
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 5vw, 76px) 34px;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(37, 35, 31, 0.78), rgba(37, 35, 31, 0.22) 58%, rgba(37, 35, 31, 0.58)), url("https://i.postimg.cc/7hw4KMV2/foto-7.jpg") center / cover;
  transform: scale(1.03);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
  padding-bottom: clamp(32px, 7vh, 92px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--earth);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--base);
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 6.9rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 650px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

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

.conversion-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(20px, 5vw, 76px);
  color: var(--white);
  background: var(--olive);
}

.conversion-strip div {
  display: grid;
  gap: 5px;
}

.conversion-strip strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
  line-height: 1.08;
}

.conversion-strip span {
  color: rgba(255, 255, 255, 0.82);
}

section {
  scroll-margin-top: 92px;
}

.section-band,
.services,
.about,
.remote,
.faq,
.contact {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 76px);
}

.section-band {
  background: var(--base);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p:last-child {
  margin: 16px auto 0;
  max-width: 670px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.mobile-carousel-label {
  display: none;
}

.benefit-grid article,
.service-grid article,
.review-grid article,
.process-grid article,
.contact-form {
  padding: 28px;
  border: 1px solid rgba(92, 102, 74, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 35px rgba(37, 35, 31, 0.06);
}

.icon,
.service-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--olive);
  font-weight: 900;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(300px, 1.14fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-copy p {
  color: var(--muted);
}

.about-copy .eyebrow {
  color: var(--olive);
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.credentials span {
  padding: 8px 12px;
  border: 1px solid rgba(92, 102, 74, 0.25);
  border-radius: 999px;
  color: var(--olive);
  background: #f3efe5;
  font-size: 0.9rem;
  font-weight: 800;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
}

.project-tile {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.project-tile.tall {
  grid-row: span 2;
  grid-column: span 2;
}

.project-tile.wide {
  grid-column: span 2;
}

.project-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.project-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(37, 35, 31, 0.08), rgba(37, 35, 31, 0.68));
}

.project-tile span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
  font-weight: 900;
}

.project-tile:hover img {
  transform: scale(1.07);
  filter: saturate(1.08);
}

.services {
  background: var(--paper);
}

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

.process-grid article {
  background: rgba(255, 255, 255, 0.62);
}

.process-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--earth);
  font-weight: 900;
}

.remote {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), #3d4232);
}

.remote .eyebrow {
  color: var(--base);
}

.remote-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.remote-points {
  display: grid;
  gap: 12px;
}

.remote-points span {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.quote-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 34px;
  padding: 26px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--olive), #38402e);
}

.quote-strip strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.review-top {
  display: flex;
  gap: 14px;
  align-items: center;
}

.review-top img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.review-top span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.stars {
  margin: 18px 0 8px;
  color: var(--earth);
  font-weight: 900;
}

.faq {
  background: var(--paper);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(92, 102, 74, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 35px rgba(37, 35, 31, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  background: #f7f1e6;
}

.contact-copy p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  font-weight: 800;
}

.contact-list a {
  color: var(--olive);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(92, 102, 74, 0.25);
  border-radius: 7px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) minmax(320px, 1.6fr);
  gap: clamp(30px, 6vw, 84px);
  padding: clamp(54px, 7vw, 86px) clamp(20px, 5vw, 76px) 28px;
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(135deg, rgba(152, 94, 59, 0.94), rgba(83, 53, 38, 0.98)),
    var(--earth);
  text-align: left;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 22px;
}

.footer-brand img {
  max-height: 82px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 46px);
}

.site-footer nav,
.footer-contact,
.footer-service {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer strong {
  margin-bottom: 6px;
  color: var(--base);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer a,
.footer-service span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #2e7d32;
  box-shadow: 0 18px 38px rgba(37, 35, 31, 0.28);
  font-size: 1.35rem;
  font-weight: 900;
}

.floating-whatsapp.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .nav-links.is-open {
    position: absolute;
    top: 81px;
    left: 16px;
    right: 16px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 8px;
    background: rgba(37, 35, 31, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open a {
    padding: 14px 12px;
  }

  .benefit-grid,
  .service-grid,
  .review-grid,
  .process-grid,
  .about,
  .remote,
  .contact,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-columns,
  .footer-bottom {
    grid-column: 1 / -1;
  }

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

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

  .project-tile.tall,
  .project-tile.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand img {
    height: 44px;
  }

  .hero {
    min-height: 90vh;
    padding: 112px 18px 24px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .hero-actions,
  .conversion-strip,
  .quote-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .benefit-grid,
  .service-grid,
  .review-grid,
  .process-grid,
  .about,
  .remote,
  .contact,
  .site-footer,
  .footer-columns,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

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

  .mobile-carousel-shell {
    margin-inline: -18px;
    padding-left: 18px;
  }

  .mobile-carousel-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: -8px 18px 14px 0;
    color: var(--olive);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-carousel-label::after {
    flex: 1;
    height: 1px;
    content: "";
    background: rgba(92, 102, 74, 0.24);
  }

  .mobile-carousel {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 18px 16px 0;
    scroll-padding-left: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-carousel::-webkit-scrollbar {
    display: none;
  }

  .mobile-carousel > article,
  .mobile-carousel > a {
    flex: 0 0 min(84vw, 330px);
    min-height: 235px;
    scroll-snap-align: start;
  }

  .service-grid.mobile-carousel > article,
  .benefit-grid.mobile-carousel > article,
  .process-grid.mobile-carousel > article {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .section-heading {
    text-align: left;
  }

  .portfolio-grid {
    grid-auto-rows: 280px;
  }

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

  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}
