:root {
  --bg: #f5efdc;
  --paper: #fbf6ea;
  --ink: #2b2118;
  --muted: #6b5d49;
  --line: #e3d8bd;
  --dark: #1d3b27;
  --dark-2: #16301f;
  --accent: #d9a900;
  --accent-dark: #b38600;
  --forest: #2e6b3e;
  --earth: #c1391f;
  --shadow: 0 24px 70px rgba(20, 16, 8, 0.2);
  --radius: 8px;
  --max: 1180px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(20, 20, 20, 0.035) 1px, transparent 1px) 0 0 / 84px 84px,
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

h1, h2, h3, .wordmark {
  font-family: var(--font-display);
}

body.menu-open {
  overflow: hidden;
}

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

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

:focus-visible {
  outline: 3px solid rgba(217, 169, 0, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
body:not(.page-home) .site-header {
  background: rgba(20, 38, 27, 0.96);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  line-height: 1;
}

.wordmark {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.wordmark-dot {
  color: var(--accent);
}

.brand-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  display: flex;
}

.brand-bar span {
  flex: 1;
}

.brand-bar span:nth-child(1) {
  background: var(--forest);
}

.brand-bar span:nth-child(2) {
  background: var(--accent);
}

.brand-bar span:nth-child(3) {
  background: var(--earth);
}

.pattern-svg {
  pointer-events: none;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  font-weight: 800;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.86);
}

.main-nav a:hover {
  color: #fff;
}

.nav-whatsapp {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: var(--earth);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  color: #fff;
  background: #1d3b27;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-media picture,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-panel {
  position: relative;
  z-index: 3;
  width: min(620px, 60%);
  min-height: 90vh;
  padding: 150px clamp(24px, 5vw, 60px) 70px;
  background: #1d3b27;
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-panel .pattern-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 0;
}

.rope-line {
  position: absolute;
  z-index: 2;
  top: -10%;
  width: 2px;
  height: 125%;
  background: linear-gradient(180deg, transparent, rgba(193, 57, 31, 0.92), transparent);
  transform: rotate(11deg);
  transform-origin: top;
  opacity: 0.8;
}

.rope-line-a {
  left: 67%;
}

.rope-line-b {
  left: 72%;
  opacity: 0.45;
}

.hero-tag {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  right: 36px;
  background: var(--earth);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.85rem;
  transform: rotate(-4deg);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-claim,
.section-label {
  margin: 0 0 14px;
  color: #ead9a3;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.3rem, 4.4vw, 3.4rem);
  line-height: 1.06;
  font-weight: 700;
}

.hero-content > p:not(.hero-claim) {
  max-width: 480px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.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: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(217, 169, 0, 0.28);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary,
.btn-light {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-light {
  border-color: rgba(20, 20, 20, 0.16);
  background: #fff;
  color: var(--ink);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.breadcrumbs a::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.45);
}

.marquee-wrap {
  overflow: hidden;
  padding: 26px 0;
  background: var(--bg);
}

.marquee {
  overflow: hidden;
  background: var(--accent);
  color: var(--dark);
  transform: rotate(-1.4deg);
  margin: 0 -40px;
  box-shadow: 0 10px 30px rgba(20, 16, 8, 0.18);
}

.marquee div {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee span {
  padding: 16px 0;
  color: var(--dark);
  font-size: clamp(1rem, 2vw, 1.42rem);
  font-weight: 950;
  white-space: nowrap;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.page-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section,
.content-block,
.final-cta {
  padding: clamp(62px, 8vw, 112px) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

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

.section-heading h2,
.content-block h2,
.final-cta h2,
.related-section h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.9vw, 2.7rem);
  line-height: 1.12;
  font-weight: 900;
}

.section-heading p,
.content-block p,
.final-cta p {
  color: var(--muted);
  font-size: 1.07rem;
}

.editorial-band {
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
  color: #fff;
  padding: clamp(60px, 8vw, 100px) 0;
}

.editorial-band .pattern-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.editorial-shell {
  position: relative;
  z-index: 2;
}

.editorial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.32;
  font-weight: 600;
  max-width: 820px;
  margin: 20px 0 22px;
  color: #f5efdc;
}

.editorial-text {
  max-width: 720px;
  color: rgba(245, 239, 220, 0.78);
  font-size: 1.07rem;
}

.quisom-band {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  clip-path: polygon(0 3.5%, 100% 0, 100% 96.5%, 0 100%);
  padding: clamp(80px, 9vw, 120px) 0;
  margin: -30px 0;
}

.quisom-band .pattern-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.32;
}

.quisom-shell {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
}

.quisom-shell img {
  width: clamp(180px, 18vw, 260px);
  flex-shrink: 0;
  filter: drop-shadow(0 16px 26px rgba(20, 16, 8, 0.3));
}

.quisom-shell .section-label {
  color: var(--dark);
}

.quisom-shell h2 {
  margin: 10px 0 12px;
  color: var(--dark);
}

.quisom-shell p {
  max-width: 540px;
  color: #43330f;
  font-weight: 600;
  font-size: 1.05rem;
}

.major-service-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 30px;
}

.bg-number {
  position: absolute;
  top: -50px;
  left: -16px;
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 700;
  color: rgba(46, 107, 62, 0.08);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.service-badge {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%) rotate(-6deg);
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
  box-shadow: 0 16px 32px rgba(20, 16, 8, 0.28);
  z-index: 3;
}

.major-service {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.major-service-grid .major-service:nth-child(2) {
  transform: rotate(-1deg);
}

.major-service-grid .major-service:nth-child(3) {
  transform: rotate(1.2deg);
  margin-top: 56px;
  margin-left: -26px;
  z-index: 2;
}

.major-service a {
  position: relative;
  display: grid;
  min-height: 590px;
  align-items: end;
  overflow: hidden;
}

.major-service img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.major-service:hover img {
  transform: scale(1.05);
}

.major-service a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.06));
}

