:root {
  --oma-bg: #f8f8f6;
  --oma-text: #181818;
  --oma-muted: #5f5f5f;
  --oma-border: #dcdcdc;
  --oma-accent: #101010;
  --container: min(1200px, 92vw);
}

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

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--oma-text);
  background: #fff;
}

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

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

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

.section-space {
  padding: 4rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--oma-border);
}

body.home .site-header--overlay + .site-main {
  padding-top: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.site-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.site-logo,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  max-width: 160px;
}

.site-logo__img,
.custom-logo-link img,
.site-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 40px;
}

.primary-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav .menu-item-has-children {
  position: relative;
}

.primary-nav .menu-item-has-children > a {
  display: inline-block;
  padding-bottom: 0.75rem;
  margin-bottom: -0.75rem;
}

.primary-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 12rem;
  margin: 0;
  padding: 0.5rem 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--oma-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 50;
}

.primary-nav .sub-menu .menu-item {
  display: block;
  margin: 0;
}

.primary-nav .sub-menu a {
  display: block;
  padding: 0.45rem 1rem;
  white-space: nowrap;
  color: var(--oma-text);
}

.primary-nav .sub-menu a:hover,
.primary-nav .sub-menu .current-menu-item > a {
  color: #2f6fed;
}

.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu {
  display: block;
}

.site-header--overlay .primary-nav .sub-menu {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
}

.site-header--overlay .primary-nav .sub-menu a {
  color: var(--oma-text);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 72vh;
  background: var(--oma-bg);
}

/* Homepage: full-viewport slider only */
body.home {
  overflow: hidden;
}

body.home .site-main {
  min-height: 0;
}

.hero--fullscreen {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  z-index: 1;
  background: #000;
}

.hero--fullscreen .hero-slider,
.hero--fullscreen .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.hero--fullscreen .hero-slide {
  display: block;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 2.5s ease-in-out;
  will-change: opacity;
}

.hero--fullscreen .hero-slide.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.hero--fullscreen .hero-slider--video-only .hero-slide {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

/* Outgoing slide: starts fully visible on top, then fades out */
.hero--fullscreen .hero-slide.is-previous {
  display: block;
  opacity: 1;
  z-index: 3;
  pointer-events: none;
}

.hero--fullscreen .hero-slide.is-previous.is-fading {
  opacity: 0;
}

/* Hero zoom is driven by JS (one cycle per slide) */
.hero--fullscreen .ken-burns img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
}

.hero--fullscreen .hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero--fullscreen .hero-media img,
.hero--fullscreen .hero-image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.hero--fullscreen .hero-media--video iframe,
.hero--fullscreen .hero-media--video .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-height: 100dvh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
}

.hero--fullscreen .hero-media--video .hero-video {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.hero--fullscreen .hero-slide--placeholder .hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
}

.hero--fullscreen .hero-content {
  position: absolute;
  inset: auto 0 10%;
  z-index: 4;
  color: #fff;
  pointer-events: none;
}

.hero--fullscreen .hero-content__inner {
  pointer-events: auto;
}

.hero--fullscreen .hero-title {
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 0.75rem;
  max-width: 14ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero--fullscreen .hero-subtitle {
  margin: 0 0 1.25rem;
  max-width: 42ch;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.5;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
}

.hero--fullscreen .hero-button {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.hero--fullscreen .hero-button:hover,
.hero--fullscreen .hero-button:focus {
  background: #fff;
  color: #111;
}

.hero--fullscreen .hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transform: translateX(-50%);
  pointer-events: auto;
}

.hero--fullscreen .hero-slider__dot {
  box-sizing: border-box;
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.hero--fullscreen .hero-slider__dot:hover,
.hero--fullscreen .hero-slider__dot:focus-visible {
  background-color: rgba(255, 255, 255, 0.55);
  outline: none;
}

.hero--fullscreen .hero-slider__dot.is-active,
.hero--fullscreen .hero-slider__dot[aria-current="true"] {
  background-color: #fff;
  border-color: #fff;
  transform: scale(1.2);
}

/* Overlay header on homepage */
.site-header--overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
}

.site-header--overlay .site-title,
.site-header--overlay .primary-nav a,
.site-header--overlay .menu-toggle {
  color: #fff;
}

.site-header--overlay .menu-toggle {
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}

.site-header--overlay .header-inner {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.hero-slider,
.hero-slide {
  position: relative;
  min-height: 72vh;
}

/* Only non-fullscreen heroes use display toggle */
.hero:not(.hero--fullscreen) .hero-slide {
  display: none;
}

.hero:not(.hero--fullscreen) .hero-slide.is-active {
  display: block;
}

.hero-media img,
.hero-media iframe {
  width: 100%;
  height: 72vh;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  inset: auto 0 8%;
  color: #fff;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  margin: 0;
  max-width: 12ch;
}

.hero-content p {
  max-width: 50ch;
  font-size: 1.1rem;
}

/* Project cards / non-hero: gentle looping zoom */
.card-media.ken-burns img {
  animation: kenburns 16s ease-in-out infinite alternate;
  transform-origin: center center;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero--fullscreen .hero-slide {
    transition: opacity 0.5s ease;
  }

  .hero--fullscreen .ken-burns img,
  .card-media.ken-burns img {
    animation: none;
  }
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
}

.project-grid,
.news-grid,
.expertise-grid,
.gallery-grid,
.team-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.project-card,
.expertise-card {
  grid-column: span 4;
  background: #fff;
}

.expertise-card {
  background: var(--oma-bg);
  border-radius: 24px;
  overflow: hidden;
  padding: 1rem;
}

.expertise-card img {
  border-radius: 16px;
}

.news-card {
  grid-column: span 4;
}

.news-archive {
  padding-top: 2rem;
}

.news-archive .oma-breadcrumbs {
  margin-bottom: 1.5rem;
}

.news-grid--masonry {
  display: block;
  column-count: 2;
  column-gap: 1.5rem;
}

.news-grid--masonry .news-card {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  display: block;
  grid-column: auto;
}

.news-card__link {
  display: block;
  color: #fff;
  text-decoration: none;
}

.news-card__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #e8e8e6;
  line-height: 0;
}

.news-card__image {
  width: 100%;
  height: auto;
  display: block;
}

.news-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  pointer-events: none;
}

