:root {
  --black: #050505;
  --background: #0a0a0a;
  --surface: #0d0d0d;
  --card: #111111;
  --white: #ffffff;
  --orange: #f97316;
  --orange-light: #fb923c;
  --gold: #c9a84c;
  --gold-light: #d4af37;
  --text: rgba(255, 255, 255, 0.85);
  --muted: rgba(255, 255, 255, 0.57);
  --faint: rgba(255, 255, 255, 0.35);
  --border: rgba(255, 255, 255, 0.07);
  --gold-border: rgba(201, 168, 76, 0.16);
  --heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1400px;
  --header-height: 80px;
  --radius: 3px;
  --transition: 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--orange) var(--background);
  scrollbar-width: thin;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--orange);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: linear-gradient(var(--orange), var(--gold));
}

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

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--heading);
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

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

.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: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  transition: transform var(--transition);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.site-header.is-scrolled,
.site-header.menu-visible {
  border-color: rgba(201, 168, 76, 0.12);
  background: rgba(5, 5, 5, 0.88);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.brand,
.footer-brand {
  flex: 0 0 auto;
}

.brand img {
  width: 184px;
  height: 64px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 2.25vw, 34px);
  margin-left: auto;
}

.desktop-nav > a {
  position: relative;
  padding: 30px 0 27px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.025em;
  transition: color var(--transition);
}

.desktop-nav > a::after {
  content: "";
  position: absolute;
  bottom: 23px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transition: width var(--transition);
}

.desktop-nav > a:hover,
.desktop-nav > a.active {
  color: var(--white);
}

.desktop-nav > a:hover::after,
.desktop-nav > a.active::after {
  width: 100%;
}

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

.language-switcher {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius);
}

.language-switcher button {
  min-width: 39px;
  padding: 7px 10px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  transition:
    background var(--transition),
    color var(--transition);
}

.language-switcher button[aria-pressed="true"] {
  background: var(--gold);
  color: var(--background);
}

.header-cta {
  padding: 10px 18px;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  color: var(--orange);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.02em;
  transition:
    color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.header-cta:hover {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 26px rgba(249, 115, 22, 0.24);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
  transition: transform var(--transition);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: var(--header-height);
  inset-inline: 0;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  border-top: 1px solid var(--gold-border);
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(20px);
}

.mobile-menu nav {
  display: grid;
  padding-block: 16px 28px;
}

.mobile-menu a {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--heading);
  font-size: 19px;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  background: var(--background);
}

.hero-media,
.hero-media img,
.hero-overlay,
.hero-fade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.75) 50%,
    rgba(10, 10, 10, 0.88) 100%
  );
}

.hero-fade {
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(transparent, var(--background));
}

.vertical-rail {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 1px;
  height: 100%;
  opacity: 0.1;
}

.rail-left {
  left: 8%;
  background: linear-gradient(transparent 20%, var(--gold) 50%, transparent 80%);
}

.rail-right {
  right: 8%;
  background: linear-gradient(transparent 20%, var(--orange) 50%, transparent 80%);
}

.established {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
}

.established span {
  width: 1px;
  height: 96px;
  background: linear-gradient(transparent, var(--gold));
}

.established span:last-child {
  transform: rotate(180deg);
}

.established b {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: 0.7;
  font-size: 11px;
  letter-spacing: 0.3em;
}

.hero-content {
  position: relative;
  z-index: 4;
  padding-top: calc(var(--header-height) + 54px);
  padding-bottom: 70px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
}

.eyebrow {
  margin-bottom: 30px;
}

.eyebrow > span {
  width: 48px;
  height: 1px;
  background: var(--orange);
}

.eyebrow p,
.section-kicker p {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.17;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong,
.section-heading h2 strong,
.about-copy h2 strong,
.year-art strong,
.stat strong {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gold-line {
  width: 80px;
  height: 2px;
  margin: 30px 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-quote {
  margin-bottom: 44px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--heading);
  font-size: clamp(20px, 2.2vw, 27px);
  font-style: italic;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 155px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.03em;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.button i {
  margin-left: 9px;
  font-size: 18px;
  font-style: normal;
  transition: transform var(--transition);
}

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

.button:hover i {
  transform: translateX(4px);
}

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

.button-primary:hover {
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.27);
  background: var(--orange-light);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.82);
}

.button-ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  color: var(--white);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
}

.scroll-cue i {
  width: 1px;
  height: 32px;
  background: linear-gradient(var(--gold), transparent);
  animation: scroll-cue 1.8s ease-in-out infinite;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background: var(--surface);
  content-visibility: auto;
  contain-intrinsic-size: auto 850px;
}