.major-service div {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 4vw, 42px);
}

.major-service span,
.major-service strong {
  color: #ead9a3;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.major-service h3 {
  max-width: 540px;
  margin: 10px 0;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.08;
}

.major-service p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
}

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

.service-tile,
.related-grid a,
.zone-grid a,
.contact-panel,
.contact-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.88);
}

.service-tile {
  display: grid;
  min-height: 360px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(20, 16, 8, 0.14);
}

.service-tile img {
  width: 100%;
  aspect-ratio: 1.2 / 0.72;
  object-fit: cover;
}

.service-tile span,
.service-tile p {
  padding: 0 18px;
}

.service-tile span {
  padding-top: 18px;
  font-size: 1.12rem;
  font-weight: 950;
}

.service-tile p {
  margin: 8px 0 20px;
  color: var(--muted);
}

.process-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 250px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
}

.process-list span {
  display: block;
  color: var(--accent);
  font-weight: 950;
}

.process-list strong {
  display: block;
  margin-top: 28px;
  font-size: 1.18rem;
}

.process-list p {
  color: rgba(255, 255, 255, 0.7);
}

.service-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 70px);
}

.service-index {
  position: sticky;
  top: 92px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 24px;
  margin-top: 78px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 253, 250, 0.74);
  backdrop-filter: blur(12px);
}

.service-index a {
  color: var(--muted);
  font-weight: 850;
}

.service-index a:hover {
  color: var(--accent);
}

.content-block {
  max-width: 890px;
  border-bottom: 1px solid var(--line);
}

.content-block p {
  max-width: 820px;
}

.signal-list,
.step-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

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

.signal-list li,
.step-list li {
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  color: #2a2a2a;
  font-weight: 760;
}

.step-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-list span {
  color: var(--accent);
  font-weight: 950;
}

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

.gallery-grid figure {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
}

.gallery-grid figure:nth-child(1),
.gallery-grid figure:nth-child(4) {
  grid-column: span 3;
  min-height: 500px;
}

.gallery-grid figure:nth-child(2),
.gallery-grid figure:nth-child(3),
.gallery-grid figure:nth-child(5),
.gallery-grid figure:nth-child(6) {
  grid-column: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.045);
  filter: contrast(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 820;
}

.gallery-grid figcaption span {
  display: block;
  color: #e8d49a;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.gallery-band {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  padding: clamp(64px, 8vw, 104px) 0;
}

.gallery-band .pattern-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.gallery-band .page-shell {
  position: relative;
  z-index: 2;
}

.gallery-band .section-heading p {
  color: rgba(245, 239, 220, 0.72);
}

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

.gallery-mosaic figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-mosaic figure:hover img {
  transform: scale(1.05);
}

.mosaic-1 {
  grid-row: span 3;
}

.mosaic-2 {
  grid-row: span 2;
  margin-top: 40px;
}

.mosaic-3 {
  grid-row: span 4;
}

