@font-face {
  font-family: "Titillium Web";
  src: url("../fonts/titilliumweb-napecztiaohvxomyor9n_e7fdmpmdq.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Titillium Web";
  src: url("../fonts/titilliumweb-napdcztiaohvxomyor9n_e7ffbzcgitzyw.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --red: #d53743;
  --red-dark: #c82d39;
  --ink: #111111;
  --muted: #777777;
  --soft: #f3f3f3;
  --container: 1140px;
  --header-height: 106px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  background: #ffffff;
  color: var(--ink);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(213, 55, 67, .35);
  outline-offset: 3px;
}

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

.narrow {
  max-width: 960px;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: 12px;
  padding: 10px 16px;
  background: #fff;
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  height: var(--header-height);
  background: #fff;
  box-shadow: 0 5px 24px rgba(35, 35, 35, .07);
}

.header-inner {
  width: min(calc(100% - 48px), var(--container));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 38px;
}

.brand {
  align-self: stretch;
  display: flex;
  align-items: center;
  width: 132px;
}

.brand img {
  width: 128px;
  height: 94px;
  object-fit: contain;
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.25vw, 50px);
}

.main-navigation a {
  position: relative;
  padding: 41px 0 37px;
  color: #555;
  font-family: "Titillium Web", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  transition: color .25s ease;
}

.main-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 21px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s cubic-bezier(.16, 1, .3, 1);
}

.main-navigation a:hover,
.main-navigation a[aria-current="page"] {
  color: var(--red);
}

.main-navigation a:hover::after,
.main-navigation a[aria-current="page"]::after {
  transform: scaleX(1);
}

.quote-button,
.discover-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 27px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 19px rgba(213, 55, 67, .22);
  font-family: "Titillium Web", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background .25s ease, transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s ease;
}

.quote-button .icon {
  width: 15px;
  height: 15px;
}

.quote-button:hover,
.discover-button:hover {
  background: var(--red-dark);
  transform: translateY(-4px);
  box-shadow: 0 13px 25px rgba(213, 55, 67, .28);
}

.quote-button:active,
.discover-button:active,
button:active {
  transform: translateY(1px) scale(.99);
}

.menu-toggle {
  display: none;
}

.home-hero,
.contact-hero {
  position: relative;
  display: flex;
  overflow: hidden;
  isolation: isolate;
  background-position: center;
  background-size: cover;
}

.home-hero {
  min-height: 80vh;
  background-image: url("../images/homepage_petronisud.jpg");
}

.contact-hero {
  min-height: 80vh;
  align-items: center;
  justify-content: center;
  background-image: url("../images/construction.jpg");
}

.hero-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--red);
  opacity: .72;
}

.hero-copy {
  align-self: center;
  color: #fff;
}

.hero-eyebrow {
  margin: 0 0 16px;
  font-family: "Titillium Web", sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: .25px;
  text-transform: uppercase;
}

.hero-rule {
  display: block;
  width: 52px;
  height: 3px;
  margin-bottom: 22px;
  background: #fff;
}

.hero-copy h1 {
  margin: 0;
  color: #fff;
  font-family: "Titillium Web", sans-serif;
  font-size: clamp(58px, 5.5vw, 82px);
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: .98;
  text-shadow: 0 2px 5px rgba(0, 0, 0, .5);
}

.hero-copy h1 span {
  display: block;
}

.company-intro {
  padding: 64px 0 52px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 64px;
}

.section-title {
  margin: 0 0 38px;
  padding-left: 17px;
  border-left: 5px solid var(--red);
}

.section-title h1,
.section-title h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Titillium Web", sans-serif;
  font-size: clamp(34px, 3vw, 45px);
  font-weight: 600;
  letter-spacing: -.7px;
  line-height: 1.05;
  text-transform: uppercase;
}

.intro-copy p,
.company-copy p,
.detail-copy p,
.legal-content p {
  color: #6b6b6b;
  font-size: 15px;
  line-height: 1.9;
  text-align: justify;
}