.section-dark {
  background: var(--background);
}

.section-divider {
  position: absolute;
  z-index: 1;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold) 30%,
    var(--gold-light) 50%,
    var(--gold) 70%,
    transparent
  );
}

.section-divider-bottom {
  inset: auto 0 0;
}

.about-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 40px,
    rgba(201, 168, 76, 0.3) 40px,
    rgba(201, 168, 76, 0.3) 41px
  );
  pointer-events: none;
}

.about-layout {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 64px;
}

.year-art {
  position: relative;
  min-height: 235px;
}

.year-art > p {
  user-select: none;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--heading);
  font-size: clamp(126px, 13vw, 180px);
  font-weight: 900;
  line-height: 1;
}

.year-art > div {
  position: absolute;
  bottom: 25px;
  left: 0;
}

.year-art strong {
  display: block;
  font-family: var(--heading);
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1;
}

.year-art span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.year-art > i {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 128px;
  transform: translateY(-50%);
  background: linear-gradient(transparent, var(--gold), transparent);
}

.section-kicker {
  margin-bottom: 16px;
}

.section-kicker > span {
  width: 32px;
  height: 1px;
  background: var(--orange);
}

.about-copy h2,
.section-heading h2 {
  color: var(--white);
  font-size: clamp(34px, 4vw, 51px);
  line-height: 1.2;
}

.about-copy h2 {
  margin-bottom: 22px;
}

.about-copy h2 span,
.about-copy h2 strong {
  display: inline;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ornament span {
  flex: 1;
  height: 1px;
}

.ornament span:first-child {
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament i {
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background: var(--gold);
}

.lead {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.9;
  white-space: pre-line;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--gold-border);
}

.stat {
  padding: 13px 8px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius);
  background: rgba(201, 168, 76, 0.04);
  text-align: center;
  transition:
    border-color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.stat:hover {
  border-color: rgba(201, 168, 76, 0.32);
  background: rgba(201, 168, 76, 0.08);
}

.stat strong {
  display: block;
  font-family: var(--heading);
  font-size: clamp(24px, 2.3vw, 32px);
}

[data-counter] {
  font-variant-numeric: tabular-nums;
}

.stat span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

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

.section-heading > p {
  max-width: 670px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

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

.activity-card,
.company-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  transform-style: preserve-3d;
  transition:
    border-color 500ms ease,
    box-shadow 500ms ease,
    transform 500ms ease;
}

.activity-card:hover,
.company-card:hover {
  border-color: rgba(201, 168, 76, 0.27);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.card-media {
  position: relative;
  height: 224px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms ease;
}

.activity-card:hover .card-media img {
  transform: scale(1.07);
  filter: saturate(1.06) contrast(1.04);
}

.card-media > div {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 10, 10, 0.18), rgba(10, 10, 10, 0.9));
  transition: background 500ms ease;
}

.activity-card:hover .card-media > div {
  background: linear-gradient(rgba(10, 10, 10, 0.05), rgba(10, 10, 10, 0.78));
}

.card-media > span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 12px;
  border-radius: var(--radius);
  background: rgba(249, 115, 22, 0.92);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.card-content,
.company-card {
  padding: 30px;
}

.card-content h3,
.company-card h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 24px;
}

.card-content > b {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
}

.card-content > p,
.company-card > p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.75;
}

.card-line {
  display: block;
  width: 32px;
  height: 1px;
  margin-bottom: 22px;
  background: var(--gold);
  transition: width 500ms ease;
}

.activity-card:hover .card-line,
.company-card:hover .card-line {
  width: 72px;
}

.card-content a,
.company-card > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 650;
  transition: color var(--transition);
}

.card-content a:hover {
  color: var(--orange-light);
}

.card-content em,
.company-card em {
  font-style: normal;
  transition: transform var(--transition);
}

.card-content a:hover em,
.company-card a:hover em {
  transform: translate(3px, -2px);
}

.company-grid {
  max-width: 900px;
  margin-inline: auto;
}

.company-card {
  padding: 32px;
}

.corner-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 68px;
  height: 68px;
  background: linear-gradient(225deg, rgba(201, 168, 76, 0.09), transparent);
  transition: transform 500ms ease;
}

.company-card:hover .corner-glow {
  transform: scale(2);
}

