:root {
  --ink: #272727;
  --muted: #676767;
  --line: #dedede;
  --soft: #f5f5f3;
  --white: #ffffff;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.utility {
  border-bottom: none;
  font-size: 22px;
  font-weight: 500;
}

.utility .wrap {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.utility a {
  text-decoration: none;
}

.utility .active {
  position: relative;
  font-weight: 700;
}

.utility .active::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  bottom: -3px;
  height: 3px;
  background: var(--agt-gold, #b89655);
  border-radius: 2px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-right: auto;
  text-decoration: none;
}

.brand img {
  width: 225px;
  height: 81px;
  object-fit: contain;
}

.slogan {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
  white-space: nowrap;
  padding-bottom: 0;
  text-align: left;
}

.menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.menu a {
  position: relative;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -7px;
  height: 1px;
  background: var(--ink);
  transition: .2s;
}

.menu a:hover::after {
  left: 0;
  right: 0;
}

.hero {
  min-height: 520px;
  display: grid;
  place-items: center;
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,.27), rgba(0,0,0,.27)),
    url("../images/home-hero.jpeg") center/cover no-repeat;
  color: white;
  text-align: center;
}

.hero-inner {
  padding: 80px 20px;
}

.hero h1 {
  max-width: 900px;
  margin: 0 auto 12px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 500;
}

.hero p {
  margin: 0;
  font-size: clamp(17px, 2vw, 23px);
}

.section {
  padding: 74px 0;
}

.section.soft {
  background: var(--soft);
}

.intro {
  max-width: 790px;
  margin: 0 auto 48px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
}

h2 {
  margin: 0 0 20px;
  font-size: clamp(29px, 3.4vw, 42px);
  line-height: 1.2;
  font-weight: 500;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
}

.intro p {
  margin: 0 auto 8px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  text-decoration: none;
}

.card-image {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 19px;
}

