:root {
  --navy: #022641;
  --navy-deep: #011a2e;
  --navy-hover: #0a3a5c;
  --slate: #6b7985;
  --ink: #172a38;
  --muted: #526571;
  --mist: #eef1f3;
  --surface: #f7f9fa;
  --white: #fff;
  --line: #dce3e7;
  --success: #176b50;
  --danger: #b42318;
  --heading: "Montserrat", Arial, Helvetica, sans-serif;
  --body: "Inter", Arial, Helvetica, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --shadow-sm: 0 10px 30px rgb(2 38 65 / 7%);
  --shadow-lg: 0 24px 60px rgb(2 38 65 / 14%);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-family: var(--heading);
  line-height: 1.12;
}

:focus-visible {
  outline: 3px solid rgb(10 58 92 / 30%);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.announcement {
  color: rgb(255 255 255 / 82%);
  background: var(--navy-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.announcement__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.announcement a {
  color: var(--white);
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgb(255 255 255 / 94%);
  border-bottom: 1px solid rgb(220 227 231 / 90%);
  backdrop-filter: blur(16px);
}

.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: block;
  flex: 0 0 190px;
  color: var(--navy);
  text-decoration: none;
}

.brand__lockup {
  width: 190px;
  height: 75px;
  display: block;
  background: transparent url("../../images/farol-cleaning-logo-transparent.webp") center / contain no-repeat;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.site-nav > a:not(.button) {
  position: relative;
  padding-block: 27px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

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

.site-nav > a:hover,
.site-nav > a[aria-current="page"] {
  color: var(--navy);
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 19px;
  height: 2px;
  display: block;
  margin: 4px auto;
  content: "";
  background: currentColor;
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease,
    transform 180ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--navy);
}

.button--primary:hover {
  background: var(--navy-hover);
}

.button--light {
  color: var(--navy);
  background: var(--white);
}

.button--light:hover {
  background: var(--mist);
}

.button--outline {
  color: var(--navy);
  background: transparent;
  border-color: var(--navy);
}

.button--outline:hover {
  background: var(--mist);
}

.button--outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgb(255 255 255 / 42%);
}

.button--outline-light:hover {
  background: rgb(255 255 255 / 9%);
  border-color: var(--white);
}

.button__arrow {
  font-size: 18px;
  line-height: 1;
  transition: transform 180ms ease;
}

.button:hover .button__arrow,
.text-link:hover .button__arrow {
  transform: translateX(3px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.text-link__label {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
  opacity: 0.7;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(122deg, var(--navy-deep) 0%, var(--navy) 58%, var(--navy-hover) 100%);
}

.hero::before,
.page-hero::before {
  position: absolute;
  top: -150px;
  left: 58%;
  width: 500px;
  height: 900px;
  content: "";
  background: linear-gradient(180deg, rgb(255 255 255 / 12%), transparent);
  clip-path: polygon(44% 0, 56% 0, 100% 100%, 0 100%);
  transform: rotate(-14deg);
  pointer-events: none;
}

.hero::after,
.page-hero::after {
  position: absolute;
  right: -5%;
  bottom: -270px;
  width: 110%;
  height: 430px;
  content: "";
  border: 2px solid rgb(255 255 255 / 18%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  align-items: center;
  gap: 76px;
  padding-block: 92px 118px;
}

.hero .eyebrow,
.page-hero .eyebrow,
.dark-section .eyebrow,
.cta-band .eyebrow {
  color: var(--white);
}

.hero h1 {
  max-width: 730px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.8rem, 5.8vw, 4.75rem);
  letter-spacing: -0.055em;
}

.hero__copy > p {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgb(255 255 255 / 76%);
  font-size: 18px;
}

.hero__panel {
  position: relative;
  min-height: 500px;
}

.hero__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgb(0 14 27 / 38%);
}

.hero__badge {
  position: absolute;
  bottom: 24px;
  left: -28px;
  max-width: 220px;
  padding: 18px;
  color: var(--navy);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.hero__badge strong,
.hero__badge span {
  display: block;
}

.hero__badge strong {
  margin-bottom: 4px;
  font-family: var(--heading);
  font-size: 15px;
}

.hero__badge span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -46px;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.trust-item {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item__icon {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-sm);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.trust-item__svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item > span:not(.trust-item__icon) strong,
.trust-item > span:not(.trust-item__icon) span {
  display: block;
}

.trust-item > span:not(.trust-item__icon) strong {
  color: var(--navy);
  font-family: var(--heading);
  font-size: 13px;
}

.trust-item > span:not(.trust-item__icon) span {
  color: var(--muted);
  font-size: 11px;
}

.section {
  padding-block: 106px;
  scroll-margin-top: 80px;
}

.section--soft {
  background: var(--surface);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.2vw, 3.25rem);
  letter-spacing: -0.045em;
}

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

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

.service-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: box-shadow 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.service-card::after {
  position: absolute;
  right: -78px;
  bottom: -112px;
  width: 245px;
  height: 178px;
  content: "";
  border: 2px solid var(--mist);
  border-radius: 50%;
}

.service-card:hover {
  border-color: rgb(2 38 65 / 28%);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card__number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-sm);
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.service-card p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
}

.service-card .text-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

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

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.split__media::after {
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 180px;
  height: 120px;
  content: "";
  border-right: 4px solid var(--navy);
  border-bottom: 4px solid var(--navy);
  border-radius: 0 0 var(--radius-lg);
  pointer-events: none;
}

.split__content h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  letter-spacing: -0.045em;
}

.split__content > p {
  color: var(--muted);
  font-size: 17px;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-weight: 500;
}

.check-list li::before {
  width: 24px;
  height: 24px;
  display: grid;
  flex: 0 0 24px;
  place-items: center;
  margin-top: 1px;
  content: "✓";
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

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

.industry-card {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-md);
}

.industry-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 20%, rgb(1 26 46 / 88%) 100%);
  z-index: 1;
}

