@font-face {
  font-family: "Manrope Variable";
  src: url("../fonts/manrope-latin-ext-wght-normal.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope Variable";
  src: url("../fonts/manrope-latin-wght-normal.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color: #1a201f;
  background: #ffffff;
  font-family: "Manrope Variable", "Manrope", system-ui, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --teal: #0b7b70;
  --teal-dark: #075d57;
  --teal-deep: #064944;
  --ink: #19201f;
  --muted: #626b69;
  --soft: #f4f7f6;
  --line: #dfe6e3;
  --white: #ffffff;
  --page: min(1180px, calc(100% - 80px));
  --shadow: 0 24px 70px rgba(8, 61, 56, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 78px;
  border-bottom: 1px solid rgba(223, 230, 227, 0.92);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: var(--page);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  width: 42px;
  height: 44px;
  display: block;
  overflow: hidden;
}

.brand__mark img {
  width: 88px;
  max-width: none;
  height: 88px;
  margin: -19px 0 0 -23px;
  object-fit: contain;
}

.brand__text {
  display: flex;
  line-height: 1;
  flex-direction: column;
  gap: 3px;
  color: var(--teal-dark);
  letter-spacing: 0.13em;
}

.brand__text strong {
  font-size: 17px;
  font-weight: 800;
}

.brand__text span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.31em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 30px);
}

.desktop-nav a {
  position: relative;
  padding: 30px 0 28px;
  color: #3f4745;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.phone-link svg {
  color: var(--teal);
}

.button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.15;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button:focus-visible,
.menu-toggle:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(11, 123, 112, 0.24);
  outline-offset: 3px;
}

.button--primary {
  color: var(--white);
  border-color: var(--teal);
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(11, 123, 112, 0.2);
}

.button--primary:hover {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
}

.button--secondary {
  color: var(--teal-dark);
  border-color: #bacbc7;
  background: var(--white);
}

.button--secondary:hover {
  border-color: var(--teal);
  background: #f8fbfa;
}

.button--large {
  min-height: 52px;
  padding-inline: 23px;
  font-size: 14px;
}

.button--header {
  min-height: 40px;
  padding-inline: 17px;
  font-size: 12px;
}

.button--light {
  color: var(--teal-deep);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 28, 26, 0.16);
}

.button--light:hover {
  background: #eaf4f1;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  background: #fff;
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: 555px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  background: #fff;
}

.hero__content {
  width: min(590px, calc(100% - 76px));
  margin-left: max(40px, calc((100vw - 1180px) / 2));
  padding: 69px 50px 52px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero__eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__eyebrow span {
  width: 22px;
  height: 2px;
  display: inline-block;
  background: var(--teal);
}

.hero h1 {
  max-width: 610px;
  margin: 18px 0 18px;
  color: #17201e;
  font-size: clamp(42px, 4.3vw, 66px);
  font-weight: 740;
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.hero__lead {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero__proof {
  width: 100%;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 22px;
}

.hero__proof > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
}

.hero__proof > div + div {
  border-left: 1px solid var(--line);
  padding-left: 16px;
}

.hero__proof span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.hero__proof strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero__visual {
  position: relative;
  min-height: 555px;
  overflow: hidden;
  background: #25322f;
}

.hero__visual > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 52% 44%;
}

.hero__image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 37, 34, 0.17), transparent 45%),
    linear-gradient(0deg, rgba(2, 22, 20, 0.38), transparent 42%);
}

.hero__caption {
  position: absolute;
  right: 28px;
  bottom: 26px;
  max-width: 260px;
  padding: 14px 17px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 7px;
  background: rgba(4, 58, 53, 0.84);
  backdrop-filter: blur(9px);
}

.hero__caption span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 10px;
  opacity: 0.83;
}

.hero__caption strong {
  font-size: 12px;
  opacity: 1;
}

.section {
  width: var(--page);
  margin-inline: auto;
  padding: 88px 0;
}

.section-heading {
  margin-bottom: 35px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 70px;
}

.section-heading h2,
.about h2,
.quote h2,
.process h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(31px, 3.2vw, 46px);
  font-weight: 720;
  letter-spacing: -0.042em;
  line-height: 1.12;
}

.section-heading p,
.about__content > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

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

.category-card {
  min-height: 315px;
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  background: #16201e;
}

.category-card > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.category-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 20, 18, 0.9), rgba(3, 20, 18, 0.02) 68%);
}

.category-card__content {
  position: absolute;
  right: 52px;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
}

.category-card__content strong {
  font-size: 17px;
}

.category-card__content small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  line-height: 1.45;
}

