@font-face {
  font-family: "Gill Sans Custom";
  src: url("assets/fonts/GillSans.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gill Sans Custom";
  src: url("assets/fonts/GillSans-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Main palette */
  --bg: #0F0F0F;
  --text: #FFFFFF;
  --title: #FFFFFF;
  --subtitle: rgba(var(--white-rgb), 0.68);

  /* Surfaces */
  --card-bg: #0e0e0e;
  --card-bg-hover: #131313;
  --card-border: rgba(var(--white-rgb), 0.045);
  --card-border-soft: rgba(var(--white-rgb), 0.035);
  --card-border-strong: rgba(var(--white-rgb), 0.08);
  --chip-bg: var(--card-bg);
  --chip-border: rgba(var(--white-rgb), 0.14);
  --hero-circle-bg: #0e0e0e;
  --surface-media: var(--card-bg);
  --surface-light: #FFFFFF;
  --modal-bg: var(--card-bg);
  --header-bg: rgba(var(--card-rgb), 0.82);

  /* Accent */
  --accent: #5d4cff;
  --blue: #2f6eea;

  /* Interaction */
  --hover-scale: 1.018;
  --hover-media-scale: 1.04;
  --hover-button-scale: 1.06;
  --hover-duration: 0.34s;
  --hover-ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* RGB bases for controlled transparency */
  --black: #000000;
  --black-rgb: 0, 0, 0;
  --white-rgb: 255, 255, 255;
  --bg-rgb: 15, 15, 15;
  --card-rgb: 14, 14, 14;

  /* Backward-compatible aliases */
  --muted: var(--subtitle);
  --dark-card: var(--card-bg);

  /* Layout */
  --page-width: clamp(1440px, 76vw, 1480px);
  --hero-image-size: clamp(1000px, 35vw, 1200px);
  --hero-circle-size: clamp(1000px, 35vw, 1200px);
  --hero-side-top: clamp(250px, 8.5vw, 170px);
}

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

html {
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  min-height: 100%;
  font-family: "Gill Sans Custom", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.page {
  width: min(100% - 80px, var(--page-width));
  margin: 0 auto;
  padding: 64px 0 0;
}

                                                            /* Header */

.site-header {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;

  width: min(100% - 80px, var(--page-width));
  height: 56px;
  padding: 0 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: transparent;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(var(--black-rgb), 0.22);
  border-radius: 14px;
  overflow: visible;
}

.header-brand,
.header-nav,
.menu-toggle {
  position: relative;
  z-index: 2;
}

                                                    /* Header intro animation */

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background: var(--header-bg);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(var(--black-rgb), 0.22);
  border-radius: inherit;

  transform: scaleX(1);
  transform-origin: center;
}

html.js .site-header::before {
  transform: scaleX(0);
}

html.js.is-loaded .site-header::before {
  transform: scaleX(1);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .header-brand,
html.js .menu-toggle {
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.45s ease 0.45s,
    transform 0.45s ease 0.45s;
}

html.js.is-loaded .header-brand,
html.js.is-loaded .menu-toggle {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 769px) {
  html.js .header-nav {
    opacity: 0;
    transform: translateY(6px);
    transition:
      opacity 0.45s ease 0.45s,
      transform 0.45s ease 0.45s;
  }

  html.js.is-loaded .header-nav {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header-logo {
  width: 32px;
  height: auto;
  display: block;
}

.header-nav {
  min-width: 620px;

  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 34px);
}

.header-nav a {
  min-width: max-content;

  color: var(--muted);
  text-decoration: none;
  font-size: clamp(12px, 0.78vw, 15px);
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;

  transition: color 0.2s ease;
}

.header-nav a:hover {
  color: var(--text);
}

.header-nav a.is-active {
  color: var(--text);
  opacity: 1;
}

.header-nav a.is-disabled,
.footer-nav a.is-disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
  color: var(--muted);
}


.menu-toggle {
  display: none;
}

html.skip-header-intro .site-header::before {
  transform: scaleX(1);
  transition: none;
}

html.skip-header-intro .header-brand,
html.skip-header-intro .header-nav,
html.skip-header-intro .menu-toggle {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

                                                      /* Inner Pages */

.inner-page-placeholder {
  min-height: calc(100svh - 180px);
  padding-top: 190px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.inner-page-placeholder h1 {
  color: var(--text);
  font-size: clamp(44px, 5vw, 88px);
  line-height: 0.95;
  letter-spacing: -2px;
  font-weight: 700;
}

.inner-page-placeholder p {
  max-width: 520px;
  margin-top: 18px;

  color: var(--muted);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.35;
}

                                                /* AI Contents Page */

.ai-page-intro {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 120px;
  text-align: center;
}

.ai-page-intro h1 {
  color: var(--text);
  font-size: clamp(34px, 2.5vw, 52px);
  line-height: 1.05;
  font-weight: 400;
}

.ai-page-intro p {
  max-width: 760px;
  margin: 14px auto 0;

  color: var(--muted);
  font-size: clamp(14px, 0.92vw, 18px);
  line-height: 1.4;
}

.ai-projects-list {
  width: min(100%, 1440px);
  margin: 120px auto 0;

  display: flex;
  flex-direction: column;
  gap: 34px;
}

.ai-project-card {
  position: relative;
  overflow: visible;

  background: var(--card-bg);
  border-radius: 34px;

  transition:
    transform var(--hover-duration) var(--hover-ease),
    background var(--hover-duration) var(--hover-ease);
}

html.js .ai-page-intro h1,
html.js .ai-page-intro p,
html.js .ai-project-card {
  opacity: 0;
  transform: translateY(26px);
}

html.js.is-loaded .ai-page-intro h1,
html.js.is-loaded .ai-page-intro p {
  opacity: 1;
  transform: translateY(0);
}

.ai-page-intro h1 {
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.ai-page-intro p {
  transition:
    opacity 0.7s ease 0.12s,
    transform 0.7s ease 0.12s;
}

html.js.is-loaded .ai-project-card {
  animation: aiProjectIntro 0.75s ease both;
}

html.js.is-loaded .ai-project-card:nth-child(1) {
  animation-delay: 0.22s;
}

html.js.is-loaded .ai-project-card:nth-child(2) {
  animation-delay: 0.32s;
}

html.js.is-loaded .ai-project-card:nth-child(3) {
  animation-delay: 0.42s;
}

html.js.is-loaded .ai-project-card:nth-child(4) {
  animation-delay: 0.52s;
}

html.js.is-loaded .ai-project-card:nth-child(5) {
  animation-delay: 0.62s;
}

html.js.is-loaded .ai-project-card:nth-child(6) {
  animation-delay: 0.72s;
}

@keyframes aiProjectIntro {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html.js.is-loaded .ai-project-card:not(.is-open):hover {
  transform: scale(var(--hover-scale));
}

.ai-project-preview {
  position: relative;
  width: 100%;
  min-height: 255px;

  display: block;
  overflow: hidden;

  border: 0;
  border-radius: inherit;
  background: var(--surface-media);
  cursor: pointer;

  text-align: left;
  color: var(--text);
}

.ai-project-preview img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;

  transition: transform var(--hover-duration) var(--hover-ease);
}

html.js.is-loaded .ai-project-card:not(.is-open):hover .ai-project-preview img {
  transform: scale(var(--hover-media-scale));
}

.ai-project-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    90deg,
    rgba(var(--black-rgb), 0.72) 0%,
    rgba(var(--black-rgb), 0.46) 45%,
    rgba(var(--black-rgb), 0.22) 100%
  );
}

.ai-project-preview-content {
  position: relative;
  z-index: 2;

  min-height: 255px;
  padding: 48px 72px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ai-project-preview-content h2 {
  color: var(--text);
  font-size: clamp(58px, 5vw, 96px);
  line-height: 0.9;
  font-weight: 400;
}

.ai-project-preview-content p {
  margin-top: 12px;

  color: var(--text);
  font-size: clamp(20px, 1.4vw, 32px);
  line-height: 1.1;
}

.ai-project-preview-content.small h2 {
  font-size: clamp(30px, 2.4vw, 46px);
  line-height: 1.05;
}

.ai-project-detail {
  display: none;
}

.ai-project-card.is-open {
  padding: clamp(48px, 4vw, 70px);
  background: var(--card-bg);
  transform: none;
}

.ai-project-card.is-open:hover {
  transform: none;
}

.ai-project-card.is-open .ai-project-preview {
  display: none;
}

.ai-project-card.is-open .ai-project-detail {
  display: block;
  animation: aiDetailIn 0.55s ease both;
}

@keyframes aiDetailIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes aiDetailOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }
}

.ai-project-card.is-closing .ai-project-detail {
  display: block;
  animation: aiDetailOut 0.35s ease both;
}

.ai-project-close {
  position: absolute;
  top: -50px;
  right: -50px;
  z-index: 4;

  width: 42px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 50%;
  background: rgba(var(--white-rgb), 0.08);
  color: var(--text);

  font-size: 30px;
  line-height: 1;
  cursor: pointer;

  transition:
    transform var(--hover-duration) var(--hover-ease),
    background var(--hover-duration) var(--hover-ease);
}

.ai-project-close:hover {
  transform: scale(var(--hover-button-scale));
  background: rgba(var(--white-rgb), 0.14);
}

.ai-project-detail-top {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 4vw, 64px);
  align-items: start;
}

.ai-project-info {
  text-align: left;
}

.ai-project-info h2 {
  color: var(--text);
  font-size: clamp(64px, 5vw, 100px);
  line-height: 0.9;
  font-weight: 400;
}

.ai-project-info h3 {
  margin-top: 12px;

  color: var(--text);
  font-size: clamp(22px, 1.55vw, 34px);
  line-height: 1.1;
  font-weight: 400;
}

.ai-project-info p {
  max-width: 520px;
  margin-top: 18px;

  color: var(--text);
  font-size: clamp(15px, 0.95vw, 19px);
  line-height: 1.28;
}

.ai-social-pill {
  width: fit-content;
  margin-top: 28px;
  padding: 9px 14px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  border: 1px solid rgba(var(--white-rgb), 0.55);
  border-radius: 8px;

  color: var(--text);
  text-decoration: none;
  font-size: 14px;
}

.ai-social-pill img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.ai-project-gallery {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  grid-template-rows: 270px 270px;
  gap: 16px;

  width: 100%;
  align-self: start;
}

.ai-gallery-box {
  overflow: hidden;
  border-radius: 16px;
  background: var(--surface-media);
}

.ai-gallery-box img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;

  transition: transform var(--hover-duration) var(--hover-ease);
}

.ai-gallery-box:hover img {
  transform: scale(var(--hover-media-scale));
}

.ai-gallery-box-top {
  grid-column: 1;
  grid-row: 1;
}

.ai-gallery-box-bottom {
  grid-column: 1;
  grid-row: 2;
}

.ai-gallery-box-tall {
  grid-column: 2;
  grid-row: 1 / 3;
}

.ai-final-productions {
  margin-top: 46px;
}

.ai-final-productions h3 {
  color: var(--text);
  font-size: clamp(26px, 1.8vw, 38px);
  line-height: 1.1;
  font-weight: 400;
}

.ai-video-grid {
  margin-top: 28px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ai-video-grid-single {
  grid-template-columns: 1fr;
}

.ai-video-card {
  position: relative;
  overflow: hidden;

  aspect-ratio: 1 / 1.18;
  border-radius: 14px;

  display: block;
  background: var(--surface-media);
}

.ai-video-card-wide {
  aspect-ratio: 16 / 7;
}

.ai-video-card img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;

  transition: transform var(--hover-duration) var(--hover-ease);
}

.ai-video-card:hover img {
  transform: scale(var(--hover-media-scale));
}

.ai-play-button {
  position: absolute;
  left: 50%;
  top: 50%;

  width: 50px;
  height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transform: translate(-50%, -50%);

  background: var(--text);
  color: var(--accent);
  border-radius: 9px;

  font-size: 18px;
  line-height: 1;
}

                                                  /* Motion Graphics Page */

                                                  /* Motion Graphics Page */

.motion-page-intro {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 120px;
  text-align: center;
}

.motion-page-intro h1 {
  color: var(--text);
  font-size: clamp(34px, 2.5vw, 52px);
  line-height: 1.05;
  font-weight: 400;
}

.motion-page-intro p {
  max-width: 760px;
  margin: 14px auto 0;

  color: var(--muted);
  font-size: clamp(14px, 0.92vw, 18px);
  line-height: 1.4;
}

.motion-showcase {
  width: min(100%, 1440px);
  margin: 110px auto 0;
}

.motion-featured-card {
  margin-bottom: 34px;
}

.motion-video-card {
  position: relative;
  overflow: hidden;

  display: block;
  text-decoration: none;
  color: var(--text);

  border-radius: 34px;
  background: var(--card-bg);
}

.motion-video-card img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;

  transition: transform var(--hover-duration) var(--hover-ease);
}

