:root {
  --icta-paper: #f7f1e8;
  --icta-paper-2: #efe4d5;
  --icta-ink: #201915;
  --icta-muted: rgba(32, 25, 21, 0.72);

  --icta-coral: #d96c4a;
  --icta-teal: #1fa6a6;
  --icta-mustard: #e0a12b;
  --icta-plum: #7c4d79;

  --icta-white: #ffffff;
  --icta-shadow: 0 24px 60px rgba(33, 24, 18, 0.12);
  --icta-shadow-soft: 0 12px 30px rgba(33, 24, 18, 0.08);
  --icta-radius-xl: 30px;
  --icta-radius-lg: 22px;
  --icta-radius-md: 16px;

  --icta-max: 1280px;
  --icta-ease: cubic-bezier(0.2, 0.8, 0.2, 1);

  --icta-font:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --icta-display: "Bebas Neue", var(--icta-font);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body.icta-page {
  font-family: var(--icta-font);
  color: var(--icta-ink);
  background-image: url(images/icta/texture.webp);
  background-repeat: repeat;
  /* background:
    radial-gradient(
      circle at top left,
      rgba(217, 108, 74, 0.14),
      transparent 26%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(31, 166, 166, 0.14),
      transparent 24%
    ),
    linear-gradient(180deg, #fcf8f2 0%, var(--icta-paper) 100%); */
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}
/* =========================================================
   TOPBAR
   ========================================================= */
.icta-topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(247, 241, 232, 0.78);
  border-bottom: 1px solid rgba(32, 25, 21, 0.08);
}

.icta-topbar__inner {
  width: min(var(--icta-max), 94vw);
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.icta-brand img {
  width: auto;
  height: 58px;
}

.icta-topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icta-language-switch {
  display: flex;
  align-items: center;
  gap: 0px;
}

.icta-language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 38px;
}

.icta-language-link:hover {
  transform: translateY(-1px);
}

.icta-language-link img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.icta-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.icta-menu a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(32, 25, 21, 0.82);
  transition:
    background 180ms var(--icta-ease),
    transform 180ms var(--icta-ease),
    color 180ms var(--icta-ease);
}

.icta-menu a:hover {
  transform: translateY(-1px);
  background: rgba(32, 25, 21, 0.08);
}

.icta-menu__cta {
  background: var(--icta-coral);
  color: #fff !important;
}

.icta-menu__cta:hover {
  background: #c85c3d !important;
}

/* =========================================================
   BURGER + MOBILE MENU
   ========================================================= */
.icta-burger,
.icta-mobile-overlay {
  display: none;
}

.icta-burger {
  width: 52px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(32, 25, 21, 0.12);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--icta-shadow-soft);
  cursor: pointer;
  position: relative;
}

.icta-burger span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: rgba(32, 25, 21, 0.9);
  border-radius: 999px;
  transition:
    transform 0.22s var(--icta-ease),
    top 0.22s var(--icta-ease),
    opacity 0.2s var(--icta-ease);
}

.icta-burger span:nth-child(1) {
  top: 13px;
}
.icta-burger span:nth-child(2) {
  top: 21px;
}
.icta-burger span:nth-child(3) {
  top: 29px;
}

.icta-burger.open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.icta-burger.open span:nth-child(2) {
  opacity: 0;
}
.icta-burger.open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.icta-mobile-overlay {
  position: fixed;
  inset: 82px 0 0 0;
  z-index: 300;
  background: rgba(32, 25, 21, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 0.22s var(--icta-ease),
    transform 0.22s var(--icta-ease);
}

.icta-mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.icta-mobile-panel {
  height: calc(100dvh - 82px);
  display: grid;
  place-items: center;
  padding: 18px 16px;
}

.icta-mobile-nav {
  width: min(560px, 92vw);
  display: grid;
  gap: 14px;
}

.icta-mobile-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  border-radius: 18px;
  padding: 16px 18px;
  color: rgba(246, 244, 243, 0.95);
  font-family: var(--icta-font);
  font-size: 48px;
  font-weight: 700;
  line-height: 0.6;
}

