:root {
  --hc-red: #d9232e;
  --hc-red-dark: #a81620;
  --hc-green: #246b3a;
  --hc-gold: #c4a173;
  --hc-ink: #252321;
  --hc-muted: #6f6a64;
  --hc-line: #e3ded7;
  --hc-paper: #fff;
  --hc-canvas: #f4f1ed;
  --hc-soft: #faf8f5;
  --hc-ornament-bg: #f3f3f3;
  --hc-logo-bg: #e9e9e9;
  --hc-footer: #181614;
  --hc-width: 1240px;
  --hc-radius: 18px;
  --hc-shadow: 0 20px 55px rgba(42, 31, 21, .11);
  --hc-shadow-soft: 0 8px 30px rgba(42, 31, 21, .07);
  --hc-font: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --hc-text-xs: .75rem;
  --hc-text-sm: .8125rem;
  --hc-text-base: 1rem;
  --hc-text-lg: 1.25rem;
  --hc-text-xl: 1.625rem;
  --hc-text-section: clamp(1.75rem, 3vw, 2.125rem);
  --hc-text-display: clamp(2rem, 4vw, 3.35rem);
  --hc-weight-medium: 600;
  --hc-weight-bold: 700;
  --hc-weight-heavy: 800;
  --hc-leading-tight: 1.2;
  --hc-leading-copy: 1.5;
  --hc-leading-relaxed: 1.6;
  --hc-tracking-tight: -.035em;
  --hc-tracking-subtle: .04em;
  --hc-tracking-wide: .12em;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--hc-ink);
  background: var(--hc-canvas);
  font-family: var(--hc-font);
  font-size: var(--hc-text-base);
  line-height: var(--hc-leading-relaxed);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--hc-ink);
  text-underline-offset: .2em;
  text-decoration-thickness: .075em;
}

a:hover,
a:focus-visible {
  color: var(--hc-red-dark);
}

/* Legacy article markup sometimes wraps links in an underlined element. */
.com-content-article__body :is(
  u,
  [style*="text-decoration" i][style*="underline" i]
) a {
  text-decoration: none;
}

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

:focus-visible {
  outline: 3px solid #f2c14e;
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: .7rem 1rem;
  border-radius: 8px;
  color: #fff;
  background: #000;
  transform: translateY(-200%);
}

.skip-link:focus {
  color: #fff;
  transform: none;
}

/* Hero and navigation */

.site-hero {
  position: relative;
  z-index: 100;
  min-height: 521px;
  overflow: visible;
  color: #fff;
  background: #261b14 url("/images/design/slide.webp") center top / auto no-repeat;
  isolation: isolate;
}

.hero-inner {
  position: relative;
  width: min(calc(100% - 40px), var(--hc-width));
  min-height: 521px;
  margin-inline: auto;
}

.brand {
  position: fixed;
  z-index: 112;
  top: 0;
  left: 50%;
  width: 358px;
  min-height: 125px;
  padding: 7px 42px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-50%);
}

.brand::before {
  position: absolute;
  z-index: -1;
  top: 64px;
  left: 0;
  width: 358px;
  height: 61px;
  background: url("/images/design/logo-pad.webp") center / 358px 61px no-repeat;
  content: "";
}

.brand img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .35));
}

.primary-navigation {
  display: grid;
  position: fixed;
  z-index: 110;
  top: 0;
  left: 50%;
  width: min(calc(100% - 40px), 1300px);
  min-height: 64px;
  grid-template-columns: minmax(0, 490px) 320px minmax(0, 490px);
  transform: translateX(-50%);
}

.primary-navigation::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: -100vw;
  left: -100vw;
  height: 64px;
  border: 0;
  background: rgba(0, 0, 0, .78);
  content: "";
}

.primary-navigation > ul {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  margin: 0;
  padding: 0;
  width: min(100%, 420px);
  list-style: none;
}

.primary-navigation > ul:first-of-type {
  grid-column: 1;
  justify-self: start;
}

.primary-navigation > ul:last-of-type {
  grid-column: 3;
  justify-self: end;
}

.primary-navigation li {
  position: relative;
  min-width: 0;
  border: 0 !important;
}

.primary-navigation a {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 0 !important;
  color: #fff;
  font-size: var(--hc-text-sm);
  font-weight: var(--hc-weight-medium);
  line-height: var(--hc-leading-copy);
  letter-spacing: var(--hc-tracking-wide);
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 1px 2px #000;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible {
  color: #fff;
  background: transparent;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .86);
  text-decoration-thickness: 1px;
  text-underline-offset: .28em;
}

.primary-navigation .current > a,
.primary-navigation .active > a {
  color: #fff;
  background: transparent;
  text-decoration: none;
}

.primary-navigation li ul {
  display: none;
  position: absolute;
  top: 64px;
  left: 50%;
  min-width: 270px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #dedede;
  box-shadow: var(--hc-shadow);
  list-style: none;
  transform: translateX(-50%);
}

.primary-navigation li:hover > ul,
.primary-navigation li:focus-within > ul,
.primary-navigation li ul[aria-hidden="false"] {
  display: block;
}

.primary-navigation > ul > li > .mod-menu__toggle-sub {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 4px;
  color: #fff;
  transform: translateY(-50%);
}

.primary-navigation > ul > li > .mod-menu__toggle-sub .icon-chevron-down {
  margin: 0;
  font-size: .65rem;
}

.primary-navigation li ul a {
  min-height: auto;
  justify-content: flex-start;
  padding: .62rem .78rem;
  border-bottom: 1px solid #c9c9c9 !important;
  color: #494949;
  background: #dedede;
  font-size: .69rem;
  letter-spacing: .04em;
  text-align: left;
  text-shadow: none;
}

.primary-navigation li ul li:last-child a {
  border-bottom: 0 !important;
}

.primary-navigation li ul a:hover,
.primary-navigation li ul a:focus-visible,
.primary-navigation li ul .current > a,
.primary-navigation li ul .active > a {
  color: var(--hc-red-dark);
  background: #f0f0f0;
  text-decoration: none;
}

.menu-toggle {
  display: none;
}

.hero-content {
  display: grid;
  position: absolute;
  right: 5%;
  bottom: 68px;
  left: 5%;
  grid-template-columns: minmax(250px, 320px) minmax(340px, 420px);
  justify-content: space-between;
  align-items: end;
  gap: 4rem;
}

.hero-feature .mod-custom {
  line-height: 0;
}

.hero-feature .mod-custom > p {
  margin: 0;
}

.hero-feature-link {
  display: block;
}

/* Keep the feature slot interchangeable between linked images and video. */
.hero-feature :is(img, video, iframe) {
  display: block;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 8px solid rgba(255, 255, 255, .72);
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 24px 55px rgba(0, 0, 0, .34);
}

.hero-feature img {
  aspect-ratio: 16 / 9;
}

.hero-feature img[src*="/napolnenie/skype6.jpg"] {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.hero-feature :is(video, iframe) {
  aspect-ratio: 16 / 9;
}

.hero-contact {
  padding: 1.65rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  color: #fff;
  background: rgba(20, 18, 16, .9);
  box-shadow: 0 24px 55px rgba(0, 0, 0, .28);
  text-align: center;
  backdrop-filter: blur(12px);
}

.hero-contact h2,
.hero-contact h3,
.hero-contact p {
  margin-block: .35rem;
}

.hero-contact h2,
.hero-contact h3 {
  margin-bottom: .55rem;
  color: #fff;
  font-size: var(--hc-text-base);
  font-weight: var(--hc-weight-bold);
  line-height: var(--hc-leading-tight);
  letter-spacing: var(--hc-tracking-wide);
  text-transform: uppercase;
}

.hero-contact p:last-child {
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
  margin-top: 1rem;
}

.hero-contact p:last-child br {
  display: none;
}

.hero-contact a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: .65rem .9rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 9px;
  color: #fff;
  background: rgba(255, 255, 255, .07);
  font-weight: var(--hc-weight-bold);
  text-decoration: none;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.hero-contact a[href^="tel"] {
  border-color: var(--hc-red);
  background: var(--hc-red);
}

.hero-contact .hero-contact-whatsapp {
  gap: .55rem;
  border-color: #25d366;
  background: #25d366;
}

.hero-contact .hero-contact-whatsapp img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.hero-contact .hero-contact-email {
  border-color: var(--hc-red);
  background: var(--hc-red);
  overflow-wrap: anywhere;
}

.hero-contact a:hover {
  border-color: #fff;
  color: #fff;
  background: var(--hc-red-dark);
  transform: translateY(-1px);
}

.hero-contact .hero-contact-whatsapp:hover {
  border-color: #1da851;
  background: #1da851;
}

.hero-contact .hero-contact-email:hover,
.hero-contact .hero-contact-email:focus-visible {
  border-color: var(--hc-red);
  background: var(--hc-red);
}

/* Home service cards */

.page-shell {
  width: min(calc(100% - 40px), var(--hc-width));
  margin-inline: auto;
}

.service-intro {
  width: min(100%, 850px);
  margin: 0 auto;
  padding: 30px 20px 42px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 .65rem;
  color: var(--hc-red);
  font-size: var(--hc-text-xs);
  font-weight: var(--hc-weight-heavy);
  line-height: var(--hc-leading-copy);
  letter-spacing: var(--hc-tracking-wide);
  text-transform: uppercase;
}

.service-intro h1 {
  margin: 0;
  color: #211f1d;
  font-size: var(--hc-text-display);
  font-weight: var(--hc-weight-heavy);
  line-height: 1.08;
  letter-spacing: var(--hc-tracking-tight);
}

.service-intro > p:last-child {
  max-width: 720px;
  margin: 1.1rem auto 0;
  color: var(--hc-muted);
  font-size: var(--hc-text-base);
  line-height: var(--hc-leading-relaxed);
}

.headline-row {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) minmax(240px, 320px);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
  min-height: 92px;
  padding-block: .8rem;
}