.motion-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    180deg,
    rgba(var(--black-rgb), 0.1) 0%,
    rgba(var(--black-rgb), 0.28) 45%,
    rgba(var(--black-rgb), 0.72) 100%
  );
}

.motion-video-card:hover img {
  transform: scale(var(--hover-media-scale));
}

.motion-video-card-featured {
  min-height: 520px;
}

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

.motion-grid .motion-video-card {
  aspect-ratio: 1 / 1.25;
}

.motion-card-content {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 30px;
  z-index: 2;
}

.motion-card-content span {
  display: block;

  color: var(--muted);
  font-size: clamp(13px, 0.8vw, 15px);
  line-height: 1.2;
}

.motion-card-content h2 {
  margin-top: 8px;

  color: var(--text);
  font-size: clamp(32px, 2.6vw, 52px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.8px;
}

.motion-card-content h3 {
  margin-bottom: 8px;

  color: var(--text);
  font-size: clamp(22px, 1.6vw, 30px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.motion-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;

  width: 54px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transform: translate(-50%, -50%);

  background: var(--text);
  color: var(--accent);
  border-radius: 10px;

  font-size: 18px;
  line-height: 1;

  transition:
    transform var(--hover-duration) var(--hover-ease),
    background var(--hover-duration) var(--hover-ease);
}

.motion-video-card:hover .motion-play-button {
  transform: translate(-50%, -50%) scale(var(--hover-button-scale));
}

/* Motion Graphics intro animation */

html.js .motion-page-intro h1,
html.js .motion-page-intro p,
html.js .motion-featured-card,
html.js .motion-grid .motion-video-card {
  opacity: 0;
  transform: translateY(26px);
}

html.js.is-loaded .motion-page-intro h1,
html.js.is-loaded .motion-page-intro p,
html.js.is-loaded .motion-featured-card,
html.js.is-loaded .motion-grid .motion-video-card {
  opacity: 1;
  transform: translateY(0);
}

.motion-page-intro h1 {
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.motion-page-intro p {
  transition:
    opacity 0.7s ease 0.12s,
    transform 0.7s ease 0.12s;
}

.motion-featured-card {
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.motion-grid .motion-video-card {
  transition:
    opacity 0.75s ease,
    transform 0.25s ease;
}

html.js .motion-featured-card {
  transition-delay: 0.22s;
}

html.js .motion-grid .motion-video-card:nth-child(1) {
  transition-delay: 0.32s;
}

html.js .motion-grid .motion-video-card:nth-child(2) {
  transition-delay: 0.42s;
}

html.js .motion-grid .motion-video-card:nth-child(3) {
  transition-delay: 0.52s;
}

html.js .motion-grid .motion-video-card:nth-child(4) {
  transition-delay: 0.62s;
}

html.js .motion-grid .motion-video-card:nth-child(5) {
  transition-delay: 0.72s;
}

html.js .motion-grid .motion-video-card:nth-child(6) {
  transition-delay: 0.82s;
}


/* Contact Page */

.contact-page-intro {
  max-width: 840px;
  margin: 0 auto;
  padding-top: 120px;
  text-align: center;
}

.contact-eyebrow {
  display: block;
  margin-bottom: 14px;

  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.22em;
}

.contact-page-intro h1 {
  color: var(--text);
  font-size: clamp(42px, 4vw, 76px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -1.6px;
}

.contact-page-intro p {
  max-width: 760px;
  margin: 18px auto 0;

  color: var(--muted);
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.45;
}

.contact-hero-panel {
  position: relative;
  overflow: hidden;

  width: min(100%, 1180px);
  margin: 96px auto 0;
  padding: clamp(34px, 4vw, 58px);

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 5vw, 78px);

  background: var(--card-bg);
  border: 1px solid var(--card-border, rgba(var(--white-rgb), 0.045));
  border-radius: 34px;
}

.contact-hero-panel::before {
  content: "";
  position: absolute;
  left: -18%;
  top: -30%;

  width: 520px;
  height: 520px;

  background: radial-gradient(
    circle,
    rgba(var(--white-rgb), 0.08) 0%,
    rgba(var(--white-rgb), 0.025) 38%,
    transparent 70%
  );

  pointer-events: none;
}

.contact-hero-left,
.contact-hero-right {
  position: relative;
  z-index: 1;
}

.contact-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-kicker {
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.18em;
}

.contact-hero-left h2 {
  margin-top: 20px;

  color: var(--text);
  font-size: clamp(48px, 5vw, 92px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -2px;
}

.contact-hero-left p {
  max-width: 500px;
  margin-top: 24px;

  color: var(--muted);
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.5;
}

.contact-quick-actions {
  margin-top: 34px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-quick-actions a {
  min-height: 42px;
  padding: 0 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  line-height: 1;

  border: 1px solid rgba(var(--white-rgb), 0.14);
  border-radius: 999px;
  background: rgba(var(--white-rgb), 0.035);

  transition:
    transform var(--hover-duration) var(--hover-ease),
    background var(--hover-duration) var(--hover-ease),
    border-color var(--hover-duration) var(--hover-ease);
}

.contact-quick-actions a:hover {
  transform: scale(var(--hover-scale));
  background: rgba(var(--white-rgb), 0.075);
  border-color: rgba(var(--white-rgb), 0.22);
}

.contact-hero-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-method-card {
  min-height: 72px;
  padding: 18px 20px;

  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 18px;

  background: rgba(var(--white-rgb), 0.035);
  border: 1px solid rgba(var(--white-rgb), 0.055);
  border-radius: 18px;

  transition:
    transform var(--hover-duration) var(--hover-ease),
    background var(--hover-duration) var(--hover-ease),
    border-color var(--hover-duration) var(--hover-ease);
}

.contact-method-card:hover {
  transform: scale(var(--hover-scale));
  background: rgba(var(--white-rgb), 0.06);
  border-color: rgba(var(--white-rgb), 0.1);
}

.contact-method-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1;
}

.contact-method-card a {
  color: var(--text);
  text-decoration: none;
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.15;
  font-weight: 700;
}

.contact-method-card em,
.contact-copy {
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  font-style: normal;
}

.contact-copy {
  padding: 0;

  background: transparent;
  border: 0;

  font-family: inherit;
  cursor: pointer;

  transition: color var(--hover-duration) var(--hover-ease);
}

.contact-copy:hover {
  color: var(--text);
}




/* Contact intro animation */

html.js .contact-page-intro h1,
html.js .contact-page-intro p,
html.js .contact-eyebrow,
html.js .contact-hero-panel {
  opacity: 0;
  transform: translateY(26px);
}

html.js.is-loaded .contact-page-intro h1,
html.js.is-loaded .contact-page-intro p,
html.js.is-loaded .contact-eyebrow,
html.js.is-loaded .contact-hero-panel {
  opacity: 1;
  transform: translateY(0);
}

.contact-eyebrow {
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.contact-page-intro h1 {
  transition:
    opacity 0.7s ease 0.08s,
    transform 0.7s ease 0.08s;
}

.contact-page-intro p {
  transition:
    opacity 0.7s ease 0.16s,
    transform 0.7s ease 0.16s;
}

.contact-hero-panel {
  transition:
    opacity 0.75s ease 0.24s,
    transform 0.75s ease 0.24s;
}


                                                  /* Video Modal */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 32px;

  background: rgba(var(--black-rgb), 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal-content {
  width: min(100%, 1080px);
  max-height: 82vh;

  overflow: hidden;
  border-radius: 24px;
  background: var(--black);

  transform: scale(0.96);
  transition: transform var(--hover-duration) var(--hover-ease);
}

.video-modal.is-open .video-modal-content {
  transform: scale(1);
}

.video-modal-player {
  width: 100%;
  max-height: 82vh;

  display: block;
  background: var(--black);
}

.video-modal-close {
  position: fixed;
  top: 28px;
  right: 32px;
  z-index: 3001;

  width: 44px;
  height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 50%;
  background: rgba(var(--white-rgb), 0.1);
  color: var(--text);

  font-size: 34px;
  line-height: 1;
  cursor: pointer;

  transition:
    transform var(--hover-duration) var(--hover-ease),
    background var(--hover-duration) var(--hover-ease);
}

.video-modal-close:hover {
  transform: scale(var(--hover-button-scale));
  background: rgba(var(--white-rgb), 0.16);
}

                                                                  /* Hero */

.hero {
  padding-top: 92px;
  text-align: center;
}

.hero-title h1 {
  font-size: clamp(64px, 5vw, 92px);
  line-height: 0.95;
  letter-spacing: -2px;
  font-weight: 700;
}

.hero-title p {
  margin-top: 0;
  color: var(--muted);
  font-size: clamp(20px, 1.45vw, 30px);
}

.hero-content {
  position: relative;
  height: var(--hero-image-size);
  margin-top: -3%;
  overflow: visible;

  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image-wrap {
  position: relative;
  width: var(--hero-image-size);
  height: var(--hero-image-size);

  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-circle {
  position: absolute;
  bottom: -300px;
  width: var(--hero-circle-size);
  aspect-ratio: 1 / 1;

  background: var(--hero-circle-bg);
  border-radius: 50%;
  z-index: 1;
}

.hero-image {
  position: relative;
  z-index: 2;

  width: var(--hero-image-size);
  height: auto;
  display: block;
}

                                                         /* Hero mouse movement */

.hero-image {
  transform: translate3d(var(--hero-image-x, 0px), var(--hero-image-y, 0px), 0);
  transition: transform 0.18s ease-out;
}

.hero-circle {
  transform: translate3d(var(--hero-circle-x, 0px), var(--hero-circle-y, 0px), 0);
  transition: transform 0.18s ease-out;
}

.hero-quote {
  position: absolute;
  left: 0;
  top: var(--hero-side-top);
  width: clamp(260px, 16vw, 320px);

  text-align: center;
  color: var(--muted);
}

.hero-quote-right {
  left: auto;
  right: 0;
  text-align: center;
}

.quote-mark {
  display: block;
  width: clamp(18px, 1.4vw, 28px);
  height: auto;
  margin: 0 auto;
  opacity: 0.95;
}

.hero-quote p {
  margin-top: 12px;
  font-size: clamp(15px, 0.85vw, 18px);
  line-height: 1.28;
}



                                                /* Hero intro animation */

.js .hero-title,
.js .hero-quote,
.js .hero-image-wrap,
.js .hero-experience {
  opacity: 0;
  transform: translateY(22px);
}

.js.is-loaded .hero-title,
.js.is-loaded .hero-quote,
.js.is-loaded .hero-image-wrap,
.js.is-loaded .hero-experience {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-image-wrap {
  transition: opacity 0.8s ease 0.12s, transform 0.8s ease 0.12s;
}

.hero-quote {
  transition: opacity 0.7s ease 0.24s, transform 0.7s ease 0.24s;
}

.hero-experience {
  transition: opacity 0.7s ease 0.32s, transform 0.7s ease 0.32s;
}

/* About */

.about-card {
  position: relative;
  z-index: 5;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(44px, 5vw, 76px);

  margin-top: 0;
  padding: clamp(44px, 4vw, 58px) clamp(50px, 5vw, 78px);

  background: var(--card-bg);
  border-radius: 22px;
}

                                                                          /* Latest Projects */

.latest-projects {
  position: relative;
  z-index: 4;

  width: 100%;
  margin: clamp(-42px, -3vw, -24px) auto 0;
  padding: clamp(30px, 2.6vw, 40px) 0 clamp(30px, 2.8vw, 44px);

  overflow: hidden;

  background: var(--card-bg);
  border: 1px solid var(--card-border-soft);
  border-radius: 34px;
}

.latest-projects-header {
  max-width: 760px;
  margin: 0 auto clamp(26px, 2.2vw, 34px);
  padding: 0 clamp(22px, 3vw, 44px);
  text-align: center;
}

.latest-projects-header h2 {
  color: var(--text);
  font-size: clamp(34px, 2.8vw, 48px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.7px;
}

.latest-projects-header p {
  max-width: 620px;
  margin: 16px auto 0;

  color: var(--muted);
  font-size: clamp(14px, 0.9vw, 16px);
  line-height: 1.4;
}

.latest-projects-marquee {
  overflow: hidden;
  cursor: default;
}

.latest-projects-track {
  width: max-content;

  display: flex;
  align-items: center;
  gap: 18px;

  padding: 0 22px;

  animation: latestProjectsMove 42s linear infinite;
}

.latest-projects:hover .latest-projects-track {
  animation-play-state: paused;
}

@keyframes latestProjectsMove {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.latest-project-card {
  position: relative;
  overflow: hidden;

  width: clamp(280px, 21vw, 350px);
  aspect-ratio: 16 / 9;

  display: block;
  flex: 0 0 auto;

  color: var(--text);
  text-decoration: none;

  border-radius: 22px;
  background: var(--card-bg);
}

.latest-project-card img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;

  transition: transform var(--hover-duration) var(--hover-ease);
}

.latest-project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    180deg,
    rgba(var(--black-rgb), 0.08) 0%,
    rgba(var(--black-rgb), 0.26) 45%,
    rgba(var(--black-rgb), 0.78) 100%
  );
}

.latest-project-card:hover img {
  transform: scale(var(--hover-media-scale));
}

.latest-project-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
}

.latest-project-content h3 {
  margin: 0 0 6px;

  color: var(--text);
  font-size: clamp(20px, 1.45vw, 28px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.latest-project-content p {
  margin: 0;

  color: rgba(var(--white-rgb), 0.68);
  font-size: 13px;
  line-height: 1.2;
}

.latest-project-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;

  width: 46px;
  height: 36px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transform: translate(-50%, -50%);

  background: var(--text);
  color: var(--accent);
  border-radius: 10px;

  font-size: 15px;
  line-height: 1;

  transition: transform var(--hover-duration) var(--hover-ease);
}

.latest-project-card:hover .latest-project-play {
  transform: translate(-50%, -50%) scale(var(--hover-button-scale));
}

/* Latest Projects intro animation */

.js .latest-projects {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.js.is-loaded .latest-projects.is-visible {
  opacity: 1;
  transform: translateY(0);
}


                                                     /* Collaborations */

.collaborations {
  padding-top: clamp(90px, 8vw, 140px);
  text-align: center;
}

.collaborations h2,
.recommendation h2,
.experience h2 {
  color: var(--text);
  font-size: clamp(30px, 2.5vw, 44px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: center;
}

.recommendation-heading {
  text-align: center;
}

.recommendation-heading p {
  max-width: 620px;
  margin: 14px auto 0;

  color: var(--muted);
  font-size: clamp(14px, 0.9vw, 17px);
  line-height: 1.4;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;

  width: min(100%, var(--page-width));
  margin: 34px auto 0;
  gap: clamp(18px, 2vw, 34px);
}

.brand-row img {
  max-height: 32px;
  width: auto;
  opacity: 0.95;
  filter: grayscale(1);
}

.map-wrap {
  position: relative;
  width: min(155vw, 2000px);
  margin: clamp(60px, 6vw, 90px) 50% 0;
  transform: translateX(-50%);
}

.world-map {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.1;
}

.map-pin {
  position: absolute;
  color: var(--text);
  font-size: clamp(13px, 0.85vw, 16px);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 22px;

  width: 1px;
  height: 58px;

  background: rgba(var(--white-rgb), 0.75);
}

.pin-usa {
  left: 21%;
  top: 33%;
}

.pin-canada {
  left: 29%;
  top: 18%;
}

.pin-switzerland {
  left: 51%;
  top: 19%;
}

.pin-uae {
  left: 63.5%;
  top: 32%;
}

.pin-iran {
  left: 67.5%;
  top: 25%;
}

.everywhere {
  margin-top: -30px;
  color: var(--muted);
}

.everywhere img {
  width: 32px;
  height: auto;
  margin-bottom: 8px;
}

.everywhere p {
  font-size: clamp(14px, 1vw, 18px);
  letter-spacing: 0.5px;
}

                                                     /* Recommendation */

.recommendation {
  padding-top: clamp(100px, 9vw, 160px);
}

.recommendation-heading {
  text-align: center;
}

.recommendation-heading p {
  max-width: 620px;
  margin: 14px auto 0;

  color: var(--muted);
  font-size: clamp(14px, 0.9vw, 17px);
  line-height: 1.4;
}

.recommendation-cards {
  margin-top: 58px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.recommendation-card {
  position: relative;
  overflow: hidden;

  min-height: 350px;
  padding: 34px;

  border-radius: 30px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);

  transition:
    transform var(--hover-duration) var(--hover-ease),
    background var(--hover-duration) var(--hover-ease);
}

.recommendation-card:hover {
  transform: scale(var(--hover-scale));
  background: var(--card-bg-hover);
}

.recommendation-quote-mark {
  position: absolute;
  right: 28px;
  top: 18px;

  color: rgba(var(--white-rgb), 0.08);
  font-size: 150px;
  line-height: 1;
  font-weight: 700;

  pointer-events: none;
}

.recommendation-person {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 20px;

  margin-bottom: 28px;
}

.recommendation-photo {
  width: 118px;
  height: 118px;
  flex: 0 0 118px;

  overflow: hidden;
  border-radius: 24px;
  background: var(--surface-media);
}

.recommendation-photo img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
  filter: grayscale(1);

  transition: transform var(--hover-duration) var(--hover-ease);
}

.recommendation-card:hover .recommendation-photo img {
  transform: scale(var(--hover-media-scale));
}

.recommendation-person h3 {
  color: var(--text);
  font-size: clamp(22px, 1.6vw, 30px);
  line-height: 1;
  font-weight: 700;
}

.recommendation-person span {
  display: block;
  margin-top: 8px;

  color: var(--muted);
  font-size: clamp(13px, 0.85vw, 16px);
  line-height: 1.2;
}

.recommendation-card > p {
  position: relative;
  z-index: 2;

  color: var(--text);
  font-size: clamp(14px, 0.92vw, 17px);
  line-height: 1.45;
}




/* Experience */

.experience-section {
  padding: clamp(110px, 9vw, 160px) 0 0;
}

/* Experience Heading */

.experience-heading {
  max-width: 980px;
  margin: 0 auto 58px;
  text-align: center;
}

.experience-heading span {
  display: block;
  margin-bottom: 14px;

  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.18em;
}

.experience-heading h2 {
  color: var(--text);
  font-size: clamp(34px, 2.7vw, 52px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -1.1px;
  white-space: nowrap;
}

.experience-heading p {
  max-width: 680px;
  margin: 16px auto 0;

  color: var(--muted);
  font-size: clamp(14px, 0.95vw, 18px);
  line-height: 1.45;
}

/* Experience Grid */

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

/* Experience Card Base */

.experience-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  min-height: 310px;
  padding: 30px;

  display: flex;
  flex-direction: column;

  background: var(--card-bg);
  border: 1px solid var(--card-border, rgba(var(--white-rgb), 0.045));
  border-radius: 30px;

  transition:
    transform var(--hover-duration) var(--hover-ease),
    background var(--hover-duration) var(--hover-ease),
    border-color var(--hover-duration) var(--hover-ease);
}

.experience-card:hover {
  transform: scale(var(--hover-scale));
  background: var(--card-bg-hover, var(--card-bg));
  border-color: var(--card-border-hover, rgba(var(--white-rgb), 0.1));
}

.experience-card > * {
  position: relative;
  z-index: 2;
}

.experience-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.experience-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(var(--white-rgb), 0.035);
  border: 1px solid rgba(var(--white-rgb), 0.055);
  border-radius: 18px;
}

.experience-logo img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}

.experience-year {
  padding: 8px 10px;

  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.12em;

  border: 1px solid rgba(var(--white-rgb), 0.08);
  border-radius: 999px;
}

.experience-card h3 {
  margin: 0;

  color: var(--text);
  font-size: clamp(26px, 2vw, 38px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.6px;
}

.experience-card h4 {
  margin: 12px 0 0;

  color: var(--muted);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.25;
  font-weight: 400;
}

.experience-card p {
  max-width: 540px;
  margin: 20px 0 0;

  color: var(--muted);
  font-size: clamp(14px, 0.92vw, 16px);
  line-height: 1.55;
}

.experience-card small {
  margin-top: auto;
  padding-top: 28px;

  color: var(--text);
  font-size: 14px;
  line-height: 1;
}

/* Experience Card Background System */

.experience-card--with-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image: var(--experience-card-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: var(--experience-card-bg-size, 76%);

  opacity: var(--experience-card-bg-opacity, 0.03);
  filter: brightness(0) invert(1) blur(2px);
  pointer-events: none;
}

/* Experience Background Images */

.experience-card--finder {
  --experience-card-bg-image: url("assets/images/finder-map.png");
}

.experience-card--harmonea {
  --experience-card-bg-image: url("assets/images/harmonea-map.png");
}

.experience-card--wisdomise {
  --experience-card-bg-image: url("assets/images/switzerland-map.png");
}

.experience-card--nikandish {
  --experience-card-bg-image: url("assets/images/iran-map.png");
}

.experience-card--eseminar {
  --experience-card-bg-image: url("assets/images/iran-map.png");
}

.experience-card--orchid {
  --experience-card-bg-image: url("assets/images/iran-map.png");
}




/* Home Contact Strip */

.home-contact-strip {
  width: min(100%, var(--page-width));
  margin: clamp(90px, 8vw, 130px) auto 0;
  padding: clamp(28px, 3vw, 42px);

  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);

  background: var(--card-bg);
  border: 1px solid var(--card-border, rgba(var(--white-rgb), 0.045));
  border-radius: 30px;
}

.home-contact-strip-text span {
  display: block;
  margin-bottom: 12px;

  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.18em;
}

.home-contact-strip-text h2 {
  max-width: 520px;

  color: var(--text);
  font-size: clamp(34px, 3vw, 58px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -1.1px;
}

.home-contact-strip-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.home-contact-strip-links a {
  min-height: 92px;
  padding: 18px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;

  color: var(--text);
  text-decoration: none;

  background: rgba(var(--white-rgb), 0.035);
  border: 1px solid rgba(var(--white-rgb), 0.055);
  border-radius: 20px;

  transition:
    transform var(--hover-duration) var(--hover-ease),
    background var(--hover-duration) var(--hover-ease),
    border-color var(--hover-duration) var(--hover-ease);
}

.home-contact-strip-links a:hover {
  transform: scale(var(--hover-scale));
  background: rgba(var(--white-rgb), 0.06);
  border-color: rgba(var(--white-rgb), 0.1);
}

.home-contact-strip-links span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
}

.home-contact-strip-links strong {
  color: var(--text);
  font-size: clamp(13px, 0.9vw, 16px);
  line-height: 1.15;
  font-weight: 700;
  word-break: break-word;
}



                                                          /* Footer */

.site-footer {
  width: min(100%, var(--page-width));
  margin: clamp(90px, 8vw, 140px) auto 0;
  padding-bottom: 56px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;

  padding-top: 28px;
  border-top: 1px solid rgba(var(--white-rgb), 0.16);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: var(--text);
  text-decoration: none;
  justify-self: start;
}

.footer-brand img {
  width: 34px;
  height: auto;
}

.footer-brand span {
  font-size: 13px;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2vw, 36px);
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-nav a.is-active {
  color: var(--text);
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  justify-self: end;
}

.footer-socials a {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  opacity: 0.9;

  transition:
    opacity var(--hover-duration) var(--hover-ease),
    transform var(--hover-duration) var(--hover-ease);
}

.footer-socials a:hover {
  opacity: 1;
  transform: scale(var(--hover-button-scale));
}

.footer-socials img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;

  filter: brightness(0) invert(1);
}



/* Unified hover behavior */

.ai-project-card,
.recommendation-card,
.roadmap-card,
.contact-link {
  transform-origin: center;
  transition:
    transform var(--hover-duration) var(--hover-ease),
    background var(--hover-duration) var(--hover-ease);
}

.latest-project-card,
.motion-video-card,
.ai-video-card,
.ai-gallery-box,
.gallery-photo,
.recommendation-photo {
  transform-origin: center;
}

.latest-project-card img,
.motion-video-card img,
.ai-video-card img,
.ai-gallery-box img,
.gallery-photo img,
.recommendation-photo img {
  transition: transform var(--hover-duration) var(--hover-ease);
}

.latest-project-card:hover img,
.motion-video-card:hover img,
.ai-video-card:hover img,
.ai-gallery-box:hover img,
.gallery-photo:hover img,
.recommendation-card:hover .recommendation-photo img,
html.js.is-loaded .ai-project-card:not(.is-open):hover .ai-project-preview img {
  transform: scale(var(--hover-media-scale));
}

.recommendation-card:hover,
.roadmap-card:hover,
.contact-link:hover,
html.js.is-loaded .ai-project-card:not(.is-open):hover {
  transform: scale(var(--hover-scale));
}

.latest-project-card:hover .latest-project-play,
.motion-video-card:hover .motion-play-button,
.video-modal-close:hover,
.ai-project-close:hover,
.social-links a:hover,
.footer-socials a:hover {
  transform: scale(var(--hover-button-scale));
}

.latest-project-card:hover .latest-project-play,
.motion-video-card:hover .motion-play-button {
  transform: translate(-50%, -50%) scale(var(--hover-button-scale));
}

/* Graphic Design Page */

.graphic-page-intro {
  max-width: 860px;
  margin: 0 auto;
  padding-top: 120px;
  text-align: center;
}

.graphic-eyebrow {
  display: block;
  margin-bottom: 14px;

  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.22em;
}

.graphic-page-intro h1 {
  color: var(--text);
  font-size: clamp(42px, 4vw, 76px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -1.6px;
}

.graphic-page-intro p {
  max-width: 760px;
  margin: 18px auto 0;

  color: var(--muted);
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.45;
}

.graphic-archive {
  width: min(100%, 1440px);
  margin: 96px auto 0;
}

.graphic-category-card {
  position: relative;
  overflow: hidden;

  width: 100%;
  min-height: 360px;
  padding: 0;

  display: block;

  border: 0;
  border-radius: 30px;
  background: var(--card-bg);
  color: var(--text);
  cursor: pointer;

  font-family: inherit;
  text-align: left;

  transition:
    transform var(--hover-duration) var(--hover-ease),
    background var(--hover-duration) var(--hover-ease);
}

.graphic-category-card:hover {
  transform: scale(var(--hover-scale));
  background: var(--card-bg-hover);
}

.graphic-category-card img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;

  transition: transform var(--hover-duration) var(--hover-ease);
}

.graphic-category-card:hover img {
  transform: scale(var(--hover-media-scale));
}

.graphic-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    180deg,
    rgba(var(--black-rgb), 0.08) 0%,
    rgba(var(--black-rgb), 0.36) 45%,
    rgba(var(--black-rgb), 0.82) 100%
  );
}

.graphic-category-card-featured {
  min-height: 520px;
  margin-bottom: 26px;
}

.graphic-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.graphic-category-content {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 30px;
  z-index: 2;
}

.graphic-category-content span {
  display: block;

  color: var(--muted);
  font-size: clamp(13px, 0.8vw, 15px);
  line-height: 1.2;
}

.graphic-category-content h2 {
  margin-top: 8px;

  color: var(--text);
  font-size: clamp(38px, 3.4vw, 68px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -1px;
}

.graphic-category-content h3 {
  margin-top: 8px;

  color: var(--text);
  font-size: clamp(26px, 2vw, 38px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.6px;
}

.graphic-category-content p {
  max-width: 520px;
  margin-top: 12px;

  color: var(--muted);
  font-size: clamp(14px, 0.9vw, 16px);
  line-height: 1.35;
}

/* Graphic Design intro animation */

html.js .graphic-page-intro .graphic-eyebrow,
html.js .graphic-page-intro h1,
html.js .graphic-page-intro p,
html.js .graphic-category-card {
  opacity: 0;
  transform: translateY(26px);
}

html.js.is-loaded .graphic-page-intro .graphic-eyebrow,
html.js.is-loaded .graphic-page-intro h1,
html.js.is-loaded .graphic-page-intro p,
html.js.is-loaded .graphic-category-card {
  opacity: 1;
  transform: translateY(0);
}

.graphic-page-intro .graphic-eyebrow {
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.graphic-page-intro h1 {
  transition:
    opacity 0.7s ease 0.08s,
    transform 0.7s ease 0.08s;
}

.graphic-page-intro p {
  transition:
    opacity 0.7s ease 0.16s,
    transform 0.7s ease 0.16s;
}

.graphic-category-card {
  transition:
    opacity 0.75s ease,
    transform var(--hover-duration) var(--hover-ease),
    background var(--hover-duration) var(--hover-ease);
}

html.js .graphic-category-card-featured {
  transition-delay: 0.22s;
}

html.js .graphic-category-grid .graphic-category-card:nth-child(1) {
  transition-delay: 0.32s;
}

html.js .graphic-category-grid .graphic-category-card:nth-child(2) {
  transition-delay: 0.42s;
}

html.js .graphic-category-grid .graphic-category-card:nth-child(3) {
  transition-delay: 0.52s;
}

html.js .graphic-category-grid .graphic-category-card:nth-child(4) {
  transition-delay: 0.62s;
}


/* Graphic Design Modal */

.graphic-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 32px;

  background: rgba(var(--black-rgb), 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.graphic-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.graphic-modal-content {
  width: min(100%, 1180px);
  max-height: 86vh;

  overflow-y: auto;
  overflow-x: hidden;

  padding: clamp(26px, 3vw, 44px);

  background: var(--modal-bg);
  border: 1px solid var(--card-border);
  border-radius: 30px;

  transform: scale(0.96);
  transition: transform var(--hover-duration) var(--hover-ease);

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.graphic-modal-content::-webkit-scrollbar {
  display: none;
}

.graphic-modal.is-open .graphic-modal-content {
  transform: scale(1);
}

.graphic-modal-header {
  margin-bottom: 26px;
  text-align: center;
}

.graphic-modal-category {
  display: block;

  color: var(--muted);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.graphic-modal-title {
  margin-top: 12px;

  color: var(--text);
  font-size: clamp(32px, 3vw, 56px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.8px;
}

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

.graphic-modal-image {
  overflow: hidden;
  border-radius: 20px;
  background: var(--surface-media);
}

.graphic-modal-image img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;
}

.graphic-modal-close {
  position: fixed;
  top: 28px;
  right: 32px;
  z-index: 3001;

  width: 44px;
  height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 50%;
  background: rgba(var(--white-rgb), 0.1);
  color: var(--text);

  font-size: 34px;
  line-height: 1;
  cursor: pointer;

  transition:
    transform var(--hover-duration) var(--hover-ease),
    background var(--hover-duration) var(--hover-ease);
}

.graphic-modal-close:hover {
  transform: scale(var(--hover-button-scale));
  background: rgba(var(--white-rgb), 0.16);
}

/* Graphic Design Modal */

.graphic-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 32px;

  background: rgba(var(--black-rgb), 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.graphic-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.graphic-modal-content {
  width: min(100%, 1180px);
  max-height: 86vh;

  overflow-y: auto;
  overflow-x: hidden;

  padding: clamp(26px, 3vw, 44px);

  background: var(--modal-bg);
  border: 1px solid var(--card-border);
  border-radius: 30px;

  transform: scale(0.96);
  transition: transform 0.25s ease;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.graphic-modal-content::-webkit-scrollbar {
  display: none;
}

.graphic-modal.is-open .graphic-modal-content {
  transform: scale(1);
}

.graphic-modal-header {
  margin-bottom: 26px;
  text-align: center;
}

.graphic-modal-category {
  display: block;

  color: var(--muted);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.graphic-modal-title {
  margin-top: 12px;

  color: var(--text);
  font-size: clamp(32px, 3vw, 56px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.8px;
}

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

.graphic-modal-image {
  overflow: hidden;
  border-radius: 20px;
  background: var(--surface-media);
}

.graphic-modal-image img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;
}

.graphic-modal-close {
  position: fixed;
  top: 28px;
  right: 32px;
  z-index: 3001;

  width: 44px;
  height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 50%;
  background: rgba(var(--white-rgb), 0.1);
  color: var(--text);

  font-size: 34px;
  line-height: 1;
  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.graphic-modal-close:hover {
  transform: scale(1.08);
  background: rgba(var(--white-rgb), 0.16);
}

                                                          /* Mobile */

@media (max-width: 768px) {
  .page {
    width: 100%;
    padding: 28px 18px 0;
  }

  .site-header {
    top: 16px;
    width: calc(100% - 28px);
    height: 58px;
    padding: 0 16px;
    border-radius: 16px;
  }

  .header-logo {
    width: 26px;
  }

  .menu-toggle {
  display: inline-flex;
  width: 36px;
  height: 36px;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;

  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  display: block;

  background: var(--text);
  border-radius: 999px;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.site-header.is-menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.site-header .header-nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 0;

  width: min(220px, 72vw);
  padding: 18px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;

  background: transparent;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(var(--black-rgb), 0.35);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);

  z-index: 20;
  overflow: hidden;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.site-header .header-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background: var(--card-bg);
  backdrop-filter: blur(22px) saturate(120%);
  -webkit-backdrop-filter: blur(22px) saturate(120%);

  border-radius: inherit;
}

.site-header.is-menu-open .header-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header .header-nav a {
  position: relative;
  z-index: 1;

  width: 100%;
  color: var(--text);
  font-size: 14px;
  text-align: left;
  white-space: nowrap;
}

.inner-page-placeholder {
  min-height: calc(100svh - 120px);
  padding-top: 140px;
}

.inner-page-placeholder h1 {
  font-size: clamp(34px, 10vw, 52px);
  letter-spacing: -1px;
}

.inner-page-placeholder p {
  font-size: 14px;
}

  .hero {
    padding-top: 96px;
  }

  .hero-title h1 {
    font-size: clamp(28px, 9vw, 48px);
    line-height: 0.95;
    letter-spacing: -1px;
  }

  .hero-title p {
    margin-top: 6px;
    font-size: clamp(14px, 4.2vw, 16px);
    line-height: 1.2;
  }

  .hero-content {
    height: auto;
    margin-top: 38px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .hero-image-wrap {
  order: 1;
}

.hero-image,
.hero-circle {
  transform: none;
  transition: none;
}

.hero-quote {
  order: 2;
  text-align: center;
}

.hero-experience {
  order: 3;
  text-align: center;
}

  .hero-image-wrap {
    width: min(88vw, 430px);
    height: min(88vw, 430px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 28px;
    background: var(--card-bg);

    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .hero-circle {
    display: none;
  }

  .hero-image {
    width: 100%;
    max-width: none;
    height: auto;
    transform: translateY(0);
  }
  

  .hero-quote {
    position: static;
    width: min(100%, 330px);
    margin-top: 48px;
    text-align: center;
  }

  .hero-quote-right {
  position: static;
  width: min(100%, 330px);
  margin-top: 34px;
  text-align: center;
  order: 3;
}

.hero-quote-right .quote-mark {
  margin: 0 auto;
}

  .quote-mark {
    width: 22px;
    margin: 0 auto;
  }

  .hero-quote p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.35;
  }

  .hero-experience {
    position: static;
    width: 100%;
    margin-top: 34px;
    text-align: center;
  }

  .stars {
    width: 130px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-experience strong {
    font-size: 34px;
  }

  .experience-count {
  display: inline;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

  .hero-experience .experience-label {
  font-size: 13px;
}

.latest-projects {
  width: 100%;
  margin-top: 50px;
  padding: 30px 0 30px;
  border-radius: 26px;
}

.latest-projects-header {
  margin-bottom: 22px;
  padding: 0 22px;
}

.latest-projects-header h2 {
  font-size: 30px;
}

.latest-projects-header p {
  margin-top: 12px;
  font-size: 14px;
}

.latest-projects-track {
  gap: 14px;
  padding: 0 14px;
  animation-duration: 34s;
}

.latest-project-card {
  width: 260px;
  border-radius: 20px;
}

.latest-project-content {
  left: 16px;
  right: 16px;
  bottom: 15px;
}

.latest-project-content h3 {
  font-size: 22px;
}

.latest-project-content p {
  font-size: 12px;
}

.latest-project-play {
  width: 42px;
  height: 34px;
}

  .about-card {
    grid-template-columns: 1fr;
    margin-top: 40px;
    padding: 28px;
    border-radius: 18px;
  }

  .about-text {
    text-align: center;
  }

  .about-text h2,
  .about-text p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about-text p {
    max-width: 100%;
  }

  .social-links {
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
  }

  .social-links a,
  .footer-socials a {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }

  .about-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "logo logo"
      "tall small"
      "wide wide";
    gap: 12px;
    max-width: 100%;
    justify-self: stretch;
  }

 .gallery-photo-logo {
  min-height: 190px;
}

  .gallery-photo-tall,
  .gallery-photo-small {
    min-height: 180px;
  }

  .gallery-photo-wide {
    min-height: 160px;
  }

  .collaborations {
    padding-top: 70px;
  }

  .brand-row {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 24px;
  }

  .brand-row img {
    max-height: 20px;
  }

  .map-wrap {
    width: min(180vw, 900px);
    margin-top: 50px;
  }

  .map-pin {
    font-size: 10px;
  }

  .map-pin::after {
    height: 38px;
    top: 18px;
  }

  .everywhere {
    margin-top: 10px;
  }

  .recommendation {
  padding-top: 90px;
}

.recommendation-heading p {
  max-width: 320px;
  font-size: 14px;
}

.recommendation-cards {
  margin-top: 38px;
  grid-template-columns: 1fr;
  gap: 18px;
}

.recommendation-card {
  min-height: auto;
  padding: 26px 22px;
  border-radius: 24px;
  text-align: center;
}

.recommendation-quote-mark {
  right: 18px;
  top: 10px;
  font-size: 100px;
}

.recommendation-person {
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}

.recommendation-photo {
  width: 110px;
  height: 110px;
  flex-basis: 110px;
  border-radius: 22px;
}

.recommendation-person h3 {
  font-size: 22px;
}

.recommendation-person span {
  font-size: 13px;
}

.recommendation-card > p {
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .experience-section {
    padding: 110px 0 80px;
  }

  .section-heading {
    margin-bottom: 56px;
  }


.experience-section {
  padding: 90px 0 0;
}

.experience-heading {
  margin-bottom: 38px;
}

.experience-heading h2 {
  font-size: 34px;
  letter-spacing: -0.8px;
  white-space: normal;
}

.experience-heading p {
  max-width: 330px;
  font-size: 14px;
}

.experience-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.experience-card {
  min-height: auto;
  padding: 24px 22px;
  border-radius: 24px;
}

.experience-card-top {
  margin-bottom: 28px;
}

.experience-logo {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
  border-radius: 16px;
}

.experience-logo img {
  width: 30px;
  height: 30px;
}

.experience-year {
  font-size: 11px;
}

.experience-card h3 {
  font-size: 26px;
}

.experience-card h4 {
  font-size: 15px;
}

.experience-card p {
  font-size: 14px;
}

.experience-card small {
  padding-top: 24px;
  font-size: 13px;
}


}


.home-contact-strip {
  width: 100%;
  margin-top: 80px;
  padding: 26px 20px;

  grid-template-columns: 1fr;
  gap: 28px;

  text-align: center;
  border-radius: 24px;
}

.home-contact-strip-text h2 {
  max-width: 100%;
  font-size: 38px;
  letter-spacing: -0.8px;
}

.home-contact-strip-links {
  grid-template-columns: 1fr;
  gap: 12px;
}

.home-contact-strip-links a {
  min-height: auto;
  padding: 18px;
}

.home-contact-strip-links strong {
  font-size: 15px;
}


  .site-footer {
    width: 100%;
    margin-top: 80px;
    padding-bottom: 36px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .footer-brand {
    justify-self: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .footer-socials {
    justify-content: center;
    justify-self: center;
    gap: 12px;
  }

  .footer-socials a {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

  @media (prefers-reduced-motion: reduce) {
  .hero-title,
  .hero-quote,
  .hero-image-wrap,
  .hero-experience,
  .hero-image,
  .hero-circle {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

  .ai-page-intro {
  padding-top: 100px;
}

.ai-page-intro h1 {
  font-size: 32px;
}

.ai-page-intro p {
  font-size: 14px;
}

.ai-projects-list {
  margin-top: 70px;
  gap: 22px;
}

.ai-project-preview {
  min-height: 170px;
}

.ai-project-preview-content {
  min-height: 170px;
  padding: 28px 26px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.ai-project-preview-content h2 {
  font-size: 42px;
  text-align: center;
}

.ai-project-preview-content p {
  font-size: 16px;
  text-align: center;
}

.ai-project-card.is-open {
  padding: 28px;
  border-radius: 24px;
}

.ai-project-detail-top {
  grid-template-columns: 1fr;
  gap: 32px;
}

.ai-project-info {
  text-align: center;
}

.ai-project-info h2 {
  font-size: 54px;
}

.ai-project-info h3 {
  font-size: 22px;
}

.ai-project-info p {
  max-width: 100%;
  font-size: 14px;
}

.ai-social-pill {
  margin-left: auto;
  margin-right: auto;
}

.ai-project-gallery {
  width: 100%;

  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 12px;
}

.ai-gallery-box {
  border-radius: 14px;
}

.ai-gallery-box-tall {
  grid-column: 2;
  grid-row: 1 / 3;
}

.ai-gallery-box-top {
  grid-column: 1;
  grid-row: 1;
}

.ai-gallery-box-bottom {
  grid-column: 1;
  grid-row: 2;
}

.ai-project-gallery img {
  border-radius: 14px;
}

.ai-final-productions {
  margin-top: 34px;
}

.ai-final-productions h3 {
  text-align: center;
  font-size: 26px;
}

.ai-video-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.ai-video-card {
  aspect-ratio: 1 / 1.08;
}

.ai-video-card-wide {
  aspect-ratio: 1 / 1.08;
}

.video-modal {
  padding: 18px;
}

.video-modal-content {
  width: 100%;
  border-radius: 18px;
}

.video-modal-close {
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  font-size: 28px;
}

.ai-project-close {
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  font-size: 26px;
}

.motion-page-intro {
  padding-top: 100px;
}

.motion-page-intro h1 {
  font-size: 32px;
}

.motion-page-intro p {
  font-size: 14px;
}

.motion-showcase {
  margin-top: 70px;
}

.motion-featured-card {
  margin-bottom: 22px;
}

.motion-video-card-featured {
  min-height: 300px;
  border-radius: 24px;
}

.motion-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}

.motion-grid .motion-video-card {
  aspect-ratio: 1 / 1.08;
  border-radius: 24px;
}

.motion-card-content {
  left: 24px;
  right: 24px;
  bottom: 24px;
  text-align: left;
}

.motion-card-content h2 {
  font-size: 30px;
}

.motion-card-content h3 {
  font-size: 24px;
}

.motion-play-button {
  width: 48px;
  height: 38px;
}


.graphic-page-intro {
  padding-top: 100px;
}

.graphic-eyebrow {
  margin-bottom: 12px;
}

.graphic-page-intro h1 {
  font-size: 40px;
  letter-spacing: -1px;
}

.graphic-page-intro p {
  max-width: 330px;
  font-size: 14px;
}

.graphic-archive {
  margin-top: 70px;
}

.graphic-category-card,
.graphic-category-card-featured {
  min-height: 320px;
  border-radius: 24px;
}

.graphic-category-card-featured {
  margin-bottom: 18px;
}

.graphic-category-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.graphic-category-content {
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.graphic-category-content h2 {
  font-size: 38px;
}

.graphic-category-content h3 {
  font-size: 28px;
}

.graphic-category-content p {
  font-size: 14px;
}

.graphic-modal {
  padding: 18px;
}

.graphic-modal-content {
  width: 100%;
  max-height: 84vh;
  padding: 24px 18px;
  border-radius: 24px;
}

.graphic-modal-header {
  margin-bottom: 22px;
}

.graphic-modal-title {
  font-size: 30px;
}

.graphic-modal-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

.graphic-modal-image {
  border-radius: 16px;
}

.graphic-modal-close {
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  font-size: 28px;
}


.contact-page-intro {
  padding-top: 100px;
}

.contact-page-intro h1 {
  font-size: 32px;
}

.contact-page-intro p {
  font-size: 14px;
}



.contact-page-intro {
  padding-top: 100px;
}

.contact-eyebrow {
  margin-bottom: 12px;
}

.contact-page-intro h1 {
  font-size: 40px;
  letter-spacing: -1px;
}

.contact-page-intro p {
  max-width: 330px;
  font-size: 14px;
}

.contact-hero-panel {
  margin-top: 70px;
  padding: 26px 20px;

  grid-template-columns: 1fr;
  gap: 34px;

  border-radius: 24px;
}

.contact-hero-panel::before {
  left: -60%;
  top: -24%;
  width: 420px;
  height: 420px;
}

.contact-hero-left {
  text-align: center;
  align-items: center;
}

.contact-hero-left h2 {
  font-size: 42px;
  letter-spacing: -1px;
}

.contact-hero-left p {
  max-width: 100%;
  font-size: 14px;
}

.contact-quick-actions {
  justify-content: center;
  gap: 10px;
}

.contact-quick-actions a {
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
}

.contact-method-card {
  min-height: auto;
  padding: 18px;

  grid-template-columns: 1fr;
  gap: 8px;

  text-align: center;
}

.contact-method-card:hover {
  transform: none;
}

.contact-method-card span,
.contact-method-card em,
.contact-copy {
  font-size: 12px;
}

.contact-method-card a {
  font-size: 15px;
}




}