.intro-copy p {
  margin: 0 0 16px;
}

.intro-illustration {
  display: flex;
  min-height: 410px;
  align-items: center;
  justify-content: center;
}

.intro-illustration img {
  width: 100%;
  max-width: 500px;
  animation: illustration-float 6s ease-in-out infinite;
}

@keyframes illustration-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

.activities {
  padding: 42px 0 74px;
}

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

.activity-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #414141 var(--card-image) center / cover no-repeat;
  color: #fff;
  isolation: isolate;
}

.activity-card::before,
.activity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.activity-card::before {
  background: linear-gradient(180deg, rgba(10, 10, 10, .18), rgba(10, 10, 10, .75));
}

.activity-card::after {
  background: var(--red);
  opacity: 0;
  transition: opacity .45s cubic-bezier(.16, 1, .3, 1);
}

.activity-card:hover::after {
  opacity: .62;
}

.activity-card:hover .activity-content {
  transform: translateY(-7px);
}

.activity-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 45px 42px;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}

.activity-content h3 {
  max-width: 310px;
  margin: 0 0 18px;
  font-family: "Titillium Web", sans-serif;
  font-size: clamp(35px, 3vw, 49px);
  font-weight: 600;
  letter-spacing: -.5px;
  line-height: .96;
}

.activity-subtitle {
  margin: 0 0 18px;
  font-family: "Titillium Web", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.activity-content ul,
.detail-list,
.specialty-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.activity-content li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 8px;
  align-items: start;
  margin: 9px 0;
  font-size: 11px;
  line-height: 1.25;
  text-transform: uppercase;
}

.activity-content li .icon,
.detail-list li .icon,
.specialty-card li .icon {
  color: var(--red);
}

.instagram-section {
  padding: 84px 24px;
  background: #f4f4f4;
  text-align: center;
}

.instagram-section h2 {
  margin: 0 0 18px;
  font-family: "Titillium Web", sans-serif;
  font-size: 37px;
  font-weight: 400;
  line-height: 1.05;
}

.instagram-section h2 strong {
  font-weight: 700;
}

.instagram-section > a {
  color: var(--red);
  font-size: 19px;
}

.site-footer {
  padding: 68px 0 28px;
  background: #fff;
}

.footer-inner {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
  text-align: center;
}

.footer-inner > h2 {
  margin: 0 0 30px;
  font-family: "Titillium Web", sans-serif;
  font-size: 30px;
}

.subsidiaries {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
  max-width: 910px;
  margin: 0 auto 42px;
}

.subsidiary {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1);
  opacity: .72;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.subsidiary:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-3px);
}

.subsidiary img {
  max-width: 170px;
  max-height: 75px;
  object-fit: contain;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 35px;
}

.footer-social h3 {
  margin: 0;
  font-family: "Titillium Web", sans-serif;
  font-size: 22px;
}

.footer-social > div {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  transition: transform .2s ease, background .2s ease;
}

.footer-social a:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

.footer-social .icon {
  width: 17px;
  height: 17px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #e7e7e7;
  color: #777;
  font-family: "Titillium Web", sans-serif;
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 20px;
}

.footer-bottom a:hover {
  color: var(--red);
}

.contact-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Titillium Web", sans-serif;
  font-size: clamp(63px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: .95;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .55);
}

.contact-section {
  padding: 90px 0 130px;
}

.contact-section .section-title h2 {
  font-size: 35px;
  font-weight: 400;
  text-transform: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.65fr .95fr;
  align-items: start;
  gap: 68px;
}

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

.contact-form label {
  display: block;
  min-width: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #8d8d8d;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 12px 13px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input {
  min-height: 52px;
}

.contact-form textarea {
  min-height: 135px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 1px var(--red);
}

.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: var(--red);
}

.contact-form small {
  min-height: 21px;
  display: block;
  padding: 3px 12px 0;
  color: var(--red);
  font-size: 12px;
}