.headline-breadcrumbs .mod-breadcrumbs__wrapper {
  margin-top: 0;
}

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

.headline h1,
.headline h2,
.headline-primary {
  color: var(--hc-green);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: var(--hc-weight-heavy);
  line-height: 1.1;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.headline .headline-secondary {
  margin-top: .28rem;
  color: #aaa39c;
  font-size: var(--hc-text-sm);
  font-weight: var(--hc-weight-heavy);
  line-height: var(--hc-leading-copy);
  letter-spacing: var(--hc-tracking-wide);
}

.site-search form {
  display: flex;
  width: 100%;
}

.site-search search {
  display: block;
  width: 100%;
}

.site-search .mod-finder__search {
  display: flex;
  width: 100%;
  min-height: 44px;
}

.site-search input[type="search"],
.site-search input[type="text"] {
  width: 100%;
  min-height: 44px;
  padding: .65rem .85rem;
  border: 1px solid #cbc5be;
  border-radius: 9px 0 0 9px;
  background: #fff;
}

.site-search button[type="submit"] {
  min-width: 46px;
  padding-inline: .8rem;
  border: 0;
  border-radius: 0 9px 9px 0;
  color: #fff;
  background: #312e2b;
  cursor: pointer;
  font-size: 0;
}

.site-search button .icon-search {
  position: relative;
  width: 18px;
  height: 18px;
  margin: 0;
}

.site-search button .icon-search::before {
  display: block;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.site-search button .icon-search::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
  transform-origin: right center;
}

.site-search button[type="submit"]:hover,
.site-search button[type="submit"]:focus-visible {
  background: #171513;
}

.is-home .blog-featured > .page-header {
  display: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-block: 0 80px;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: -32px 0 80px;
}

.home-feature-grid .content-section {
  padding: 0 0 1.5rem;
}

.home-feature-grid .mod-custom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.home-feature-grid .mod-custom > img:first-child,
.home-feature-grid .mod-custom > h2,
.home-feature-grid .mod-custom > h3 {
  grid-column: 1 / -1;
}

.home-feature-grid .mod-custom > img:first-child {
  display: block;
  width: 100% !important;
  height: auto !important;
  margin: 0 0 1.25rem !important;
  object-fit: cover;
}

.home-feature-grid h2 {
  margin: 0 !important;
  padding: 0 1.4rem;
  font-size: var(--hc-text-xl);
  font-weight: var(--hc-weight-bold);
  line-height: var(--hc-leading-tight);
  text-align: center !important;
  text-transform: uppercase;
}

.home-feature-grid h2 a {
  color: inherit;
  line-height: inherit;
  text-decoration-thickness: 1px;
}

.home-feature-grid h3 {
  margin: .3rem 0 1rem !important;
  padding: 0 1.4rem;
  color: var(--hc-muted);
  font-size: var(--hc-text-xs);
  font-weight: var(--hc-weight-bold);
  line-height: var(--hc-leading-copy);
  letter-spacing: var(--hc-tracking-wide);
  text-align: center !important;
  text-transform: uppercase;
}

.home-feature-grid ul {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 1.6rem 0 2.6rem !important;
  font-size: var(--hc-text-sm);
  line-height: var(--hc-leading-copy);
}

.home-feature-grid li::marker {
  color: var(--hc-red);
}

.position-block4 table,
.position-block4 tbody,
.position-block4 tr {
  display: contents;
}

.position-block4 td {
  display: none;
}

.position-block4 td:has(ul) {
  display: block;
  padding: 0 !important;
}

.service-card {
  display: flex;
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius);
  background: var(--hc-paper);
  box-shadow: var(--hc-shadow-soft);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.service-card:hover {
  z-index: 1;
  border-color: #d2c9bf;
  box-shadow: var(--hc-shadow);
  transform: translateY(-6px);
}

.service-card-content,
.service-card-content > div,
.service-card-content > .mod-custom {
  display: flex;
  width: 100%;
  flex-direction: column;
  min-height: 100%;
}

.service-card-title {
  margin: 0;
  padding: 1.35rem 1.35rem 0;
  font-size: var(--hc-text-base);
  text-align: center;
}

.service-card-content > img:first-child,
.service-card-content > div > img:first-child,
.service-card-content > .mod-custom > img:first-child {
  display: block;
  order: -1;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover;
}

.service-card h3 {
  margin: 1.35rem 1.35rem .35rem !important;
  color: #2a2724;
  font-size: var(--hc-text-base) !important;
  font-weight: var(--hc-weight-heavy);
  line-height: var(--hc-leading-tight);
  letter-spacing: var(--hc-tracking-subtle);
  text-align: left !important;
  text-decoration: none !important;
  text-transform: uppercase;
}

.service-card h3 a {
  color: inherit;
  text-decoration: none;
}

.service-card h4 {
  min-height: 2em;
  margin: 0 1.35rem .9rem !important;
  color: var(--hc-red) !important;
  font-size: var(--hc-text-xs) !important;
  font-weight: var(--hc-weight-heavy);
  line-height: var(--hc-leading-copy);
  letter-spacing: var(--hc-tracking-subtle);
  text-align: left !important;
  text-transform: uppercase;
}

.service-card p {
  margin: .25rem 1.35rem 1.15rem !important;
  color: #55504b;
  font-size: var(--hc-text-sm) !important;
  line-height: var(--hc-leading-copy);
}

/* This migrated module is the only service card with a prose teaser. Keep the
   teaser compact so it follows the same scan pattern as the neighboring lists. */
.service-card.position-user5 .service-card-content > .mod-custom > p {
  display: -webkit-box;
  max-height: 6em;
  margin: 0 1.35rem 1.35rem !important;
  overflow: hidden;
  color: #37332f;
  font-weight: var(--hc-weight-medium);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.service-card.position-user5:has(.legacy-details[open])
  .service-card-content > .mod-custom > p {
  display: block;
  max-height: none;
  overflow: visible;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

.service-card > .service-card-content br {
  display: none;
}

.service-card ul {
  float: none !important;
  width: auto !important;
  margin: 0 1.35rem 1.35rem !important;
  padding: 0 !important;
  color: #37332f;
  font-size: var(--hc-text-sm) !important;
  font-weight: var(--hc-weight-medium);
  line-height: var(--hc-leading-copy);
  list-style: none;
  text-transform: none !important;
}

.service-card li {
  position: relative;
  margin: 0;
  padding: .12rem 0 .12rem 1rem;
}

.service-card li::before {
  position: absolute;
  top: .57rem;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hc-red);
  content: "";
}

.service-card li a {
  display: block;
  color: inherit;
  font-weight: inherit !important;
  text-decoration: none;
}

.service-card :is(strong, b) {
  font-weight: inherit !important;
}

.service-card li a:hover {
  color: var(--hc-red-dark);
}

.service-card [style*="float"] {
  float: none !important;
}

.service-card [style*="width"] {
  max-width: 100% !important;
}

.legacy-details {
  margin: auto 1.35rem 1.35rem;
  border: 1px solid var(--hc-line);
  border-radius: 10px;
  background: var(--hc-soft);
}

.legacy-details summary {
  padding: .72rem .9rem;
  color: #3b3631;
  font-size: var(--hc-text-xs);
  font-weight: var(--hc-weight-heavy);
  line-height: var(--hc-leading-copy);
  letter-spacing: var(--hc-tracking-subtle);
  cursor: pointer;
  text-transform: uppercase;
}

.legacy-details[open] summary {
  border-bottom: 1px solid var(--hc-line);
}

.legacy-details > div {
  padding-block: .8rem;
}

.legacy-details p,
.legacy-details ul {
  margin-right: .9rem !important;
  margin-left: .9rem !important;
}

/* Main and inner pages */

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  margin-block: 36px 72px;
}

.content-grid.has-left {
  grid-template-columns: 240px minmax(0, 1fr);
}

.content-grid.has-right {
  grid-template-columns: minmax(0, 1fr) 310px;
}

.content-grid.has-left.has-right {
  grid-template-columns: 220px minmax(0, 1fr) 290px;
}

.main-content,
.content-section,
.sidebar > * {
  min-width: 0;
}

.is-home .content-grid {
  margin: 0;
}

.is-home .blog-featured > .page-header {
  display: none;
}

.is-inner .site-hero,
.is-inner .hero-inner {
  min-height: 250px;
}

.is-inner .site-hero {
  background-position: center 36%;
}

.is-inner .headline-row {
  min-height: 68px;
  padding-block: .4rem;
}

.is-inner .main-content {
  --hc-content-padding: clamp(1.4rem, 3vw, 2.7rem);
  padding: var(--hc-content-padding);
  overflow: hidden;
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius);
  background: #fff;
  box-shadow: var(--hc-shadow-soft);
}

