@charset "UTF-8";
/*!
Theme Name: Vitamin Media Theme
Theme URI: https://vitaminmedia.gr
Author: SoftWeb
Author URI: https://softweb.gr
Description: Custom WordPress theme for Vitamin Media — ACF blocks, header, footer, Site Settings.
Version: 1.6.31
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: blueprint
*/
:root {
  --color-bg: #ebe6e0;
  --color-surface: #ffffff;
  --color-ink: #111111;
  --color-ink-muted: #5a6670;
  --color-line: #111111;
  --color-accent: #ff6700;
  --color-accent-hover: #e55c00;
  --color-header-bg: rgba(235, 230, 224, 0.94);
  --font-sans: "Manrope", system-ui, sans-serif;
  --font-display: "Manrope", system-ui, sans-serif;
  --fw-regular: 400;
  --fw-bold: 700;
  --fw-black: 800;
  --fs-body: 1.0625rem;
  --fs-small: 0.875rem;
  --fs-h1: clamp(2rem, 4vw, 3rem);
  --fs-h2: clamp(1.5rem, 3vw, 2rem);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2.5rem;
  --space-6: 4rem;
  --header-height: 4.05rem;
  --radius: 0.25rem;
  --padding-inline-spacing: clamp(1.25rem, 4vw, 2.5rem);
  --content-max: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/*!
Theme Name: Vitamin Media Theme
Theme URI: https://vitaminmedia.gr
Author: SoftWeb
Author URI: https://softweb.gr
Description: Custom WordPress theme for Vitamin Media — ACF blocks, header, footer, Site Settings.
Version: 1.6.31
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: blueprint
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease);
}
a:hover, a:focus-visible {
  color: var(--color-accent-hover);
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-ink);
}

strong,
b {
  line-height: inherit;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

p {
  margin-block: 0 var(--space-3);
}

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

.skip-link {
  position: absolute;
  left: var(--space-3);
  top: -100px;
  z-index: 1000;
  padding: var(--space-2) var(--space-3);
  background: var(--color-ink);
  color: var(--color-surface);
  text-decoration: none;
}
.skip-link:focus {
  top: var(--space-3);
}

.container {
  width: min(100% - var(--padding-inline-spacing) * 2, var(--content-max));
  margin-inline: auto;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.7em 1.25em;
  border-radius: var(--radius);
  background: var(--color-accent);
  color: #fff;
  font-weight: var(--fw-bold);
  font-size: var(--fs-small);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.cta:hover, .cta:focus-visible {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-1px);
}
.cta--header {
  white-space: nowrap;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2.5rem, 8vw, 5.5rem);
  width: min(100%, 28rem);
  padding: 0 0 0.7rem;
  border-bottom: 1px solid currentColor;
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 1.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 1.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.learn-more:hover, .learn-more:focus-visible {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.learn-more:hover .learn-more__arrow, .learn-more:focus-visible .learn-more__arrow {
  width: 5rem;
}
.learn-more__label {
  flex: 0 1 auto;
}
.learn-more__arrow {
  display: block;
  flex: 0 0 auto;
  width: 1.65rem;
  height: 0.75rem;
  overflow: hidden;
  color: inherit;
  transition: width 1.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.learn-more__icon {
  display: block;
  width: 5rem;
  height: 100%;
  margin-left: auto;
}
.learn-more__stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: square;
  stroke-linejoin: miter;
  vector-effect: non-scaling-stroke;
}

.orange-line {
  display: block;
  width: 96px;
  height: 440px;
  background: #eb661a;
  transform: skewX(-24deg);
  transform-origin: center;
}
.orange-line--cta {
  width: 100%;
  height: 100%;
}

.site-shell {
  --nav-shell-pad: clamp(0.65rem, 1.8vw, 1.25rem);
  padding: var(--nav-shell-pad);
}

.site-frame {
  border: 1px solid var(--color-ink);
  background: var(--color-bg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  background: var(--color-bg);
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-ink);
}
.admin-bar .site-header {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
@media (min-width: 1024px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) max-content max-content 3rem max-content;
  }
}
.site-header__cell {
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  padding: 0.45rem 0.9rem;
}
@media (min-width: 1024px) {
  .site-header__cell {
    border-right: 1px solid var(--color-ink);
    padding-inline: 1.1rem;
  }
}
.site-header__cell--menu {
  border-right: 0;
  justify-content: flex-end;
}
@media (min-width: 1024px) {
  .site-header__cell--menu {
    justify-content: center;
    padding-inline: 1.25rem;
  }
}
.site-header__cell--brand {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
}
.site-header__cell--brand .custom-logo-link {
  display: block;
  line-height: 0;
}
.site-header__cell--brand .custom-logo {
  max-height: 2.5rem;
  height: auto;
  width: auto;
}
.site-header__wordmark {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  color: var(--color-ink);
  text-decoration: none;
  text-transform: uppercase;
}
.site-header__cell--contact {
  display: none;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
  font-size: 0.82rem;
  font-weight: var(--fw-bold);
}
@media (min-width: 1024px) {
  .site-header__cell--contact {
    display: flex;
  }
}
.site-header__cell--contact a {
  color: inherit;
  text-decoration: none;
}
.site-header__cell--contact a:hover, .site-header__cell--contact a:focus-visible {
  color: var(--color-accent);
}
.site-header__sep {
  opacity: 0.7;
}
.site-header__cell--lang {
  display: none;
  justify-content: space-between;
  gap: var(--space-2);
  font-size: 0.88rem;
  font-weight: var(--fw-bold);
}
@media (min-width: 1024px) {
  .site-header__cell--lang {
    display: flex;
    position: relative;
  }
}
.site-header__lang-toggle, .site-header__lang-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.site-header__chevron {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}
.site-header__lang-list {
  position: absolute;
  top: calc(100% - 1px);
  left: -1px;
  right: -1px;
  z-index: 20;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: var(--color-bg);
  border: 1px solid var(--color-ink);
}
.site-header__lang-list a {
  display: block;
  padding: 0.45rem 1rem;
  color: inherit;
  text-decoration: none;
}
.site-header__lang-list a:hover, .site-header__lang-list a:focus-visible, .site-header__lang-list a[aria-current=true] {
  color: var(--color-accent);
}
.site-header__cell--search {
  display: none;
  justify-content: center;
  padding: 0;
}
@media (min-width: 1024px) {
  .site-header__cell--search {
    display: flex;
  }
}
.site-header__search {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: var(--header-height);
  color: var(--color-ink);
}
.site-header__search:hover, .site-header__search:focus-visible {
  color: var(--color-accent);
}
.site-header__menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: var(--fw-bold);
  cursor: pointer;
}
.site-header__menu-label {
  font-size: 0.95rem;
}
.site-header__burger {
  display: grid;
  gap: 4px;
  width: 1.35rem;
  transition: color 0.2s ease;
}
.site-header__burger span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.25s ease, margin 0.25s ease;
}
.site-header__burger span:nth-child(2) {
  width: 75%;
  margin-left: auto;
}
.site-header__burger span:nth-child(3) {
  width: 55%;
  margin-left: auto;
}
.site-header__panel {
  --nav-shell-pad: clamp(0.65rem, 1.8vw, 1.25rem);
  --nav-panel-pad-x: clamp(1rem, 3vw, 2.5rem);
  --nav-panel-pad-y: clamp(1.25rem, 3vw, 2rem);
  --nav-slash-half: clamp(2.25rem, 4.5vw, 3.75rem);
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 100%;
  height: calc(100svh - var(--header-height) - var(--nav-shell-pad) * 2);
  min-height: 22rem;
  padding: var(--nav-panel-pad-y) var(--nav-panel-pad-x);
  overflow: hidden;
  background: var(--color-bg);
  border-top: 1px solid var(--color-ink);
}
@media (min-width: 768px) {
  .site-header__panel {
    height: 90svh;
    min-height: 0;
    max-height: calc(100svh - var(--header-height) - var(--nav-shell-pad) * 2);
    overflow: hidden;
  }
}
.site-header__panel[hidden] {
  display: none;
}
.admin-bar .site-header__panel {
  height: calc(100svh - var(--header-height) - 32px - var(--nav-shell-pad) * 2);
}
@media (min-width: 768px) {
  .admin-bar .site-header__panel {
    height: calc(90svh - 32px);
    min-height: 0;
    max-height: calc(100svh - var(--header-height) - 32px - var(--nav-shell-pad) * 2);
  }
}
@media (max-width: 782px) {
  .admin-bar .site-header__panel {
    height: calc(100svh - var(--header-height) - 46px - var(--nav-shell-pad) * 2);
  }
}
.site-header__panel-slash {
  position: absolute;
  inset: 12% 0 18%;
  z-index: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
}
.site-header__panel-slash .orange-line {
  width: calc(var(--nav-slash-half) * 2);
  height: 100%;
  transform: skewX(-24deg);
}
.site-header__panel-nav {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  justify-items: center;
  width: 100%;
  max-height: 100%;
  padding-top: clamp(0.35rem, 1.5vh, 1rem);
  padding-bottom: 7rem;
  overflow: auto;
}
@media (min-width: 768px) {
  .site-header__panel-nav {
    overflow: hidden;
  }
}
.site-header__panel-offices {
  position: absolute;
  right: var(--nav-panel-pad-x);
  bottom: var(--nav-panel-pad-y);
  left: var(--nav-panel-pad-x);
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.25rem 2rem;
  pointer-events: none;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--color-ink);
}
.site-header__panel-office {
  max-width: 16rem;
  pointer-events: auto;
}
.site-header__panel-office--thess {
  text-align: left;
}
.site-header__panel-office--athens {
  text-align: right;
  margin-left: auto;
}
.site-header__panel-address, .site-header__panel-contact {
  margin: 0;
}
.site-header__panel-contact {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.55rem;
}
.site-header__panel-contact a {
  color: inherit;
  text-decoration: none;
}
.site-header__panel-contact a:hover, .site-header__panel-contact a:focus-visible {
  color: var(--color-accent);
}
.site-header__panel-office--athens .site-header__panel-contact {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .site-header__cell {
    min-height: 3.55rem;
    padding: 0.35rem 0.75rem;
  }
  .site-header__menu-label {
    font-size: 0.88rem;
  }
  .site-header__panel-nav {
    padding-bottom: 8.25rem;
  }
  .site-header__panel-offices {
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
  }
  .site-header__panel-office {
    max-width: calc(50% - 0.5rem);
  }
}

.primary-nav {
  width: 100%;
  text-align: center;
}
.primary-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.15rem, 0.6vh, 0.35rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.primary-nav a {
  position: relative;
  display: inline-block;
  padding: 0.05rem 0;
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: calc(clamp(1.62rem, 3.37vw, 2.32rem) * 1.1);
  font-weight: var(--fw-black);
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-decoration: none;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .primary-nav a {
    font-size: calc(clamp(1.28rem, 5.8vw, 1.55rem) * 1.1);
  }
}
.primary-nav a::before {
  content: "/";
  position: absolute;
  right: 100%;
  top: 0.1rem;
  margin-right: 0.35em;
  opacity: 0;
  transform: translateX(-0.45em);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.primary-nav a:hover, .primary-nav a:focus-visible {
  color: var(--color-ink);
}
.primary-nav a:hover::before, .primary-nav a:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
  color: var(--color-ink);
}
.primary-nav .current-menu-item > a::before,
.primary-nav .current_page_item > a::before {
  opacity: 1;
  transform: translateX(0);
}

html.nav-open,
body.nav-open {
  overflow: hidden;
}

body.nav-open {
  /*
   * Sticky + overflow:hidden unsticks the header mid-page and the absolute
   * panel opens off-screen. Pin header/panel to the viewport while open.
   */
  --nav-open-header-height: var(--header-height);
}
@media (max-width: 767px) {
  body.nav-open {
    --nav-open-header-height: 3.55rem;
  }
}
body.nav-open .site-frame::before {
  content: "";
  display: block;
  height: var(--nav-open-header-height);
}
body.nav-open .site-header {
  position: fixed;
  top: var(--nav-shell-pad);
  right: var(--nav-shell-pad);
  left: var(--nav-shell-pad);
  z-index: 200;
  border-right: 1px solid var(--color-ink);
  border-left: 1px solid var(--color-ink);
}
body.nav-open.admin-bar .site-header {
  top: calc(32px + var(--nav-shell-pad));
}
@media (max-width: 782px) {
  body.nav-open.admin-bar .site-header {
    top: calc(46px + var(--nav-shell-pad));
  }
}
body.nav-open .site-header__panel {
  position: fixed;
  top: calc(var(--nav-shell-pad) + var(--nav-open-header-height));
  right: var(--nav-shell-pad);
  left: var(--nav-shell-pad);
  z-index: 199;
  width: auto;
  height: calc(100svh - var(--nav-open-header-height) - var(--nav-shell-pad) * 2);
  max-height: calc(100svh - var(--nav-open-header-height) - var(--nav-shell-pad) * 2);
  border-right: 1px solid var(--color-ink);
  border-bottom: 1px solid var(--color-ink);
  border-left: 1px solid var(--color-ink);
}
body.nav-open.admin-bar .site-header__panel {
  top: calc(32px + var(--nav-shell-pad) + var(--nav-open-header-height));
  height: calc(100svh - var(--nav-open-header-height) - 32px - var(--nav-shell-pad) * 2);
  max-height: calc(100svh - var(--nav-open-header-height) - 32px - var(--nav-shell-pad) * 2);
}
@media (max-width: 782px) {
  body.nav-open.admin-bar .site-header__panel {
    top: calc(46px + var(--nav-shell-pad) + var(--nav-open-header-height));
    height: calc(100svh - var(--nav-open-header-height) - 46px - var(--nav-shell-pad) * 2);
    max-height: calc(100svh - var(--nav-open-header-height) - 46px - var(--nav-shell-pad) * 2);
  }
}
body.nav-open .meeting-cta {
  z-index: 80;
}
body.nav-open .site-header__burger span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
body.nav-open .site-header__burger span:nth-child(2) {
  opacity: 0;
  width: 0;
}
body.nav-open .site-header__burger span:nth-child(3) {
  width: 100%;
  margin-left: 0;
  transform: translateY(-5.5px) rotate(-45deg);
}

