/* Softhouse Group — softhousegroup.com static homepage
   Design tokens extracted from legacy WP theme softhouse/styles/general.css */

:root {
  --c-text: #1B1B1E;
  --c-bg: #ffffff;
  --c-bg-soft: #F5F5F5;
  --c-border: #E8E8E8;
  --c-border-dark: #3B3B3B;
  --c-red: #D80032;
  --c-red-soft: #F17D7D;
  --c-muted: #646464;
  --c-link-hover: #C02A31;
  --header-h: 78px;
  --container: 1220px;
  --r: 4px;
  --transition: all 200ms ease-out;
  --shadow-card: 0 10px 32px rgba(27, 27, 30, 0.08);
  --shadow-mission: 0 10px 64px rgba(0, 0, 0, 0.08);
  --shadow-header: 0 4px 32px rgba(27, 27, 30, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

a, button { transition: var(--transition); }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
}

.section-title h2 {
  color: var(--c-text);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .section-title h2 { font-size: 28px; }
}

.section-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  color: #fff;
  background: var(--c-red);
  border: 1px solid var(--c-red);
  border-radius: var(--r);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}
.section-btn:hover { color: var(--c-red); background: #fff; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  background: #fff;
  box-shadow: var(--shadow-header);
  z-index: 45;
  transition: var(--transition);
}
.site-header.is-transparent { background: transparent; box-shadow: none; }
.site-header.is-transparent .site-nav a { color: #fff; }
.site-header.is-transparent .contact-btn a { color: #fff; border-color: #fff; }
.site-header.is-transparent .contact-btn a:hover { color: var(--c-text); background: #fff; }
.site-header.is-transparent .hamburger span { background: #fff; }
.site-header.is-scrolled {
  background: rgba(249, 245, 241, 0.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.site-header .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
}
.site-header--left { display: flex; align-items: center; width: 60%; }
.site-header--right { display: flex; align-items: center; justify-content: flex-end; width: 40%; }
.site-logo { margin-right: 20px; }
.site-logo img { height: 50px; width: auto; }

.site-nav { display: flex; align-items: center; }
.site-nav ul { display: flex; align-items: center; list-style: none; }
.site-nav li { margin: 0 16px; }
.site-nav li:last-child { margin-right: 0; }
.site-nav a {
  display: block; color: var(--c-text); font-size: 16px; font-weight: 500;
  text-decoration: none; line-height: 24px;
}
.site-nav a:hover { color: var(--c-red); }
.site-nav .current a { color: var(--c-red); border-bottom: 1px solid var(--c-red); }

.contact-btn a {
  display: inline-block;
  padding: 10px 24px;
  color: var(--c-red);
  border: 1px solid var(--c-red);
  border-radius: var(--r);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}
.contact-btn a:hover { color: #fff !important; background: var(--c-red); }

.hamburger {
  display: none; position: relative;
  width: 30px; height: 18px; cursor: pointer;
  background: none; border: 0; padding: 0; margin-left: 14px;
}
.hamburger span {
  position: absolute; left: 0;
  width: 100%; height: 2px; background: var(--c-red);
  transition: var(--transition);
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }
.hamburger.is-open span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 8px; transform: rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  background: #fff;
  display: none;
  z-index: 44;
  padding-top: var(--header-h);
}
.mobile-nav.is-open { display: block; }
.mobile-nav .container { padding-top: 32px; }
.mobile-nav ul { list-style: none; }
.mobile-nav li { margin: 16px 0; }
.mobile-nav a {
  color: var(--c-text); font-size: 22px; font-weight: 500; text-decoration: none;
}
.mobile-nav a:hover { color: var(--c-red); }
.mobile-nav .contact-btn { margin-top: 24px; }
.mobile-nav .contact-btn a {
  color: var(--c-red); border: 1px solid var(--c-red); padding: 10px 24px; border-radius: var(--r);
}

/* Hero */
.hero {
  position: relative;
  display: flex; align-items: center;
  width: 100%; height: 100vh;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 1; overflow: hidden;
}
.hero__media::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, #1B1B1E 7.25%, rgba(27,27,30,0.51) 100%);
}
.hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: 3;
  background: repeating-linear-gradient(
    0deg, rgba(0,0,0,0.05) 0 1px, transparent 1px 3px
  );
  opacity: 0.4;
}
.hero__media video,
.hero__media img.hero__poster {
  position: absolute; right: 0; bottom: 0;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
  z-index: 1;
}
.hero .container { position: relative; z-index: 5; }

.hero__slider { position: relative; width: 100%; }
.hero__slide { display: none; }
.hero__slide.is-active { display: block; }
.hero__title {
  max-width: 995px;
  margin: 0 0 32px;
  color: #fff;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .hero__title { font-size: 32px; }
}
.hero__text {
  max-width: 783px;
  margin: 0 0 32px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}
.hero__text p { margin: 0 0 16px; }
.hero__text p:last-child { margin: 0; }
@media (max-width: 767px) {
  .hero__text { font-size: 14px; }
}
.hero__btn { display: flex; align-items: center; }

.hero__dots {
  display: flex; align-items: center;
  position: absolute; left: 0; bottom: 0;
  width: 100%;
  z-index: 4;
}
@media (max-width: 767px) { .hero__dots { display: none; } }
.hero__dots button {
  position: relative;
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  height: 152px;
  background: rgba(27,27,30,0.1);
  -webkit-backdrop-filter: blur(11.5px); backdrop-filter: blur(11.5px);
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-right: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 14px; font-weight: 600;
  font-family: inherit;
  cursor: pointer; text-align: center; padding: 0 12px;
}
.hero__dots button:last-child { border-right: 0; }
.hero__dots button:hover { background: rgba(27,27,30,0.3); }
.hero__dots button::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 0; height: 8px; background: var(--c-red);
}
.hero__dots button.is-active::before {
  animation: hero-progress 6s linear forwards;
}
@keyframes hero-progress { from { width: 0; } to { width: 100%; } }

.hero__arrows {
  position: absolute; right: 112px; bottom: 242px;
  display: flex; gap: 16px; z-index: 10;
}
@media (max-width: 767px) {
  .hero__arrows { right: 50%; transform: translateX(50%); bottom: 40px; }
}
.hero__arrows button {
  width: 46px; height: 46px;
  background: var(--c-red); border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.2; transition: var(--transition);
}
.hero__arrows button:hover { opacity: 1; }

/* Services tabs */
.service-el { padding: 60px 0; }
.service-el__tabs {
  display: flex;
  margin-top: 48px;
  background: #fff;
  box-shadow: 0 0 50px 1px #ccc;
  padding: 40px 30px;
}
.service-el__left { width: 35%; }
.service-el__right { width: 65%; padding-left: 40px; }
.service-el__title {
  margin-bottom: 4px;
  padding: 8px 10px;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}
.service-el__title.is-active,
.service-el__title:hover {
  padding-left: 25px;
  color: #fff;
  background: var(--c-red);
}
.service-el__content { display: none; }
.service-el__content.is-active { display: block; }
.service-el__content p { margin: 0 0 24px; line-height: 1.8; }
.service-el__content p:last-child { margin: 0; }

.service-el__mobile { display: none; }
.service-el__acc { border-bottom: 1px solid #ddd; margin-bottom: 10px; }
.service-el__acc:last-child { border-bottom: 0; }
.service-el__acc-title {
  cursor: pointer; padding: 10px 0;
  font-size: 16px; font-weight: 500;
}
.service-el__acc-title.is-active { color: var(--c-red); }
.service-el__acc-content { display: none; padding: 10px 0 16px; font-size: 14px; line-height: 1.7; }
.service-el__acc-content.is-open { display: block; }
.service-el__acc-content p { margin: 0 0 8px; }

@media (max-width: 767px) {
  .service-el__left, .service-el__right { display: none; }
  .service-el__mobile { display: block; width: 100%; flex: 1 1 100%; }
  .service-el__tabs { padding: 20px; }
}

/* Stats */
.stats {
  margin-bottom: 80px;
  padding: 74px 0;
  background: var(--c-bg-soft);
}
.stats .container { position: relative; }
.stats__items { display: flex; flex-wrap: wrap; gap: 16px 0; }
.stats__item { width: 230px; }
.stats__item-title {
  max-width: 175px; min-height: 58px;
  margin-bottom: 10px;
  font-size: 18px; font-weight: 600; line-height: 1.6;
}
.stats__item-text {
  color: var(--c-red);
  font-size: 48px; font-weight: 600; line-height: 1.2;
}
.stats__iso { width: 110px; height: auto; margin: 0 auto; }
.stats__mission {
  position: absolute; top: 80px; right: 15px;
  width: 100%; max-width: 480px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow-mission);
  border-radius: var(--r);
}
.stats__mission-title { margin-bottom: 16px; font-size: 24px; font-weight: 600; }
.stats__mission-text { font-size: 16px; line-height: 1.8; }
@media (max-width: 767px) {
  .stats { margin-bottom: 0; padding: 56px 0; }
  .stats__item { width: 100%; text-align: center; margin-bottom: 40px; }
  .stats__item:last-child { margin-bottom: 0; }
  .stats__item-title { max-width: none; min-height: 0; margin-bottom: 0; }
  .stats__item-text { font-size: 34px; }
  .stats__mission { position: static; margin-top: 30px; }
}

/* Latest case */
.latest-case { padding: 112px 0; }
.latest-case .section-title { margin-bottom: 48px; }
.latest-case__item { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 34px; }
.latest-case__img { width: calc(50% - 17px); }
.latest-case__img img { width: 100%; height: auto; object-fit: cover; border-radius: var(--r); }
.latest-case__text { width: calc(50% - 17px); }
.latest-case__title { font-size: 24px; font-weight: 600; line-height: 1.4; }
.latest-case__title a { color: var(--c-text); text-decoration: none; }
.latest-case__title a:hover { color: var(--c-red); }
.latest-case__excerpt { margin: 24px 0; font-size: 16px; line-height: 1.8; }
@media (max-width: 767px) {
  .latest-case { padding: 56px 0; }
  .latest-case__img, .latest-case__text { width: 100%; }
  .latest-case__title { font-size: 20px; }
}

/* Reviews */
.reviews { padding: 96px 0; background: var(--c-bg-soft); }
.reviews .section-title { text-align: center; }
.reviews__slider {
  position: relative;
  margin: 48px 0 34px;
  overflow: hidden;
}
.reviews__track {
  display: flex;
  transition: transform 400ms ease-out;
}
.reviews__slide {
  flex: 0 0 100%;
  padding: 0 8px;
  box-sizing: border-box;
}
.reviews__card {
  position: relative;
  padding: 32px 32px 32px 80px;
  background: #fff;
  border-radius: var(--r);
  min-height: 220px;
}
.reviews__icon { position: absolute; top: 32px; left: 32px; }
.reviews__text { font-size: 16px; font-style: italic; line-height: 1.8; }
.reviews__author { margin-top: 16px; font-size: 14px; font-weight: 600; line-height: 1.6; }
.reviews__btns { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.reviews__btns button {
  width: 46px; height: 46px;
  background: var(--c-red); border: 0; border-radius: var(--r);
  opacity: 0.3; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.reviews__btns button:hover { opacity: 1; }
@media (max-width: 767px) {
  .reviews { padding: 56px 0; }
  .reviews__card { padding: 44px 20px 20px; min-height: 0; }
  .reviews__icon { top: 22px; left: 22px; }
  .reviews__text { font-size: 14px; }
}

/* Join team */
.join-team { padding: 60px 0 0; }
.join-team .container {
  display: flex; flex-wrap: wrap;
  padding-top: 65px; padding-bottom: 65px;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.join-team__left, .join-team__right { width: 50%; }
.join-team__text { margin-bottom: 42px; font-size: 16px; line-height: 1.8; }
.join-team__link a {
  display: inline-flex; align-items: center; text-decoration: none;
}
.join-team__link a span {
  color: var(--c-red); font-size: 16px; font-weight: 500;
  text-decoration: underline;
}
.join-team__link a .icon { margin-left: 8px; transition: var(--transition); }
.join-team__link a:hover .icon { margin-left: 16px; }
@media (max-width: 767px) {
  .join-team .container { padding-top: 0; border-top: 0; padding-bottom: 56px; }
  .join-team__left, .join-team__right { width: 100%; }
  .join-team__left { margin-bottom: 28px; }
}

/* Blog */
.blog { padding: 96px 0; }
.blog .section-title { margin-bottom: 64px; text-align: center; }
.blog__posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card { position: relative; }
.blog-card__img {
  width: 100%; height: 330px;
  border-radius: var(--r); overflow: hidden;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card__img a:hover img { transform: scale(1.04); }
.blog-card__meta { display: flex; align-items: center; margin-top: 16px; }
.blog-card__author { width: 50%; font-size: 14px; line-height: 1.8; }
.blog-card__cat { width: 50%; display: flex; justify-content: flex-end; }
.blog-card__cat a {
  padding: 5px 16px; color: var(--c-text); background: #fff;
  border: 1px solid var(--c-border); border-radius: 35px;
  font-size: 14px; text-decoration: none;
}
.blog-card__name { margin-top: 8px; }
.blog-card__name a {
  color: var(--c-text); font-size: 18px; font-weight: 600;
  line-height: 1.4; text-decoration: none;
}
.blog-card__name a:hover { color: var(--c-red); }
.blog-card__links {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px;
}
.blog-card__read a { display: inline-flex; align-items: center; text-decoration: none; }
.blog-card__read a span { color: var(--c-red); font-size: 16px; line-height: 1.8; }
.blog-card__read a svg { margin-left: 8px; transition: var(--transition); }
.blog-card__read a:hover svg { margin-left: 16px; }
.blog__btn { display: flex; justify-content: flex-end; margin-top: 40px; }
@media (max-width: 767px) {
  .blog { padding: 56px 0; }
  .blog__posts { grid-template-columns: 1fr; }
  .blog-card__img { height: 220px; }
}

/* Worldwide map */
.worldwide .container {
  padding-top: 65px; padding-bottom: 65px;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.worldwide__map-cities {
  position: relative;
  display: flex; justify-content: flex-end;
  min-height: 600px;
}
.worldwide__map {
  position: absolute; top: 0; left: 0;
  width: 100%; max-width: 1030px;
  z-index: 1;
}
.worldwide__map svg { width: 100%; height: auto; }
.worldwide__map .region { transition: var(--transition); }
.worldwide__map .region.region-disabled { filter: opacity(0.1); }
.worldwide__map .region.region-active { fill: var(--c-red) !important; filter: opacity(1) !important; }
.worldwide__cities {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 450px;
  z-index: 5;
}
.worldwide__col { width: 100%; max-width: 224px; }
.worldwide__col-title {
  position: relative;
  margin-bottom: 32px;
  padding-left: 34px;
  font-size: 18px; font-weight: 600;
}
.worldwide__col-title::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 24px; height: 24px; border-radius: 50%;
}
.worldwide__col.consulting .worldwide__col-title::before { background: var(--c-red); }
.worldwide__col.delivery .worldwide__col-title::before { background: var(--c-red-soft); }
.worldwide__city {
  display: flex; align-items: center;
  margin: 0 0 5px;
  padding: 8px 16px;
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  cursor: default;
}
.worldwide__city:hover { background: #ffe6e6; }
.worldwide .city-flag {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; margin-right: 10px;
}
.worldwide .city-flag img { width: 100%; height: auto; }
.worldwide .city-name { font-size: 14px; font-weight: 600; }
@media (max-width: 767px) {
  .worldwide__map-cities { flex-direction: column; min-height: 0; }
  .worldwide__map { position: relative; }
  .worldwide__cities { margin-top: 40px; max-width: none; }
}

/* Contact us */
.contact-us { padding: 92px 0 52px; }
.contact-us .container {
  display: flex; flex-wrap: wrap; justify-content: space-between;
}
.contact-us__left, .contact-us__right { width: calc(50% - 15px); }
.contact-us__title h2 { line-height: 1.3; }

.contact-us__form .form-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.contact-us__form .form-row--double .form-item { width: calc(50% - 8px); }
.contact-us__form .form-item { width: 100%; }
.contact-us__form .form-item label {
  display: flex; margin: 0 0 10px;
  font-size: 16px; font-weight: 500; line-height: 1.6;
}
.contact-us__form .form-item label span { color: var(--c-red); }
.contact-us__form .form-item input[type=text],
.contact-us__form .form-item input[type=email],
.contact-us__form .form-item input[type=tel] {
  width: 100%;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  font-size: 16px; font-family: inherit; line-height: 1.6;
  outline: none;
  transition: var(--transition);
}
.contact-us__form .form-item input:focus,
.contact-us__form .form-item textarea:focus { border-color: var(--c-text); }
.contact-us__form .form-item textarea {
  width: 100%; height: 86px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  font-size: 16px; font-family: inherit; line-height: 1.6;
  resize: vertical; outline: none;
  transition: var(--transition);
}
.contact-us__form .form-item input[type=submit] {
  padding: 10px 24px;
  color: #fff; background: var(--c-red);
  border: 1px solid var(--c-red); border-radius: var(--r);
  font-size: 16px; font-weight: 500; font-family: inherit;
  cursor: pointer;
  -webkit-appearance: none; appearance: none;
}
.contact-us__form .form-item input[type=submit]:hover {
  color: var(--c-red); background: #fff;
}
@media (max-width: 767px) {
  .contact-us { padding: 56px 0; }
  .contact-us__left, .contact-us__right { width: 100%; }
  .contact-us__left { margin-bottom: 38px; }
}

/* Footer */
.site-footer { background: var(--c-text); color: #fff; }
.site-footer__top { padding: 78px 0 101px; }
.site-footer__bottom {
  padding: 16px 0;
  border-top: 1px solid var(--c-border-dark);
}
.site-footer__bottom .container {
  display: flex; align-items: center; justify-content: space-between;
}

.footer-logo-row { display: flex; align-items: flex-start; }
.footer-logo { margin-right: 81px; }
.footer-logo img { height: 50px; width: auto; }
.footer-nav ul {
  display: flex; align-items: center; list-style: none; margin-top: 20px;
}
.footer-nav li { margin-right: 32px; }
.footer-nav a {
  color: var(--c-border); font-size: 16px; font-weight: 500; text-decoration: none;
}
.footer-nav a:hover { color: var(--c-red); }

.footer-contacts-row { display: flex; flex-wrap: wrap; margin-top: 27px; }
.footer-col { width: 19.5%; }
.footer-col:first-child { width: 22%; }
.footer-contact-title {
  margin-bottom: 8px;
  color: var(--c-muted);
  font-size: 14px; line-height: 1.6;
}
.footer-social-links { margin-bottom: 47px; }
.footer-links { display: flex; align-items: center; }
.footer-social-link { margin-right: 22px; }
.footer-social-link a {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
}
.footer-social-link img { width: 100%; height: auto; }

.footer-email-link a { color: #fff; font-size: 14px; line-height: 1.6; text-decoration: none; }
.footer-email-link a:hover { text-decoration: underline; }

.footer-address {
  width: 100%; max-width: 190px;
  color: #fff; font-size: 14px; line-height: 1.6;
}
.footer-address strong { font-weight: 600; }

.copyright-text { color: var(--c-muted); font-size: 12px; }
.copyright-links { display: flex; align-items: center; }
.copyright-links a {
  margin-left: 32px;
  color: var(--c-muted); font-size: 12px;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .site-footer__top { padding: 56px 0 16px; }
  .footer-logo-row { flex-direction: column; align-items: center; text-align: center; }
  .footer-logo { margin: 0 0 24px; }
  .footer-nav { display: none; }
  .footer-contacts-row { justify-content: space-between; }
  .footer-col, .footer-col:first-child {
    width: 100%; margin-bottom: 32px;
  }
  .footer-address { margin: 0 auto; text-align: center; }
  .site-footer__bottom .container { flex-direction: column; }
  .copyright-links { margin-top: 14px; }
  .copyright-links a { margin: 0; }
}

/* Cookies banner */
.cookies {
  display: none;
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  z-index: 50;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  padding: 18px 22px;
}
.cookies.is-open { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.cookies__left {
  display: flex; align-items: center; gap: 14px; flex: 1; min-width: 280px;
}
.cookies__left p { font-size: 13px; line-height: 1.5; color: var(--c-text); }
.cookies__left a { color: var(--c-red); }
.cookies__right { display: flex; gap: 12px; }
.cookies__btn {
  padding: 8px 22px;
  border: 1px solid var(--c-red);
  background: var(--c-red); color: #fff;
  border-radius: var(--r);
  font-size: 14px; font-weight: 500;
  cursor: pointer;
}
.cookies__btn.is-secondary {
  background: #fff; color: var(--c-red);
}
.cookies__btn:hover { opacity: 0.85; }

@media (max-width: 767px) {
  .cookies { padding: 12px 14px; bottom: 8px; left: 8px; right: 8px; gap: 10px; }
  .cookies.is-open { gap: 10px; }
  .cookies__left { gap: 10px; min-width: 0; }
  .cookies__left p { font-size: 12px; line-height: 1.4; }
  .cookies__left svg { width: 28px; height: 28px; flex-shrink: 0; }
  .cookies__right { width: 100%; justify-content: flex-end; gap: 8px; }
  .cookies__btn { padding: 6px 16px; font-size: 13px; }
}

/* Hide hamburger by default until small screen */
@media (max-width: 767px) {
  .site-header--left { width: auto; }
  .site-header--right { width: auto; }
  .site-nav { display: none; }
  .hamburger { display: inline-block; }
  .site-nav.contact-only { display: flex; }
  .site-nav.contact-only ul { gap: 0; }
}