.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.industry-card:hover img {
  transform: scale(1.04);
}

.industry-card__content {
  position: relative;
  z-index: 2;
}

.industry-card h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 19px;
}

.industry-card span {
  color: rgb(255 255 255 / 68%);
  font-size: 12px;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-grid::before {
  position: absolute;
  top: 27px;
  right: 12%;
  left: 12%;
  height: 1px;
  content: "";
  background: var(--line);
}

.process-step {
  position: relative;
  z-index: 1;
}

.process-step__number {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--navy);
  border: 7px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
}

.section--soft .process-step__number {
  border-color: var(--surface);
}

.process-step h3 {
  margin-bottom: 9px;
  font-size: 17px;
}

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

.dark-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.dark-section::before {
  position: absolute;
  top: -160px;
  right: 7%;
  width: 360px;
  height: 720px;
  content: "";
  background: linear-gradient(180deg, rgb(255 255 255 / 10%), transparent);
  clip-path: polygon(44% 0, 56% 0, 100% 100%, 0 100%);
  transform: rotate(16deg);
}

.dark-section .split {
  position: relative;
  z-index: 1;
}

.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

.dark-section p,
.dark-section .check-list li {
  color: rgb(255 255 255 / 72%);
}

.dark-section .check-list li::before {
  color: var(--navy);
  background: var(--white);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric {
  min-height: 150px;
  padding: 24px;
  background: rgb(255 255 255 / 7%);
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius-md);
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--heading);
  font-size: 22px;
}

.metric span {
  color: rgb(255 255 255 / 62%);
  font-size: 13px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(120deg, var(--navy-deep), var(--navy-hover));
}

.cta-band::after {
  position: absolute;
  right: -80px;
  bottom: -145px;
  width: 560px;
  height: 300px;
  content: "";
  border: 2px solid rgb(255 255 255 / 16%);
  border-radius: 50%;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  min-height: 370px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
  padding-block: 70px;
}

.cta-band__copy {
  max-width: 720px;
}

.cta-band h2 {
  margin-bottom: 15px;
  color: var(--white);
  font-size: clamp(2.2rem, 4.6vw, 3.55rem);
  letter-spacing: -0.045em;
}

.cta-band p {
  margin-bottom: 0;
  color: rgb(255 255 255 / 70%);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(122deg, var(--navy-deep), var(--navy));
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 470px;
  display: flex;
  align-items: center;
  padding-block: 90px 105px;
}

.page-hero__copy {
  max-width: 820px;
}

.page-hero h1 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  letter-spacing: -0.055em;
}

.page-hero p {
  max-width: 690px;
  margin-bottom: 0;
  color: rgb(255 255 255 / 72%);
  font-size: 18px;
}

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

.value-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.value-card__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-sm);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
}

.value-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.service-detail {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.service-detail__top {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.service-detail__number {
  width: 44px;
  height: 44px;
  display: grid;
  flex: 0 0 44px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-sm);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
}

.service-detail h2 {
  margin: 0;
  font-size: 22px;
}

.service-detail p {
  color: var(--muted);
  font-size: 14px;
}

.service-detail ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink);
  font-size: 13px;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

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

.faq-button {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}

.faq-button::after {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  content: "";
  background:
    linear-gradient(var(--white), var(--white)) center / 10px 2px no-repeat,
    linear-gradient(var(--white), var(--white)) center / 2px 10px no-repeat,
    var(--navy);
  border-radius: 50%;
  transition: transform 180ms ease;
}

.faq-button[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 52px 22px 0;
}

.faq-panel[hidden] {
  display: none;
}

.faq-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
}

.filter-button {
  min-height: 42px;
  padding: 9px 15px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

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

.portfolio-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.portfolio-card[hidden] {
  display: none;
}

.portfolio-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.portfolio-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.portfolio-card__content {
  padding: 24px;
}

.portfolio-card__tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  color: var(--navy);
  background: var(--mist);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-card h2 {
  margin-bottom: 9px;
  font-size: 19px;
}

.portfolio-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 64px;
}

.contact-aside {
  position: sticky;
  top: 116px;
}