.contact-form > button {
  min-width: 330px;
  min-height: 58px;
  float: right;
  border: 0;
  background: #0d0d0d;
  color: #fff;
  cursor: pointer;
  font-family: "Titillium Web", sans-serif;
  font-size: 14px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  transition: background .25s ease, transform .2s ease;
}

.contact-form > button:hover {
  background: var(--red);
}

.form-status {
  min-height: 24px;
  margin: 2px 0 10px;
  color: var(--red);
  font-size: 13px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
}

.contact-card {
  min-height: 330px;
  padding: 45px 39px;
  background: var(--red);
  color: #fff;
}

.contact-card > .icon {
  width: 47px;
  height: 47px;
  margin: 0 auto 20px;
}

.contact-card h2 {
  margin: 0 0 30px;
  font-size: 35px;
  text-align: center;
}

.contact-card p {
  margin: 9px 0;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
}

.contact-card a:hover {
  text-decoration: underline;
}

.generic-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  background: #b9b9b9;
}

.generic-hero .container {
  padding-top: 30px;
}

.generic-hero h1 {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-family: "Titillium Web", sans-serif;
  font-size: clamp(62px, 6.2vw, 88px);
  font-weight: 500;
  line-height: .95;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .68);
}

.generic-hero span,
.services-intro span {
  display: block;
  width: 52px;
  height: 5px;
  margin-top: 24px;
  background: var(--red);
}

.company-copy {
  padding: 65px 0 35px;
}

.company-copy p {
  margin: 0 0 19px;
}

.team-section {
  padding: 35px 0 78px;
}

.team-section .section-title h2 {
  font-size: 72px;
  font-weight: 500;
  text-transform: none;
}

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

.team-member {
  min-width: 0;
  text-align: center;
}

.team-photo {
  width: 135px;
  aspect-ratio: 1;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #e6e6e6;
}

.team-member h3 {
  margin: 0 0 3px;
  font-family: "Titillium Web", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.team-member .role {
  min-height: 46px;
  margin: 0 0 12px;
  color: #aaa;
  font-size: 11px;
  letter-spacing: 2px;
  line-height: 1.35;
}

.team-member a {
  display: block;
  overflow: hidden;
  color: #777;
  font-size: 12px;
  text-overflow: ellipsis;
}

.team-member a:hover {
  color: var(--red);
}

.specialties {
  padding: 0 0 72px;
}

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

.specialty-card {
  position: relative;
  min-height: 445px;
  padding: 110px 42px 50px;
  background: #444;
  color: #fff;
  overflow: hidden;
}

.specialty-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  opacity: 0;
  transition: opacity .35s ease;
}

.specialty-card:hover::after {
  opacity: .5;
}

.specialty-card > * {
  position: relative;
  z-index: 1;
}

.specialty-card > a {
  position: absolute;
  z-index: 2;
  inset: 0;
}

.specialty-card h3 {
  margin: 0 0 35px;
  font-family: "Titillium Web", sans-serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
}

.specialty-card li {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 9px;
  margin: 11px 0;
  font-size: 13px;
}

.services-intro {
  min-height: 58vh;
  display: flex;
  align-items: center;
}

.services-intro h1 {
  width: 66%;
  margin: 0 0 0 auto;
  font-family: "Titillium Web", sans-serif;
  font-size: clamp(55px, 6vw, 85px);
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: .95;
}

.services-intro h1 strong {
  font-weight: 700;
}

.services-intro span {
  width: 6px;
  height: 260px;
  margin-top: 75px;
}

.service-links {
  padding: 0 0 90px;
}

.service-link {
  min-height: 490px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 10px;
  padding: 70px 55px;
  background: #f2f2f2;
}

.service-link h2 {
  margin: 0 0 55px;
  font-family: "Titillium Web", sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  line-height: 1;
}

.discover-button {
  min-height: 54px;
  padding: 0 32px;
  font-size: 16px;
}

.discover-button .icon {
  width: 18px;
  height: 18px;
}