.news-card__label {
  display: block;
  max-width: 92%;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.news-card__media--empty {
  min-height: 260px;
}

.news-card__media--empty .news-card__overlay {
  position: absolute;
  inset: 0;
  padding: 1.25rem 1.5rem;
}

.news-card__media--empty .news-card__label {
  color: var(--oma-text);
  text-shadow: none;
}

.single-news .news-intro {
  margin: 1rem 0 1.5rem;
  font-size: 1.05rem;
  color: var(--oma-muted);
}

.single-news.section-space {
  padding-bottom: 2rem;
}

.recent-news-slider {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--oma-border);
}

.recent-news-slider__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.recent-news-slider__header h2 {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--oma-muted);
}

.recent-news-slider__nav {
  display: flex;
  gap: 0.35rem;
}

.recent-news-slider__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--oma-text);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.recent-news-slider__btn:hover:not(:disabled) {
  opacity: 0.55;
}

.recent-news-slider__btn:disabled {
  opacity: 0.25;
  cursor: default;
}

.recent-news-slider__viewport {
  overflow: hidden;
}

.recent-news-slider__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease;
  will-change: transform;
}

.recent-news-slider__track .news-card--compact {
  flex: 0 0 calc((100% - 2rem) / 3);
  grid-column: auto;
  margin: 0;
}

.news-card--compact .news-card__link {
  display: block;
  color: #fff;
}

.news-card--compact .news-card__media {
  position: relative;
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  height: auto;
  overflow: hidden;
  background: #e8e8e6;
}

.news-card--compact .news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.news-card--compact .news-card__link:hover .news-card__image {
  transform: scale(1.04);
}

.news-card--compact .news-card__media--empty {
  min-height: 0;
  height: auto;
  aspect-ratio: 1 / 1;
}

.news-card--compact .news-card__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  padding: 2rem 0.9rem 0.75rem;
  font-size: 0.8rem;
  line-height: 1.35;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.card-body {
  padding: 1rem 0;
}

.project-info-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.project-info-table ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-info-table li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--oma-border);
}

/* Single project: fullscreen gallery + information panel */
body.single-project.project-view-gallery {
  overflow: hidden;
}

body.single-project.project-view-gallery .site-footer {
  display: none;
}

body.single-project.project-view-gallery .site-header--overlay + .site-main {
  padding-top: 0;
}

body.single-project.project-view-information .site-header--overlay {
  position: sticky;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--oma-border);
}

body.single-project.project-view-information .site-header--overlay .site-title,
body.single-project.project-view-information
  .site-header--overlay
  .primary-nav
  a,
body.single-project.project-view-information
  .site-header--overlay
  .menu-toggle {
  color: var(--oma-text);
}

body.single-project.project-view-information
  .site-header--overlay
  .menu-toggle {
  border-color: var(--oma-border);
  background: #fff;
}

.single-project {
  position: relative;
}

/* Shared title + tabs — same spot on Gallery and Information */
.project-chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 35;
  pointer-events: none;
  padding: 5.25rem max(1.5rem, calc((100vw - var(--container)) / 2)) 0;
}

.project-chrome__intro {
  pointer-events: auto;
  max-width: 14rem;
}

.project-chrome__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  color: #181818;
}