.meeting-cta {
  position: fixed;
  top: 50%;
  left: calc(clamp(0.65rem, 1.8vw, 1.25rem) + 1px);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--meeting-cta-width, 2.65rem);
  min-height: 12rem;
  padding: var(--space-4) 0;
  border: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-size: 0.782rem;
  font-weight: var(--fw-black);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transform: translateY(-50%);
  transition: color 0.2s var(--ease);
}
.admin-bar .meeting-cta {
  top: calc(50% + 16px);
}
@media (max-width: 782px) {
  .admin-bar .meeting-cta {
    top: calc(50% + 23px);
  }
}
.meeting-cta:hover, .meeting-cta:focus-visible {
  color: var(--color-accent);
}
.meeting-cta__label {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: 1;
  text-transform: inherit;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .meeting-cta {
    display: none;
  }
}

@media (min-width: 768px) {
  body.has-meeting-cta {
    --meeting-cta-width: 2.65rem;
  }
}

.site-newsletter {
  padding: clamp(1.5rem, 3.5vw, 2.25rem) 0;
  background: var(--color-bg);
  color: var(--color-ink);
  border-top: 1px solid var(--color-ink);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}
.site-newsletter__inner {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding-inline: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 1024px) {
  .site-newsletter__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.75rem, 4vw, 3rem);
  }
}
.site-newsletter__copy {
  max-width: 32rem;
}
.site-newsletter__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  font-weight: var(--fw-bold);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}
.site-newsletter__subtitle {
  margin: 0;
  max-width: 26rem;
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  font-weight: var(--fw-regular);
  line-height: 1.4;
  color: var(--color-ink);
}
.site-newsletter__form {
  max-width: 30rem;
  width: 100%;
}
.site-newsletter__cf7 {
  margin: 0;
}
.site-newsletter__cf7 .wpcf7-form {
  margin: 0;
}
.site-newsletter__cf7 .wpcf7-spinner {
  margin-left: 0.5rem;
}
.site-newsletter__cf7 .wpcf7-response-output {
  margin: 0.75rem 0 0;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--color-ink);
  font-size: 0.85rem;
}
.site-newsletter__field {
  margin: 0 0 0.85rem;
}
.site-newsletter__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-ink);
}
.site-newsletter__control {
  display: block;
  width: 100%;
}
.site-newsletter__input,
.site-newsletter .wpcf7-form-control.site-newsletter__input,
.site-newsletter input.wpcf7-email {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.2rem 0 0.4rem;
  border: 0;
  border-bottom: 1px solid var(--color-ink);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-ink);
  outline: none;
  appearance: none;
}
.site-newsletter__input:focus,
.site-newsletter .wpcf7-form-control.site-newsletter__input:focus,
.site-newsletter input.wpcf7-email:focus {
  border-bottom-color: var(--color-accent);
}
.site-newsletter__check {
  margin: 0 0 0.55rem;
}
.site-newsletter__check .wpcf7-list-item {
  margin: 0;
}
.site-newsletter__check .wpcf7-list-item-label {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  color: var(--color-ink);
}
.site-newsletter__check input[type=checkbox] {
  width: 0.9rem;
  height: 0.9rem;
  margin: 0 0.45rem 0 0;
  accent-color: var(--color-ink);
  vertical-align: middle;
}
.site-newsletter__legal {
  margin: 0 0 0.9rem;
  max-width: 32rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(17, 17, 17, 0.78);
}
.site-newsletter__submit,
.site-newsletter .wpcf7-submit.site-newsletter__submit,
.site-newsletter input.wpcf7-submit {
  display: inline-block;
  margin: 0;
  padding: 0 0 0.28rem;
  border: 0;
  border-bottom: 1px solid var(--color-ink);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-ink);
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.site-newsletter__submit:hover, .site-newsletter__submit:focus-visible,
.site-newsletter .wpcf7-submit.site-newsletter__submit:hover,
.site-newsletter .wpcf7-submit.site-newsletter__submit:focus-visible,
.site-newsletter input.wpcf7-submit:hover,
.site-newsletter input.wpcf7-submit:focus-visible {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
.site-newsletter__missing {
  margin: 0;
  font-size: 0.9rem;
  font-weight: var(--fw-bold);
}

.site-footer {
  margin-top: 0;
  padding: 0;
  background: var(--color-bg);
  color: var(--color-ink);
}
.site-footer__frame {
  position: relative;
  border: 0;
  background: var(--color-bg);
}
.site-footer__body {
  min-width: 0;
}
.site-footer__offices {
  display: grid;
  gap: var(--space-4);
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 4vw, 3rem) clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
  justify-items: center;
}
@media (min-width: 768px) {
  .site-footer__offices {
    grid-template-columns: minmax(0, 1.15fr) auto minmax(0, 0.85fr);
    align-items: stretch;
    gap: clamp(1.5rem, 5vw, 4.5rem);
    text-align: left;
    justify-items: stretch;
  }
}
.site-footer__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .site-footer__col {
    align-items: stretch;
  }
}
.site-footer__col--athens {
  justify-content: space-between;
  gap: var(--space-4);
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer__col--athens {
    align-items: flex-end;
    text-align: right;
  }
}
.site-footer__company {
  margin: 0 0 var(--space-3);
  font-size: 0.95rem;
  line-height: 1.45;
}
.site-footer__company strong,
.site-footer__company span {
  display: block;
}
.site-footer__company strong {
  font-weight: var(--fw-bold);
  letter-spacing: 0.01em;
}
.site-footer__address, .site-footer__contact {
  margin: 0 0 var(--space-3);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-ink);
}
.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.site-footer__contact a {
  color: inherit;
  text-decoration: none;
}
.site-footer__contact a:hover, .site-footer__contact a:focus-visible {
  color: var(--color-accent);
}
@media (min-width: 768px) {
  .site-footer__contact {
    align-items: flex-start;
  }
}
.site-footer__col--athens .site-footer__contact {
  align-items: center;
}
@media (min-width: 768px) {
  .site-footer__col--athens .site-footer__contact {
    align-items: flex-end;
  }
}
.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  margin: auto 0 0;
  padding: var(--space-4) 0 0;
  list-style: none;
}
@media (min-width: 768px) {
  .site-footer__socials {
    justify-content: flex-start;
  }
}
.site-footer__socials a {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  color: var(--color-ink);
}
.site-footer__socials a:hover, .site-footer__socials a:focus-visible {
  color: var(--color-accent);
}
.site-footer__socials svg {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
}
.site-footer__slash {
  display: none;
  align-self: center;
  justify-self: center;
  line-height: 0;
}
@media (min-width: 768px) {
  .site-footer__slash {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.site-footer__partner {
  display: inline-flex;
  width: fit-content;
  max-width: 9.5rem;
  margin-top: auto;
  margin-inline: auto;
  line-height: 0;
  text-decoration: none;
}
@media (min-width: 768px) {
  .site-footer__partner {
    margin-inline: 0;
    margin-left: auto;
  }
}
.site-footer__partner-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}
.site-footer__bar {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-3) clamp(1.25rem, 4vw, 3rem);
  border-top: 1px solid var(--color-ink);
  align-items: center;
  justify-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer__bar {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: var(--space-4);
    justify-items: stretch;
    text-align: left;
  }
}
.site-footer__brand {
  justify-self: center;
}
@media (min-width: 768px) {
  .site-footer__brand {
    justify-self: start;
  }
}
.site-footer__brand .custom-logo-link {
  display: inline-block;
}
.site-footer__brand .custom-logo {
  max-height: 2rem;
  width: auto;
}
.site-footer__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: var(--fw-bold);
  color: var(--color-ink);
  text-decoration: none;
  letter-spacing: 0.08em;
}
.site-footer__copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.45rem;
  margin: 0;
  font-size: 0.78rem;
  color: var(--color-ink);
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer__copyright {
    justify-content: center;
    text-align: center;
  }
}
.site-footer__powered, .site-footer__rights {
  line-height: 1.2;
}
.site-footer__softweb {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transform: translateY(-0.22rem);
  text-decoration: none;
}
.site-footer__softweb-logo {
  display: block;
  width: auto;
  height: 1.71rem;
  max-width: 9.9rem;
  object-fit: contain;
  object-position: center;
}
.site-footer__legal {
  justify-self: center;
}
@media (min-width: 768px) {
  .site-footer__legal {
    justify-self: end;
    padding-right: 2.5rem;
  }
}
.site-footer__privacy {
  color: var(--color-ink);
  font-size: 0.85rem;
  text-decoration: none;
}
.site-footer__privacy:hover, .site-footer__privacy:focus-visible {
  color: var(--color-accent);
}
.site-footer__mark {
  position: absolute;
  right: -0.7rem;
  bottom: -0.7rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: var(--color-ink);
  color: var(--color-accent);
  text-decoration: none;
}
@media (max-width: 767px) {
  .site-footer__mark {
    right: 0.35rem;
    bottom: 0.35rem;
  }
}
.site-footer__mark:hover, .site-footer__mark:focus-visible {
  background: var(--color-accent);
  color: var(--color-ink);
}
.site-footer__mark-slash {
  width: 0.7rem;
  height: 1.35rem;
}

