:root {
  --ink: #111c17;
  --forest: #183326;
  --forest-2: #234b38;
  --moss: #668458;
  --gold: #d9a441;
  --gold-light: #f1cb76;
  --sand: #eee8dc;
  --cream: #f7f4ed;
  --white: #fff;
  --muted: #68716b;
  --line: rgba(17, 28, 23, .14);
  --container: min(1180px, calc(100vw - 48px));
  --shadow: 0 24px 70px rgba(12, 24, 18, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

::selection {
  color: var(--ink);
  background: var(--gold-light);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition: color .3s ease, background .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 244, 237, .94);
  box-shadow: 0 8px 30px rgba(17, 28, 23, .08);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 7px 24px rgba(0, 0, 0, .12);
}

.brand-mark img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-name {
  display: grid;
  line-height: 1.08;
}

.brand-name strong {
  font: 800 .94rem/1.1 "Manrope", sans-serif;
  letter-spacing: .08em;
}

.brand-name small {
  margin-top: 5px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .72;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav > a {
  position: relative;
  font-size: .88rem;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.main-nav > a:hover::after,
.main-nav > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-left: 10px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--gold);
  transition: background .2s ease, transform .2s ease;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  color: var(--white);
  background: var(--forest);
}

.hero-media,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("../images/hero/hero-mining.jpg") 68% 47% / cover no-repeat;
  transform: scale(1.02);
  animation: heroIn 1.7s cubic-bezier(.22, .61, .36, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 18, 13, .96) 0%, rgba(8, 18, 13, .82) 42%, rgba(8, 18, 13, .2) 72%, rgba(8, 18, 13, .45) 100%),
    linear-gradient(0deg, rgba(8, 18, 13, .66), transparent 45%);
}

.hero-grid {
  opacity: .14;
  background-image:
    linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, #000, transparent 74%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 325px;
  gap: 80px;
  height: 100%;
  padding-top: 170px;
  padding-bottom: 120px;
}

.hero-copy {
  align-self: center;
  max-width: 780px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px;
  color: var(--forest-2);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.eyebrow-light {
  color: rgba(255, 255, 255, .78);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font: 500 clamp(3.8rem, 7vw, 7.2rem)/.91 "Manrope", sans-serif;
  letter-spacing: -.07em;
}

.hero h1 span {
  display: block;
  color: var(--gold-light);
}

.hero-intro {
  max-width: 640px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

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

.button-gold {
  color: var(--ink);
  background: var(--gold);
}

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

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .1);
}

.hero-panel {
  align-self: end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(10, 24, 16, .52);
  backdrop-filter: blur(15px);
}

.panel-kicker,
.panel-index {
  margin: 0;
  color: rgba(255, 255, 255, .54);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.panel-index {
  margin-top: 28px;
  color: var(--gold-light);
}

.panel-title {
  margin: 10px 0 20px;
  font: 600 1.35rem/1.35 "Manrope", sans-serif;
}

.hero-panel ul {
  padding: 18px 0;
  margin: 0;
  list-style: none;
  border-block: 1px solid rgba(255, 255, 255, .16);
}

.hero-panel li {
  position: relative;
  padding: 6px 0 6px 16px;
  color: rgba(255, 255, 255, .68);
  font-size: .86rem;
}

.hero-panel li::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
}

.hero-panel a {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: .8rem;
  font-weight: 700;
}

