:root {
  --getweb-content: 1200px;
  --getweb-wide: 1440px;
  --getweb-gutter: clamp(24px, 4.45vw, 64px);
  --getweb-section-space: clamp(64px, 6vw, 80px);
  --getweb-red: #C81F31;
  --getweb-red-hover: #B51C2C;
  --getweb-white: #fff;
  --getweb-soft: #f7f8fa;
  --getweb-text: #111418;
  --getweb-text-secondary: #4b5563;
  --getweb-border: #dfe3e8;
  --getweb-focus: #0a4bff;
  --getweb-hover-link-color: var(--getweb-red);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--getweb-white);
  color: var(--getweb-text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--getweb-focus);
  outline-offset: 3px;
}

.getweb-container,
.getweb-container--wide {
  width: min(100% - (2 * var(--getweb-gutter)), var(--getweb-content));
  margin-inline: auto;
}

.getweb-container--wide {
  max-width: var(--getweb-wide);
}

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

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--getweb-white);
  color: var(--getweb-text);
}

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--getweb-border);
  background: var(--getweb-white);
}

.site-header__inner {
	width: min(calc(100% - 80px), 1360px);
	min-height: 80px;
	display: grid;
	grid-template-columns: 130px minmax(0, 1fr);
	align-items: center;
	gap: 32px;
}

.custom-logo-link,
.site-branding__logo,
.site-branding__name {
  display: inline-flex;
  align-items: center;
  color: var(--getweb-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.custom-logo {
  width: auto;
  max-height: 70px;
}
.site-branding__logo img {
  width: 130px;
  height: 70px;
  object-fit: contain;
}

.site-header__panel,
.site-header__actions,
.primary-navigation__list,
.language-switcher__list {
  display: flex;
  align-items: center;
}

.site-header__panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 32px;
}
.site-header__actions { gap: 12px; }

.primary-navigation__list,
.language-switcher__list,
.footer-navigation__list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation__list {
	justify-content: center;
	gap: 4px;
}

.primary-navigation a,
.language-switcher a,
.footer-navigation a {
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.primary-navigation a {
	position: relative;
	display: flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
}

.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a,
.primary-navigation a[aria-current="page"],
.language-switcher .current-lang > a {
  color: var(--getweb-red);
}

.primary-navigation .current-menu-item > a::after,
.primary-navigation .current_page_item > a::after,
.primary-navigation a[aria-current="page"]::after {
	position: absolute;
	right: 12px;
	bottom: 3px;
	left: 12px;
	height: 2px;
	border-radius: 999px;
	background: var(--getweb-red);
	content: "";
}

.primary-navigation a:hover,
.language-switcher li:not(.current-lang) > a:hover,
.footer-navigation a:hover,
.site-footer__contact a:hover,
.page-content a:not(.site-header__cta):not(.getweb-button--primary):hover,
.getweb-content a:not(.site-header__cta):not(.getweb-button--primary):hover {
	color: var(--getweb-hover-link-color);
}

.language-switcher__list {
	width: 100px;
	height: 44px;
	gap: 2px;
	padding: 2px;
	justify-content: center;
	overflow: hidden;
	border: 1px solid var(--getweb-border);
	border-radius: 999px;
}

.language-switcher__list li {
	display: flex;
}

.language-switcher__list a {
	display: flex;
	width: 44px;
	height: 36px;
	border-radius: 999px;
	min-height: 36px;
	align-items: center;
	justify-content: center;
  text-transform: uppercase;
}
.language-switcher .current-lang > a {
  background: var(--getweb-red);
  color: var(--getweb-white);
}
.site-header__cta {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 16px;
  border-radius: 999px;
  background: var(--getweb-red);
  color: var(--getweb-white);
  font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	text-decoration: none;
	transition: background-color 160ms ease, color 160ms ease;
}

.site-header__cta:hover {
	background: var(--getweb-red-hover);
	color: var(--getweb-white);
}

.site-header__cta-icon {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	transition: transform 160ms ease;
}

.site-header__cta:hover .site-header__cta-icon {
	transform: translateX(3px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--getweb-border);
  background: var(--getweb-white);
}

.menu-toggle span[aria-hidden="true"] {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.site-main {
  min-height: 55vh;
}

.getweb-content,
.project-detail__header,
.project-detail__content {
  padding-block: var(--getweb-section-space);
}

.page-content > :where(*:not(.alignfull)) {
  width: min(100% - (2 * var(--getweb-gutter)), var(--getweb-content));
  margin-inline: auto;
}

.page-content > .alignfull {
  width: 100%;
}

.getweb-eyebrow {
  margin: 0 0 12px;
  color: var(--getweb-red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 16px;
  text-transform: uppercase;
}

.project-detail__header h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(48px, 6vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1.055;
}

.project-detail__media {
  margin-block: 0;
}

.site-footer {
  padding: 48px var(--getweb-gutter) 40px;
  background: var(--getweb-text);
  color: #c5cad1;
}
.site-footer__accent { width:72px; height:4px; margin-bottom:32px; border-radius:999px; background:var(--getweb-red); }
.site-footer .getweb-container { width:min(100%, var(--getweb-content)); }
.site-footer__inner { display:grid; grid-template-columns:minmax(0,1.5fr) 220px 300px; gap:48px; }
.site-footer__logo { display:flex; width:170px; height:94px; align-items:center; justify-content:center; margin-bottom:16px; border-radius:16px; background:var(--getweb-white); }
.site-footer__logo img { width:130px; height:70px; object-fit:contain; }
.site-footer__brand strong { color:#d9dde2; font-size:24px; line-height:30px; }
.site-footer__brand p { max-width:520px; margin:12px 0 0; color:#aeb4bd; font-size:16px; line-height:24px; }
.site-footer__contact,
.footer-navigation__list { display:flex; flex-direction:column; align-items:flex-start; gap:12px; }
.site-footer h2 { margin:0 0 12px; color:#d9dde2; font-size:18px; line-height:24px; }
.site-footer__contact a,
.site-footer__contact address,
.site-footer__contact p,
.footer-navigation a { color:#aeb4bd; font-size:16px; font-weight:400; line-height:24px; text-decoration:none; }
.site-footer__contact address { font-style:normal; }
.site-footer__contact p { margin:0; font-size:14px; line-height:22px; }
.site-footer__legal { padding-top:32px; margin-top:32px; border-top:1px solid rgba(174, 180, 189, 0.14); color:#929aa5; font-size:14px; line-height:22px; }

@media (max-width: 900px) {
	.site-header__inner {
		width: calc(100% - 32px);
		display: flex;
		justify-content: space-between;
	}

  .menu-toggle {
    display: block;
  }

  .site-header__panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
    padding: 32px var(--getweb-gutter);
    border-bottom: 1px solid var(--getweb-border);
    background: var(--getweb-white);
  }

  .is-menu-open .site-header__panel {
    display: flex;
  }

	.site-header__actions { width:100%; align-items:flex-start; flex-direction:column; }
  .primary-navigation__list {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .primary-navigation a {
    font-size: 20px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 901px) { .site-header__inner { min-height:96px; } }
@media (max-width: 600px) {
  :root { --getweb-gutter:24px; }
  .site-header__inner { min-height:80px; }
  .site-branding__logo img, .custom-logo { width:96px; max-height:52px; }
  .site-header__cta { width:100%; }
  .site-footer { padding:40px 24px; }
  .site-footer__inner { gap:32px; }
}

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