.site-main {
  padding-block: var(--space-5) var(--space-6);
  min-height: 50vh;
}
.site-main--front {
  padding-block: 0;
  min-height: 0;
}
.site-main--front > .wp-block-acf-hero,
.site-main--front > .alignfull {
  margin-inline: 0;
  max-width: none;
}

.entry__header {
  margin-bottom: var(--space-4);
}
.entry__title {
  margin: 0 0 var(--space-2);
}
.entry__meta {
  margin: 0;
  color: var(--color-ink-muted);
  font-size: var(--fs-small);
}
.entry__content > *:first-child {
  margin-top: 0;
}
.entry__content .alignwide,
.entry__content .alignfull {
  max-width: none;
}

.archive-header {
  margin-bottom: var(--space-4);
}
.archive-header__title {
  margin: 0 0 var(--space-2);
}

.post-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.post-list__item {
  border-bottom: 1px solid var(--color-line);
}
.post-list__item a {
  display: block;
  padding-block: var(--space-3);
  color: var(--color-ink);
  font-weight: var(--fw-bold);
  text-decoration: none;
}
.post-list__item a:hover, .post-list__item a:focus-visible {
  color: var(--color-accent);
}

.site-main--single {
  padding-block: 0;
  min-height: 0;
}

.single-hero {
  display: grid;
  grid-template-rows: 1fr 1px auto;
  min-height: calc(100svh - var(--header-height) - clamp(1.3rem, 3.6vw, 2.5rem));
  border-bottom: 1px solid var(--color-ink);
  background: var(--color-bg);
  color: var(--color-ink);
}
.single-hero__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vh, 3rem) clamp(3.5rem, 9vw, 7rem);
  overflow: hidden;
}
.single-hero__slash {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  transform: translate(-50%, -52%);
  pointer-events: none;
  line-height: 0;
}
.single-hero__slash .orange-line {
  width: clamp(4.75rem, 7vw, 7.25rem);
  height: clamp(16rem, 48vh, 28rem);
}
.single-hero__title {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-sans);
  font-size: clamp(1.91rem, 5.74vw, 6.885rem);
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--color-ink);
}
@media (max-width: 767px) {
  .single-hero__stage {
    padding: 1.5rem 1.35rem;
  }
  .single-hero__title {
    font-size: clamp(1.5rem, 7.4vw, 2.05rem);
    line-height: 1.08;
    max-width: 20ch;
  }
  .single-hero__slash .orange-line {
    width: 4.35rem;
    height: 15.5rem;
  }
}
.single-hero__divider {
  width: 100%;
  background: var(--color-ink);
}
.single-hero__crumbs {
  padding: clamp(0.85rem, 1.6vw, 1.15rem) var(--padding-inline-spacing);
}
.single-hero__crumbs ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.single-hero__crumbs li {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  font-family: var(--font-sans);
  font-size: 0.744rem;
  font-weight: var(--fw-bold);
  line-height: 1.4;
  text-transform: uppercase;
}
.single-hero__crumbs li:not(:last-child)::after {
  content: "/";
  margin-inline: 0.35em;
  font-weight: var(--fw-bold);
}
.single-hero__crumbs a,
.single-hero__crumbs span {
  color: var(--color-ink);
  text-decoration: none;
}
.single-hero__crumbs a:hover,
.single-hero__crumbs a:focus-visible {
  color: var(--color-accent);
}