.category-card__arrow {
  width: 34px;
  height: 34px;
  position: absolute;
  right: 17px;
  bottom: 19px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.category-card:hover > img {
  transform: scale(1.045);
}

.category-card:hover .category-card__arrow {
  color: var(--teal-dark);
  background: #fff;
}

.process {
  padding: 79px max(40px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.8fr 1.7fr;
  align-items: center;
  gap: 75px;
  color: #fff;
  background: var(--teal-deep);
}

.section-kicker--light {
  color: #73d2c7;
}

.process h2,
.quote h2 {
  color: #fff;
}

.process__intro > p {
  max-width: 410px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.7;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.process-step {
  min-height: 228px;
  position: relative;
  padding: 0 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.process-step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.process-step__icon {
  width: 51px;
  height: 51px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #8fded4;
  background: rgba(255, 255, 255, 0.06);
}

.process-step__number {
  color: rgba(255, 255, 255, 0.26);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.process-step h3 {
  margin: 25px 0 10px;
  font-size: 17px;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.7;
}

.process-step__connector {
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 2;
  top: 12px;
  right: -15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #8fded4;
  background: var(--teal-deep);
}

.section--projects {
  padding-bottom: 78px;
}

.section-heading--center {
  max-width: 840px;
  margin: 0 auto 39px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.section-heading--center p {
  max-width: 610px;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 245px 245px;
  gap: 14px;
}

.project-card {
  min-height: 0;
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  background: #1c2926;
}

.project-card--tall {
  grid-row: 1 / span 2;
}

.project-card:nth-child(2) {
  grid-column: 2 / span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.project-card--tall img {
  object-position: 50% 42%;
}

.project-card:nth-child(2) img {
  object-position: 50% 48%;
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 20, 18, 0.84), transparent 55%);
}

.project-card__content {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: #fff;
}

.project-card__content span {
  color: #9fddd5;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card__content h3 {
  margin: 5px 0 0;
  font-size: 18px;
}

.project-card:hover img {
  transform: scale(1.035);
}

.text-link {
  width: max-content;
  margin: 30px auto 0;
  border-bottom: 1px solid #a9c7c2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 750;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  background: var(--soft);
}

.about__visual {
  min-height: 720px;
  position: relative;
}

.about__visual > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.about__experience {
  position: absolute;
  right: -35px;
  bottom: 44px;
  width: 170px;
  min-height: 132px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  border: 7px solid var(--soft);
  border-radius: 7px;
  background: var(--teal);
}

.about__experience strong {
  font-size: 29px;
  letter-spacing: -0.04em;
}

.about__experience span {
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.45;
}

.about__content {
  width: 100%;
  max-width: none;
  padding: clamp(78px, 6vw, 108px) clamp(58px, 5.4vw, 104px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.about__content > .section-kicker {
  font-size: 11px;
}

.about h2 {
  max-width: 680px;
  font-size: clamp(43px, 3.35vw, 60px);
  line-height: 1.04;
}

.about__content > p {
  max-width: 620px;
  margin-top: 21px;
  font-size: 18px;
  line-height: 1.68;
}

.about__content ul {
  width: 100%;
  max-width: 640px;
  margin: 27px 0 31px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.about__content li {
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid rgba(8, 96, 86, 0.13);
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #45504d;
  font-size: 15px;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.58);
}

.about__content li:last-child {
  grid-column: 1 / -1;
}

.about__content li svg {
  flex: 0 0 auto;
  color: var(--teal);
}

.quote {
  padding: 88px max(40px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
  align-items: center;
  gap: 95px;
  color: #fff;
  background: var(--teal-dark);
}

.quote__copy > p {
  max-width: 480px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.75;
}

.quote__contact {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.quote__contact > a,
.quote__contact > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.quote__contact > a > span,
.quote__contact > div > span {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #91ded5;
  background: rgba(255, 255, 255, 0.06);
}

.quote__contact > a > div,
.quote__contact > div > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quote__contact small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  text-transform: uppercase;
}

.quote__contact strong {
  font-size: 13px;
}

.quote-form {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  display: grid;
  gap: 16px;
  background: rgba(255, 255, 255, 0.075);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: #fff;
  background: rgba(1, 44, 40, 0.72);
}

.quote-form input,
.quote-form select {
  height: 45px;
  padding: 0 13px;
}

.quote-form textarea {
  padding: 12px 13px;
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.quote-form option {
  color: var(--ink);
  background: #fff;
}

.quote-form .button {
  width: 100%;
  margin-top: 2px;
}

.form-note {
  margin: -5px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  padding: 70px max(40px, calc((100vw - 1180px) / 2)) 0;
  color: rgba(255, 255, 255, 0.72);
  background: #14201e;
}

.footer-main {
  padding-bottom: 58px;
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.75fr 1.1fr;
  gap: 60px;
}

.site-footer .brand__text {
  color: #fff;
}

.footer-brand > p {
  max-width: 300px;
  margin: 20px 0;
  font-size: 12px;
  line-height: 1.7;
}

.footer-whatsapp {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8bdccf;
  font-size: 12px;
  font-weight: 750;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-main h3 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 12px;
}

.footer-links a {
  width: max-content;
  font-size: 11px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact > a,
.footer-contact > p {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 11px;
  line-height: 1.65;
}

.footer-location strong {
  margin-bottom: 2px;
  display: block;
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact svg {
  flex: 0 0 auto;
  margin-top: 1px;
  color: #8bdccf;
}

.footer-bottom {
  min-height: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
}

.floating-whatsapp {
  width: 55px;
  height: 55px;
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  border: 3px solid #fff;
  border-radius: 50%;
  display: none;
  place-items: center;
  color: #fff;
  background: #17a886;
  box-shadow: 0 15px 35px rgba(7, 70, 62, 0.3);
}

@media (max-width: 1180px) {
  :root {
    --page: min(100% - 48px, 1080px);
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .phone-link span {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(440px, 1fr);
  }

  .hero__content {
    margin-left: 24px;
  }

  .process {
    padding-inline: 24px;
    gap: 45px;
  }

  .quote {
    padding-inline: 40px;
    gap: 55px;
  }

  .about__content {
    padding: 72px 44px 72px 62px;
  }

  .about__visual {
    min-height: 700px;
  }

  .about h2 {
    font-size: clamp(40px, 4.2vw, 50px);
  }

  .about__content > p {
    font-size: 17px;
  }

  .about__content ul {
    grid-template-columns: 1fr;
  }

  .about__content li:last-child {
    grid-column: auto;
  }
}

@media (max-width: 1040px) {
  .about {
    grid-template-columns: 1fr;
  }

  .about__visual {
    min-height: 560px;
  }

  .about__experience {
    right: 30px;
  }

  .about__content {
    max-width: none;
    padding: 75px max(30px, calc((100vw - 720px) / 2));
  }

  .about h2 {
    font-size: clamp(40px, 6vw, 50px);
  }

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

  .about__content li:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 69px;
  }

  :root {
    --page: calc(100% - 36px);
  }

  .site-header {
    height: 69px;
  }

  .desktop-nav,
  .phone-link,
  .button--header {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    width: 100%;
    max-height: calc(100dvh - 69px);
    position: absolute;
    z-index: 48;
    top: 69px;
    left: 0;
    overflow: auto;
    padding: 9px 18px 24px;
    border-top: 1px solid var(--line);
    display: block;
    background: #fff;
    box-shadow: 0 22px 50px rgba(7, 45, 41, 0.15);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu nav a {
    min-height: 52px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-menu__phone {
    margin: 19px 0 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--teal-dark);
    font-size: 14px;
    font-weight: 750;
  }

  .mobile-menu .button {
    width: 100%;
  }

  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .hero__content {
    width: var(--page);
    margin: 0 auto;
    padding: 59px 0 46px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(42px, 8vw, 62px);
  }

  .hero__visual {
    min-height: 520px;
  }

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

  .process {
    padding: 72px 24px;
    display: block;
  }

  .process__intro {
    max-width: 560px;
    margin-bottom: 44px;
  }

  .quote {
    padding: 72px 32px;
    grid-template-columns: 1fr;
  }

  .quote__copy {
    max-width: 620px;
  }

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

  .about__visual {
    min-height: 500px;
  }

  .about__experience {
    right: 30px;
  }

  .about__content {
    max-width: none;
    padding: 75px max(30px, calc((100vw - 720px) / 2));
  }

  .about h2 {
    font-size: clamp(40px, 6vw, 50px);
  }

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

  .about__content li:last-child {
    grid-column: 1 / -1;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --page: calc(100% - 32px);
  }

  .brand__mark {
    width: 38px;
    height: 41px;
  }

  .brand__mark img {
    width: 80px;
    height: 80px;
    margin: -17px 0 0 -21px;
  }

  .brand__text strong {
    font-size: 15px;
  }

  .brand__text span {
    font-size: 9px;
  }

  .hero__content {
    padding: 47px 0 40px;
  }

  .hero__eyebrow {
    font-size: 9px;
  }

  .hero h1 {
    margin: 14px 0 17px;
    font-size: 41px;
    line-height: 1.04;
  }

  .hero__lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero__actions {
    width: 100%;
    margin-top: 25px;
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    margin-top: 31px;
    gap: 9px;
  }

  .hero__proof > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .hero__proof > div + div {
    padding-left: 10px;
  }

  .hero__proof strong {
    font-size: 10px;
  }

  .hero__visual {
    min-height: 430px;
  }

  .hero__caption {
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: none;
  }

  .section {
    padding: 67px 0;
  }

  .section-heading {
    margin-bottom: 26px;
    display: block;
  }

  .section-heading h2,
  .about h2,
  .quote h2,
  .process h2 {
    font-size: 33px;
  }

  .section-heading p {
    margin-top: 16px;
  }

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

  .category-card {
    min-height: 295px;
  }

  .process {
    padding: 66px 16px;
  }

  .process__intro {
    padding-inline: 2px;
  }

  .process__steps {
    display: grid;
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 0;
    padding: 25px 4px 27px 65px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .process-step__top {
    display: block;
  }

  .process-step__icon {
    position: absolute;
    top: 26px;
    left: 3px;
  }

  .process-step__number {
    position: absolute;
    top: 34px;
    right: 3px;
  }

  .process-step h3 {
    margin: 0 0 8px;
  }

  .process-step__connector {
    display: none;
  }

  .project-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .project-card,
  .project-card--tall,
  .project-card:nth-child(2) {
    min-height: 305px;
    grid-column: auto;
    grid-row: auto;
  }

  .project-card--tall {
    min-height: 390px;
  }

  .text-link {
    max-width: 100%;
    font-size: 11px;
  }

  .about__visual {
    min-height: 420px;
  }

  .about__experience {
    right: 16px;
    bottom: 20px;
    width: 150px;
    border-width: 5px;
  }

  .about__content {
    padding: 58px 20px 62px;
  }

  .about h2 {
    font-size: 36px;
    line-height: 1.07;
  }

  .about__content > p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.65;
  }

  .about__content ul {
    margin: 24px 0 28px;
    grid-template-columns: 1fr;
  }

  .about__content li {
    min-height: 0;
    padding: 14px;
    font-size: 15px;
  }

  .about__content li {
    align-items: flex-start;
  }

  .about__content li:last-child {
    grid-column: auto;
  }

  .quote {
    padding: 65px 16px;
  }

  .quote-form {
    padding: 22px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 58px 16px 0;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .floating-whatsapp {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Selected design direction: Option 3 */
:root {
  --wide: min(1424px, calc(100% - 64px));
}

.sr-only {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  height: 104px;
  border-bottom: 1px solid #eceeee;
  background: #fff;
  backdrop-filter: none;
}

.header-inner {
  width: var(--wide);
}

.brand {
  gap: 24px;
}

.brand__mark {
  width: 67px;
  height: 55px;
}

.brand__mark img {
  width: 67px;
  max-width: 100%;
  height: 55px;
  margin: 0;
}

.brand__text {
  display: block;
  color: var(--teal-dark);
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand__text strong {
  font-size: 29px;
  font-weight: 800;
}

.desktop-nav {
  gap: clamp(26px, 3.1vw, 47px);
}

.desktop-nav a {
  padding: 41px 0 39px;
  font-size: 15px;
  font-weight: 650;
}

.desktop-nav a::after {
  bottom: 27px;
}

.phone-link {
  font-size: 16px;
}

.button--header {
  min-width: 132px;
  min-height: 47px;
  padding-inline: 25px;
  font-size: 15px;
}

.hero {
  min-height: 476px;
  position: relative;
  overflow: hidden;
  display: block;
  background: #fafafa;
}

.hero__content {
  width: min(590px, calc(100% - 80px));
  min-height: 476px;
  position: relative;
  z-index: 3;
  margin-left: max(55px, calc((100vw - 1380px) / 2));
  padding: 62px 0 31px;
}

.hero h1 {
  max-width: 590px;
  margin: 0 0 19px;
  font-size: clamp(46px, 3.75vw, 54px);
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.hero__lead {
  max-width: 560px;
  font-size: 19px;
  line-height: 1.5;
}

.hero__actions {
  margin-top: 26px;
  gap: 34px;
}

.hero__actions .button--primary {
  min-width: 295px;
  font-size: 17px;
}

.hero__text-link {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 17px;
  padding: 0 8px;
  color: var(--teal-dark);
  font-size: 17px;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.hero__text-link svg {
  transition: transform 180ms ease-out;
}

.hero__text-link:hover svg {
  transform: translateX(4px);
}

.hero__proof {
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  border-top: 0;
  display: flex;
  padding-top: 24px;
}

.hero__proof > div {
  min-width: max-content;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}

.hero__proof > div + div {
  margin-left: 24px;
  border-left: 1px solid #bfc5c3;
  padding-left: 24px;
}

.hero__proof span {
  color: #515957;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
}

.hero__visual {
  width: 57%;
  min-height: 476px;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
}

.hero__visual > img {
  object-position: 50% 44%;
}

.hero__image-overlay {
  width: 100vw;
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: -43vw;
  background: linear-gradient(
    90deg,
    #fafafa 0 40%,
    rgba(250, 250, 250, 0.96) 44%,
    rgba(250, 250, 250, 0.56) 48%,
    rgba(250, 250, 250, 0) 53%
  );
  pointer-events: none;
}

.section--categories {
  width: var(--wide);
  padding: 9px 0 27px;
}

.category-grid {
  gap: 10px;
}

.category-card {
  height: 293px;
  min-height: 0;
  border-radius: 1px;
}

.category-card > img {
  height: calc(100% - 52px);
}

.category-card__content {
  height: 52px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 0 18px;
  color: #fff;
  background: var(--teal-dark);
  transition: background 180ms ease-out;
}

.category-card__content strong {
  font-size: 16px;
}

.category-card__arrow {
  right: 14px;
  bottom: 9px;
  border: 0;
  border-radius: 0;
  transition: transform 180ms ease-out;
}

.category-card:hover .category-card__arrow {
  color: #fff;
  background: transparent;
  transform: translateX(4px);
}

.category-card:hover .category-card__content {
  background: var(--teal-deep);
}

.process {
  padding: 29px max(32px, calc((100vw - 1400px) / 2)) 35px;
  display: block;
  color: var(--ink);
  border-top: 1px solid #eceeee;
  background: #fff;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.process-step {
  min-height: 86px;
  position: relative;
  padding: 0 60px;
  border: 0;
  display: grid;
  grid-template-columns: 35px 74px 1fr;
  align-items: center;
  gap: 18px;
}

.process-step + .process-step {
  border-left: 1px solid #dedee0;
}

.process-step__icon {
  width: 74px;
  height: 78px;
  border: 0;
  border-radius: 0;
  display: grid;
  position: relative;
  place-items: center;
  color: var(--teal);
  background: transparent;
}

.process-step__badge {
  width: 27px;
  height: 27px;
  position: absolute;
  right: 0;
  bottom: 2px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--teal);
}

.process-step__number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  background: var(--teal);
}

.process-step h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.section--projects {
  border-top: 1px solid #eceeee;
}

@media (max-width: 1180px) {
  :root {
    --wide: calc(100% - 48px);
  }

  .brand__mark {
    width: 58px;
    height: 48px;
  }

  .brand__mark img {
    width: 58px;
    height: 48px;
  }

  .brand__text strong {
    font-size: 22px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .hero__content {
    width: min(560px, calc(100% - 64px));
    margin-left: 40px;
  }

  .hero__visual {
    width: 52%;
  }

  .hero__proof > div + div {
    margin-left: 18px;
    padding-left: 18px;
  }

  .hero__proof span {
    font-size: 12px;
  }

  .process-step {
    padding: 0 22px;
    grid-template-columns: 34px 60px 1fr;
    gap: 12px;
  }

  .process-step__icon {
    width: 60px;
  }
}

@media (max-width: 920px) {
  :root {
    --wide: calc(100% - 36px);
  }

  .site-header {
    height: 72px;
  }

  .mobile-menu {
    top: 72px;
    max-height: calc(100dvh - 72px);
  }

  .hero__content {
    width: var(--page);
    min-height: 0;
    margin: 0 auto;
    padding: 52px 0 34px;
  }

  .hero__visual {
    width: 100%;
    min-height: 0;
    height: 400px;
    position: relative;
  }

  .hero__image-overlay {
    display: none;
  }

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

  .process {
    padding-inline: 24px;
  }

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

  .process-step {
    min-height: 116px;
    padding: 18px 0;
    grid-template-columns: 38px 72px 1fr;
  }

  .process-step + .process-step {
    border-top: 1px solid #dedee0;
    border-left: 0;
  }

  .process-step__icon {
    width: 72px;
    height: 72px;
    position: static;
  }

  .process-step__number {
    position: static;
  }

  .process-step h3 {
    margin: 0 0 6px;
  }
}

@media (max-width: 640px) {
  :root {
    --wide: calc(100% - 32px);
  }

  .brand {
    gap: 9px;
  }

  .brand__mark {
    width: 45px;
    height: 38px;
  }

  .brand__mark img {
    width: 45px;
    height: 38px;
    margin: 0;
  }

  .brand__text strong {
    font-size: 17px;
  }

  .desktop-break {
    display: none;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.15;
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__text-link {
    width: 100%;
    justify-content: center;
  }

  .hero__proof {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 27px;
  }

  .hero__proof > div {
    width: 100%;
    min-width: 0;
    min-height: 48px;
  }

  .hero__proof > div + div {
    margin-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }

  .hero__proof span {
    white-space: normal;
  }

  .hero__visual {
    height: 340px;
  }

  .section--categories {
    padding-top: 10px;
  }

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

  .category-card {
    height: 315px;
    min-height: 0;
  }

  .process-step {
    min-height: 118px;
    padding: 18px 0;
    grid-template-columns: 36px 60px 1fr;
    gap: 11px;
  }

  .process-step__icon {
    width: 60px;
    height: 68px;
  }

  .process-step__icon > .ph {
    width: 52px;
    height: 52px;
  }
}

/* WordPress integration and inner-page components. */
[hidden] {
  display: none !important;
}

.wp-site-blocks,
.site-main,
.wp-block-template-part {
  margin: 0;
  padding: 0;
}

.wp-site-blocks > * {
  margin-block-start: 0;
}

.site-main {
  overflow: clip;
}

.page-editable-content:empty {
  display: none;
}

.ph {
  display: inline-block;
  flex: 0 0 auto;
}

.phone-link .ph {
  color: var(--teal);
  font-size: 18px;
}

.button .ph,
.hero__text-link .ph,
.text-link .ph,
.footer-whatsapp .ph {
  font-size: 1.25em;
}

.hero__proof .ph {
  color: var(--teal);
  font-size: 22px;
}

.hero__text-link .ph {
  transition: transform 180ms ease-out;
}

.hero__text-link:hover .ph {
  transform: translateX(4px);
}

.process-step__icon > .ph {
  font-size: 61px;
}

.process-step__badge .ph {
  font-size: 18px;
}

.about__content li .ph {
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 22px;
}

.quote__contact .ph {
  font-size: 23px;
}

.footer-contact .ph {
  margin-top: 1px;
  color: #8bdccf;
  font-size: 20px;
}

.floating-whatsapp .ph {
  font-size: 26px;
}

.floating-whatsapp {
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease;
}

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

.menu-toggle__icon {
  font-size: 27px;
}

.menu-toggle__icon--close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon--open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon--close {
  display: inline-block;
}

.footer-main h2 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 12px;
}

.page-heading {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0 72px;
  text-align: center;
}

.page-heading h1,
.page-hero h1 {
  margin: 13px 0 20px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 720;
  letter-spacing: -0.048em;
  line-height: 1.08;
}

.page-heading p,
.page-hero__copy > p {
  max-width: 690px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.page-hero {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  background: var(--soft);
}

.page-hero__copy {
  padding: 88px 64px 88px max(40px, calc((100vw - 1180px) / 2));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.page-hero__copy > p {
  margin-inline: 0;
}

.page-hero__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.page-hero__visual {
  min-height: 590px;
  position: relative;
  overflow: hidden;
  background: var(--teal-deep);
}

.page-hero__visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.page-hero--about .page-hero__visual img {
  object-position: 50% 42%;
}

.product-story {
  width: var(--page);
  margin: 0 auto;
  padding: 92px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 100px;
}

.product-story--soft {
  width: 100%;
  padding-inline: max(40px, calc((100vw - 1180px) / 2));
  background: var(--soft);
}

.product-story__copy h2 {
  margin: 12px 0 19px;
  font-size: clamp(32px, 3.2vw, 48px);
  letter-spacing: -0.042em;
}

.product-story__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.product-features {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  display: grid;
  gap: 0;
  list-style: none;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-features li {
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #45504d;
  font-size: 13px;
  line-height: 1.55;
}

.product-features li:last-child {
  border-bottom: 0;
}

.product-features .ph {
  color: var(--teal);
  font-size: 23px;
}

.product-gallery {
  width: var(--wide);
  margin: 0 auto 92px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, 290px);
  gap: 12px;
}

.product-gallery__item {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--teal-deep);
}

.product-gallery__item--wide {
  grid-row: 1 / span 2;
}

.product-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.product-gallery__item:hover img {
  transform: scale(1.025);
}

.contact-strip {
  padding: 55px max(40px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #fff;
  background: var(--teal-dark);
}

.contact-strip h2 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 43px);
  letter-spacing: -0.04em;
}

.values-section {
  width: var(--page);
  margin: 0 auto;
  padding: 88px 0;
}

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

.values-grid article {
  padding: 34px;
  border: 1px solid var(--line);
  background: #fff;
}

.values-grid .ph {
  color: var(--teal);
  font-size: 42px;
}

.values-grid h3 {
  margin: 22px 0 10px;
  font-size: 18px;
}

.values-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.catalog-grid {
  width: var(--wide);
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.catalog-card {
  min-height: 330px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 46% 54%;
  overflow: hidden;
  background: #fff;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.catalog-card:hover {
  border-color: rgba(11, 123, 112, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.catalog-card__image {
  min-height: 330px;
  overflow: hidden;
}

.catalog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.catalog-card:hover .catalog-card__image img {
  transform: scale(1.035);
}

.catalog-card__copy {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.catalog-card__copy strong {
  font-size: 24px;
  letter-spacing: -0.025em;
}

.catalog-card__copy small {
  margin-top: 13px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.catalog-card__copy > span {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 750;
}

.contact-cards {
  width: var(--page);
  margin: 0 auto 88px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.contact-cards--primary {
  margin-bottom: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.contact-cards > * {
  min-height: 155px;
  padding: 25px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
}

.contact-cards > a:hover {
  border-color: var(--teal);
}

.contact-cards .ph {
  color: var(--teal);
  font-size: 30px;
}

.contact-cards span {
  display: grid;
  gap: 5px;
}

.contact-cards small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-cards strong {
  font-size: 13px;
  line-height: 1.55;
}

.contact-locations {
  width: var(--page);
  margin: 0 auto 88px;
  padding: 38px;
  border: 1px solid #dfe9e7;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 38px;
  background: #f4f7f6;
}

.contact-locations__heading h2 {
  margin: 12px 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.contact-locations__heading p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.contact-locations__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-location-card {
  min-height: 190px;
  padding: 26px;
  border: 1px solid #d2dfdc;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  background: #fff;
}

.contact-location-card--store {
  border-color: rgba(11, 123, 112, 0.42);
  box-shadow: inset 0 3px 0 var(--teal);
}

.contact-location-card > .ph {
  color: var(--teal);
  font-size: 34px;
}

.contact-location-card small {
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-location-card h3 {
  margin: 8px 0 0;
  font-size: 14px;
  letter-spacing: -0.015em;
  line-height: 1.6;
}

.quote--page {
  padding-top: 72px;
  padding-bottom: 72px;
}

.quote__image {
  width: 100%;
  max-width: 470px;
  height: 175px;
  margin-top: 30px;
  object-fit: cover;
}

.generic-page,
.single-shell,
.archive-shell,
.not-found {
  width: min(880px, calc(100% - 48px));
  min-height: 48vh;
  margin: 0 auto;
  padding: 88px 0;
}

.generic-page__title,
.single-shell__title,
.archive-shell__title,
.not-found h1 {
  margin: 0 0 32px;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.045em;
}

.generic-page__image,
.single-shell__image {
  margin: 32px 0;
}

.generic-page__content,
.single-shell .wp-block-post-content {
  color: #3e4846;
  font-size: 17px;
  line-height: 1.8;
}

.post-card {
  padding: 20px;
  border: 1px solid var(--line);
}

.post-card h2 {
  font-size: 21px;
}

.not-found {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.not-found p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.not-found__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

@media (max-width: 920px) {
  .page-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .page-hero__copy {
    padding: 70px max(24px, calc((100vw - 720px) / 2));
  }

  .page-hero__visual {
    min-height: 520px;
  }

  .product-story {
    padding: 72px 0;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-story--soft {
    width: 100%;
    padding-inline: 24px;
  }

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

  .contact-cards--primary {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-locations {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    grid-template-columns: 1fr;
  }

  .catalog-card__image {
    min-height: 260px;
  }

  .process-step__icon > .ph {
    font-size: 58px;
  }
}

@media (max-width: 640px) {
  .page-heading {
    width: calc(100% - 32px);
    padding: 67px 0 52px;
    text-align: left;
  }

  .page-heading h1,
  .page-hero h1 {
    font-size: 39px;
  }

  .page-heading p,
  .page-hero__copy > p {
    font-size: 16px;
  }

  .page-hero__copy {
    padding: 56px 16px 48px;
  }

  .page-hero__actions,
  .page-hero__actions .button,
  .page-hero__actions .hero__text-link {
    width: 100%;
  }

  .page-hero__visual {
    min-height: 390px;
  }

  .product-story {
    padding: 58px 0;
    gap: 34px;
  }

  .product-features {
    padding: 18px;
  }

  .product-gallery {
    width: calc(100% - 32px);
    margin-bottom: 58px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 280px);
  }

  .product-gallery__item--wide {
    grid-row: auto;
  }

  .contact-strip {
    padding: 46px 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-strip .button {
    width: 100%;
  }

  .values-section {
    padding: 62px 0;
  }

  .values-grid,
  .catalog-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    width: calc(100% - 32px);
    margin-bottom: 64px;
  }

  .catalog-card__copy {
    padding: 28px;
  }

  .contact-cards {
    margin-bottom: 18px;
  }

  .contact-cards > * {
    min-height: 128px;
  }

  .contact-locations {
    width: calc(100% - 32px);
    margin-bottom: 62px;
    padding: 24px;
    gap: 26px;
  }

  .contact-locations__grid {
    grid-template-columns: 1fr;
  }

  .contact-location-card {
    min-height: 155px;
    padding: 22px;
  }

  .generic-page,
  .single-shell,
  .archive-shell,
  .not-found {
    width: calc(100% - 32px);
    padding: 64px 0;
  }

  .process-step__icon > .ph {
    font-size: 52px;
  }

  .process-step__badge .ph {
    font-size: 18px;
  }
}

.button:focus-visible,
.menu-toggle:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline-color: #0b7b70;
}

.quote .button:focus-visible,
.quote a:focus-visible,
.quote input:focus-visible,
.quote select:focus-visible,
.quote textarea:focus-visible,
.site-footer a:focus-visible,
.floating-whatsapp:focus-visible {
  outline-color: #fff;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.brand__mark img {
  object-fit: contain;
}

.page-editable-content {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto !important;
  padding: 72px 0;
  color: #3e4846;
  font-size: 16px;
  line-height: 1.8;
}

.page-editable-content:not(:empty) {
  border-top: 1px solid var(--line);
}

.page-editable-content > :first-child {
  margin-top: 0;
}

.page-editable-content > :last-child {
  margin-bottom: 0;
}

.product-faq {
  width: var(--page);
  margin: 0 auto;
  padding: 8px 0 88px;
}

.faq-grid {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-grid details {
  border-bottom: 1px solid var(--line);
}

.faq-grid summary {
  position: relative;
  padding: 22px 52px 22px 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 16px;
  font-weight: 750;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  content: "+";
  color: var(--teal);
  font-size: 25px;
  font-weight: 500;
  transform: translateY(-50%);
}

.faq-grid details[open] summary::after {
  content: "−";
}

.faq-grid details p {
  max-width: 760px;
  margin: -5px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.hero__mobile-visual {
  display: none;
}

@media (min-width: 921px) {
  .hero {
    background: #fafafa;
  }

  .hero__visual {
    width: calc(57% + 3px);
    right: -3px;
    background: #fafafa;
  }

  .hero__visual > img {
    width: calc(100% + 2px);
    left: -1px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 720px;
    position: relative;
    isolation: isolate;
    display: block;
    overflow: hidden;
    background: #fafafa;
  }

  .hero__visual {
    width: 100%;
    height: 100%;
    min-height: 0;
    position: absolute;
    z-index: 0;
    inset: 0;
    background: #fafafa;
  }

  .hero__visual > img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: 50% 50%;
  }

  .hero__image-overlay {
    width: 100%;
    position: absolute;
    z-index: 2;
    inset: 0;
    display: block;
    background:
      linear-gradient(
        180deg,
        #fafafa 0%,
        #fafafa 34%,
        rgba(250, 250, 250, 0.96) 46%,
        rgba(250, 250, 250, 0.48) 62%,
        rgba(250, 250, 250, 0) 77%
      ),
      linear-gradient(0deg, rgba(4, 37, 34, 0.22), transparent 35%);
  }

  .hero__content {
    width: calc(100% - 32px);
    min-height: 720px;
    position: relative;
    z-index: 3;
    margin: 0 auto;
    padding: 38px 0 18px;
    justify-content: flex-start;
  }

  .hero__proof {
    width: 100%;
    margin-top: auto;
    padding: 10px 7px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
  }

  .hero__proof > div {
    min-width: 0;
    min-height: 68px;
    padding: 5px 4px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
  }

  .hero__proof > div + div {
    margin-left: 0;
    border-top: 0;
    border-left: 1px solid var(--line);
    padding-left: 4px;
  }

  .hero__proof .ph {
    font-size: 20px;
  }

  .hero__proof span {
    font-size: 10px;
    line-height: 1.35;
    white-space: normal;
  }

  .product-faq {
    padding: 0 0 62px;
  }

  .faq-grid summary {
    padding-block: 19px;
    font-size: 15px;
  }

  .page-editable-content {
    width: calc(100% - 32px);
    padding: 54px 0;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 0;
    background: #fafafa;
  }

  .hero__content {
    min-height: 0;
    padding: 38px 0 28px;
  }

  .hero > .hero__visual {
    display: none;
  }

  .hero__mobile-visual {
    width: calc(100% + 32px);
    height: 190px;
    position: relative;
    overflow: hidden;
    margin: 20px -16px 0;
    display: block;
    background: #fafafa;
  }

  .hero__mobile-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 48%;
  }

  .hero__mobile-visual::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
      linear-gradient(180deg, #fafafa 0%, rgba(250, 250, 250, 0) 30%),
      linear-gradient(0deg, #fafafa 0%, rgba(250, 250, 250, 0) 24%);
    pointer-events: none;
  }

  .hero__proof {
    margin-top: 26px;
  }
}

/* Expandable project galleries. */
.product-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
  grid-auto-rows: 230px;
  grid-auto-flow: dense;
}

.product-gallery__item {
  border: 1px solid #dfe6e3;
  border-radius: 2px;
}

.product-gallery__item--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.product-gallery__item:nth-child(7n + 5):not(.product-gallery__item--wide) {
  grid-column: span 2;
}

.product-gallery__trigger {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  cursor: zoom-in;
  color: #fff;
  background: #16201e;
}

.product-gallery__trigger::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(3, 28, 25, 0);
  transition: background-color 180ms ease;
  pointer-events: none;
}

.product-gallery__trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__zoom {
  width: 42px;
  height: 42px;
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(6, 73, 68, 0.82);
  opacity: 0;
  transform: translateY(-5px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.product-gallery__zoom .ph {
  font-size: 21px;
}

.product-gallery__trigger:hover::after,
.product-gallery__trigger:focus-visible::after {
  background: rgba(3, 28, 25, 0.14);
}

.product-gallery__trigger:hover .product-gallery__zoom,
.product-gallery__trigger:focus-visible .product-gallery__zoom {
  opacity: 1;
  transform: translateY(0);
}

.product-gallery__trigger:focus-visible {
  z-index: 3;
  outline: 3px solid #0b7b70;
  outline-offset: -5px;
}

.product-gallery__item figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px 16px 13px;
  color: #fff;
  font-size: 11px;
  line-height: 1.45;
  background: linear-gradient(0deg, rgba(3, 28, 25, 0.9), rgba(3, 28, 25, 0));
  pointer-events: none;
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  position: fixed;
  z-index: 200;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  background: rgba(4, 19, 17, 0.96);
}

.gallery-lightbox::backdrop {
  background: rgba(4, 19, 17, 0.96);
}

.gallery-lightbox[open] {
  display: block;
}

.gallery-lightbox__shell {
  width: 100%;
  height: 100%;
  position: relative;
  display: grid;
  place-items: center;
  padding: 56px 92px 70px;
}

.gallery-lightbox__figure {
  width: min(1180px, 100%);
  height: min(78dvh, 820px);
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
  gap: 15px;
}

.gallery-lightbox__image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  user-select: none;
}

.gallery-lightbox__caption {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  border: 1px solid rgba(255, 255, 255, 0.46);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #fff;
  background: rgba(6, 73, 68, 0.78);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
  border-color: #fff;
  background: var(--teal);
}

.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.gallery-lightbox__close {
  width: 48px;
  height: 48px;
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 24px;
  border-radius: 2px;
}

.gallery-lightbox__close .ph {
  font-size: 24px;
}

.gallery-lightbox__nav {
  width: 52px;
  height: 70px;
  position: absolute;
  z-index: 3;
  top: 50%;
  border-radius: 2px;
  transform: translateY(-50%);
}

.gallery-lightbox__nav:hover {
  transform: translateY(-50%) scale(1.03);
}

.gallery-lightbox__nav--previous {
  left: 24px;
}

.gallery-lightbox__nav--next {
  right: 24px;
}

.gallery-lightbox__nav .ph {
  font-size: 26px;
}

.gallery-lightbox__counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
}

.floating-call {
  display: none;
}

.floating-actions {
  position: static;
}

/*
 * The production site already has legacy Click to Chat and Call Now plugins.
 * Keep their settings intact, but prevent duplicate fixed controls while this
 * theme's unified, accessible contact actions are active.
 */
body.wp-theme-medine-avize #ht-ctc-chat,
body.wp-theme-medine-avize #callnowbutton {
  display: none !important;
}

.floating-whatsapp span {
  display: none;
}

.floating-call,
.floating-whatsapp {
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease;
}

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

@media (max-width: 920px) {
  .product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .product-gallery__item:nth-child(7n + 5):not(.product-gallery__item--wide) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .product-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: 270px;
  }

  .product-gallery__item--wide,
  .product-gallery__item:nth-child(7n + 5):not(.product-gallery__item--wide) {
    grid-column: auto;
    grid-row: auto;
  }

  .product-gallery__zoom {
    opacity: 1;
    transform: none;
  }

  .gallery-lightbox__shell {
    padding: 66px 12px 92px;
  }

  .gallery-lightbox__figure {
    height: min(72dvh, 650px);
  }

  .gallery-lightbox__close {
    top: 14px;
    right: 14px;
  }

  .gallery-lightbox__nav {
    width: 48px;
    height: 48px;
    top: auto;
    bottom: 23px;
    transform: none;
  }

  .gallery-lightbox__nav:hover {
    transform: scale(1.03);
  }

  .gallery-lightbox__nav--previous {
    left: 14px;
  }

  .gallery-lightbox__nav--next {
    right: 14px;
  }

  .gallery-lightbox__counter {
    bottom: 39px;
  }

  .floating-actions {
    position: fixed;
    z-index: 45;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(6, 44, 41, 0.96);
    box-shadow: 0 -12px 30px rgba(4, 35, 32, 0.18);
    backdrop-filter: blur(12px);
  }

  .floating-call,
  .floating-whatsapp {
    width: auto;
    min-width: 0;
    height: 52px;
    min-height: 52px;
    position: static;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    color: #fff;
    box-shadow: none;
    font-size: 13px;
    font-weight: 800;
  }

  .floating-call {
    background: var(--teal-dark);
  }

  .floating-whatsapp {
    right: auto;
    bottom: auto;
    background: #159b7d;
  }

  .floating-call .ph {
    font-size: 20px;
  }

  .floating-whatsapp .ph {
    font-size: 21px;
  }

  .floating-whatsapp span {
    display: inline;
  }

  .floating-call.is-hidden,
  .floating-whatsapp.is-hidden {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}
