:root {
  --color-primary: #c61f26;
  --color-primary-dark: #9f161d;
  --color-primary-light: #e1484f;
  --color-text: #161616;
  --color-text-secondary: #5f5f5f;
  --color-bg: #ffffff;
  --color-bg-secondary: #f7f7f7;
  --color-border: #e8e8e8;
  --color-footer-bg: #111111;
  --color-footer-text: #f1f1f1;
  --container: 1700px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 10px 28px rgba(22, 22, 22, 0.07);
  --transition: all 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.75em;
  line-height: 1.15;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

p {
  margin: 0 0 1.1em;
  color: var(--color-text-secondary);
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary);
}

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

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

.screen-reader-text:focus {
  clip: auto;
  left: 1rem;
  top: 1rem;
  z-index: 100000;
  background: #fff;
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-primary);
  width: auto;
  height: auto;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

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

.site-header.is-scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 10px 28px rgba(15, 15, 15, 0.12);
}

.site-header__inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.custom-logo-link,
.site-header__title {
  display: inline-flex;
  align-items: center;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.custom-logo-link {
  min-height: 48px;
}

.site-header__logo {
  display: block;
  width: auto;
  height: clamp(34px, 4vw, 46px);
  object-fit: contain;
}

.site-nav {
  min-width: 0;
  display: flex;
  justify-content: center;
}

.site-header__brand--left {
  justify-self: start;
  text-align: left;
}

.site-header__actions--right {
  justify-self: end;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu--primary {
  display: flex;
  gap: 1.5rem;
}

.menu--primary a {
  display: inline-flex;
  align-items: center;
  height: 40px;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  position: relative;
  color: #444;
}

.menu--primary a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: var(--transition);
}

.menu--primary a:hover::after,
.menu--primary .current-menu-item > a::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header-search {
  border-top: 1px solid var(--color-border);
  padding: 0.8rem 0 1rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(640px, 82vh, 860px);
  display: flex;
  align-items: center;
  color: #fff;
  background: radial-gradient(circle at 12% 16%, rgba(198, 31, 38, 0.34), transparent 28%), linear-gradient(135deg, #111216 0%, #171921 36%, #0e1015 100%);
}

.hero--light {
  color: var(--color-text);
  background: linear-gradient(130deg, #f4f4f4, #ffffff 60%, #ececec);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(198, 31, 38, 0.42), transparent 56%);
}

.hero--light::before {
  background: linear-gradient(120deg, rgba(198, 31, 38, 0.16), transparent 52%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image: linear-gradient(transparent 97%, rgba(255, 255, 255, 0.08) 100%), linear-gradient(90deg, transparent 97%, rgba(255, 255, 255, 0.05) 100%);
  background-size: 34px 34px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero__content p {
  color: inherit;
  opacity: 0.92;
}

.hero__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.section {
  padding: 5.5rem 0;
}

.section--light {
  background: var(--color-bg-secondary);
}

.section--dark {
  background: linear-gradient(120deg, #141414, #1f1f1f);
}

.section--dark h2,
.section--dark p {
  color: #ffffff;
}

.entry-content > *,
.wp-block-group__inner-container > * {
  max-width: 800px;
}

.entry-content > .alignwide,
.wp-block-group__inner-container > .alignwide {
  max-width: 1100px;
}

.entry-content > .alignfull,
.wp-block-group__inner-container > .alignfull {
  max-width: none;
}

.site-footer {
  background: radial-gradient(circle at 12% 16%, rgba(198, 31, 38, 0.18), transparent 32%),
    linear-gradient(155deg, #0e0f14 0%, #111317 38%, #0f1013 100%);
  color: var(--color-footer-text);
  padding: 4.6rem 0 1.35rem;
}

.site-footer h2,
.site-footer h3,
.site-footer p,
.site-footer a,
.site-footer li {
  color: var(--color-footer-text);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 2.3rem;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .site-nav {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-header__brand--left {
    justify-self: start;
    text-align: left;
  }

  .site-header__actions--right {
    justify-self: end;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: 64vh;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .site-footer {
    padding-top: 3.3rem;
  }
}