.detail-content {
  padding: 80px 0 120px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr;
  gap: 80px;
}

.detail-copy p {
  margin: 0 0 20px;
}

.detail-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 500;
}

.detail-list .icon {
  margin-top: 2px;
}

.legal-content {
  padding: 78px 0 110px;
}

.legal-content h2 {
  margin: 42px 0 12px;
  font-family: "Titillium Web", sans-serif;
  font-size: 31px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content a {
  color: var(--red);
  text-decoration: underline;
}

.message-page {
  min-height: 68vh;
  display: grid;
  place-items: center;
  padding: 80px 24px;
  text-align: center;
}

.message-page > div {
  max-width: 650px;
}

.message-page h1 {
  margin: 22px 0 12px;
  font-family: "Titillium Web", sans-serif;
  font-size: clamp(45px, 6vw, 72px);
  line-height: 1;
}

.message-page p {
  color: #707070;
}

.message-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
}

.message-icon .icon {
  width: 36px;
  height: 36px;
}

.message-page .discover-button {
  margin-top: 25px;
}

.error-code {
  margin: 0 !important;
  color: var(--red) !important;
  font-family: "Titillium Web", sans-serif;
  font-size: 110px;
  font-weight: 700;
  line-height: .8;
}

.cookie-banner {
  position: fixed;
  z-index: 60;
  left: 20px;
  bottom: 20px;
  width: min(470px, calc(100% - 40px));
  padding: 28px;
  border: 1px solid #e2e2e2;
  background: #fff;
  box-shadow: 0 12px 38px rgba(0, 0, 0, .18);
}

.cookie-banner[hidden],
.cookie-manage[hidden],
[hidden] {
  display: none !important;
}

.cookie-banner h2 {
  margin: 0 35px 8px 0;
  font-family: "Titillium Web", sans-serif;
  font-size: 22px;
}

.cookie-banner p {
  margin: 0 0 18px;
  color: #666;
  font-size: 14px;
}

.cookie-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #555;
  cursor: pointer;
}

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

.cookie-actions button {
  min-height: 42px;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
}

.cookie-actions .secondary {
  background: #fff;
  color: var(--red);
}

.cookie-preferences {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid #e5e5e5;
}

.cookie-preferences label,
.cookie-preferences a {
  font-size: 13px;
}

.cookie-preferences a {
  color: var(--red);
  text-decoration: underline;
}

.cookie-manage {
  position: fixed;
  z-index: 55;
  left: 20px;
  bottom: 20px;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .16);
  color: #555;
  cursor: pointer;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1) var(--delay, 0ms), transform .7s cubic-bezier(.16, 1, .3, 1) var(--delay, 0ms);
}

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