.card-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.card:hover img {
  transform: scale(1.025);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-image img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.copy p {
  margin: 0 0 15px;
}

.rule {
  width: 70px;
  height: 1px;
  margin: 24px 0;
  background: #aaa;
}

.statement {
  max-width: 850px;
  margin: 0 auto;
}

.statement .lead {
  font-size: 20px;
}

.statement-lines {
  margin: 24px 0;
  font-size: 18px;
  line-height: 1.9;
}

.final-image {
  max-width: 820px;
  margin: 0 auto 38px;
}

.final-image img {
  aspect-ratio: 1.82;
  object-fit: cover;
}

.final-caption {
  text-align: center;
  font-size: 24px;
  margin-bottom: 32px;
}

.cta-wrap {
  text-align: center;
}

.button {
  display: inline-block;
  padding: 13px 30px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-weight: 600;
  transition: .2s;
}

.button:hover {
  background: var(--ink);
  color: white;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  font-size: 13px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-right {
  display: flex;
  gap: 22px;
}

.footer a {
  text-decoration: none;
}

@media (max-width: 900px) {
  .slogan {
    display: none;
  }

  .nav {
    flex-wrap: wrap;
    padding: 15px 0;
  }

  .menu {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
  }

  .cards,
  .split {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 35px;
  }
}

@media (max-width: 600px) {
  .wrap {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand img {
    width: 165px;
    height: auto;
  }

  .hero {
    min-height: 420px;
  }

  .section {
    padding: 52px 0;
  }

  .cards {
    gap: 38px;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* AEGEANTEK-MENTORSHIP-V2
   Isolated from Home: all page-specific rules live below .mentorship-v2
*/

.menu a.active-page::after {
  left: 0;
  right: 0;
}

.mentorship-v2 {
  background: #fff;
}

.mentorship-v2 .mv2-hero {
  height: 470px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.mentorship-v2 .mv2-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.mentorship-v2 .mv2-hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.28);
}

.mentorship-v2 .mv2-hero-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  width: min(calc(100% - 40px), 860px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mentorship-v2 .mv2-kicker {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 5px;
}

.mentorship-v2 .mv2-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(40px, 4.4vw, 58px);
  line-height: 1.08;
  font-weight: 700;
}

.mentorship-v2 .mv2-hero p {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

.mentorship-v2 .mv2-section {
  padding: 58px 0 80px;
}

.mentorship-v2 .mv2-container {
  width: min(calc(100% - 40px), 920px);
  margin: 0 auto;
}

.mentorship-v2 .mv2-intro {
  text-align: center;
}

.mentorship-v2 h2 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 18px;
}

.mentorship-v2 .mv2-lead {
  max-width: 780px;
  margin: 0 auto 42px;
}

.mentorship-v2 .mv2-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.mentorship-v2 .mv2-three article {
  min-width: 0;
}

.mentorship-v2 .mv2-square {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.mentorship-v2 .mv2-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentorship-v2 .mv2-three h3 {
  margin: 15px 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.mentorship-v2 .mv2-three p {
  margin: 0;
  line-height: 1.65;
}

.mentorship-v2 .mv2-closing {
  margin: 45px auto 40px;
  font-size: 17px;
}

.mentorship-v2 .mv2-closing p,
.mentorship-v2 .mv2-final p {
  margin: 0;
}

.mentorship-v2 .mv2-rule {
  border: 0;
  border-top: 1px solid #d5d5d5;
  margin: 42px 0;
}

.mentorship-v2 .mv2-longrun {
  margin: 0;
}

.mentorship-v2 .mv2-landscape {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.mentorship-v2 .mv2-landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentorship-v2 .mv2-longrun figcaption {
  margin-top: 8px;
  font-size: 14px;
  text-align: left;
}

.mentorship-v2 .mv2-longrun-copy {
  margin: 32px auto 0;
  text-align: center;
}

.mentorship-v2 .mv2-areas-head {
  text-align: center;
  margin-bottom: 48px;
}

.mentorship-v2 .mv2-areas-head p {
  margin: 0;
  font-size: 18px;
}

.mentorship-v2 .mv2-feature {
  display: grid;
  grid-template-columns: 52.08% 47.92%;
  align-items: stretch;
  text-align: left;
  margin: 0 0 34px;
}

.mentorship-v2 .mv2-feature-reverse {
  grid-template-columns: 50% 50%;
}

.mentorship-v2 .mv2-feature-reverse .mv2-feature-image {
  order: 2;
}

.mentorship-v2 .mv2-feature-reverse .mv2-feature-copy {
  order: 1;
}

.mentorship-v2 .mv2-feature-image {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.mentorship-v2 .mv2-feature-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentorship-v2 .mv2-crop-complexity img {
  object-position: center 50%;
}

.mentorship-v2 .mv2-crop-partnerships img {
  object-position: center 50%;
}

.mentorship-v2 .mv2-crop-direction img {
  object-position: center 50%;
}

.mentorship-v2 .mv2-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 0 30px 42px;
}

.mentorship-v2 .mv2-feature-reverse .mv2-feature-copy {
  padding: 30px 42px 30px 0;
}

.mentorship-v2 .mv2-feature-copy h3 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
}

.mentorship-v2 .mv2-feature-copy p {
  margin: 0 0 10px;
  line-height: 1.6;
}

.mentorship-v2 .mv2-feature-copy p:last-child {
  margin-bottom: 0;
}

.mentorship-v2 .mv2-final {
  text-align: center;
  margin-top: 58px;
}

.mentorship-v2 .mv2-final .button {
  margin-top: 46px;
}

@media (max-width: 900px) {
  .mentorship-v2 .mv2-hero {
    height: 420px;
  }

  .mentorship-v2 .mv2-kicker {
    font-size: 28px;
  }

  .mentorship-v2 .mv2-feature,
  .mentorship-v2 .mv2-feature-reverse {
    grid-template-columns: 1fr;
  }

  .mentorship-v2 .mv2-feature-reverse .mv2-feature-image,
  .mentorship-v2 .mv2-feature-reverse .mv2-feature-copy {
    order: initial;
  }

  .mentorship-v2 .mv2-feature-copy,
  .mentorship-v2 .mv2-feature-reverse .mv2-feature-copy {
    padding: 28px 8px 42px;
  }

  .mentorship-v2 .mv2-feature-image {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 650px) {
  .mentorship-v2 .mv2-section {
    padding: 45px 0 60px;
  }

  .mentorship-v2 .mv2-container {
    width: min(calc(100% - 28px), 920px);
  }

  .mentorship-v2 .mv2-three {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .mentorship-v2 .mv2-three article {
    max-width: 420px;
    margin: 0 auto;
  }

  .mentorship-v2 .mv2-hero {
    height: 360px;
  }

  .mentorship-v2 .mv2-kicker {
    font-size: 23px;
  }

  .mentorship-v2 .mv2-hero p {
    font-size: 17px;
  }

  .mentorship-v2 h2 {
    font-size: 29px;
  }
}

/* AEGEANTEK-DIGITAL-VENTURES-V1 */

.digital-ventures-v1 {
  background: #fff;
}

.digital-ventures-v1 .dv-hero {
  position: relative;
  height: 470px;
  overflow: hidden;
  color: #fff;
}

.digital-ventures-v1 .dv-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.digital-ventures-v1 .dv-hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.27);
}

.digital-ventures-v1 .dv-hero-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  width: min(calc(100% - 40px), 860px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.digital-ventures-v1 .dv-kicker {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 5px;
}

.digital-ventures-v1 .dv-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(40px,4.4vw,58px);
  line-height: 1.08;
  font-weight: 700;
}

.digital-ventures-v1 .dv-hero p {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

.digital-ventures-v1 .dv-section {
  padding: 58px 0 80px;
}

.digital-ventures-v1 .dv-container {
  width: min(calc(100% - 40px),920px);
  margin: 0 auto;
}

.digital-ventures-v1 .dv-heading {
  text-align: center;
  margin-bottom: 42px;
}

.digital-ventures-v1 .dv-heading h2 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 600;
}

.digital-ventures-v1 .dv-heading p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.65;
}

.digital-ventures-v1 .dv-three {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  text-align: center;
}

.digital-ventures-v1 .dv-square {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.digital-ventures-v1 .dv-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.digital-ventures-v1 .dv-three h3,
.digital-ventures-v1 .dv-services h3 {
  margin: 15px 0 8px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
}

.digital-ventures-v1 .dv-three p,
.digital-ventures-v1 .dv-services p {
  margin: 0;
  line-height: 1.65;
}

.digital-ventures-v1 .dv-rule {
  border: 0;
  border-top: 1px solid #d5d5d5;
  margin: 48px 0;
}

.digital-ventures-v1 .dv-layers {
  margin: 0;
}

.digital-ventures-v1 .dv-landscape {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.digital-ventures-v1 .dv-landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.digital-ventures-v1 .dv-layers figcaption {
  margin-top: 9px;
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
}

.digital-ventures-v1 .dv-ai-heading {
  margin-bottom: 42px;
}

.digital-ventures-v1 .dv-services {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 42px 24px;
  text-align: center;
}

.digital-ventures-v1 .dv-final {
  margin-top: 58px;
  text-align: center;
}

.digital-ventures-v1 .dv-final p {
  margin: 0;
  font-size: 17px;
}

.digital-ventures-v1 .dv-final .button {
  margin-top: 46px;
}

@media (max-width:900px) {

  .digital-ventures-v1 .dv-hero {
    height: 420px;
  }

  .digital-ventures-v1 .dv-kicker {
    font-size: 28px;
  }

}

@media (max-width:650px) {

  .digital-ventures-v1 .dv-hero {
    height: 360px;
  }

  .digital-ventures-v1 .dv-kicker {
    font-size: 23px;
  }

  .digital-ventures-v1 .dv-hero p {
    font-size: 17px;
  }

  .digital-ventures-v1 .dv-section {
    padding: 45px 0 60px;
  }

  .digital-ventures-v1 .dv-container {
    width: min(calc(100% - 28px),920px);
  }

  .digital-ventures-v1 .dv-heading h2 {
    font-size: 29px;
  }

  .digital-ventures-v1 .dv-three,
  .digital-ventures-v1 .dv-services {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .digital-ventures-v1 .dv-three article,
  .digital-ventures-v1 .dv-services article {
    max-width: 420px;
    margin: 0 auto;
  }

}

/* AEGEANTEK-SELECTIVE-CONSULTING-V1 */

.selective-consulting-v1 {
  background: #fff;
}

.selective-consulting-v1 .scv-hero {
  position: relative;
  height: 470px;
  overflow: hidden;
  color: #fff;
}

.selective-consulting-v1 .scv-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.selective-consulting-v1 .scv-hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.27);
}

.selective-consulting-v1 .scv-hero-copy {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px),860px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.selective-consulting-v1 .scv-kicker {
  margin-bottom: 5px;
  font-size: 34px;
  line-height: 1.2;
}

.selective-consulting-v1 .scv-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(40px,4.4vw,58px);
  line-height: 1.08;
  font-weight: 700;
}

.selective-consulting-v1 .scv-hero p {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

.selective-consulting-v1 .scv-section {
  padding: 58px 0 80px;
}

.selective-consulting-v1 .scv-container {
  width: min(calc(100% - 40px),920px);
  margin: 0 auto;
}

.selective-consulting-v1 .scv-heading {
  margin-bottom: 42px;
  text-align: center;
}

.selective-consulting-v1 .scv-heading h2 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 600;
}

.selective-consulting-v1 .scv-heading p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.65;
}

.selective-consulting-v1 .scv-three {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  text-align: center;
}

.selective-consulting-v1 .scv-square {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.selective-consulting-v1 .scv-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selective-consulting-v1 .scv-three h3 {
  margin: 15px 0 8px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
}

.selective-consulting-v1 .scv-three p {
  margin: 0;
  line-height: 1.65;
}

.selective-consulting-v1 .scv-rule {
  border: 0;
  border-top: 1px solid #d5d5d5;
  margin: 48px 0;
}

.selective-consulting-v1 .scv-right-consulting {
  margin: 0;
}

.selective-consulting-v1 .scv-landscape {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.selective-consulting-v1 .scv-landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selective-consulting-v1 .scv-right-consulting figcaption {
  margin-top: 9px;
  text-align: center;
  font-size: 17px;
  line-height: 1.5;
}

.selective-consulting-v1 .scv-why {
  margin-bottom: 48px;
}

.selective-consulting-v1 .scv-feature {
  display: grid;
  grid-template-columns: 52.08% 47.92%;
  align-items: stretch;
  margin-bottom: 34px;
  text-align: left;
}

.selective-consulting-v1 .scv-feature-reverse {
  grid-template-columns: 50% 50%;
}

.selective-consulting-v1 .scv-feature-reverse .scv-feature-image {
  order: 2;
}

.selective-consulting-v1 .scv-feature-reverse .scv-feature-copy {
  order: 1;
}

.selective-consulting-v1 .scv-feature-image {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.selective-consulting-v1 .scv-feature-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.selective-consulting-v1 .scv-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 0 30px 42px;
}

.selective-consulting-v1 .scv-feature-reverse .scv-feature-copy {
  padding: 30px 42px 30px 0;
}

.selective-consulting-v1 .scv-feature-copy h3 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
}

.selective-consulting-v1 .scv-feature-copy p {
  margin: 0 0 10px;
  line-height: 1.6;
}

.selective-consulting-v1 .scv-feature-copy p:last-child {
  margin-bottom: 0;
}

.selective-consulting-v1 .scv-final {
  margin-top: 58px;
  text-align: center;
}

@media (max-width:900px) {

  .selective-consulting-v1 .scv-hero {
    height: 420px;
  }

  .selective-consulting-v1 .scv-kicker {
    font-size: 28px;
  }

  .selective-consulting-v1 .scv-feature,
  .selective-consulting-v1 .scv-feature-reverse {
    grid-template-columns: 1fr;
  }

  .selective-consulting-v1 .scv-feature-reverse .scv-feature-image,
  .selective-consulting-v1 .scv-feature-reverse .scv-feature-copy {
    order: initial;
  }

  .selective-consulting-v1 .scv-feature-image {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .selective-consulting-v1 .scv-feature-copy,
  .selective-consulting-v1 .scv-feature-reverse .scv-feature-copy {
    padding: 28px 8px 42px;
  }

}

@media (max-width:650px) {

  .selective-consulting-v1 .scv-hero {
    height: 360px;
  }

  .selective-consulting-v1 .scv-kicker {
    font-size: 23px;
  }

  .selective-consulting-v1 .scv-hero p {
    font-size: 17px;
  }

  .selective-consulting-v1 .scv-section {
    padding: 45px 0 60px;
  }

  .selective-consulting-v1 .scv-container {
    width: min(calc(100% - 28px),920px);
  }

  .selective-consulting-v1 .scv-heading h2 {
    font-size: 29px;
  }

  .selective-consulting-v1 .scv-three {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .selective-consulting-v1 .scv-three article {
    max-width: 420px;
    margin: 0 auto;
  }

}

/* AEGEANTEK-CONTACTS-V1 */

.contacts-v1 {
  background: #fff;
}

.contacts-v1 .ct-hero {
  position: relative;
  height: 470px;
  overflow: hidden;
  color: #fff;
}

.contacts-v1 .ct-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.contacts-v1 .ct-hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
}

.contacts-v1 .ct-hero-copy {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px),900px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contacts-v1 .ct-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(40px,4.4vw,58px);
  line-height: 1.08;
  font-weight: 700;
}

.contacts-v1 .ct-hero p {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
}

.contacts-v1 .ct-hero-lead {
  font-size: 23px;
  font-weight: 500;
}

.contacts-v1 .ct-content {
  padding: 64px 0 82px;
}

.contacts-v1 .ct-container {
  width: min(calc(100% - 40px),920px);
  margin: 0 auto;
  text-align: center;
}

.contacts-v1 .ct-company {
  margin-bottom: 36px;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 600;
}

.contacts-v1 .ct-details {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
}

.contacts-v1 .ct-details p {
  margin: 0 0 16px;
}

.contacts-v1 .ct-details a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contacts-v1 .ct-details a:hover {
  opacity: .7;
}

@media (max-width:900px) {

  .contacts-v1 .ct-hero {
    height: 420px;
  }

}

@media (max-width:650px) {

  .contacts-v1 .ct-hero {
    height: 360px;
  }

  .contacts-v1 .ct-hero h1 {
    font-size: 36px;
  }

  .contacts-v1 .ct-hero p {
    font-size: 17px;
  }

  .contacts-v1 .ct-hero-lead {
    font-size: 19px;
  }

  .contacts-v1 .ct-content {
    padding: 48px 0 60px;
  }

  .contacts-v1 .ct-container {
    width: min(calc(100% - 28px),920px);
  }

  .contacts-v1 .ct-company {
    font-size: 19px;
  }

  .contacts-v1 .ct-details {
    font-size: 16px;
  }

}


/* AEGEANTEK-HEADER-WIDE-V2
   Header uses more of the display width.
   Main page content remains at the original 1120px max width.
*/

@media (min-width: 1201px) {

  .header .wrap,
  .utility .wrap {
    width: min(calc(100% - 64px), 1440px);
    max-width: none;
  }

  .menu {
    flex-wrap: nowrap;
  }

  .menu a {
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .brand {
    flex: 0 0 auto;
  }

  .slogan {
    flex: 0 0 auto;
  }

}


/* ==========================================================
   AEGEANTEK MOTION SYSTEM V1
   Custom motion language — no external libraries.
   ========================================================== */

:root {
  --agt-gold: #b89655;
  --agt-motion-ease: cubic-bezier(.22,.61,.36,1);
  --agt-motion-soft: cubic-bezier(.2,.75,.25,1);
}


/* 01 — Scroll progress
   ---------------------------------------------------------- */

.agt-scroll-progress {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.agt-scroll-progress-bar {
  width: 100%;
  height: 100%;
  background: var(--agt-gold);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}


/* 02 — Cinematic hero
   ---------------------------------------------------------- */

.agt-motion-hero {
  overflow: hidden;
}

.agt-motion-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(
      circle at
      calc(50% + var(--agt-pointer-x, 0) * 5%)
      calc(50% + var(--agt-pointer-y, 0) * 5%),
      rgba(184,150,85,.08),
      transparent 42%
    );
  transition: opacity .8s ease;
}

.agt-motion-hero-ready::after {
  opacity: 1;
}

/* Home hero uses a CSS background. */
.hero.agt-motion-hero {
  background-size: 104% auto;
  transition:
    background-size 1.8s var(--agt-motion-soft),
    background-position .45s ease-out;
}

.hero.agt-motion-hero-ready {
  background-size: 100% auto;
}

.hero.agt-motion-hero .hero-inner {
  opacity: 0;
  transform: translateY(22px);
}

.hero.agt-motion-hero-ready .hero-inner {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .85s ease .18s,
    transform 1s var(--agt-motion-ease) .18s;
}


/* Internal hero images. */

.mv2-hero.agt-motion-hero > img,
.dv-hero.agt-motion-hero > img,
.scv-hero.agt-motion-hero > img,
.ct-hero.agt-motion-hero > img {
  transform: scale(1.045);
  transition: transform 1.8s var(--agt-motion-soft);
}

.mv2-hero.agt-motion-hero-ready > img,
.dv-hero.agt-motion-hero-ready > img,
.scv-hero.agt-motion-hero-ready > img,
.ct-hero.agt-motion-hero-ready > img {
  transform: scale(1);
}

.mv2-hero.agt-motion-hero .mv2-hero-copy,
.dv-hero.agt-motion-hero .dv-hero-copy,
.scv-hero.agt-motion-hero .scv-hero-copy,
.ct-hero.agt-motion-hero .ct-hero-copy {
  opacity: 0;
  transform: translateY(22px);
}

.mv2-hero.agt-motion-hero-ready .mv2-hero-copy,
.dv-hero.agt-motion-hero-ready .dv-hero-copy,
.scv-hero.agt-motion-hero-ready .scv-hero-copy,
.ct-hero.agt-motion-hero-ready .ct-hero-copy {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .85s ease .18s,
    transform 1s var(--agt-motion-ease) .18s;
}


/* 03 — Scroll reveal
   ---------------------------------------------------------- */

.agt-js .agt-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .72s ease var(--agt-reveal-delay, 0ms),
    transform .82s var(--agt-motion-ease)
      var(--agt-reveal-delay, 0ms);
}

.agt-js .agt-reveal.agt-visible {
  opacity: 1;
  transform: translateY(0);
}


/* 04 — Image interaction
   ---------------------------------------------------------- */

.agt-image-frame {
  position: relative;
  overflow: hidden;
}

.agt-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(
      135deg,
      rgba(184,150,85,.12),
      transparent 38%,
      rgba(255,255,255,.04)
    );
  transition: opacity .45s ease;
}

.agt-image-frame img {
  transition:
    transform .75s var(--agt-motion-ease),
    filter .55s ease;
}

.agt-image-frame:hover img {
  transform: scale(1.035);
}

.agt-image-frame:hover::after {
  opacity: 1;
}


/* 05 — Cards and feature blocks
   ---------------------------------------------------------- */

.agt-interactive {
  transition:
    transform .35s var(--agt-motion-ease),
    box-shadow .35s ease;
}

.card.agt-interactive:hover,
.mv2-three article.agt-interactive:hover,
.dv-three article.agt-interactive:hover,
.dv-services article.agt-interactive:hover,
.scv-three article.agt-interactive:hover {
  transform: translateY(-5px);
}

.card.agt-interactive:hover {
  box-shadow: 0 14px 34px rgba(25,25,25,.07);
}

.mv2-feature.agt-interactive:hover,
.scv-feature.agt-interactive:hover {
  transform: translateY(-3px);
}


/* 06 — Refined navigation interaction
   ---------------------------------------------------------- */

.menu a {
  transition:
    color .25s ease,
    opacity .25s ease;
}

.menu:hover a:not(:hover) {
  opacity: .58;
}

.menu a::after {
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--ink),
    var(--agt-gold)
  );
}


/* 07 — Aegeantek signature
   ---------------------------------------------------------- */

.agt-signature-heading {
  position: relative;
}

.agt-signature-heading::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin: 16px auto 0;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--agt-gold) 22%,
      var(--agt-gold) 78%,
      transparent
    );
  transform: scaleX(.28);
  transform-origin: center;
  opacity: .55;
  transition:
    transform .85s var(--agt-motion-ease),
    opacity .65s ease;
}