.company-tag {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 5px 12px;
  border-radius: var(--radius);
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.company-card > a {
  padding: 10px 16px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius);
  color: rgba(201, 168, 76, 0.8);
}

.company-card > a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--background);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  max-width: 1040px;
  margin-inline: auto;
}

.contact-details h3,
.contact-panel h3 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 20px;
}

.contact-details .ornament {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange);
  font-size: 17px;
  font-weight: 600;
}

.contact-item b {
  display: block;
  margin: 1px 0 4px;
  color: var(--faint);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
}

.contact-item a,
.contact-item p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
}

.contact-item a:hover {
  color: var(--orange-light);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid var(--gold-border);
}

.instagram-link b {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  transition: color var(--transition);
}

.instagram-link:hover b {
  color: var(--orange-light);
}

.contact-panel {
  align-self: start;
  padding: 32px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  background: var(--card);
}

.contact-panel form {
  display: grid;
  gap: 14px;
}

.contact-panel input,
.contact-panel textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  outline: 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 13px;
  transition:
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.contact-panel textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-panel input::placeholder,
.contact-panel textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.contact-panel input:focus,
.contact-panel textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.contact-panel button {
  width: 100%;
  padding: 15px;
  border: 0;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.03em;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.contact-panel button:hover:not(:disabled) {
  transform: translateY(-2px);
  background: var(--orange-light);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.22);
}

.contact-panel button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 20px;
  color: var(--gold);
  font-size: 12px;
  line-height: 1.6;
}

.form-status.is-error {
  color: #fb7185;
}

.site-footer {
  position: relative;
  background: var(--black);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 112px;
  padding-block: 20px;
}

.footer-brand img {
  width: 160px;
  height: 68px;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity var(--transition);
}

.footer-brand:hover img {
  opacity: 1;
}

.footer-inner p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  text-align: center;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.footer-social:hover {
  color: var(--white);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 750ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal.reveal-left {
  transform: translateX(-46px);
}

.js .reveal.reveal-right {
  transform: translateX(46px);
}

.js .reveal.reveal-scale {
  transform: translateY(26px) scale(0.96);
}

.js .reveal.reveal-left.in-view,
.js .reveal.reveal-right.in-view,
.js .reveal.reveal-scale.in-view {
  transform: none;
}

.js .reveal.reveal-image {
  opacity: 1;
  clip-path: inset(0 100% 0 0);
  transform: scale(1.035);
  transition:
    clip-path 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.reveal-image.in-view {
  clip-path: inset(0);
  transform: scale(1);
}

.lazy-pending {
  opacity: 0;
  filter: blur(9px);
  transition:
    opacity 650ms ease,
    filter 650ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lazy-pending.is-loaded {
  opacity: 1;
  filter: blur(0);
}

@keyframes scroll-cue {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .established {
    display: none;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 88px 0;
  }

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

  .year-art {
    max-width: 640px;
  }

  .year-art > i {
    display: none;
  }

  .activity-grid,
  .company-grid {
    gap: 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding-block: 26px;
  }

  .footer-social {
    justify-self: center;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .brand img {
    width: 145px;
    height: 56px;
  }

  .header-actions {
    gap: 7px;
  }

  .language-switcher button {
    min-width: 34px;
    padding: 7px;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 54px);
    padding-bottom: 100px;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 56px);
  }

  .hero-quote {
    max-width: 360px;
    margin-bottom: 34px;
  }

  .button {
    flex: 1 1 150px;
  }

  .section {
    padding: 76px 0;
  }

  .year-art {
    min-height: 190px;
  }

  .year-art > p {
    font-size: clamp(94px, 31vw, 135px);
  }

  .year-art > div {
    bottom: 18px;
  }

  .about-copy h2,
  .section-heading h2 {
    font-size: 36px;
  }

  .stats {
    gap: 8px;
  }

  .stat {
    padding-inline: 4px;
  }

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

  .activity-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

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

  .card-media {
    height: 210px;
  }

  .card-content,
  .company-card,
  .contact-panel {
    padding: 24px;
  }

  .contact-grid {
    gap: 36px;
  }
}

@media (max-width: 410px) {
  .brand img {
    width: 128px;
  }

  .language-switcher button {
    min-width: 31px;
    padding-inline: 5px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }
}

@media (hover: none) {
  .activity-card:hover,
  .company-card:hover,
  .stat:hover {
    transform: none;
  }
}

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

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

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

  .js .reveal.reveal-image {
    clip-path: inset(0);
  }

  .lazy-pending {
    opacity: 1;
    filter: none;
  }
}