.icta-mobile-link img {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  object-fit: cover;
}

.icta-mobile-link--cta {
  background: var(--icta-coral);
  color: #fff;
}

/* =========================================================
   RESPONSIVE TOPBAR
   ========================================================= */
@media (max-width: 980px) {
  .icta-menu {
    display: none;
  }

  .icta-burger,
  .icta-mobile-overlay {
    display: block;
  }
}

@media (max-width: 760px) {
  .icta-topbar__inner {
    min-height: 74px;
  }

  .icta-brand img {
    height: 46px;
  }

  .icta-topbar__right {
    gap: 10px;
  }

  .icta-language-link {
    width: 34px;
    height: 34px;
  }

  .icta-mobile-overlay {
    inset: 74px 0 0 0;
  }

  .icta-mobile-panel {
    height: calc(100dvh - 74px);
  }
}
/* =========================================================
   GLOBAL SECTION WRAP
   ========================================================= */
.icta-section-kicker,
.icta-hero__kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(32, 25, 21, 0.58);
}

.icta-section-title {
  margin: 0;
  font-family: var(--icta-display);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--icta-ink);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.icta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition:
    transform 180ms var(--icta-ease),
    background 180ms var(--icta-ease),
    color 180ms var(--icta-ease),
    border-color 180ms var(--icta-ease);
}

.icta-btn:hover {
  transform: translateY(-2px);
}

.icta-btn--primary {
  background: var(--icta-coral);
  color: #fff;
  box-shadow: 0 12px 26px rgba(217, 108, 74, 0.22);
}

.icta-btn--secondary {
  background: rgb(251, 244, 244);
  color: var(--icta-ink);
  border: 1px solid rgba(32, 25, 21, 0.16);
}

/* =========================================================
   HERO
   ========================================================= */
.icta-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 6vw, 90px) 0 clamp(56px, 8vw, 96px);
}
.icta-hero__bg-shape {
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.92;
  z-index: 0;
}

.icta-hero__bg-shape--one {
  width: clamp(320px, 42vw, 620px);
  height: clamp(320px, 42vw, 620px);
  top: 0;
  left: clamp(-120px, -6vw, -40px);
  background-image: url("images/icta/paint-splash-blue.webp");
}

.icta-hero__bg-shape--two {
  width: clamp(280px, 38vw, 560px);
  height: clamp(280px, 38vw, 560px);
  right: clamp(-160px, -8vw, -60px);
  bottom: clamp(-180px, -10vw, -80px);
  background-image: url("images/icta/paint-splash-peach.webp");
  transform: rotate(185deg) scaleX(-1);
}

.icta-hero__bg-shape--three {
  width: clamp(360px, 48vw, 700px);
  height: clamp(560px, 72vw, 1100px);
  left: clamp(-100px, -5vw, -30px);
  bottom: clamp(-320px, -18vw, -180px);
  background-image: url("images/icta/paint-set.webp");
  opacity: 0.92;
}

.icta-hero__bg-shape--four {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  height: clamp(280px, 58vw, 860px);
  transform: translate(-50%, -50%);
  background-image: url("images/icta/paint-stroke.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  opacity: 0.82;
  pointer-events: none;
  z-index: 0;
}

.icta-hero__inner {
  width: min(var(--icta-max), 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.icta-hero__content {
  position: relative;
  z-index: 2;
}

.icta-hero__title {
  margin: 0 0 18px;
  font-family: var(--icta-display);
  font-size: clamp(62px, 8vw, 128px);
  line-height: 0.9;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--icta-ink);
}

.icta-hero__title span {
  color: var(--icta-coral);
}

.icta-hero__text {
  margin: 0;
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.85;
  color: var(--icta-muted);
}

.icta-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.icta-hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.icta-highlight {
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(32, 25, 21, 0.08);
  box-shadow: var(--icta-shadow-soft);
}

.icta-highlight__label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: rgba(32, 25, 21, 0.56);
}

.icta-highlight strong {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: var(--icta-ink);
}

.icta-hero__visual {
  position: relative;
  min-height: 650px;
}

.icta-hero__card {
  position: absolute;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--icta-shadow);
}