.agt-visible .agt-signature-heading::after,
.agt-signature-heading:hover::after {
  transform: scaleX(1);
  opacity: 1;
}


/* Pointer depth is deliberately tiny. */

@media (pointer: fine) {

  .agt-motion-hero-ready::after {
    transform: translate(
      calc(var(--agt-pointer-x, 0) * 3px),
      calc(var(--agt-pointer-y, 0) * 3px)
    );
  }

}


/* Touch devices: hover effects should not feel sticky. */

@media (hover: none) {

  .menu:hover a:not(:hover) {
    opacity: 1;
  }

  .agt-image-frame:hover img,
  .card.agt-interactive:hover,
  .mv2-three article.agt-interactive:hover,
  .dv-three article.agt-interactive:hover,
  .dv-services article.agt-interactive:hover,
  .scv-three article.agt-interactive:hover,
  .mv2-feature.agt-interactive:hover,
  .scv-feature.agt-interactive:hover {
    transform: none;
  }

}


/* Accessibility: respect reduced-motion preference. */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .agt-js .agt-reveal,
  .hero.agt-motion-hero .hero-inner,
  .mv2-hero.agt-motion-hero .mv2-hero-copy,
  .dv-hero.agt-motion-hero .dv-hero-copy,
  .scv-hero.agt-motion-hero .scv-hero-copy,
  .ct-hero.agt-motion-hero .ct-hero-copy {
    opacity: 1;
    transform: none;
  }

  .hero.agt-motion-hero {
    background-size: cover;
  }

  .mv2-hero.agt-motion-hero > img,
  .dv-hero.agt-motion-hero > img,
  .scv-hero.agt-motion-hero > img,
  .ct-hero.agt-motion-hero > img {
    transform: none;
  }

}