.single-post__body {
  width: min(100% - var(--padding-inline-spacing) * 2, 64rem);
  margin-inline: auto;
  padding-block: clamp(2rem, 5vw, 3.25rem) clamp(3.5rem, 7vw, 5.5rem);
}
.single-post__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 6.05rem;
  height: 6.05rem;
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
  box-sizing: border-box;
  border: 1px solid var(--color-ink);
  background: var(--color-bg);
  color: var(--color-ink);
  line-height: 1;
}
.single-post__day {
  font-family: var(--font-sans);
  font-size: 1.594rem;
  font-weight: var(--fw-bold);
  line-height: 1;
}
.single-post__month {
  margin-top: 0.2rem;
  font-family: var(--font-sans);
  font-size: 0.691rem;
  font-weight: var(--fw-bold);
}
.single-post__media {
  margin: 0 0 clamp(1.75rem, 3.5vw, 2.5rem);
}
.single-post__image {
  display: block;
  width: 100%;
  height: auto;
}
.single-post__content {
  font-size: clamp(0.956rem, 1.23vw, 1.275rem);
  font-weight: var(--fw-regular);
  line-height: 1.67;
  color: var(--color-ink);
}
.single-post__content > *:first-child {
  margin-top: 0;
}
.single-post__content > *:last-child {
  margin-bottom: 0;
}
.single-post__content p {
  margin-block: 0 1.65em;
}
.single-post__content h2,
.single-post__content h3 {
  margin: 0 0 0.7em;
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-ink);
}
.single-post__content h2 {
  font-size: clamp(1.488rem, 2.72vw, 2.55rem);
}
.single-post__content h3 {
  font-size: clamp(1.148rem, 1.87vw, 1.7rem);
}
.single-post__content a {
  color: var(--color-ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
.single-post__content a:hover, .single-post__content a:focus-visible {
  color: var(--color-accent);
}
.single-post__content img,
.single-post__content .wp-block-image,
.single-post__content figure {
  max-width: 100%;
}
.single-post__content .wp-block-image,
.single-post__content figure {
  margin-inline: 0;
  margin-block: 0 1.65em;
}
.single-post__content img {
  height: auto;
}
.single-post__content .alignwide,
.single-post__content .alignfull {
  max-width: 100%;
}
.single-post__content [class*=fusion-] {
  display: contents;
}
.single-post__content blockquote {
  margin: 0 0 1.65em;
  padding: 0;
  border: 0;
  font-weight: var(--fw-bold);
}

.related-posts {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 6.5vw, 5rem);
  background: var(--color-bg);
  color: var(--color-ink);
}
.related-posts__inner {
  width: min(88%, 100% - var(--padding-inline-spacing) * 2);
  margin-inline: auto;
}
.related-posts__title {
  margin: 0 0 clamp(1.5rem, 3.5vw, 2.25rem);
  font-family: var(--font-sans);
  font-size: clamp(1.7rem, 4.25vw, 4.08rem);
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}
.related-posts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.85rem, 1.5vw, 1.25rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 1024px) {
  .related-posts__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.related-posts__item {
  margin: 0;
  min-width: 0;
}
.related-posts__card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
}
.related-posts__media {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #1a1a1a;
}
.related-posts__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.related-posts__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #2a1408 0%, #ff6700 48%, #1a0c06 100%);
}
.related-posts__name {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.893rem, 1.36vw, 1.275rem);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-ink);
}
.related-posts__card:hover .related-posts__name, .related-posts__card:focus-visible .related-posts__name {
  color: var(--color-accent);
}