.icta-hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icta-hero__card--main {
  inset: 80px 40px 80px 40px;
  border-radius: 36px;
  transform: rotate(-2.5deg);
}

.icta-hero__card--top {
  top: 0;
  right: 0;
  width: 230px;
  height: 270px;
  border-radius: 28px;
  transform: rotate(6deg);
  border: 8px solid #fff7ee;
}

.icta-hero__card--bottom {
  left: 0;
  bottom: 16px;
  width: 220px;
  height: 250px;
  border-radius: 28px;
  transform: rotate(-7deg);
  border: 8px solid #fff7ee;
}

.icta-hero__floating-note {
  position: absolute;
  right: 24px;
  bottom: 36px;
  z-index: 5;
  width: 220px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: #fff8ef;
  border: 1px solid rgba(32, 25, 21, 0.08);
  box-shadow: var(--icta-shadow-soft);
  transform: rotate(-4deg);
}

.icta-hero__floating-note span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(32, 25, 21, 0.56);
}

.icta-hero__floating-note strong {
  font-size: 15px;
  line-height: 1.45;
  color: var(--icta-ink);
}

@media (max-width: 900px) {
  .icta-hero__bg-shape--three {
    display: none;
  }
}
/* =========================================================
   INTRO
   ========================================================= */
/* =========================================================
   INTRO
   ========================================================= */
.icta-intro {
  position: relative;
  padding: clamp(46px, 6vw, 96px) 0;
  overflow: hidden;
}

.icta-intro__inner {
  width: min(var(--icta-max), 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.icta-intro__left {
  position: sticky;
  top: 110px;
}

.icta-intro__summary {
  margin: 18px 0 0;
  max-width: 34ch;
  font-size: 16px;
  line-height: 1.9;
  color: var(--icta-muted);
}

.icta-intro__right {
  display: grid;
  gap: 22px;
}

.icta-info-card {
  padding: 24px 24px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(32, 25, 21, 0.08);
  box-shadow: var(--icta-shadow-soft);
}

.icta-info-card--story {
  background:
    linear-gradient(135deg, rgba(217, 108, 74, 0.08), rgba(31, 166, 166, 0.05)),
    rgba(255, 255, 255, 0.72);
}

.icta-info-card h3 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.1;
  color: var(--icta-ink);
}

.icta-info-card p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--icta-muted);
}

.icta-info-card p:last-child {
  margin-bottom: 0;
}

.icta-intro__mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.icta-values {
  display: grid;
  gap: 16px;
}

.icta-values--sidebar {
  grid-template-columns: 1fr;
  margin-top: 28px;
  max-width: 420px;
}

.icta-value {
  padding: 18px 18px 16px;
  border-radius: 18px;
}

.icta-value-heading {
  text-align: left;
  padding: 2px 0 2px 16px;
  background-color: #c85c3d;
  border: 999px;
  color: #efe4d5;
}
.icta-value h4 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
  color: var(--icta-ink);
}

.icta-value p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--icta-muted);
}

@media (max-width: 1100px) {
  .icta-intro__inner {
    grid-template-columns: 1fr;
  }

  .icta-intro__left {
    position: relative;
    top: auto;
  }

  .icta-values--sidebar {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .icta-intro__mini-grid {
    grid-template-columns: 1fr;
  }

  .icta-info-card,
  .icta-value {
    padding: 20px 18px;
  }
}
/* =========================================================
   PROGRAMMES
   ========================================================= */
.icta-programmes {
  position: relative;
  padding: clamp(30px, 5vw, 74px) 0;
  overflow: hidden;
}

.icta-programmes__inner {
  width: min(var(--icta-max), 94vw);
  margin: 0 auto;
}

.icta-programmes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 28px;
}

.icta-programme-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fffdf9;
  border: 1px solid rgba(32, 25, 21, 0.08);
  box-shadow: var(--icta-shadow-soft);
  z-index: 100;
}