.hero-bottom {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.hero-bottom-inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-bottom-inner p {
  margin: 0;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: #75c781;
  box-shadow: 0 0 0 5px rgba(117, 199, 129, .13);
}

.scroll-cue {
  display: flex;
  gap: 14px;
  align-items: center;
}

.proof-strip {
  color: var(--white);
  background: var(--forest);
}

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

.proof-item {
  display: grid;
  min-height: 132px;
  align-content: center;
  padding: 20px 30px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.proof-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.proof-item strong {
  color: var(--gold-light);
  font: 700 1.55rem/1.1 "Manrope", sans-serif;
}

.proof-item span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .6);
  font-size: .75rem;
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.05fr .75fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading h2,
.story-content h2,
.training-copy h2,
.method-heading h2,
.contact-copy h2 {
  margin: 0;
  font: 600 clamp(2.7rem, 4.6vw, 5.1rem)/1.02 "Manrope", sans-serif;
  letter-spacing: -.055em;
}

.section-lead {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1.04rem;
}

.expertise-section {
  background: var(--cream);
}

.expertise-list {
  border-top: 1px solid var(--line);
}

.expertise-item {
  display: grid;
  grid-template-columns: 60px 75px 1fr 52px;
  gap: 28px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, padding .25s ease;
}

.expertise-item:hover,
.expertise-item.is-open {
  padding-inline: 22px;
  background: rgba(255, 255, 255, .58);
}

.expertise-number {
  padding-top: 8px;
  color: var(--moss);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.expertise-icon {
  width: 60px;
  height: 60px;
  padding: 12px;
  color: var(--forest-2);
  background: #e5e4d7;
}

.expertise-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.expertise-copy h3 {
  margin: 0 0 8px;
  font: 650 clamp(1.35rem, 2vw, 1.75rem)/1.2 "Manrope", sans-serif;
  letter-spacing: -.03em;
}

.expertise-copy > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.expertise-details {
  display: flex;
  overflow: hidden;
  max-height: 0;
  flex-wrap: wrap;
  gap: 8px;
  opacity: 0;
  transition: max-height .35s ease, margin .35s ease, opacity .35s ease;
}

.expertise-item.is-open .expertise-details {
  max-height: 110px;
  margin-top: 20px;
  opacity: 1;
}

.expertise-details span {
  padding: 6px 11px;
  color: var(--forest-2);
  border: 1px solid rgba(35, 75, 56, .18);
  font-size: .7rem;
  font-weight: 700;
  background: rgba(35, 75, 56, .05);
}

.detail-toggle {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  color: var(--forest-2);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.detail-toggle span {
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform .25s ease;
}

.expertise-item.is-open .detail-toggle {
  color: var(--white);
  border-color: var(--forest-2);
  background: var(--forest-2);
}

.expertise-item.is-open .detail-toggle span {
  transform: rotate(45deg);
}

.story-section {
  background: var(--sand);
}

.story-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(70px, 9vw, 130px);
  align-items: center;
}

.story-visual {
  position: relative;
  min-height: 690px;
}

.story-visual::before {
  position: absolute;
  z-index: 0;
  top: -24px;
  right: -24px;
  width: 64%;
  height: 76%;
  content: "";
  border: 1px solid rgba(35, 75, 56, .28);
}

.story-visual img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 45%;
  filter: saturate(.82) contrast(1.04);
}

.story-visual::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(10, 24, 16, .84), transparent 56%);
}

.visual-caption {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  left: 34px;
  display: grid;
}

.visual-caption span {
  color: var(--gold-light);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .2em;
}

.visual-caption strong {
  margin-top: 10px;
  color: var(--white);
  font: 600 2.1rem/1.05 "Manrope", sans-serif;
  letter-spacing: -.04em;
}

.visual-tag {
  position: absolute;
  z-index: 4;
  top: 28px;
  right: -30px;
  padding: 15px 18px;
  color: var(--ink);
  font-size: .66rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--gold);
}

.story-intro {
  margin: 30px 0 18px;
  color: var(--forest);
  font: 600 1.25rem/1.5 "Manrope", sans-serif;
}

.story-content > p:not(.eyebrow, .story-intro) {
  color: var(--muted);
}

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 36px 0;
  border-top: 1px solid var(--line);
}

.values span {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 700;
}

.values span:nth-child(odd) {
  margin-right: 18px;
}