/* AEGEANTEK DEMOS V2.1 — ROW ARCHIVE */

.demos-v1 {
  background: #fff;
}

.demos-intro {
  min-height: 0;
  padding-top: 48px;
}

.demos-intro .intro {
  position: relative;
  z-index: 1;
  margin-bottom: 38px;
}

.demos-intro .intro h1 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 500;
}

.demos-intro .intro > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
}

.demo-grid {
  display: flex;
  flex-direction: column;
  gap: 34px;
  max-width: 1120px;
  margin: 0 auto;
}

.demo-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  align-items: stretch;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.demo-card + .demo-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 1px;
  background: var(--line);
}

.demo-card:nth-child(even) {
  background: var(--soft);
}

.demo-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 300px;
  padding: 0;
  overflow: hidden;
  background: #f5f3ee;
}

.demo-card-visual img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.demo-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 40px;
}

.demo-category {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}

.demo-card-body h2 {
  margin: 0 0 13px;
  font-size: clamp(25px, 2.5vw, 32px);
  line-height: 1.2;
  font-weight: 500;
}

.demo-card-body > p:not(.demo-category) {
  max-width: 620px;
  min-height: 0;
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.65;
}

.demo-button {
  align-self: flex-start;
  padding: 11px 22px;
}

.demo-card-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 28px;
}

.demo-card-placeholder span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--muted);
}

.demo-card-placeholder strong {
  max-width: 390px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 500;
}

@media (max-width: 900px) {
  .demo-card {
    grid-template-columns: 1fr;
  }

  .demo-card-visual {
    min-height: 0;
  }

  .demo-card-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .demo-card-body {
    padding: 30px;
  }
}

@media (max-width: 650px) {
  .demos-intro {
    padding-top: 36px;
  }

  .demos-intro .intro {
    margin-bottom: 30px;
  }

  .demo-grid {
    gap: 28px;
  }

  .demo-card-body {
    padding: 25px 22px 29px;
  }
}

/* END AEGEANTEK DEMOS V2.1 */