.site-main--error {
  padding-block: 0;
  min-height: 0;
}

.error-404 {
  display: grid;
  grid-template-rows: 1.65fr 1px 0.7fr;
  min-height: calc(100svh - var(--header-height) - clamp(1.3rem, 3.6vw, 2.5rem));
  background: var(--color-bg);
  color: var(--color-ink);
}
.error-404__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vh, 1.75rem);
  padding: clamp(2rem, 6vh, 4rem) clamp(1.5rem, 6vw, 4rem);
  overflow: hidden;
  text-align: center;
}
.error-404__slash {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 0;
  animation: error-404-slash 1.1s var(--ease) both;
}
.error-404__code {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(5.5rem, 22vw, 12.5rem);
  font-weight: var(--fw-black);
  line-height: 0.82;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: var(--color-ink);
  animation: error-404-rise 0.9s var(--ease) 0.08s both;
}
.error-404__title {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 3.4vw, 2.35rem);
  font-weight: var(--fw-bold);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--color-ink);
  animation: error-404-rise 0.9s var(--ease) 0.18s both;
}
.error-404__divider {
  width: 80%;
  justify-self: center;
  background: var(--color-ink);
  transform-origin: center;
  animation: error-404-line 0.85s var(--ease) 0.28s both;
}
.error-404__lower {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1.5rem, 3.5vh, 2.25rem);
  padding: clamp(1.75rem, 4.5vh, 2.75rem) clamp(1.5rem, 6vw, 4rem) clamp(3.25rem, 6vh, 4rem);
  text-align: center;
  animation: error-404-rise 0.9s var(--ease) 0.36s both;
}
.error-404__text {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(0.82rem, 1.15vw, 0.95rem);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  color: var(--color-ink);
}
.error-404__cta {
  margin-top: 0;
}