.text-link {
  display: inline-flex;
  gap: 36px;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: .85rem;
  font-weight: 800;
}

.method-section {
  color: var(--white);
  background:
    radial-gradient(circle at 87% 15%, rgba(217, 164, 65, .12), transparent 28%),
    var(--ink);
}

.method-heading {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: end;
  margin-bottom: 78px;
}

.method-heading .eyebrow {
  margin: 0 0 10px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.method-card {
  padding: 34px 36px 10px 0;
}

.method-card + .method-card {
  padding-left: 36px;
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.method-number {
  color: var(--gold-light);
  font: 700 .72rem "Manrope", sans-serif;
  letter-spacing: .16em;
}

.method-line {
  width: 38px;
  height: 2px;
  margin: 26px 0;
  background: var(--gold);
  transition: width .35s ease;
}

.method-card:hover .method-line {
  width: 82px;
}

.method-card h3 {
  margin: 0 0 13px;
  font: 600 1.55rem "Manrope", sans-serif;
}

.method-card p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: .9rem;
}

.training-section {
  overflow: hidden;
  background: var(--cream);
}

.training-grid {
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: clamp(70px, 10vw, 140px);
  align-items: center;
}

.training-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--muted);
}

.training-tabs {
  display: flex;
  gap: 24px;
  margin-top: 38px;
  border-bottom: 1px solid var(--line);
}

.training-tab {
  position: relative;
  padding: 10px 0 14px;
  color: var(--muted);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 800;
}

.training-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
}

.training-tab.is-active {
  color: var(--forest);
}

.training-tab.is-active::after {
  transform: scaleX(1);
}

.training-panel {
  min-height: 190px;
  padding-top: 16px;
}

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

.training-panel > div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: .77rem;
}

.training-panel strong {
  color: var(--forest);
}

.training-panel span {
  color: var(--muted);
}

.brochure-stack {
  position: relative;
  min-height: 610px;
}

.brochure {
  position: absolute;
  display: block;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .35s ease;
}

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

.brochure-back {
  top: 0;
  right: -70px;
  width: 76%;
  height: 64%;
  transform: rotate(6deg);
}

.brochure-back:hover {
  transform: rotate(3deg) translateY(-8px);
}

.brochure-front {
  bottom: 0;
  left: 0;
  width: 85%;
  height: 72%;
  transform: rotate(-3deg);
}

.brochure-front:hover {
  transform: rotate(0) translateY(-8px);
}

.brochure-front span {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 13px 16px;
  color: var(--ink);
  background: var(--gold);
  font-size: .72rem;
  font-weight: 800;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 115px 0;
  color: var(--white);
  background: var(--forest);
}

.contact-orbit {
  position: absolute;
  top: -410px;
  right: -190px;
  width: 850px;
  height: 850px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.contact-orbit::before,
.contact-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  content: "";
}

.contact-orbit::before {
  inset: 90px;
}

.contact-orbit::after {
  inset: 180px;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: clamp(60px, 9vw, 120px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .65);
}

.contact-direct {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 35px;
  margin-top: 46px;
}

.contact-direct > * {
  display: grid;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.contact-direct > :last-child {
  grid-column: 1 / -1;
}

.contact-direct span {
  color: var(--gold-light);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-direct strong {
  margin-top: 6px;
  font-size: .85rem;
  font-weight: 600;
}

.contact-form {
  padding: 34px;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .22);
}

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

.contact-form label {
  display: grid;
  margin-bottom: 18px;
}

.contact-form label > span {
  margin-bottom: 7px;
  color: var(--forest);
  font-size: .68rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--gold);
}

.form-submit {
  width: 100%;
  margin-top: 7px;
  border: 0;
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .67rem;
  text-align: center;
}

.whatsapp-link {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 30px rgba(5, 52, 27, .28);
  transition: transform .2s ease;
}

.whatsapp-link:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-link svg {
  width: 26px;
  fill: currentColor;
}