@media (max-width: 980px) {
  :root { --header-height: 96px; }

  .header-inner {
    grid-template-columns: 125px 1fr auto;
    gap: 22px;
  }

  .brand,
  .brand img {
    width: 116px;
  }

  .brand img {
    height: 86px;
  }

  .main-navigation {
    gap: 20px;
  }

  .main-navigation a {
    font-size: 11px;
  }

  .quote-button {
    padding: 0 18px;
  }

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

  .activity-card:last-child,
  .specialty-card:last-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 767px) {
  :root { --header-height: 130px; }

  .container,
  .footer-inner,
  .header-inner {
    width: calc(100% - 40px);
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 0;
  }

  .brand,
  .brand img {
    width: 120px;
  }

  .brand img {
    height: 96px;
  }

  .menu-toggle {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    justify-self: end;
    border: 0;
    background: transparent;
    color: #050505;
    cursor: pointer;
  }

  .menu-toggle .icon {
    width: 33px;
    height: 33px;
    stroke-width: 2.4;
  }

  .main-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    background: #f4f4f4;
    opacity: 0;
    text-align: center;
    transform: translateY(-8px);
    transition: max-height .42s cubic-bezier(.16, 1, .3, 1), opacity .25s ease, transform .42s cubic-bezier(.16, 1, .3, 1);
  }

  .main-navigation.is-open {
    max-height: 330px;
    padding: 4px 0;
    opacity: 1;
    transform: none;
  }

  .main-navigation a {
    padding: 10px 20px;
    color: #232323;
    font-size: 14px;
  }

  .main-navigation a::after {
    display: none;
  }

  .quote-button {
    display: none;
  }

  .home-hero {
    min-height: 60vh;
    background-position: center;
  }

  .hero-eyebrow {
    max-width: 340px;
    margin-bottom: 17px;
    font-size: 14px;
    line-height: 1.2;
  }

  .hero-copy.container {
    width: calc(100% - 20px);
  }

  .hero-rule {
    width: 38px;
    margin-bottom: 23px;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 12.5vw, 58px);
    line-height: 1;
  }

  .company-intro {
    padding: 76px 0 20px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-title {
    margin-bottom: 35px;
    padding-left: 14px;
  }

  .section-title h1,
  .section-title h2 {
    font-size: 28px;
  }

  .intro-copy p,
  .company-copy p,
  .detail-copy p,
  .legal-content p {
    font-size: 14px;
    line-height: 1.95;
  }

  .intro-illustration {
    min-height: 290px;
  }

  .intro-illustration img {
    max-width: 360px;
  }

  .activities {
    padding: 35px 0 55px;
  }

  .activities-grid,
  .specialties-grid,
  .team-grid,
  .detail-grid,
  .contact-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .activity-card,
  .activity-card:last-child,
  .specialty-card:last-child {
    grid-column: auto;
  }

  .activity-card {
    min-height: 510px;
  }

  .activity-content {
    padding: 38px 28px;
  }

  .activity-content h3 {
    font-size: 42px;
  }

  .instagram-section {
    padding: 70px 20px;
  }

  .instagram-section h2 {
    font-size: 31px;
  }

  .site-footer {
    padding-top: 55px;
  }

  .subsidiaries {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

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

  .footer-bottom nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-hero {
    min-height: 63vh;
  }

  .contact-hero h1 {
    font-size: 54px;
  }

  .contact-section {
    padding: 48px 0 90px;
  }

  .contact-section .section-title h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .contact-grid {
    gap: 48px;
  }

  .contact-form > button {
    width: 100%;
    min-width: 0;
    float: none;
  }

  .contact-card {
    padding: 42px 28px;
  }

  .generic-hero {
    min-height: 55vh;
  }

  .generic-hero h1 {
    max-width: 330px;
    font-size: 50px;
  }

  .generic-hero span {
    width: 20px;
    height: 4px;
  }

  .company-copy {
    padding: 44px 0 25px;
  }

  .team-section {
    padding-bottom: 56px;
  }

  .team-section .section-title h2 {
    font-size: 48px;
  }

  .team-grid {
    gap: 50px;
  }

  .team-photo {
    width: 150px;
  }

  .specialty-card {
    min-height: 400px;
    padding: 90px 30px 45px;
  }

  .services-intro {
    min-height: 48vh;
    align-items: flex-end;
    padding-bottom: 45px;
  }

  .services-intro h1 {
    width: 100%;
    margin: 0;
    font-size: 45px;
    line-height: .98;
    text-align: center;
  }

  .services-intro span {
    width: 6px;
    height: 24px;
    margin-top: 52px;
  }

  .service-links {
    padding-bottom: 55px;
  }

  .service-link {
    min-height: 300px;
    padding: 45px 20px;
  }

  .service-link h2 {
    margin-bottom: 36px;
    font-size: 39px;
  }

  .discover-button {
    min-height: 47px;
    padding: 0 23px;
    font-size: 14px;
  }

  .detail-content {
    padding: 50px 0 82px;
  }

  .detail-grid {
    gap: 32px;
  }

  .legal-content {
    padding: 55px 0 85px;
  }

  .cookie-banner {
    left: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
    padding: 23px;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