@keyframes error-404-rise {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes error-404-slash {
  from {
    opacity: 0;
    transform: translate(-50%, -42%) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes error-404-line {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .error-404__slash,
  .error-404__code,
  .error-404__title,
  .error-404__divider,
  .error-404__lower {
    animation: none;
  }
}
@media (max-width: 767px) {
  .error-404 {
    grid-template-rows: auto 1px auto;
    min-height: calc(100svh - var(--header-height) - 1.5rem);
  }
  .error-404__stage {
    min-height: 42svh;
  }
}
.home-skin-switcher {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 10050;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--color-ink);
  background: var(--color-surface);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  line-height: 1.2;
}
.home-skin-switcher__badge {
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
}
.home-skin-switcher__link {
  color: var(--color-ink);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.home-skin-switcher__link:hover, .home-skin-switcher__link:focus-visible {
  color: var(--color-accent);
}
@media (max-width: 767px) {
  .home-skin-switcher {
    left: 1rem;
    right: 1rem;
    justify-content: space-between;
  }
}

.home-skin--editorial {
  counter-reset: svc-panel;
}
.home-skin--editorial .site-main--front {
  display: flex;
  flex-direction: column;
}
.home-skin--editorial .hero-block {
  min-height: calc(100svh - var(--header-height));
  border-bottom: 1px solid var(--color-ink);
}
.home-skin--editorial .hero-block__brand {
  display: none;
}
.home-skin--editorial .hero-block__main {
  min-height: inherit;
}
.home-skin--editorial .hero-block__slide {
  grid-template-rows: 1fr auto;
}
.home-skin--editorial .hero-block__stage {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  justify-content: stretch;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(4.5rem, 9vh, 6.5rem) clamp(1.25rem, 4vw, 3rem) clamp(1.5rem, 3vh, 2.5rem);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .home-skin--editorial .hero-block__stage {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 3.5rem);
    padding-block: clamp(3.25rem, 8vh, 5.5rem) clamp(2rem, 5vh, 3.5rem);
  }
}
.home-skin--editorial .hero-block__slash {
  display: none;
}
.home-skin--editorial .hero-block__copy {
  align-items: flex-start;
  gap: 1.15rem;
  max-width: min(34rem, 100%);
  z-index: 2;
}
.home-skin--editorial .hero-block__index {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}
.home-skin--editorial .hero-block__index-current {
  color: var(--color-accent);
}
.home-skin--editorial .hero-block__index-sep {
  opacity: 0.45;
}
.home-skin--editorial .hero-block__title {
  max-width: none;
  font-size: clamp(2.1rem, 5.2vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-align: left;
}
.home-skin--editorial .hero-block__title a {
  background-image: linear-gradient(var(--color-accent), var(--color-accent));
  background-size: 0 0.12em;
  background-position: 0 92%;
  background-repeat: no-repeat;
  transition: background-size 0.35s var(--ease);
}
.home-skin--editorial .hero-block__title a:hover, .home-skin--editorial .hero-block__title a:focus-visible {
  background-size: 100% 0.12em;
  color: var(--color-ink);
}
.home-skin--editorial .hero-block__media {
  display: none;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #1a1a1a;
}
@media (min-width: 1024px) {
  .home-skin--editorial .hero-block__media {
    display: block;
    max-height: min(68vh, 36rem);
    justify-self: end;
    width: 100%;
  }
}
.home-skin--editorial .hero-block__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 103, 0, 0.18), transparent 55%);
  pointer-events: none;
}
.home-skin--editorial .hero-block__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease);
}
.home-skin--editorial .hero-block .hero-block__slide.is-active .hero-block__image {
  transform: scale(1);
}
.home-skin--editorial .hero-block__divider {
  display: none;
}
.home-skin--editorial .hero-block__lower {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  justify-items: start;
  gap: 1.25rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(3.5rem, 7vh, 4.75rem);
  text-align: left;
}
@media (min-width: 1024px) {
  .home-skin--editorial .hero-block__lower {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 2rem;
  }
}
.home-skin--editorial .hero-block__excerpt {
  max-width: 38rem;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.6;
  color: var(--color-ink-muted);
}
.home-skin--editorial .hero-block__more .learn-more__label {
  font-weight: var(--fw-bold);
}
.home-skin--editorial .hero-block__arrow {
  top: auto;
  bottom: 1.35rem;
  transform: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-ink);
  background: var(--color-bg);
}
.home-skin--editorial .hero-block__arrow svg {
  width: 1.35rem;
}
.home-skin--editorial .hero-block__arrow--prev {
  left: auto;
  right: calc(clamp(1.25rem, 4vw, 3rem) + 3.1rem);
}
.home-skin--editorial .hero-block__arrow--next {
  right: clamp(1.25rem, 4vw, 3rem);
}
.home-skin--editorial .hero-block__arrow:hover, .home-skin--editorial .hero-block__arrow:focus-visible {
  background: var(--color-ink);
  color: var(--color-bg);
}
.home-skin--editorial .hero-block__dots {
  left: clamp(1.25rem, 4vw, 3rem);
  bottom: 1.55rem;
  transform: none;
  gap: 0.55rem;
}
.home-skin--editorial .hero-block__dot {
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
  min-width: 1.6rem;
  background: transparent;
  opacity: 0.35;
}
.home-skin--editorial .hero-block__dot.is-active {
  width: auto;
  opacity: 1;
}
.home-skin--editorial .hero-block__dot-num {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  color: var(--color-ink);
}
@media (max-width: 767px) {
  .home-skin--editorial .hero-block__stage {
    padding: 5rem 1.15rem 1.25rem;
  }
  .home-skin--editorial .hero-block__title {
    font-size: clamp(2rem, 9.5vw, 2.65rem);
    max-width: 14ch;
  }
  .home-skin--editorial .hero-block__lower {
    padding: 0 1.15rem 4.25rem;
  }
  .home-skin--editorial .hero-block__arrow {
    bottom: 1.1rem;
  }
  .home-skin--editorial .hero-block__arrow--prev {
    right: 4.1rem;
  }
  .home-skin--editorial .hero-block__arrow--next {
    right: 1.15rem;
  }
  .home-skin--editorial .hero-block__dots {
    left: 1.15rem;
    bottom: 1.35rem;
  }
}
.home-skin--editorial .intro-text-block__frame {
  padding: clamp(3.5rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
}
.home-skin--editorial .intro-text-block__body {
  width: min(100%, 54rem);
}
.home-skin--editorial .intro-text-block__body p {
  font-size: clamp(1.35rem, 2.6vw, 2.05rem);
  font-weight: var(--fw-bold);
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.home-skin--editorial .intro-text-block__cta-row {
  margin-top: clamp(2rem, 4vw, 3rem);
  max-width: 54rem;
}
.home-skin--editorial .intro-text-block__slash {
  display: none;
}
.home-skin--editorial .wp-block-acf-split-feature:first-of-type .split-feature-block__hyper {
  padding-top: clamp(3rem, 7vw, 5rem);
}
.home-skin--editorial .split-feature-block {
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}
.home-skin--editorial .split-feature-block__hyper {
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 3rem) 0.5rem;
}
@media (min-width: 1024px) {
  .home-skin--editorial .split-feature-block__hyper {
    margin-left: 0;
    width: 100%;
  }
}
.home-skin--editorial .split-feature-block__hyper-title {
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  letter-spacing: -0.035em;
}
.home-skin--editorial .split-feature-block__index {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  color: var(--color-accent);
}
@media (min-width: 1024px) {
  .home-skin--editorial .split-feature-block__grid {
    grid-template-areas: "content media";
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    min-height: 72vh;
  }
}
.home-skin--editorial .split-feature-block__content {
  gap: 1rem;
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1.25rem, 4vw, 3rem);
}
.home-skin--editorial .split-feature-block__title {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  letter-spacing: -0.035em;
}
.home-skin--editorial .split-feature-block__subtitle {
  max-width: 26rem;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: var(--fw-regular);
  line-height: 1.45;
  color: var(--color-ink-muted);
}
@media (min-width: 1024px) {
  .home-skin--editorial .split-feature-block__tags {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    align-items: flex-start;
  }
}
.home-skin--editorial .split-feature-block__tags-row {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.45rem;
}
.home-skin--editorial .split-feature-block__tag span,
.home-skin--editorial .split-feature-block__tag a {
  display: inline-block;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(17, 17, 17, 0.28);
  background: transparent;
  font-size: 0.78rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
  text-transform: none;
}
.home-skin--editorial .split-feature-block__media {
  min-height: 16rem;
}
@media (min-width: 1024px) {
  .home-skin--editorial .split-feature-block__media {
    min-height: 100%;
  }
}
.home-skin--editorial .split-feature-block__image {
  filter: saturate(0.92) contrast(1.04);
}
@media (min-width: 1024px) {
  .home-skin--editorial .split-feature-block--reverse .split-feature-block__hyper {
    margin-left: 0;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .home-skin--editorial .split-feature-block--reverse .split-feature-block__grid {
    grid-template-areas: "content media";
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }
}
@media (min-width: 1024px) {
  .home-skin--editorial .split-feature-block--reverse .split-feature-block__tags {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    align-items: flex-start;
  }
}
.home-skin--editorial .split-feature-block--svc-1,
.home-skin--editorial .split-feature-block[data-svc-index="1"] {
  background: var(--color-ink);
  color: #f4f1ec;
  border-bottom-color: transparent;
}
.home-skin--editorial .split-feature-block--svc-1 .split-feature-block__hyper-title,
.home-skin--editorial .split-feature-block--svc-1 .split-feature-block__title,
.home-skin--editorial .split-feature-block[data-svc-index="1"] .split-feature-block__hyper-title,
.home-skin--editorial .split-feature-block[data-svc-index="1"] .split-feature-block__title {
  color: #f4f1ec;
}
.home-skin--editorial .split-feature-block--svc-1 .split-feature-block__subtitle,
.home-skin--editorial .split-feature-block[data-svc-index="1"] .split-feature-block__subtitle {
  color: rgba(244, 241, 236, 0.72);
}
.home-skin--editorial .split-feature-block--svc-1 .split-feature-block__content,
.home-skin--editorial .split-feature-block[data-svc-index="1"] .split-feature-block__content {
  background: var(--color-ink);
}
.home-skin--editorial .split-feature-block--svc-1 .split-feature-block__tag span,
.home-skin--editorial .split-feature-block--svc-1 .split-feature-block__tag a,
.home-skin--editorial .split-feature-block[data-svc-index="1"] .split-feature-block__tag span,
.home-skin--editorial .split-feature-block[data-svc-index="1"] .split-feature-block__tag a {
  border-color: rgba(244, 241, 236, 0.35);
  color: #f4f1ec;
}
.home-skin--editorial .projects-grid-block {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}
.home-skin--editorial .projects-grid-block__header {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}
@media (min-width: 1024px) {
  .home-skin--editorial .projects-grid-block__header {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}
.home-skin--editorial .projects-grid-block__title {
  font-size: clamp(2.4rem, 5.8vw, 4.5rem);
  letter-spacing: -0.035em;
}
@media (min-width: 1024px) {
  .home-skin--editorial .projects-grid-block__intro {
    align-items: flex-end;
    text-align: right;
  }
}
.home-skin--editorial .projects-grid-block__subtitle {
  max-width: 28rem;
}
@media (min-width: 1024px) {
  .home-skin--editorial .projects-grid-block__subtitle {
    margin-left: auto;
  }
}
.home-skin--editorial .projects-grid-block__grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.75rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
@media (min-width: 1024px) {
  .home-skin--editorial .projects-grid-block__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
  }
}
.home-skin--editorial .projects-grid-block__item {
  flex: 0 0 min(78vw, 22rem);
  scroll-snap-align: start;
}
@media (min-width: 1024px) {
  .home-skin--editorial .projects-grid-block__item {
    flex: none;
  }
}
.home-skin--editorial .projects-grid-block__card {
  position: relative;
  display: grid;
  height: 100%;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: var(--color-surface);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.home-skin--editorial .projects-grid-block__card:hover, .home-skin--editorial .projects-grid-block__card:focus-visible {
  border-color: var(--color-accent);
  transform: translateY(-3px);
}
.home-skin--editorial .projects-grid-block__card:hover .projects-grid-block__name, .home-skin--editorial .projects-grid-block__card:focus-visible .projects-grid-block__name {
  color: var(--color-ink);
}
.home-skin--editorial .projects-grid-block__num {
  display: block;
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.home-skin--editorial .projects-grid-block__media {
  aspect-ratio: 16/11;
  border-radius: 0;
}
.home-skin--editorial .projects-grid-block__badge {
  display: none;
}
.home-skin--editorial .projects-grid-block__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1rem 1.15rem;
}
.home-skin--editorial .projects-grid-block__cat {
  display: block;
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.home-skin--editorial .projects-grid-block__name {
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  letter-spacing: -0.02em;
}
.home-skin--editorial .clients-block {
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}
.home-skin--editorial .clients-block__title {
  letter-spacing: -0.035em;
}
.home-skin--editorial .clients-block__subtitle {
  color: var(--color-ink-muted);
}
.home-skin--editorial .featured-posts-block {
  background: var(--color-ink);
  color: #f4f1ec;
  border-top: 0;
}
.home-skin--editorial .featured-posts-block__title, .home-skin--editorial .featured-posts-block__text {
  color: #f4f1ec;
}
.home-skin--editorial .featured-posts-block__text {
  opacity: 0.78;
}
.home-skin--editorial .featured-posts-block .learn-more {
  color: #f4f1ec;
}
.home-skin--editorial .featured-posts-block .learn-more__stroke {
  stroke: currentColor;
}
.home-skin--editorial .featured-posts-block .learn-more:hover, .home-skin--editorial .featured-posts-block .learn-more:focus-visible {
  color: var(--color-accent);
}
.home-skin--editorial .latest-news-block {
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}
.home-skin--editorial .latest-news-block__title {
  letter-spacing: -0.035em;
}
@media (min-width: 1024px) {
  .home-skin--editorial .latest-news-block__scroller {
    overflow: visible;
  }
  .home-skin--editorial .latest-news-block__track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .home-skin--editorial .latest-news-block__item {
    border-top: 1px solid rgba(17, 17, 17, 0.16);
  }
  .home-skin--editorial .latest-news-block__card {
    display: grid;
    grid-template-columns: 11rem 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 1.15rem 0;
  }
  .home-skin--editorial .latest-news-block__media {
    aspect-ratio: 16/11;
  }
  .home-skin--editorial .latest-news-block__name {
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    letter-spacing: -0.025em;
  }
  .home-skin--editorial .latest-news-block__progress {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