.site-footer {
  color: var(--white);
  background: #0b130f;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  padding-block: 62px;
}

.footer-main > p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, .52);
  font-size: .83rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: flex-end;
  font-size: .77rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .35);
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .66rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom span {
  margin: 0 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2, .65, .3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes heroIn {
  from { opacity: .35; transform: scale(1.12); }
  to { opacity: 1; transform: scale(1.02); }
}

@media (max-width: 1040px) {
  :root {
    --container: min(100% - 40px, 920px);
  }

  .menu-button {
    position: relative;
    z-index: 102;
    display: block;
  }

  .menu-button.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 90px 10vw;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav > a {
    font: 600 2rem "Manrope", sans-serif;
  }

  .main-nav .nav-cta {
    margin: 20px 0 0;
    font-size: 1rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 150px;
    padding-bottom: 105px;
  }

  .hero-panel {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .story-grid,
  .training-grid,
  .contact-grid {
    gap: 70px;
  }

  .story-visual {
    min-height: 600px;
  }

  .brochure-stack {
    min-height: 520px;
  }

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

  .footer-main > p {
    order: 3;
    grid-column: 1 / -1;
  }
}

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

  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-mark img {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 750px;
  }

  .hero-media {
    background-position: 57% 48%;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(8, 18, 13, .93), rgba(8, 18, 13, .48)), linear-gradient(0deg, rgba(8, 18, 13, .72), transparent 60%);
  }

  .hero-content {
    align-items: center;
    padding-top: 105px;
    padding-bottom: 90px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero-intro {
    max-width: 92%;
    font-size: .96rem;
  }

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

  .hero-bottom-inner p {
    max-width: 75%;
    font-size: .59rem;
  }

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

  .proof-item {
    min-height: 112px;
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .section {
    padding: 82px 0;
  }

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

  .expertise-item {
    grid-template-columns: 40px 1fr 42px;
    gap: 14px;
  }

  .expertise-item:hover,
  .expertise-item.is-open {
    padding-inline: 10px;
  }

  .expertise-icon {
    display: none;
  }

  .detail-toggle {
    width: 40px;
    height: 40px;
  }

  .story-grid,
  .training-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .story-visual {
    min-height: 520px;
  }

  .visual-tag {
    right: -8px;
  }

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

  .values span:nth-child(odd) {
    margin-right: 0;
  }

  .method-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .method-card,
  .method-card + .method-card {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    border-left: 0;
  }

  .brochure-stack {
    width: 92%;
    min-height: 520px;
    margin-inline: auto;
  }

  .brochure-back {
    right: -20px;
  }

  .contact-section {
    padding: 85px 0;
  }

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

  .contact-direct > :last-child {
    grid-column: auto;
  }

  .contact-form {
    padding: 24px 20px;
  }

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

  .footer-main > p {
    order: initial;
    grid-column: auto;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding-block: 16px;
  }
}

@media (max-width: 420px) {
  .brand-name strong {
    font-size: .78rem;
  }

  .brand-name small {
    font-size: .58rem;
  }

  .hero h1 {
    letter-spacing: -.065em;
  }

  .training-tabs {
    gap: 17px;
  }

  .training-panel > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .brochure-stack {
    min-height: 430px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =====================================================
   HEADER & FLYER LIGHTBOX ENHANCEMENTS
   ===================================================== */
.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(5, 13, 9, .58), transparent);
  pointer-events: none;
  transition: opacity .3s ease;
}

.site-header.is-scrolled::before {
  opacity: 0;
}

.hero {
  background:
    radial-gradient(circle at 32% 48%, rgba(43, 91, 64, .38), transparent 36%),
    #0b1711;
}

.hero-media {
  right: 0;
  left: auto;
  width: 64%;
  background-position: 50% 47%;
  filter: saturate(.92) contrast(1.03);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .55) 18%, #000 42%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .55) 18%, #000 42%);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 17, 12, .97) 0%, rgba(7, 17, 12, .9) 37%, rgba(7, 17, 12, .18) 67%, rgba(7, 17, 12, .34) 100%),
    linear-gradient(0deg, rgba(7, 17, 12, .74), transparent 44%);
}

.hero-photo-badge {
  position: absolute;
  z-index: 3;
  top: 142px;
  right: max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  min-width: 280px;
  padding: 13px 16px;
  color: var(--white);
  border-left: 3px solid var(--gold);
  background: rgba(8, 18, 13, .56);
  backdrop-filter: blur(12px);
}

.hero-photo-badge span {
  color: var(--gold-light);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-photo-badge strong {
  margin-top: 3px;
  font-size: .7rem;
  font-weight: 600;
}

.brochure {
  padding: 0;
  text-align: left;
  border: 0;
  background: var(--white);
  cursor: zoom-in;
}

.flyer-open {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 13px 16px;
  color: var(--ink);
  background: var(--gold);
  font-size: .72rem;
  font-weight: 800;
}

.brochure::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 3px solid transparent;
  pointer-events: none;
  transition: border-color .25s ease;
}

.brochure:hover::after,
.brochure:focus-visible::after {
  border-color: var(--gold);
}

.brochure:focus-visible {
  outline: 3px solid var(--forest);
  outline-offset: 5px;
}

.lightbox {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
}

.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgba(5, 12, 8, .91);
  cursor: zoom-out;
  backdrop-filter: blur(12px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1120px, 94vw);
  max-height: 94vh;
  color: var(--white);
}

.lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13px;
}

.lightbox-bar > div {
  display: grid;
}

.lightbox-bar span {
  color: var(--gold-light);
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lightbox-bar strong {
  margin-top: 2px;
  font: 600 1rem "Manrope", sans-serif;
}

.lightbox-close {
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.lightbox-close span {
  position: absolute;
  top: 19px;
  left: 11px;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.lightbox-close span:first-child {
  transform: rotate(45deg);
}

.lightbox-close span:last-child {
  transform: rotate(-45deg);
}

.lightbox-stage {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
}

.lightbox-stage img {
  width: auto;
  max-width: 100%;
  max-height: calc(94vh - 110px);
  object-fit: contain;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .42);
}

.lightbox-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .24);
  cursor: pointer;
  transform: translateY(-50%);
}

.lightbox-arrow:hover {
  background: var(--gold-light);
}

.lightbox-prev {
  left: -24px;
}

.lightbox-next {
  right: -24px;
}

.lightbox-help {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .48);
  font-size: .65rem;
  text-align: center;
}

@media (max-width: 1040px) {
  .hero-photo-badge {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero-media {
    width: 100%;
    background-position: 53% 48%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox-dialog {
    width: 100%;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 16px;
    width: 42px;
    height: 42px;
    transform: none;
  }

  .lightbox-prev {
    left: 16px;
  }

  .lightbox-next {
    right: 16px;
  }

  .lightbox-help {
    display: none;
  }
}
/* =====================================================
   HERO BACKGROUND GALLERY
   ===================================================== */
.hero-media {
  overflow: hidden;
  background-image: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-color: #15261c;
  background-image: var(--hero-image);
  background-repeat: no-repeat;
  background-position: var(--hero-position, 50% 50%);
  background-size: cover;
  opacity: 0;
  transform: scale(1.055);
  transition: opacity 1.1s ease, transform 7s ease;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hero-slider-controls {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-slider-controls button {
  position: relative;
  width: 26px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-slider-controls button::before {
  position: absolute;
  top: 8px;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: rgba(255, 255, 255, .34);
  transition: background .25s ease, transform .25s ease;
}

.hero-slider-controls button:hover::before {
  background: rgba(255, 255, 255, .72);
}

.hero-slider-controls button.is-active::before {
  background: var(--gold-light);
  transform: scaleY(2);
}

.hero-slider-controls button:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

@media (max-width: 760px) {
  .hero-slider-controls {
    margin-left: auto;
  }

  .hero-slider-controls button {
    width: 18px;
  }

  .scroll-cue {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transform: none;
    transition: opacity .2s linear;
  }
}
/* =====================================================
   CINEMATIC HERO ANIMATION
   ===================================================== */
.hero-slide {
  --hero-from-x: 0%;
  --hero-from-y: 0%;
  --hero-to-x: 0%;
  --hero-to-y: 0%;
  --hero-from-scale: 1.09;
  --hero-to-scale: 1.025;
  z-index: 0;
  opacity: 0;
  transform: scale(var(--hero-from-scale)) translate3d(var(--hero-from-x), var(--hero-from-y), 0);
  transform-origin: center;
  transition:
    opacity .9s cubic-bezier(.4, 0, .2, 1),
    transform 5.2s cubic-bezier(.16, .64, .32, 1);
  backface-visibility: hidden;
}

.hero-slide:nth-child(1) {
  --hero-from-x: -1.6%;
  --hero-to-x: 1.1%;
  --hero-from-y: -.4%;
  --hero-to-y: .5%;
}

.hero-slide:nth-child(2) {
  --hero-from-x: 1.8%;
  --hero-to-x: -1%;
  --hero-from-y: -.7%;
  --hero-to-y: .4%;
  --hero-from-scale: 1.105;
}

.hero-slide:nth-child(3) {
  --hero-from-x: -.8%;
  --hero-to-x: .9%;
  --hero-from-y: 1%;
  --hero-to-y: -.6%;
}

.hero-slide:nth-child(4) {
  --hero-from-x: 1.2%;
  --hero-to-x: -.7%;
  --hero-from-y: .6%;
  --hero-to-y: -.5%;
  --hero-from-scale: 1.115;
}

.hero-slide:nth-child(5) {
  --hero-from-x: -.9%;
  --hero-to-x: .8%;
  --hero-from-y: -.8%;
  --hero-to-y: .7%;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(var(--hero-to-scale)) translate3d(var(--hero-to-x), var(--hero-to-y), 0);
}

.hero-media::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background:
    linear-gradient(112deg, transparent 20%, rgba(255, 224, 153, .1) 45%, transparent 68%);
  pointer-events: none;
  transform: translateX(-85%);
  animation: heroLightSweep 12s ease-in-out infinite;
  mix-blend-mode: screen;
}

.hero-shade::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 77% 38%, rgba(217, 164, 65, .13), transparent 28%);
  pointer-events: none;
  animation: heroGlowPulse 7s ease-in-out infinite alternate;
}

.hero-grid {
  animation: heroGridDrift 22s linear infinite;
}

.hero-photo-badge {
  animation: heroBadgeFloat 5s ease-in-out infinite alternate;
}

.hero-slider-controls button {
  overflow: hidden;
}

.hero-slider-controls button::after {
  position: absolute;
  z-index: 1;
  top: 8px;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-slider-controls button.is-active::after {
  animation: heroProgress 4.6s linear forwards;
}

@keyframes heroLightSweep {
  0%, 20% {
    opacity: 0;
    transform: translateX(-85%);
  }
  38% {
    opacity: .65;
  }
  62%, 100% {
    opacity: 0;
    transform: translateX(85%);
  }
}

@keyframes heroGlowPulse {
  from {
    opacity: .42;
    transform: scale(.96);
  }
  to {
    opacity: .9;
    transform: scale(1.05);
  }
}

@keyframes heroGridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 84px 42px;
  }
}

@keyframes heroBadgeFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(7px);
  }
}