.icta-programme-card__media {
  height: 250px;
  overflow: hidden;
}

.icta-programme-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms var(--icta-ease);
}

.icta-programme-card:hover .icta-programme-card__media img {
  transform: scale(1.04);
}

.icta-programme-card__body {
  padding: 20px 20px 22px;
}

.icta-programme-card__body h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
  color: var(--icta-ink);
}

.icta-programme-card__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--icta-muted);
}

/* =========================================================
   GALLERY
   ========================================================= */
.icta-gallery {
  padding: clamp(30px, 5vw, 74px) 0;
}

.icta-gallery__inner {
  width: min(var(--icta-max), 94vw);
  margin: 0 auto;
}

.icta-gallery__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
  margin-top: 28px;
}

.icta-gallery__item {
  overflow: hidden;
  border-radius: 26px;
  min-height: 240px;
  box-shadow: var(--icta-shadow-soft);
}

.icta-gallery__item--large {
  grid-row: span 2;
  min-height: 520px;
}

.icta-gallery__item--wide {
  grid-column: span 2;
  min-height: 250px;
}

.icta-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms var(--icta-ease);
}

.icta-gallery__item:hover img {
  transform: scale(1.03);
}

/* =========================================================
   PARTNERS CTA
   ========================================================= */
.icta-partners {
  position: relative;
  padding: clamp(38px, 6vw, 86px) 0 clamp(56px, 7vw, 100px);
  overflow: hidden;
}

.icta-partners__inner {
  position: relative;
  z-index: 1;
  width: min(1000px, 94vw);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(217, 108, 74, 0.12), rgba(31, 166, 166, 0.12)),
    #fff9f1;
  border: 1px solid rgba(32, 25, 21, 0.08);
  box-shadow: var(--icta-shadow);
  text-align: center;
}

.icta-partners__lead {
  margin: 18px auto 0;
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.9;
  color: var(--icta-muted);
}

.icta-partners__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.icta-footer {
  padding: 28px 0 40px;
  background: rgba(32, 25, 21, 0.97);
  color: rgba(255, 255, 255, 0.9);
}

.icta-footer__inner {
  width: min(var(--icta-max), 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.icta-footer__brand img {
  width: auto;
  height: 78px;
  margin-bottom: 14px;
}

.icta-footer__brand p,
.icta-footer__contact span,
.icta-footer__contact a,
.icta-footer__links a {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.74);
}

.icta-footer__links,
.icta-footer__contact {
  display: grid;
  gap: 8px;
}

.icta-footer__links a:hover,
.icta-footer__contact a:hover {
  color: #fff;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .icta-hero__inner,
  .icta-intro__inner {
    grid-template-columns: 1fr;
  }

  .icta-hero__visual {
    min-height: 560px;
    margin-top: 10px;
  }

  .icta-programmes__grid {
    grid-template-columns: 1fr;
  }

  .icta-gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .icta-gallery__item--large {
    grid-row: span 1;
    min-height: 340px;
  }

  .icta-gallery__item--wide {
    grid-column: span 2;
  }

  .icta-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .icta-topbar__inner {
    min-height: 74px;
  }

  .icta-brand img {
    height: 46px;
  }

  .icta-menu {
    display: none;
  }

  .icta-hero__title {
    font-size: clamp(52px, 14vw, 86px);
  }

  .icta-hero__highlights {
    grid-template-columns: 1fr;
  }

  .icta-hero__visual {
    min-height: 470px;
  }

  .icta-hero__card--main {
    inset: 56px 20px 64px 20px;
  }

  .icta-hero__card--top {
    width: 150px;
    height: 180px;
  }

  .icta-hero__card--bottom {
    width: 145px;
    height: 170px;
  }

  .icta-hero__floating-note {
    width: 180px;
    right: 10px;
    bottom: 18px;
  }

  .icta-gallery__grid {
    grid-template-columns: 1fr;
  }

  .icta-gallery__item--wide {
    grid-column: span 1;
  }
}