.project-tabs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.project-tabs__btn {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(24, 24, 24, 0.42);
  cursor: pointer;
  text-align: left;
}

.project-tabs__btn.is-active,
.project-tabs__btn:hover {
  color: #2f6fed;
}

.project-info-collapse {
  pointer-events: auto;
  position: absolute;
  top: 4.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.project-info-collapse span {
  display: block;
  transform: rotate(-90deg);
}

.project-info-collapse[hidden] {
  display: none !important;
}

.project-close {
  pointer-events: auto;
  position: fixed;
  top: 1rem;
  right: 1.25rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  color: #000;
  font-size: 3rem;
  line-height: 1;
  text-decoration: none;
}

.project-gallery-view {
  position: fixed;
  inset: 0;
  z-index: 5;
  background: #111;
}

.project-gallery-view[hidden] {
  display: none !important;
}

.project-slider {
  position: absolute;
  inset: 0;
}

.project-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  background: #111;
}

.project-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.project-slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-slide--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
}

.project-slider__nav {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 4rem;
  height: 4rem;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 4rem;
  line-height: 1;
  cursor: pointer;
  text-shadow: none;
}

.project-slider__nav--prev {
  left: 0.5rem;
}

.project-slider__nav--next {
  right: 0.5rem;
}

/* Keep primary nav clear of the close button on project pages */
body.single-project .site-header--overlay .header-inner {
  padding-right: 4.5rem;
}

.project-info-view {
  position: relative;
  z-index: 6;
  background: #fff;
  min-height: 70vh;
  padding: 11rem 0 0;
}

.project-info-view[hidden] {
  display: none !important;
}

.project-info-view__inner {
  position: relative;
  padding-bottom: 2rem;
}

.project-info-view__body {
  max-width: 46rem;
  margin-left: clamp(0rem, 12vw, 10rem);
}

.project-info-content {
  color: #6b6b6b;
  font-size: 0.98rem;
  line-height: 1.7;
}

.project-info-content p {
  margin: 0 0 1.1rem;
}

.project-info-meta {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  color: #6b6b6b;
  font-size: 0.95rem;
  line-height: 1.7;
}

.project-info-meta__label {
  margin-right: 0.25rem;
}

.similar-projects-slider {
  margin-top: 1rem;
}

.similar-projects-slider .recent-news-slider__header h2 {
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--oma-text);
}

.news-grid--masonry .project-card {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  display: block;
  grid-column: auto;
}

.with-sidebar {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.team-card {
  grid-column: span 3;
}

.gallery-grid .gallery-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.single-expertise .expertise-hero .hero-image {
  border-radius: 24px;
}

.single-expertise > .section-space img,
.single-expertise .expertise-hero .hero-image {
  border-radius: 24px;
}

/* Single Expertise: tighten title-to-content spacing */
.single-expertise > .section-space {
  padding-top: 1.25rem;
}

.filter-pill {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--oma-border);
  margin: 0.2rem;
  font-size: 0.9rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}

.oma-contact-form {
  max-width: 40rem;
}

.oma-contact-form__notice {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--oma-border);
}

.oma-contact-form__notice--success {
  background: #f3f8f3;
  border-color: #b7d4b7;
}

.oma-contact-form__notice--error {
  background: #fbf3f3;
  border-color: #e0bdbd;
}

.oma-contact-form__honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.oma-contact-form__field {
  margin: 0 0 1rem;
}

.oma-contact-form__field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.oma-contact-form__field input,
.oma-contact-form__field textarea {
  width: 100%;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--oma-border);
  background: #fff;
  color: var(--oma-text);
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.35;
}

.oma-contact-form__field textarea {
  min-height: 8rem;
  padding: 0.55rem 0.7rem;
}

.oma-contact-form__field input:focus,
.oma-contact-form__field textarea:focus {
  outline: 2px solid var(--oma-accent);
  outline-offset: 1px;
}

.oma-contact-form__actions {
  margin: 1.25rem 0 0;
}

.oma-contact-form__submit {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.oma-newsletter {
  max-width: 32rem;
}

.oma-newsletter__title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.oma-newsletter__description {
  margin: 0 0 1rem;
  color: var(--oma-muted);
  font-size: 0.95rem;
}

.oma-newsletter__notice {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--oma-border);
  font-size: 0.95rem;
}

.oma-newsletter__notice--success {
  background: #f3f8f3;
  border-color: #b7d4b7;
}

.oma-newsletter__notice--info {
  background: var(--oma-bg);
}

.oma-newsletter__notice--error {
  background: #fbf3f3;
  border-color: #e0bdbd;
}

.oma-newsletter__honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.oma-newsletter__field {
  margin: 0 0 0.75rem;
}