.mosaic-4 {
  grid-row: span 2;
  margin-top: 20px;
}

.mosaic-5 {
  grid-row: span 3;
}

.zone-section {
  border-top: 1px solid var(--line);
}

.zone-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.zone-grid a,
.related-grid a {
  min-height: 190px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.zone-grid a:hover,
.related-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 169, 0, 0.45);
}

.zone-grid strong,
.zone-grid span,
.related-grid span,
.related-grid p {
  display: block;
}

.zone-grid strong,
.related-grid span {
  font-size: 1.1rem;
  font-weight: 950;
}

.zone-grid span,
.related-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 950;
}

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

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 40px 0 88px;
  padding: clamp(34px, 5vw, 58px);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(217, 169, 0, 0.18), transparent 38%),
    var(--dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 22px;
  align-items: start;
}

.contact-panel,
.contact-form {
  padding: clamp(22px, 4vw, 36px);
}

.contact-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.12;
}

.contact-panel a {
  display: block;
  margin: 12px 0;
  color: var(--accent);
  font-weight: 950;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfcac2;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

.check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
}

.check-label input {
  width: auto;
  margin-top: 5px;
}

.check-label a {
  color: var(--accent);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-shell {
  max-width: 900px;
}

.site-footer {
  background: #142a1c;
  color: #fff;
  padding: 56px clamp(20px, 4vw, 52px) 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-grid h2 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.66);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--max), 100%);
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: none;
  max-width: calc(100vw - 36px);
  padding: 13px 16px;
  border-radius: 999px;
  background: #25d366;
  color: #092113;
  font-weight: 950;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tile-grid [data-reveal]:nth-child(2),
.gallery-grid [data-reveal]:nth-child(2),
.process-list [data-reveal]:nth-child(2) {
  transition-delay: 80ms;
}

.tile-grid [data-reveal]:nth-child(3),
.gallery-grid [data-reveal]:nth-child(3),
.process-list [data-reveal]:nth-child(3) {
  transition-delay: 150ms;
}

.tile-grid [data-reveal]:nth-child(4),
.gallery-grid [data-reveal]:nth-child(4),
.process-list [data-reveal]:nth-child(4) {
  transition-delay: 220ms;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: var(--radius);
    background: #16301f;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-whatsapp {
    margin-top: 10px;
    text-align: center;
  }

  .major-service-grid,
  .service-layout,
  .contact-layout,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .major-service-grid .major-service:nth-child(2),
  .major-service-grid .major-service:nth-child(3) {
    transform: none;
    margin: 0;
  }

  .bg-number {
    display: none;
  }

  .service-badge {
    position: static;
    transform: none;
    margin: 18px auto 0;
  }

  .quisom-shell {
    flex-direction: column;
    text-align: center;
  }

  .quisom-band {
    clip-path: none;
    margin: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    position: relative;
    min-height: 46vh;
  }

  .hero-panel {
    width: 100%;
    min-height: auto;
    clip-path: none;
    padding: 44px 24px 50px;
  }

  .service-index {
    position: static;
    margin-top: 50px;
  }

  .tile-grid,
  .process-list,
  .zone-grid,
  .related-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-grid figure,
  .gallery-grid figure:nth-child(1),
  .gallery-grid figure:nth-child(2),
  .gallery-grid figure:nth-child(3),
  .gallery-grid figure:nth-child(4),
  .gallery-grid figure:nth-child(5),
  .gallery-grid figure:nth-child(6) {
    grid-column: span 1;
    min-height: 300px;
  }

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

  .mosaic-1,
  .mosaic-2,
  .mosaic-3,
  .mosaic-4,
  .mosaic-5 {
    grid-row: span 2;
    margin-top: 0;
  }
}

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

  .brand small {
    display: none;
  }

  .wordmark {
    font-size: 1.5rem;
  }

  .page-shell {
    width: min(100% - 28px, var(--max));
  }

  .hero-tag {
    right: 16px;
    bottom: 16px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.6vw, 2.38rem);
    line-height: 1.04;
  }

  .hero-content > p:not(.hero-claim) {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .tile-grid,
  .process-list,
  .zone-grid,
  .related-grid,
  .footer-grid,
  .form-row,
  .signal-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .major-service a {
    min-height: 480px;
  }

  .final-cta {
    margin-bottom: 80px;
    padding: 26px 18px;
  }

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

  .floating-whatsapp {
    left: 14px;
    right: 14px;
    display: inline-flex;
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