@keyframes heroProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide.is-active {
    transform: none;
    transition: opacity .2s linear;
  }

  .hero-media::after,
  .hero-shade::after,
  .hero-grid,
  .hero-photo-badge,
  .hero-slider-controls button.is-active::after {
    animation: none;
  }
}
/* =====================================================
   UNIVERSAL RESPONSIVE REFINEMENTS
   ===================================================== */
html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 92px;
}

body {
  min-width: 0;
}

.container {
  width: min(1180px, calc(100% - clamp(28px, 5vw, 48px)));
}

:where(
  .header-inner,
  .hero-content,
  .hero-copy,
  .section-heading,
  .story-grid,
  .story-content,
  .training-grid,
  .training-copy,
  .contact-grid,
  .contact-copy,
  .footer-main,
  .expertise-copy,
  .form-row,
  .contact-form label
) {
  min-width: 0;
}

:where(h1, h2, h3, p, a, strong, span) {
  overflow-wrap: break-word;
}

input,
select,
textarea,
button {
  max-width: 100%;
}

.hero-content {
  grid-template-columns: minmax(0, 1fr) minmax(270px, 325px);
  gap: clamp(40px, 6vw, 80px);
}

.hero-copy {
  width: 100%;
}

.hero h1 {
  max-width: 100%;
}