.main-content h1 {
  margin-top: 0;
  color: #26221f;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -.025em;
}

.main-content h2,
.content-section h2 {
  color: #2d2925;
  line-height: 1.25;
}

.com-content-article > .page-header:has(h1) ~ .page-header:has(h2),
.article-info {
  display: none;
}

.main-content h2 {
  margin-top: 1.8em;
}

.main-content img {
  max-width: 100% !important;
  margin-left: 0 !important;
}

.main-content iframe,
.main-content video {
  max-width: 100%;
}

.main-content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.main-content td,
.main-content th {
  padding: .6rem;
}

.content-section {
  margin: 0;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  overflow: hidden;
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius);
  background: #fff;
  box-shadow: var(--hc-shadow-soft);
}

.sidebar .content-section {
  margin: 0 0 1rem;
  padding: 1.15rem;
  border-radius: 14px;
}

.sidebar .content-section:has(.right_block) {
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sidebar .content-section:has(.right_block) .mod-custom {
  display: grid;
  gap: 1rem;
}

.sidebar .content-section:has(.right_block) table {
  display: table;
  width: 100%;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid var(--hc-line);
  border-radius: 14px;
  background: #fff !important;
  box-shadow: var(--hc-shadow-soft);
}

.sidebar .content-section:has(.right_block) td {
  padding: 0;
}

.sidebar .content-section:has(.right_block) img {
  display: block;
  width: 100% !important;
  height: auto !important;
  border-radius: 13px 13px 0 0;
}

.sidebar .content-section:has(.right_block) .right_block {
  padding: 1rem 1.15rem !important;
  border-radius: 0 0 13px 13px;
  text-align: center;
}

.sidebar .content-section h2,
.sidebar .content-section h3 {
  margin-top: 0;
  font-size: .9rem !important;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.sidebar img,
.sidebar table {
  max-width: 100% !important;
  margin-left: 0 !important;
}

.sidebar .position-right:has(.contact-panel) {
  padding: 0;
  border: 0;
  color: #fff;
  background: #211e1b;
}

.contact-panel {
  padding: 1.7rem;
}

.contact-panel-kicker {
  margin: 0 0 .35rem;
  color: var(--hc-gold);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.contact-panel h2 {
  margin: 0 0 .75rem;
  color: #fff;
  font-size: 1.35rem;
  letter-spacing: -.02em;
  text-transform: none;
}

.contact-panel > p:not(.contact-panel-kicker, .contact-panel-address) {
  color: #c8c2bc;
  font-size: .84rem;
}

.contact-panel > a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: .6rem;
  padding: .65rem .75rem;
  border: 1px solid #4d4741;
  border-radius: 9px;
  color: #fff;
  font-size: .82rem;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
}

.contact-panel-actions {
  display: grid;
  gap: .6rem;
  margin-top: .6rem;
}

.contact-panel-actions > a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: .65rem .75rem;
  border: 1px solid #4d4741;
  border-radius: 9px;
  color: #fff;
  font-size: .82rem;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
}

.contact-panel-actions > a:hover,
.contact-panel-actions > a:focus-visible {
  border-color: var(--hc-red);
  color: #fff;
}

.contact-panel-actions > .contact-panel-primary {
  border-color: var(--hc-red);
  background: var(--hc-red);
}

.contact-panel > a:hover {
  border-color: var(--hc-red);
  color: #fff;
}

.contact-panel > .contact-panel-primary {
  border-color: var(--hc-red);
  background: var(--hc-red);
}

.contact-panel-address {
  margin: 1.2rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid #423d38;
  color: #aaa39c;
  font-size: .76rem;
}

.breadcrumbs,
.breadcrumb {
  display: flex;
  min-height: 44px;
  align-items: center;
  width: fit-content;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: .55rem .75rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
  color: #d6d1cc;
  background: #34312f;
  box-shadow: 0 4px 14px rgba(37, 35, 33, .12);
  font-size: var(--hc-text-xs);
  line-height: var(--hc-leading-copy);
  list-style: none;
}

.mod-breadcrumbs__wrapper {
  margin-top: 17px;
}

.mod-breadcrumbs__wrapper + .content-grid {
  margin-top: 18px;
}

.is-inner .content-grid {
  margin-top: 10px;
  margin-bottom: 42px;
}

.mod-breadcrumbs__divider {
  display: none;
}

.breadcrumb-item + .breadcrumb-item::before {
  padding-inline: .42rem;
  color: #8f8984;
  font-size: .85em;
  content: "›";
}

.breadcrumb-item a,
.breadcrumb-item a:visited {
  color: #ff777c;
  font-weight: var(--hc-weight-medium);
  text-decoration-color: transparent;
  transition: color .18s ease, text-decoration-color .18s ease;
}

.breadcrumb-item a:hover,
.breadcrumb-item a:focus-visible {
  color: #ff9a9d;
  text-decoration-color: currentColor;
}

.breadcrumb-item.active {
  color: #d6d1cc;
}

.button,
.btn,
button[type="submit"],
input[type="submit"] {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: .65rem 1.1rem;
  border: 1px solid var(--hc-red-dark);
  border-radius: 9px;
  color: #fff;
  background: var(--hc-red);
  font-weight: var(--hc-weight-bold);
  cursor: pointer;
  text-decoration: none;
}

.button:hover,
.btn:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  color: #fff;
  background: var(--hc-red-dark);
}

/* Native Joomla contact form */

.is-contact .content-grid {
  width: min(100%, 1160px);
  margin-inline: auto;
}

.is-contact .main-content {
  padding: 0;
  overflow: hidden;
}

.is-contact #system-message-container:not(:empty) {
  padding: 1.5rem 1.5rem 0;
}

.is-contact #system-message-container joomla-alert {
  display: block;
  position: relative;
  padding: 1rem 3rem 1rem 1.1rem;
  border: 1px solid #e6b7b9;
  border-radius: 12px;
  color: #682126;
  background: #fff2f2;
}

.is-contact #system-message-container .alert-heading {
  margin: 0 0 .3rem;
  color: inherit;
  font-size: .95rem;
}

.is-contact #system-message-container .alert-message {
  margin: 0;
}

.is-contact #system-message-container .joomla-alert--close {
  position: absolute;
  top: .65rem;
  right: .65rem;
  width: 32px;
  min-height: 32px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
}

.contact-page {
  overflow: hidden;
  background: var(--hc-paper);
}

.contact-page__intro {
  position: relative;
  z-index: 0;
  padding: clamp(2.5rem, 6vw, 5.2rem) clamp(1.5rem, 6vw, 5.8rem);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 35, 46, .27), transparent 31%),
    radial-gradient(circle at 92% 95%, rgba(196, 161, 115, .18), transparent 35%),
    #211e1b;
  isolation: isolate;
}

.contact-page__intro::after {
  position: absolute;
  z-index: -1;
  top: -90px;
  right: -40px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(255, 255, 255, .025),
    0 0 0 96px rgba(255, 255, 255, .018);
  content: "";
}

.contact-page__eyebrow,
.contact-page__aside-kicker,
.contact-form-card__heading > p {
  margin: 0 0 .65rem;
  color: #e35c64;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.contact-page__intro h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.25rem, 5.8vw, 4.8rem);
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: -.045em;
}

.contact-page__lede {
  max-width: 720px;
  margin: 1.35rem 0 0;
  color: #d3cec8;
  font-size: clamp(1rem, 2vw, 1.17rem);
  line-height: 1.7;
}