.oma-newsletter__field input {
  width: 100%;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--oma-border);
  background: #fff;
  color: var(--oma-text);
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.35;
}

.oma-newsletter__field input:focus {
  outline: 2px solid var(--oma-accent);
  outline-offset: 1px;
}

.oma-newsletter__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: stretch;
}

.oma-newsletter__field--email {
  flex: 1 1 14rem;
  margin: 0;
}

.oma-newsletter__actions {
  margin: 0;
}

.oma-newsletter__submit {
  border: 0;
  cursor: pointer;
  font: inherit;
  height: 100%;
  white-space: nowrap;
}

.oma-contact-page {
  color: var(--oma-text);
}

.oma-contact-page__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.oma-contact-page__intro {
  margin: 0 0 1.75rem;
}

.oma-contact-page__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oma-muted);
}

.oma-contact-page__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.oma-contact-page__lead {
  margin: 0;
  max-width: 34rem;
  color: var(--oma-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.oma-contact-page__aside {
  padding: 1.75rem;
  background: var(--oma-bg);
  border: 1px solid var(--oma-border);
}

.oma-contact-page__aside-title {
  margin: 0 0 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oma-muted);
}

.oma-contact-page__address {
  margin: 0 0 1.5rem;
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.7;
}

.oma-contact-page__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--oma-border);
}

.oma-contact-page__list li {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--oma-border);
}

.oma-contact-page__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oma-muted);
}

.oma-contact-page__list a {
  color: var(--oma-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.oma-contact-page__list a:hover,
.oma-contact-page__list a:focus-visible {
  border-bottom-color: currentColor;
}

@media (max-width: 900px) {
  .oma-contact-page__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.map-wrap iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.1rem;
  background: var(--oma-accent);
  color: #fff;
}

.site-footer {
  border-top: 1px solid var(--oma-border);
  padding: 2.5rem 0;
  margin-top: 4rem;
}

.footer-inner,
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-column .widget {
  margin: 0 0 1rem;
}

.footer-column .widget:last-child {
  margin-bottom: 0;
}

.footer-column .widget-title {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-column .widget ul,
.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column .widget li,
.footer-nav li {
  margin: 0 0 0.4rem;
}

.footer-copy,
.footer-meta {
  margin: 0;
  color: var(--oma-muted);
  font-size: 0.95rem;
}

.footer-meta p {
  margin: 0 0 0.35rem;
}

.footer-meta p:last-child {
  margin-bottom: 0;
}

.video-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.oma-breadcrumbs {
  font-size: 0.9rem;
  color: var(--oma-muted);
  margin-bottom: 1rem;
}

.screen-reader-text {
  position: absolute;
  left: -9999px;
}

.screen-reader-text:focus {
  left: 0.5rem;
  top: 0.5rem;
  background: #000;
  color: #fff;
  padding: 0.5rem;
  z-index: 100;
}

@media (max-width: 992px) {
  .project-card,
  .news-card,
  .expertise-card {
    grid-column: span 6;
  }

  .with-sidebar,
  .project-info-wrap,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .team-card {
    grid-column: span 6;
  }

  .news-grid--masonry {
    column-count: 1;
  }

  .recent-news-slider__track .news-card--compact {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .project-info-view__body {
    margin-left: 0;
  }

  .project-info-view {
    padding-top: 12rem;
  }

  .project-info-collapse {
    top: 4.5rem;
    width: 3.25rem;
    height: 3.25rem;
    font-size: 3.25rem;
  }

  .project-slider__nav--prev {
    left: 0.15rem;
  }

  .project-slider__nav--next {
    right: 0.15rem;
  }

  .project-close {
    top: 0.65rem;
    right: 0.65rem;
    width: 3rem;
    height: 3rem;
    font-size: 2.5rem;
  }

  .project-slider__nav {
    width: 3.25rem;
    height: 3.25rem;
    font-size: 3.25rem;
  }

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

@media (max-width: 720px) {
  .menu-toggle {
    display: inline-flex;
    border: 1px solid var(--oma-border);
    background: #fff;
    padding: 0.5rem 0.7rem;
  }

  .primary-nav {
    display: none;
    width: 100%;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
  }

  .primary-nav .menu-item-has-children > .sub-menu {
    position: static;
    display: block;
    min-width: 0;
    margin: 0.35rem 0 0.25rem 0.85rem;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .primary-nav .menu-item-has-children > a {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .primary-nav .sub-menu a {
    padding: 0.35rem 0;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .project-card,
  .news-card,
  .expertise-card,
  .team-card {
    grid-column: span 12;
  }

  .recent-news-slider__track .news-card--compact {
    flex-basis: 78%;
  }

  .section-space {
    padding: 2.5rem 0;
  }

  .single-expertise > .section-space {
    padding-top: 1rem;
  }

  .footer-inner,
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