.whatsapp-link {
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
}

@media (min-width: 1600px) {
  .hero-copy {
    max-width: 850px;
  }

  .hero h1 {
    font-size: 7.4rem;
  }

  .hero-media {
    width: 66%;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    min-height: 78px;
  }

  .menu-button {
    position: relative;
    z-index: 102;
    display: block;
    flex: 0 0 46px;
  }

  .menu-button.is-open {
    color: var(--white);
  }

  .menu-button.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(13px, 2.4vh, 21px);
    padding:
      max(92px, calc(env(safe-area-inset-top) + 72px))
      clamp(26px, 9vw, 110px)
      max(36px, env(safe-area-inset-bottom));
    color: var(--white);
    background:
      radial-gradient(circle at 85% 15%, rgba(217, 164, 65, .14), transparent 28%),
      var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav > a {
    font: 600 clamp(1.35rem, 3.4vw, 2rem)/1.15 "Manrope", sans-serif;
  }

  .main-nav > a:not(.nav-cta)::after {
    bottom: -6px;
  }

  .main-nav .nav-cta {
    margin: 14px 0 0;
    padding: 12px 18px;
    font-size: .95rem;
  }

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

  .hero-panel,
  .hero-photo-badge {
    display: none;
  }
}

@media (max-width: 900px) {
  .story-grid,
  .training-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .story-grid,
  .training-grid,
  .contact-grid {
    gap: 58px;
  }

  .story-visual {
    width: min(100%, 650px);
    min-height: 620px;
    margin-inline: auto;
  }

  .brochure-stack {
    width: min(92%, 650px);
    margin-inline: auto;
  }

  .contact-copy {
    max-width: 720px;
  }

  .footer-main {
    gap: 34px;
  }
}

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

  .container {
    width: calc(100% - 30px);
  }

  .header-inner {
    min-height: 70px;
  }

  .hero {
    min-height: min(820px, 100svh);
    height: 100svh;
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: 88px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 14vw, 4.5rem);
    line-height: .94;
  }

  .hero-intro {
    max-width: 100%;
  }

  .hero-actions {
    width: min(100%, 420px);
  }

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

  .hero-bottom-inner {
    min-height: 58px;
  }

  .section {
    padding: clamp(72px, 14vw, 88px) 0;
  }

  .section-heading h2,
  .story-content h2,
  .training-copy h2,
  .method-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .expertise-item {
    grid-template-columns: 34px minmax(0, 1fr) 40px;
  }

  .expertise-copy h3 {
    font-size: clamp(1.18rem, 5.4vw, 1.5rem);
  }

  .expertise-details {
    gap: 6px;
  }

  .expertise-item.is-open .expertise-details {
    max-height: 220px;
  }

  .story-visual {
    min-height: min(570px, 135vw);
  }

  .visual-caption {
    bottom: 24px;
    left: 22px;
  }

  .visual-caption strong {
    font-size: 1.7rem;
  }

  .training-tabs {
    overflow-x: auto;
    padding-bottom: 1px;
    scrollbar-width: thin;
  }

  .training-tab {
    flex: 0 0 auto;
  }

  .brochure-stack {
    width: min(94%, 560px);
  }

  .contact-direct strong {
    overflow-wrap: anywhere;
  }

  .footer-main {
    padding-block: 48px;
  }

  .footer-links {
    gap: 12px 18px;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 24px);
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 43px;
    height: 43px;
  }

  .brand-mark img {
    width: 41px;
    height: 41px;
  }

  .brand-name strong {
    font-size: .74rem;
  }

  .brand-name small {
    margin-top: 4px;
    font-size: .54rem;
    letter-spacing: .15em;
  }

  .main-nav {
    padding-inline: 24px;
  }

  .hero-bottom-inner > p {
    display: none;
  }

  .hero-slider-controls {
    margin-inline: auto;
  }

  .proof-item {
    min-height: 102px;
    padding: 15px 13px;
  }

  .proof-item strong {
    font-size: 1.27rem;
  }

  .proof-item span {
    font-size: .66rem;
  }

  .expertise-item {
    grid-template-columns: minmax(0, 1fr) 38px;
    padding-block: 27px;
  }

  .expertise-number {
    display: none;
  }

  .expertise-item:hover,
  .expertise-item.is-open {
    padding-inline: 7px;
  }

  .method-card h3 {
    font-size: 1.35rem;
  }

  .values {
    margin-top: 28px;
  }

  .training-tabs {
    gap: 18px;
  }

  .brochure-stack {
    min-height: 390px;
  }

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

  .whatsapp-link {
    width: 49px;
    height: 49px;
  }

  .whatsapp-link svg {
    width: 23px;
  }

  .footer-bottom {
    font-size: .6rem;
  }
}