.contact-page__topics {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-page__topics li {
  padding: .42rem .75rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: #e9e4df;
  background: rgba(255, 255, 255, .05);
  font-size: .78rem;
}

.contact-page__body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .75fr);
}

.contact-page__body--direct-only {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.contact-page__body--direct-only .contact-page__aside {
  border-left: 0;
}

.contact-form-card {
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.5rem, 5vw, 4.6rem);
}

.contact-form-card__heading {
  max-width: 650px;
  margin-bottom: 2rem;
}

.contact-form-card__heading h2,
.contact-page__aside h2 {
  margin: 0;
  color: #25211e;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.contact-form-card__heading > span {
  display: block;
  margin-top: .75rem;
  color: var(--hc-muted);
  font-size: .82rem;
}

.contact-enquiry-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-field {
  min-width: 0;
}

.contact-field--message {
  grid-column: 1 / -1;
}

.contact-field label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .7rem;
  margin-bottom: .45rem;
  color: #3b3632;
  font-size: .84rem;
  font-weight: 720;
}

.contact-field label > span {
  color: var(--hc-red);
}

.contact-field label small {
  color: #8a837c;
  font-size: .72rem;
  font-weight: 520;
}

.contact-field :is(input, select, textarea) {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: .78rem .9rem;
  border: 1px solid #cec7bf;
  border-radius: 10px;
  color: var(--hc-ink);
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.contact-field select {
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-field textarea {
  min-height: 168px;
  resize: vertical;
}

.contact-field :is(input, textarea)::placeholder {
  color: #9a938c;
  opacity: 1;
}

.contact-field :is(input, select, textarea):hover {
  border-color: #aaa198;
}

.contact-field :is(input, select, textarea):focus {
  border-color: var(--hc-red);
  outline: 0;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(217, 35, 46, .1);
}

.contact-field :is(input, select, textarea).invalid,
.contact-field :is(input, select, textarea):user-invalid {
  border-color: #b71924;
  background: #fff8f8;
}

.contact-field > p {
  margin: .45rem 0 0;
  color: #817a73;
  font-size: .76rem;
}

.contact-captcha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.35rem;
  padding: .9rem 1rem;
  border: 1px solid #ded8d1;
  border-radius: 12px;
  background: var(--hc-soft);
}

.contact-captcha > div:first-child {
  display: grid;
  gap: .1rem;
  min-width: 155px;
}

.contact-captcha strong {
  color: #403a35;
  font-size: .82rem;
}

.contact-captcha span {
  color: #817a73;
  font-size: .7rem;
}

.contact-captcha .control-group,
.contact-captcha .control-label,
.contact-captcha .controls {
  margin: 0;
}

.contact-captcha .control-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-captcha altcha-widget {
  --altcha-border-radius: 9px;
  --altcha-color-active: var(--hc-red-dark);
  --altcha-color-border: #c8c0b7;
  --altcha-color-border-focus: var(--hc-red);
  --altcha-max-width: 270px;
  display: block;
}

.contact-enquiry-form__submit {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.contact-enquiry-form__submit .btn {
  min-width: 205px;
  min-height: 52px;
  justify-content: space-between;
  gap: 1.5rem;
  padding-inline: 1.2rem;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(168, 22, 32, .18);
  transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.contact-enquiry-form__submit .btn:hover {
  box-shadow: 0 15px 28px rgba(168, 22, 32, .23);
  transform: translateY(-1px);
}

.contact-enquiry-form__submit p {
  margin: 0;
  color: #817a73;
  font-size: .76rem;
}

.contact-page__aside {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1.7rem;
  padding: clamp(2rem, 4vw, 4.5rem) clamp(1.4rem, 4vw, 3.2rem);
  border-left: 1px solid var(--hc-line);
  background: #f7f4f0;
}

.contact-page__aside-kicker {
  color: var(--hc-red);
}

.contact-page__aside > div:first-child > p:last-child {
  margin: .85rem 0 0;
  color: var(--hc-muted);
  font-size: .9rem;
}

.contact-methods {
  display: grid;
  gap: .75rem;
}

.contact-method {
  display: grid;
  min-width: 0;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: center;
  min-height: 76px;
  padding: .85rem;
  border: 1px solid #ddd6cf;
  border-radius: 12px;
  color: #332f2c;
  background: #fff;
  box-shadow: 0 6px 18px rgba(42, 31, 21, .045);
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.contact-method:hover,
.contact-method:focus-visible {
  border-color: #aaa198;
  color: #332f2c;
  box-shadow: 0 10px 24px rgba(42, 31, 21, .09);
  transform: translateY(-1px);
}

.contact-method--primary {
  border-color: #245d37;
  color: #fff;
  background: #245d37;
}

.contact-method--primary:hover,
.contact-method--primary:focus-visible {
  border-color: #184729;
  color: #fff;
  background: #184f2d;
}

.contact-method__icon {
  display: grid;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--hc-red-dark);
  background: #f7eeee;
  place-items: center;
}

.contact-method--primary .contact-method__icon {
  color: #fff;
  background: rgba(255, 255, 255, .13);
}

.contact-method__icon svg,
.contact-address-card > svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-method > span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: .08rem;
}

.contact-method small,
.contact-address-card small {
  color: #827a73;
  font-size: .67rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-method--primary small {
  color: rgba(255, 255, 255, .72);
}

.contact-method strong {
  min-width: 0;
  overflow: hidden;
  font-size: .84rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-method__arrow {
  font-size: 1rem;
}

.contact-address-card {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  padding-top: 1.4rem;
  border-top: 1px solid #ddd6cf;
}

.contact-address-card > svg {
  flex: 0 0 auto;
  color: var(--hc-red);
}

.contact-address-card > div {
  display: grid;
  gap: .15rem;
}

.contact-address-card address {
  color: #49433e;
  font-size: .85rem;
  font-style: normal;
}

.contact-next-steps {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd6cf;
}

.contact-next-steps h3 {
  margin: 0 0 1rem;
  color: #49433e;
  font-size: .75rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-next-steps ol {
  display: grid;
  gap: .75rem;
  margin: 0;
  padding: 0;
  color: #5f5852;
  font-size: .79rem;
  list-style: none;
}

.contact-next-steps li {
  display: flex;
  gap: .75rem;
  align-items: center;
}

.contact-next-steps li span {
  display: grid;
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  border: 1px solid #d6cec6;
  border-radius: 50%;
  color: var(--hc-red-dark);
  background: #fff;
  font-size: .6rem;
  font-weight: 800;
  place-items: center;
}

@media (max-width: 980px) {
  .contact-page__body {
    grid-template-columns: 1fr;
  }

  .contact-page__aside {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    border-top: 1px solid var(--hc-line);
    border-left: 0;
  }

  .contact-methods,
  .contact-address-card,
  .contact-next-steps {
    grid-column: 2;
  }

  .contact-address-card,
  .contact-next-steps {
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  .contact-page__intro {
    padding: 2.4rem 1.3rem;
  }

  .contact-page__intro h1 {
    font-size: clamp(2rem, 12vw, 3.15rem);
  }

  .contact-form-card,
  .contact-page__aside {
    padding: 1.7rem 1.2rem;
  }

  .contact-enquiry-form__grid,
  .contact-page__aside {
    grid-template-columns: 1fr;
  }

  .contact-field--message,
  .contact-methods,
  .contact-address-card,
  .contact-next-steps {
    grid-column: 1;
  }

  .contact-captcha {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-captcha altcha-widget {
    --altcha-max-width: 100%;
  }

  .contact-enquiry-form__submit {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-enquiry-form__submit .btn {
    width: 100%;
  }
}

.legacy-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-block: 1.5rem;
}

.legacy-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #eee;
}

.legacy-gallery img {
  display: block;
  width: 100% !important;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .25s ease;
}

.legacy-gallery a:hover img {
  transform: scale(1.035);
}

/* Testimonials and photo archive */

.is-testimonials .main-content {
  overflow: visible;
}

.is-testimonials .main-content h1 {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.is-testimonials .main-content h1::before {
  width: 6px;
  height: 1.15em;
  border-radius: 999px;
  background: var(--hc-red);
  content: "";
  flex: 0 0 auto;
}

.is-testimonials .com-content-article__body > p:first-child {
  margin: 0 0 2rem !important;
}

.is-testimonials .com-content-article__body > p:first-child > img {
  display: block;
  width: 100% !important;
  height: clamp(210px, 31vw, 340px) !important;
  margin: 0 !important;
  border-radius: 15px;
  object-fit: cover;
  object-position: center;
}

.is-testimonials .block_news {
  margin: 0 0 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--hc-line);
  border-radius: 14px;
  background: linear-gradient(145deg, #fbfaf8, #f3eee8);
}

.is-testimonials .block_news .moduletable {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .55rem !important;
}

.is-testimonials .block_news h2 {
  width: 100%;
  margin: 0 0 .65rem !important;
  padding: 0 !important;
  background: none !important;
  font-size: clamp(1.35rem, 3vw, 1.8rem) !important;
  letter-spacing: -.015em !important;
  text-align: center;
}

.is-testimonials .block_news h3 {
  display: block !important;
  width: auto !important;
  margin: 0 !important;
  font-size: .78rem !important;
  line-height: 1.2;
}

.is-testimonials .block_news h3:not(:has(a)) {
  display: none !important;
  width: 0 !important;
  height: 0;
  overflow: hidden;
  font-size: 0 !important;
}

.is-testimonials .block_news h3 a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: .45rem .72rem;
  border: 1px solid #d7d0c8;
  border-radius: 999px;
  color: #5b554f !important;
  background: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.is-testimonials .block_news h3 a:hover,
.is-testimonials .block_news h3 a:focus-visible {
  border-color: var(--hc-red);
  color: var(--hc-red-dark) !important;
  transform: translateY(-1px);
}

.is-testimonials .block_news + p {
  margin: 0 auto 1.75rem !important;
  color: #504a45;
  font-size: 1rem;
  line-height: 1.55 !important;
  text-align: center;
}

.is-testimonials .com-content-article__body > table,
.is-testimonials table.tbltext {
  display: table;
  width: 100% !important;
  height: auto !important;
  margin: 0 0 1.35rem;
  padding: 0 !important;
  overflow: visible;
  border: 1px solid #ded8d1;
  border-radius: 14px;
  border-spacing: 0 !important;
  color: #38332f;
  background: #f7f4f0 !important;
  box-shadow: 0 8px 24px rgba(42, 31, 21, .06);
  font-size: .93rem !important;
  line-height: 1.5;
}

.is-testimonials .com-content-article__body > table > tbody,
.is-testimonials table.tbltext > tbody {
  display: table-row-group;
}

.is-testimonials .com-content-article__body > table tr:first-child > td[colspan],
.is-testimonials table.tbltext tr:first-child > td[colspan] {
  padding: 1.25rem 1.4rem !important;
  border-bottom: 1px solid #ded8d1;
  border-left: 5px solid var(--hc-red);
  background: #eee9e3;
}

.is-testimonials .com-content-article__body > table p.pad,
.is-testimonials table.tbltext p.pad {
  min-height: 70px;
  margin: 0 !important;
  padding: 0 !important;
  font-size: .95rem;
  line-height: 1.55;
}

.is-testimonials .com-content-article__body > table .nadpis,
.is-testimonials table.tbltext .nadpis {
  font: inherit !important;
}

.is-testimonials .com-content-article__body > table td,
.is-testimonials table.tbltext td {
  padding: 1rem !important;
  vertical-align: middle;
}

.is-testimonials .com-content-article__body > table td:has(> div[style*="float"]),
.is-testimonials table.tbltext td:has(> div[style*="float"]) {
  display: grid;
  width: 100% !important;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.is-testimonials .com-content-article__body > table td > div[style*="float"],
.is-testimonials table.tbltext td > div[style*="float"] {
  width: auto !important;
  padding: 0 !important;
  float: none !important;
}

.is-testimonials .com-content-article__body > table iframe,
.is-testimonials table.tbltext iframe {
  display: block;
  width: 100% !important;
  height: auto !important;
  border: 0;
  border-radius: 10px;
  background: #161616;
  aspect-ratio: 3 / 4;
}

.is-testimonials img.opinion[src*="/flags/"] {
  width: 84px !important;
  height: 84px !important;
  margin: -.25rem 0 .5rem 1rem !important;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 5px 16px rgba(0, 0, 0, .14);
  object-fit: cover;
}

.is-testimonials .com-content-article__body > table img.opinion:not([src*="/flags/"]),
.is-testimonials table.tbltext img.opinion:not([src*="/flags/"]) {
  display: block;
  width: auto !important;
  max-height: 320px;
  margin: auto !important;
  border-radius: 10px;
  object-fit: contain;
}

.is-testimonials .legacy-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin: .25rem 0;
}

.is-testimonials .legacy-gallery:has(a:only-child) {
  grid-template-columns: minmax(150px, 220px);
  justify-content: center;
}

.is-testimonials .legacy-gallery a {
  border: 1px solid #ded8d1;
  border-radius: 8px;
  background: #fff;
}

.is-testimonials .pagenavigation {
  display: none;
}

.is-testimonials .article-index {
  margin: 0 0 1.25rem 1.25rem !important;
  padding: 1rem;
  border: 1px solid var(--hc-line);
  border-radius: 12px;
  background: var(--hc-soft);
}

.is-testimonials .article-index h3 {
  margin: 0 0 .5rem;
  font-size: .86rem;
}

.is-testimonials .article-index ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.is-testimonials .pagenavcounter {
  margin-bottom: .75rem;
  color: var(--hc-muted);
  font-size: .78rem;
}

.sidebar .content-section:has(.testimonial-carousel) {
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.content-section.testimonial-carousel-module--inline {
  width: 100%;
  margin: 0 0 1.5rem;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.testimonial-carousel {
  padding: 1rem;
  overflow: hidden;
  border: 1px solid #39332e;
  border-radius: 15px;
  color: #fff;
  background: #211e1b;
  box-shadow: var(--hc-shadow-soft);
}

.testimonial-carousel__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .85rem;
}

.testimonial-carousel__heading p {
  margin: 0 0 .05rem;
  color: var(--hc-gold);
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.testimonial-carousel__heading h2 {
  margin: 0 !important;
  color: #fff !important;
  font-size: 1.15rem !important;
  letter-spacing: -.01em !important;
  text-transform: none !important;
}

.testimonial-carousel__heading a {
  padding-bottom: .12rem;
  color: #d9d2cb;
  font-size: .7rem;
  font-weight: 750;
}

.testimonial-carousel__heading a:hover {
  color: #fff;
}

.testimonial-carousel__viewport {
  width: 100%;
  max-width: 100%;
  height: min(900px, calc(100vh - 170px));
  min-height: 540px;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 10px;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scrollbar-color: #675e56 #2e2925;
  scrollbar-width: thin;
  contain: inline-size;
}

.testimonial-carousel__track {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.testimonial-carousel__slide {
  display: block;
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 9px;
  background: #12110f;
  scroll-snap-align: start;
  text-decoration: none;
}

.testimonial-carousel__slide::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(to top, rgba(0, 0, 0, .3), transparent);
  content: "";
  pointer-events: none;
}

.testimonial-carousel__slide img {
  display: block;
  width: 100% !important;
  margin: 0 !important;
  background: #161412;
  aspect-ratio: 1.75 / 1;
  object-fit: cover;
  transition: opacity .2s ease, transform .3s ease;
}

.testimonial-carousel__slide:hover img {
  opacity: .9;
  transform: scale(1.025);
}

.testimonial-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-top: .8rem;
}

.testimonial-carousel__controls {
  display: flex;
  gap: .4rem;
}

.testimonial-carousel__controls button {
  display: grid;
  width: 38px;
  height: 38px;
  min-height: 0;
  padding: 0;
  border: 1px solid #575049;
  border-radius: 8px;
  color: #fff;
  background: #302b27;
  cursor: pointer;
  place-items: center;
}

.testimonial-carousel__controls button:hover,
.testimonial-carousel__controls button:focus-visible {
  border-color: var(--hc-red);
  color: #fff;
  background: var(--hc-red);
}

.testimonial-carousel__status {
  margin: 0;
  color: #aaa29a;
  font-size: .7rem;
  font-variant-numeric: tabular-nums;
}

.opens-photo-lightbox {
  cursor: zoom-in;
}

img.opens-photo-lightbox:focus-visible {
  outline: 3px solid var(--hc-red);
  outline-offset: 4px;
}

body.has-photo-lightbox {
  overflow: hidden;
}

.photo-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: clamp(1rem, 4vw, 3.5rem);
  overflow: hidden;
  border: 0;
  color: #fff;
  background: rgba(16, 14, 13, .96);
  opacity: 0;
  transition: opacity .22s ease;
}

.photo-lightbox[open] {
  display: grid;
  place-items: center;
}

.photo-lightbox::backdrop {
  background: rgba(0, 0, 0, .82);
}

.photo-lightbox.is-visible {
  opacity: 1;
}

.photo-lightbox.is-closing {
  pointer-events: none;
}

.photo-lightbox__figure {
  display: grid;
  max-width: min(94vw, 1500px);
  max-height: calc(100dvh - 3rem);
  margin: 0;
  place-items: center;
  gap: .75rem;
}

.photo-lightbox__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100dvh - 7rem);
  border-radius: 10px;
  background: #211e1b;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .55);
  cursor: zoom-out;
  opacity: 0;
  object-fit: contain;
  transform: scale(.86);
  transition: opacity .22s ease, transform .22s ease;
}

.photo-lightbox__video {
  display: block;
  width: min(90vw, 1280px);
  height: min(78vh, 720px);
  border: 0;
  border-radius: 10px;
  background: #000;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .55);
  opacity: 0;
  transform: scale(.86);
  transition: opacity .22s ease, transform .22s ease;
}

.photo-lightbox.is-visible .photo-lightbox__video:not([hidden]) {
  opacity: 1;
  transform: scale(1);
}

.photo-lightbox.is-visible .photo-lightbox__image {
  opacity: 1;
  transform: scale(1);
}

.photo-lightbox__caption {
  max-width: 70ch;
  color: #d7d1cb;
  font-size: .82rem;
  text-align: center;
}

.photo-lightbox__close {
  display: grid;
  position: fixed;
  z-index: 1;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  width: 48px;
  height: 48px;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, .64);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  place-items: center;
}

.photo-lightbox__close:hover,
.photo-lightbox__close:focus-visible {
  border-color: var(--hc-red);
  color: #fff;
  background: var(--hc-red);
}

/* News, video, and clients */

.is-news .blog-items {
  display: grid;
  gap: 1.15rem;
}

.is-news .blog-item,
.is-news .blog-item .item-content {
  display: flow-root;
  min-width: 0;
}

.is-news .blog-item {
  padding: clamp(1rem, 2.4vw, 1.5rem);
  border: 1px solid var(--hc-line);
  border-radius: 14px;
  background: var(--hc-soft);
}

.is-news .blog-item .page-header h2 {
  margin: 0 0 .8rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.25;
}

.is-news .blog-item .page-header h2 a {
  text-decoration-thickness: 1px;
  text-underline-offset: .16em;
}

.is-news .blog-item .item-content img {
  display: block;
  float: left !important;
  width: auto !important;
  height: auto !important;
  max-height: none !important;
  margin: .1rem 1rem .45rem 0 !important;
  padding: 0 !important;
  border-radius: 9px;
}

.is-articles .blog-items {
  display: grid;
  gap: 1.25rem;
}

.is-articles .blog-item {
  overflow: hidden;
  border: 1px solid var(--hc-line);
  border-radius: 14px;
  background: var(--hc-soft);
}

.is-articles .article-card__media {
  display: block;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #d9d1c8;
}

.is-articles .article-card__image {
  display: block;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover;
  object-position: center;
  transition: transform .3s ease;
}

.is-articles .blog-item:hover .article-card__image {
  transform: scale(1.02);
}

.is-articles .article-card__body {
  padding: clamp(1rem, 2.4vw, 1.5rem);
}

.is-articles .article-card .page-header h2 {
  margin: 0 0 .75rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.25;
}

.is-articles .article-card .page-header h2 a {
  text-decoration-thickness: 1px;
  text-underline-offset: .16em;
}

.is-articles .article-card__excerpt {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #37322e;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.has-article-hero .com-content-article.item-page:is(
  :has(> .com-content-article__body > img:first-child),
  :has(> .com-content-article__body > p:first-child > img:first-child)
) {
  position: relative;
}

.has-article-hero .com-content-article.item-page:is(
  :has(> .com-content-article__body > img:first-child),
  :has(> .com-content-article__body > p:first-child > img:first-child)
) > .page-header:first-of-type {
  display: flex;
  position: absolute;
  z-index: 2;
  top: 0;
  right: calc(0px - var(--hc-content-padding));
  left: calc(0px - var(--hc-content-padding));
  align-items: flex-start;
  margin: 0;
  padding: clamp(1.25rem, 4vw, 2.7rem);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(17, 14, 12, .9) 0%, rgba(17, 14, 12, .62) 34%, transparent 72%);
  pointer-events: none;
}

.has-article-hero .com-content-article.item-page:is(
  :has(> .com-content-article__body > img:first-child),
  :has(> .com-content-article__body > p:first-child > img:first-child)
) > .page-header:first-of-type h1 {
  max-width: 26ch;
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  line-height: 1.05;
  text-wrap: balance;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .72);
}

.has-article-hero .com-content-article__body > img:first-child,
.has-article-hero .com-content-article__body > p:first-child > img:first-child {
  display: block;
  width: auto !important;
  max-width: calc(100% + var(--hc-content-padding) + var(--hc-content-padding)) !important;
  height: auto !important;
  margin: calc(0px - var(--hc-content-padding)) calc(0px - var(--hc-content-padding)) clamp(1.8rem, 4vw, 3rem) !important;
  padding: 0 !important;
  border-radius: calc(var(--hc-radius) - 1px) calc(var(--hc-radius) - 1px) 14px 14px;
  box-shadow: var(--hc-shadow-soft);
}

.has-article-hero .com-content-article__body > p:first-child:has(> img:first-child) {
  margin: 0 !important;
}

/* Keep the detailed teacher portraits at their native legacy size and align
 * each portrait with the teacher name beside it. */
body:has(.com-content-article__body img[src*="/images/teachers2/"]) .com-content-article__body > table {
  width: 100%;
  table-layout: fixed;
}

body:has(.com-content-article__body img[src*="/images/teachers2/"]) .com-content-article__body > table td {
  vertical-align: top;
}

body:has(.com-content-article__body img[src*="/images/teachers2/"]) .com-content-article__body > table td:first-child {
  width: 178px;
}

body:has(.com-content-article__body img[src*="/images/teachers2/"]) .com-content-article__body > table td:first-child img {
  display: block;
  width: 158px !important;
  max-width: 158px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 20px 10px 0 !important;
  float: none !important;
}

body:has(.com-content-article__body img[src*="/images/teachers2/"]) .com-content-article__body > table tr:has(> td:first-child > img) > td:nth-child(2) > p:first-child {
  margin-top: 0 !important;
}

@media (max-width: 700px) {
  body:has(.com-content-article__body img[src*="/images/teachers2/"]) .com-content-article__body > table,
  body:has(.com-content-article__body img[src*="/images/teachers2/"]) .com-content-article__body > table tbody,
  body:has(.com-content-article__body img[src*="/images/teachers2/"]) .com-content-article__body > table tr,
  body:has(.com-content-article__body img[src*="/images/teachers2/"]) .com-content-article__body > table td {
    display: block;
    width: auto !important;
  }

  body:has(.com-content-article__body img[src*="/images/teachers2/"]) .com-content-article__body > table tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: 1.5rem;
  }

  body:has(.com-content-article__body img[src*="/images/teachers2/"]) .com-content-article__body > table td:first-child img {
    margin-bottom: 1rem !important;
  }
}

.has-article-hero.is-testimonials .com-content-article.item-page > .page-header:first-of-type h1::before {
  content: none;
}

.home-sections {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  margin-block: 0 80px;
}

.home-sections > .content-section {
  grid-column: 1 / -1;
}

.home-sections > .position-news:first-child,
.home-sections > .position-video,
.home-sections .position-block5,
.home-sections .position-block6,
.home-section-heading {
  background-color: var(--hc-ornament-bg);
}

.home-split-sections {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.home-section-heading {
  grid-column: 1 / -1;
}

.home-sections > .position-news:first-child .mod-custom > h2,
.position-video .mod-custom > h2,
.position-block5 .mod-custom > h2,
.position-block6 .mod-custom > h2,
.home-section-heading h2 {
  display: block;
  width: 100%;
  margin: 0 !important;
  padding: 38px 0 4px !important;
  border-bottom: 1px solid #c9c4be;
  color: #3b3835;
  background: url("/images/design/pattern.jpg") top center / 87px 33px no-repeat;
  font-size: var(--hc-text-section);
  font-weight: var(--hc-weight-bold);
  line-height: var(--hc-leading-tight);
  text-align: center;
  text-transform: uppercase;
}

.home-sections > .position-news:first-child .mod-custom > h2 a,
.position-video .mod-custom > h2 a,
.position-block5 .mod-custom > h2 a,
.position-block6 .mod-custom > h2 a,
.home-section-heading h2 a {
  color: inherit;
  text-decoration: none;
}

.home-sections > .position-news:first-child {
  padding: 0;
  border: 0;
  background: var(--hc-ornament-bg);
  box-shadow: none;
}

.home-sections > .position-news:first-child h2 {
  margin: 0;
}

.home-sections > .position-news:first-child h3 {
  margin: .35rem 0 0;
  color: var(--hc-muted);
  font-size: var(--hc-text-xs);
  font-weight: var(--hc-weight-bold);
  line-height: var(--hc-leading-copy);
  letter-spacing: var(--hc-tracking-wide);
  text-align: center;
  text-transform: uppercase;
}

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

.newsitem {
  min-width: 0;
  padding: 1.1rem;
  border: 1px solid #ebe5de;
  border-radius: 14px;
  background: var(--hc-soft);
}

.newsflash-title {
  margin: 0 0 .75rem;
  font-size: var(--hc-text-base);
  font-weight: var(--hc-weight-bold);
  line-height: var(--hc-leading-tight);
}

.newsflash-title a {
  text-decoration: none;
}

.newsflash_container {
  color: #5b5650;
  font-size: var(--hc-text-sm);
  line-height: var(--hc-leading-copy);
}

.newsflash_container::after {
  display: block;
  clear: both;
  content: "";
}

.newsflash_date {
  display: inline-block;
  margin-bottom: .5rem;
  color: var(--hc-red);
  font-size: var(--hc-text-xs);
  font-weight: var(--hc-weight-heavy);
  line-height: var(--hc-leading-copy);
}

.newsflash_container img {
  float: left !important;
  width: auto !important;
  height: 120px !important;
  max-width: none !important;
  margin: 0 .9rem .5rem 0 !important;
  padding: 0 !important;
  border-radius: 8px;
}

.position-video .mod-custom > h2,
.position-video .mod-custom > h3 {
  text-align: center;
}

.position-video .mod-custom > h2 {
  margin: 0;
}

.position-video .mod-custom > h3 {
  margin: .35rem 0 1.5rem;
  color: var(--hc-muted);
  font-size: var(--hc-text-xs);
  font-weight: var(--hc-weight-bold);
  line-height: var(--hc-leading-copy);
  letter-spacing: var(--hc-tracking-wide);
  text-transform: uppercase;
}

.position-video .mod-custom > p {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.position-video .mod-custom > p a {
  overflow: hidden;
  border-radius: 10px;
}

.position-video .mod-custom > p a,
.position-video .mod-custom > p img {
  display: block;
  width: 100%;
}

.position-video .mod-custom > p img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.position-video .mod-custom > p a:hover img,
.position-video .mod-custom > p a:focus-visible img {
  border: 0;
  transform: scale(1.045);
}

.position-block5,
.position-block6 {
  min-width: 0;
}

.position-block5 .mod-custom,
.position-block6 .mod-custom {
  min-width: 0;
}

.position-block5 .mod-custom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.position-block5 .mod-custom > h2 {
  grid-column: 1 / -1;
}

.position-block5 .mod-custom > div {
  float: none !important;
  width: 100% !important;
  height: auto !important;
  padding: 1rem 0 0 !important;
  text-align: center;
}

.position-block5 iframe {
  display: block;
  width: min(100%, 225px) !important;
  height: auto !important;
  aspect-ratio: 225 / 357;
  margin-inline: auto;
  border: 0;
  border-radius: 12px;
}

.position-block6 .mod-custom > p:has(img) {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 1rem 0 0 !important;
}

.position-block6 .mod-custom > p:has(img) a,
.position-block6 .mod-custom > p:has(img) img {
  display: block;
  width: 100% !important;
  max-width: 113px !important;
  margin: 0 !important;
}

.position-block6 .mod-custom > p:has(img) img {
  height: auto !important;
  aspect-ratio: 113 / 140;
  border-radius: 8px;
  object-fit: contain;
}

.position-block6 .mod-custom > p:last-child {
  margin: 1.25rem 0 0 !important;
  color: var(--hc-muted);
  font-size: var(--hc-text-sm);
  line-height: var(--hc-leading-copy);
}

.home-clients-heading {
  margin-bottom: -12px;
}

.home-clients-heading .mod-custom {
  width: 100%;
}

.position-clients > .mod-custom > table,
.position-clients details table {
  display: block;
  width: 100% !important;
  margin: 0 !important;
}

.position-clients table tbody {
  display: block;
}

.position-clients table tr {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.position-clients table td {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: .2rem !important;
  border: 0;
  border-radius: 0;
  color: #625d57;
  background: transparent;
  font-size: var(--hc-text-xs) !important;
  line-height: var(--hc-leading-copy);
  text-align: center;
}

.home-sections > .position-clients {
  background: var(--hc-soft);
}

.position-clients table td a {
  color: inherit;
  text-decoration: none;
}

.position-clients img.client {
  display: block;
  width: 100% !important;
  max-width: 150px !important;
  height: 100px !important;
  margin: 0 auto .55rem !important;
  border-radius: 10px;
  object-fit: contain;
}

.position-clients > .legacy-details,
.position-clients .mod-custom > .legacy-details {
  margin: 1rem 0 0;
}

/* Footer */

.site-footer {
  color: #c9c4be;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .025), transparent 45%),
    var(--hc-footer);
}

.footer-inner {
  width: min(calc(100% - 40px), var(--hc-width));
  margin-inline: auto;
  padding-block: 60px 30px;
}

.footer-brand-grid {
  display: grid;
  grid-template-columns: .8fr 1.15fr 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.footer-module {
  min-width: 0;
}

.footer-module h2 {
  color: #fff;
  font-size: var(--hc-text-sm);
  font-weight: var(--hc-weight-bold);
  letter-spacing: var(--hc-tracking-wide);
  text-transform: uppercase;
}

.footer-module table {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  border-collapse: collapse;
  color: #c9c4be;
}

.footer-module td {
  width: auto !important;
  padding: .25rem !important;
  font-family: var(--hc-font) !important;
  font-size: var(--hc-text-xs) !important;
  line-height: var(--hc-leading-copy) !important;
  letter-spacing: normal !important;
}

.footer-module a {
  color: #d8d3cd !important;
  text-decoration: none;
}

.footer-module a:hover {
  color: #fff !important;
}

.footer-module-10153 img {
  width: 220px;
}

.footer-module-10154 img {
  width: 31px !important;
  height: 31px !important;
  padding: 0 !important;
  object-fit: contain;
}

.footer-module-10155 td[colspan="2"] {
  font-size: var(--hc-text-sm) !important;
  text-transform: none !important;
}

.footer-module-10155 tr:nth-child(2) td {
  color: #fff;
  font-size: var(--hc-text-lg) !important;
  font-weight: var(--hc-weight-bold);
}

.footer-module-10162 > .mod-custom > div {
  width: 100% !important;
  height: 170px !important;
  border-radius: 12px;
}

.footer-module-10162 img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem 1.35rem;
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid #35312d;
}

.footer-grid .footer-module,
.footer-grid .footer-module ul {
  display: contents;
}

.footer-grid .footer-module ul {
  margin: 0;
  padding: 0;
  font-size: var(--hc-text-xs);
  line-height: var(--hc-leading-copy);
  list-style: none;
}

.footer-copy {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #35312d;
  color: #87817b;
  font-size: var(--hc-text-xs);
  line-height: var(--hc-leading-copy);
  text-align: center;
}

.footer-copy table {
  display: block;
  width: 100% !important;
  margin: 0 !important;
}

.footer-copy tbody,
.footer-copy tr,
.footer-copy td {
  display: block;
  width: 100%;
}

.footer-copy p {
  margin: 0 !important;
  font: inherit !important;
  letter-spacing: normal !important;
}

.footer-copy :is(span, strong, a) {
  font: inherit !important;
  letter-spacing: inherit !important;
}

/* Error page */

.horeca-error {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 1rem;
  color: #fff;
  background: #211b18 url("/images/design/slide.webp") center / cover;
}

.error-panel {
  width: min(100%, 560px);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(20, 20, 20, .92);
  box-shadow: var(--hc-shadow);
  text-align: center;
}

.error-panel img {
  width: 280px;
}

.error-code {
  margin: 1rem 0 0;
  color: var(--hc-red);
  font-size: 4rem;
  font-weight: 800;
}

/* Responsive */

@media (max-width: 1080px) {
  .brand {
    width: 300px;
    min-height: 115px;
    padding: 7px 34px 0;
    background: transparent;
  }

  .brand::before {
    display: block;
    width: 300px;
    height: 51px;
    background-size: 300px 51px;
  }

  .primary-navigation {
    grid-template-columns: minmax(0, 1fr) 300px minmax(0, 1fr);
  }

  .primary-navigation > ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .primary-navigation a {
    padding-inline: 8px;
    font-size: var(--hc-text-xs);
  }

  .hero-content {
    right: 2%;
    left: 2%;
  }

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

  .home-feature-grid {
    grid-template-columns: 1fr;
  }

  .content-grid.has-left,
  .content-grid.has-right,
  .content-grid.has-left.has-right {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .content-grid.has-left.has-right .sidebar-left {
    display: none;
  }

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

@media (max-width: 760px) {
  .site-hero,
  .hero-inner {
    min-height: 620px;
  }

  .hero-inner {
    width: 100%;
  }

  .hero-inner::before {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: rgba(0, 0, 0, .78);
    content: "";
  }

  .brand {
    position: absolute;
    top: 0;
    width: 252px;
    min-height: 107px;
    padding: 7px 27px 0;
  }

  .brand::before {
    width: 252px;
    height: 43px;
    background-size: 252px 43px;
  }

  .menu-toggle {
    display: grid;
    position: absolute;
    z-index: 120;
    top: 0;
    right: 0;
    width: 64px;
    height: 64px;
    padding: 12px;
    border: 0;
    border-radius: 0;
    color: #fff;
    background: transparent;
    place-content: center;
    gap: 5px;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible,
  .menu-toggle[aria-expanded="true"] {
    color: #fff;
    background: rgba(255, 255, 255, .1);
  }

  .menu-toggle span:not(.visually-hidden) {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
  }

  .primary-navigation {
    display: none;
    position: absolute;
    top: 107px;
    right: 0;
    left: auto;
    width: min(100%, 320px);
    max-height: calc(100vh - 107px);
    overflow-y: auto;
    padding: .55rem;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-radius: 0 0 0 12px;
    background: rgba(22, 20, 18, .98);
    box-shadow: var(--hc-shadow);
    transform: none;
  }

  .primary-navigation::before {
    display: none;
  }

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

  .primary-navigation > ul {
    display: block;
  }

  .primary-navigation a {
    min-height: 44px;
    justify-content: flex-start;
    padding: .7rem .9rem;
    border-radius: 7px;
    font-size: var(--hc-text-sm);
    text-align: left;
  }

  .primary-navigation li ul {
    display: block;
    position: static;
    margin-left: .8rem;
    padding-left: .5rem;
    border: 0;
    border-left: 1px solid #555;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .primary-navigation li ul a {
    border-bottom: 0 !important;
    color: #ddd;
    background: transparent;
  }

  .hero-content {
    right: 16px;
    bottom: 20px;
    left: 16px;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-feature {
    display: block;
    width: min(62vw, 240px);
    justify-self: center;
  }

  .hero-contact {
    padding: 1.25rem;
  }

  .hero-contact h2 {
    font-size: 1rem;
  }

  .is-inner .site-hero,
  .is-inner .hero-inner {
    min-height: 176px;
  }

  .is-inner .brand {
    width: 220px;
  }

  .page-shell,
  .footer-inner {
    width: min(calc(100% - 28px), var(--hc-width));
  }

  .service-intro {
    padding: 54px 4px 32px;
    text-align: left;
  }

  .service-intro h1 {
    font-size: var(--hc-text-display);
  }

  .service-intro > p:last-child {
    font-size: var(--hc-text-base);
  }

  .headline-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-block: 1.25rem;
  }

  .headline-breadcrumbs {
    order: 1;
  }

  .headline {
    order: 2;
  }

  .site-search {
    order: 3;
  }

  .service-grid,
  .home-feature-grid,
  .home-split-sections,
  .footer-brand-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    gap: 18px;
    margin-bottom: 58px;
  }

  .home-feature-grid {
    margin-top: -18px;
    margin-bottom: 58px;
  }

  .home-feature-grid .mod-custom,
  .position-block5 .mod-custom {
    grid-template-columns: 1fr;
  }

  .home-feature-grid .mod-custom > img:first-child,
  .home-feature-grid .mod-custom > h2,
  .home-feature-grid .mod-custom > h3,
  .position-block5 .mod-custom > h2 {
    grid-column: 1;
  }

  .home-feature-grid ul {
    padding-inline: 2.5rem 1.4rem !important;
  }

  .service-card h3,
  .service-card h4 {
    text-align: center !important;
  }

  .content-grid.has-left,
  .content-grid.has-right,
  .content-grid.has-left.has-right {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .sidebar {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    order: 2;
  }

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

  .is-testimonials .main-content {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 1.1rem;
    overflow: hidden;
  }

  .is-testimonials .main-content h1 {
    font-size: 1.8rem;
  }

  .is-testimonials .com-content-article__body > p:first-child > img {
    height: 190px !important;
  }

  .is-testimonials .block_news {
    padding: 1.1rem .8rem;
  }

  .is-testimonials .block_news h3 a {
    min-height: 34px;
    padding: .4rem .64rem;
  }

  .is-testimonials .com-content-article__body > table,
  .is-testimonials table.tbltext,
  .is-testimonials .com-content-article__body > table > tbody,
  .is-testimonials table.tbltext > tbody,
  .is-testimonials .com-content-article__body > table tr,
  .is-testimonials table.tbltext tr,
  .is-testimonials .com-content-article__body > table td,
  .is-testimonials table.tbltext td {
    display: block;
    width: 100% !important;
  }

  .is-testimonials .com-content-article__body > table td,
  .is-testimonials table.tbltext td {
    height: auto !important;
    padding: .85rem !important;
    text-align: left !important;
  }

  .is-testimonials .com-content-article__body > table td:has(> div[style*="float"]),
  .is-testimonials table.tbltext td:has(> div[style*="float"]) {
    grid-template-columns: 1fr;
  }

  .is-testimonials .com-content-article__body > table iframe,
  .is-testimonials table.tbltext iframe {
    width: min(100%, 260px) !important;
    margin-inline: auto;
  }

  .is-testimonials .legacy-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .is-testimonials .legacy-gallery:has(a:only-child) {
    grid-template-columns: minmax(140px, 210px);
  }

  .is-testimonials .article-index {
    width: 100%;
    margin: 0 0 1rem !important;
    float: none !important;
  }

  .testimonial-carousel {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: .9rem;
  }

  .testimonial-carousel__viewport {
    height: auto;
    min-height: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
  }

  .testimonial-carousel__track {
    width: max-content;
    max-width: none;
    flex-direction: row;
  }

  .testimonial-carousel__slide {
    width: min(78vw, 290px);
  }

  .testimonial-carousel__controls button:first-child span,
  .testimonial-carousel__controls button:last-child span {
    display: block;
    transform: rotate(-90deg);
  }

  .home-sections {
    margin-bottom: 58px;
  }

  .is-news .blog-item .item-content img {
    float: none !important;
    width: auto !important;
    height: 120px !important;
    max-width: 100% !important;
    margin: 0 0 .9rem !important;
  }

  .is-articles .article-card__media {
    height: 180px;
  }

  .has-article-hero .com-content-article.item-page:is(
    :has(> .com-content-article__body > img:first-child),
    :has(> .com-content-article__body > p:first-child > img:first-child)
  ) > .page-header:first-of-type {
    padding: 1.15rem;
    background: linear-gradient(180deg, rgba(17, 14, 12, .92) 0%, rgba(17, 14, 12, .65) 45%, transparent 82%);
  }

  .has-article-hero .com-content-article.item-page:is(
    :has(> .com-content-article__body > img:first-child),
    :has(> .com-content-article__body > p:first-child > img:first-child)
  ) > .page-header:first-of-type h1 {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
  }

  .newsflash {
    grid-template-columns: 1fr;
  }

  .position-video .mod-custom > p {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .position-block6 .mod-custom > p:has(img) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .position-clients table tr {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    padding-top: 44px;
  }

  .footer-brand-grid {
    gap: 34px;
  }

  .footer-module-10153,
  .footer-module-10153 img {
    text-align: center;
  }

  .footer-module-10153 img {
    margin-inline: auto;
  }
}

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

  .testimonial-carousel__slide img {
    transition: none;
  }

  .photo-lightbox,
  .photo-lightbox__image {
    transition: none;
  }
}

@media (max-width: 420px) {
  .brand {
    left: 50%;
    width: 230px;
    min-height: 103px;
    transform: translateX(-50%);
  }

  .brand::before {
    width: 230px;
    height: 39px;
    background-size: 230px 39px;
  }

  .primary-navigation {
    top: 103px;
    max-height: calc(100vh - 103px);
  }

  .service-intro h1 {
    font-size: var(--hc-text-display);
  }

}

@media (max-width: 360px) {
  .brand {
    width: 200px;
    min-height: 98px;
    padding-inline: 23px;
  }

  .brand::before {
    width: 200px;
    height: 34px;
    background-size: 200px 34px;
  }

  .menu-toggle {
    width: 56px;
  }

  .primary-navigation {
    top: 98px;
    max-height: calc(100vh - 98px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