.contact-aside h2 {
  margin-bottom: 18px;
  font-size: 34px;
  letter-spacing: -0.04em;
}

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

.contact-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: center;
}

.contact-list li[hidden] {
  display: none;
}

.contact-list__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-sm);
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.contact-list__svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-list li > span:not(.contact-list__icon) strong,
.contact-list li > span:not(.contact-list__icon) span,
.contact-list li > span:not(.contact-list__icon) a {
  display: block;
}

.contact-list li > span:not(.contact-list__icon) strong {
  color: var(--navy);
  font-family: var(--heading);
  font-size: 12px;
}

.contact-list li > span:not(.contact-list__icon) span,
.contact-list li > span:not(.contact-list__icon) a {
  color: var(--muted);
  font-size: 13px;
}

.contact-form {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-form h2 {
  margin-bottom: 8px;
  font-size: 25px;
}

.contact-form__intro {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field__label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.field label span {
  color: var(--danger);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #b9c5cc;
  border-radius: var(--radius-sm);
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 124px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgb(2 38 65 / 12%);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.field__error {
  margin: 0;
  color: var(--danger);
  font-size: 12px;
}

.field__hint {
  margin: 0;
  color: var(--slate);
  font-size: 11px;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 12px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--navy);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
}

.form-actions small {
  max-width: 360px;
  color: var(--slate);
  font-size: 11px;
}

.form-status {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.form-status--success {
  color: #0d533e;
  background: #e8f5f0;
  border: 1px solid #b4ddcf;
}

.form-status--error {
  color: #8f1d14;
  background: #fff0ee;
  border: 1px solid #f2c1bb;
}

.map-embed {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

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

.legal {
  max-width: 820px;
}

.legal h2 {
  margin-top: 44px;
  margin-bottom: 14px;
  font-size: 25px;
}

.legal p,
.legal li {
  color: var(--muted);
}

.site-footer {
  color: rgb(255 255 255 / 66%);
  background: var(--navy-deep);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr 1fr;
  gap: 58px;
  padding-block: 72px 55px;
}

.footer__brand {
  max-width: 310px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--white);
  text-decoration: none;
}

.footer__mark {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  background: url("../../images/farol-mark.webp") center / contain no-repeat;
  filter: brightness(0) invert(1);
}

.footer__type {
  display: grid;
  line-height: 1;
}

.footer__type strong {
  font-family: var(--heading);
  font-size: 17px;
  letter-spacing: 0.22em;
}

.footer__type span {
  margin-top: 5px;
  color: rgb(255 255 255 / 50%);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.34em;
}

.footer__brand p {
  margin-bottom: 0;
  font-size: 13px;
}

.footer__column h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.footer__links a,
.footer__links span {
  font-size: 13px;
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer__bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  font-size: 11px;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom a {
  color: var(--white);
  text-underline-offset: 3px;
}

.confirmation-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1060px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav .button {
    display: none;
  }

  .hero__inner {
    gap: 50px;
  }

  .footer__top {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  body.menu-open::after {
    position: fixed;
    z-index: 80;
    inset: 0;
    content: "";
    background: rgb(1 26 46 / 42%);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 120;
    top: 118px;
    right: 0;
    bottom: 0;
    width: min(88vw, 380px);
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 24px;
    background: var(--white);
    box-shadow: -18px 0 48px rgb(1 26 46 / 18%);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  .site-nav--open {
    transform: translateX(0);
  }

  .site-nav > a:not(.button) {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    display: inline-flex;
    margin-top: 22px;
  }

  .hero__inner,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    gap: 60px;
  }

  .hero__panel {
    max-width: 680px;
  }

  .hero__badge {
    left: 24px;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

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

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

  .process-grid::before {
    display: none;
  }

  .contact-aside {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .announcement__inner {
    min-height: 42px;
    font-size: 10px;
  }

  .header__inner {
    min-height: 72px;
  }

  .brand {
    flex-basis: 160px;
  }

  .brand__lockup {
    width: 160px;
    height: 63px;
    background-size: contain;
  }

  .site-nav {
    top: 114px;
  }

  .hero__inner {
    min-height: auto;
    padding-block: 72px 108px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.7rem;
  }

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

  .hero__image {
    height: 390px;
  }

  .hero__panel {
    min-height: 390px;
  }

  .hero__badge {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

  .trust-strip__inner,
  .card-grid,
  .industry-grid,
  .process-grid,
  .value-grid,
  .service-detail-grid,
  .portfolio-grid,
  .form-grid,
  .metric-grid,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 76px;
  }

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

  .split {
    gap: 48px;
  }

  .split__media img {
    min-height: 390px;
  }

  .split__media::after {
    right: -8px;
    bottom: -12px;
  }

  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .page-hero__inner {
    min-height: 390px;
    padding-block: 72px 88px;
  }

  .button-row .button,
  .cta-band__inner > .button {
    width: 100%;
  }

  .contact-form {
    padding: 24px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }

  .footer__top {
    gap: 38px;
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 24px;
  }
}

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