@media (max-width: 360px) {
  .brand-name small {
    display: none;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-intro {
    font-size: .88rem;
  }

  .button {
    gap: 18px;
    padding-inline: 16px;
  }

  .training-tabs {
    gap: 14px;
  }

  .training-tab {
    font-size: .7rem;
  }
}

@media (max-height: 680px) and (min-width: 761px) {
  .hero {
    min-height: 680px;
    height: 100svh;
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 82px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 7vw, 5.5rem);
  }

  .hero-intro {
    margin-top: 20px;
  }

  .hero-actions {
    margin-top: 25px;
  }
}

@media (max-height: 600px) and (max-width: 1180px) {
  .main-nav {
    justify-content: flex-start;
    gap: 9px;
  }

  .main-nav > a {
    font-size: 1.15rem;
  }

  .main-nav .nav-cta {
    margin-top: 6px;
  }
}

@media (hover: none) {
  .expertise-item:hover {
    background: transparent;
  }

  .expertise-item.is-open {
    background: rgba(255, 255, 255, .58);
  }

  .button:hover,
  .brochure:hover,
  .whatsapp-link:hover {
    transform: none;
  }
}
/* =====================================================
   FORMSPREE AJAX STATUS
   ===================================================== */
.form-submit:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 13px 15px;
  border: 1px solid transparent;
  font-size: .76rem;
  font-weight: 600;
  line-height: 1.5;
}

.form-status.is-pending,
.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-pending {
  color: #705313;
  border-color: rgba(217, 164, 65, .35);
  background: rgba(217, 164, 65, .11);
}

.form-status.is-success {
  color: #175a35;
  border-color: rgba(35, 126, 76, .28);
  background: rgba(35, 126, 76, .1);
}

.form-status.is-error {
  color: #8c2929;
  border-color: rgba(174, 53, 53, .28);
  background: rgba(174, 53, 53, .09);
}