:root {
  --bg: #f3eee2;
  --paper: #fbf8f1;
  --paper-2: #f2e9d9;

  --olive: #556048;
  --olive-dark: #23291f;

  /* მთავარი ტექსტი უფრო მუქი */
  --text: #23291f;

  /* აქ არის ყველაზე დიდი განსხვავება */
  --muted: rgba(35, 41, 31, 0.82);

  --line: rgba(35, 41, 31, 0.12);
  --line-dark: rgba(251, 247, 238, 0.18);

  --sage: #a4ad8f;
  --sage-soft: #d6d8c3;

  --ink: var(--olive-dark);
  --ink-2: #32392d;
  --white: var(--paper);
  --moss: var(--olive-dark);
  --moss-2: var(--olive);

  --serif: "Cormorant Garamond", "Noto Serif Georgian", serif;
  --geo: "FiraGO", "Noto Sans Georgian", sans-serif;
  --sans: "Manrope", "FiraGO", "Noto Sans Georgian", sans-serif;

  --container: 1180px;
  --radius: 28px;

  --shadow-soft: 0 26px 70px rgba(35, 41, 31, 0.12);
  --shadow-strong: 0 44px 130px rgba(35, 41, 31, 0.18);

  --ease: cubic-bezier(.22,1,.36,1);
  --ease-soft: cubic-bezier(.22,1,.36,1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(217, 185, 167, 0.26), transparent 28rem),
    radial-gradient(circle at 90% 30%, rgba(52, 61, 45, 0.12), transparent 30rem),
    var(--paper);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

h1,
h2,
h3,
h4,
p,
ul {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 260ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.075;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.14) 0 1px, transparent 1px);
  background-size: 4px 4px, 6px 6px;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 40;
  width: 360px;
  height: 360px;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(217, 185, 167, 0.18), transparent 62%);
  transition: opacity 300ms ease;
}

/* TOPBAR */

.topbar {
  position: fixed;
  top: 18px;
  left: clamp(16px, 5vw, 72px);
  right: clamp(16px, 5vw, 72px);
  z-index: 80;
  min-height: 58px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 999px;
  background: rgba(18, 18, 16, 0.46);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition:
    top 420ms var(--ease),
    background 420ms var(--ease),
    box-shadow 420ms var(--ease),
    border-color 420ms var(--ease);
}

.topbar.is-scrolled {
  top: 12px;
  background: rgba(18, 18, 16, 0.8);
  border-color: rgba(255, 253, 248, 0.24);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.18);
}

.brand {
  font-family: var(--serif);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1;
}

.nav {
  display: flex;
  gap: clamp(16px, 2.4vw, 34px);
  align-items: center;
}

.nav a {
  position: relative;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.76;
  transition: opacity 260ms ease, color 260ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 460ms var(--ease);
}

.nav a:hover,
.nav a.is-active {
  opacity: 1;
  color: var(--champagne);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 999px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 15px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 320ms var(--ease);
}

body.menu-open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-content: center;
  gap: 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 15%, rgba(217, 185, 167, 0.16), transparent 34%),
    rgba(17, 17, 15, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.mobile-nav a {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 11vw, 4rem);
  text-align: center;
  line-height: 1;
}

body.menu-open .mobile-nav {
  opacity: 1;
  pointer-events: auto;
}

/* HERO */

.hero {
  min-height: 96svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 134px 6vw 72px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(0.82) contrast(1.08) brightness(0.74);
  animation: heroKenBurns 8s var(--ease) both;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 12, 10, 0.92), rgba(12, 12, 10, 0.58) 48%, rgba(12, 12, 10, 0.12)),
    linear-gradient(0deg, rgba(12, 12, 10, 0.8), transparent 52%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(0deg, var(--paper), rgba(245, 239, 228, 0));
}

.hero-orbit {
  position: absolute;
  right: 8vw;
  top: 20vh;
  width: clamp(220px, 28vw, 480px);
  height: clamp(220px, 28vw, 480px);
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: 999px;
  opacity: 0.72;
  animation: slowSpin 26s linear infinite;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  border: 1px solid rgba(217, 185, 167, 0.14);
}

.hero-orbit::before {
  inset: 13%;
}

.hero-orbit::after {
  inset: 28%;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1040px, 100%);
  animation: contentRise 1.2s var(--ease) both;
}

.kicker {
  margin-bottom: 18px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.72);
}

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(3rem, 8.2vw, 7.4rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(1rem, 1.46vw, 1.22rem);
  line-height: 1.86;
  color: rgba(255, 253, 248, 0.9);
}

.hero-note {
  max-width: 760px;
  margin: 0;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.75;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-link,
.ghost-link,
.live-link,
.submit-btn {
  position: relative;
  isolation: isolate;
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 360ms var(--ease),
    background 360ms ease,
    color 360ms ease,
    border-color 360ms ease;
}

.primary-link {
  color: var(--ink);
  border: 1px solid rgba(255, 253, 248, 0.72);
  background: var(--white);
}

.ghost-link {
  color: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.24);
  background: rgba(255, 253, 248, 0.08);
  backdrop-filter: blur(12px);
}

.primary-link::before,
.ghost-link::before,
.live-link::before,
.submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.38), transparent 66% 100%);
  transform: translateX(-130%);
  transition: transform 680ms var(--ease);
}

.primary-link:hover,
.ghost-link:hover,
.live-link:hover,
.submit-btn:hover {
  transform: translateY(-3px);
}

.primary-link:hover::before,
.ghost-link:hover::before,
.live-link:hover::before,
.submit-btn:hover::before {
  transform: translateX(130%);
}

.scroll-cue {
  position: absolute;
  right: 6vw;
  bottom: 72px;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 9px;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.62);
}

.scroll-cue span {
  width: 1px;
  height: 58px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.22);
}

.scroll-cue span::before {
  content: "";
  display: block;
  width: 1px;
  height: 22px;
  background: var(--champagne);
  animation: scrollLine 1.8s ease-in-out infinite;
}

/* LAYOUT */

.section {
  position: relative;
  padding: clamp(84px, 10vw, 156px) 6vw;
  overflow: clip;
}

.section.white {
  background:
    radial-gradient(circle at 90% 0%, rgba(217, 185, 167, 0.18), transparent 32rem),
    var(--white);
}

.section.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 185, 167, 0.12), transparent 30rem),
    radial-gradient(circle at 86% 80%, rgba(101, 113, 90, 0.18), transparent 30rem),
    var(--ink);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(80px, 0.2fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: start;
  margin-bottom: clamp(42px, 6.8vw, 88px);
}

.number {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1;
  opacity: 0.72;
}

.section-title {
  max-width: 880px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.85vw, 3.95rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.026em;
}

.body-large {
  max-width: 850px;
  margin-top: 24px;
  margin-bottom: 0;
  font-size: clamp(0.98rem, 1.34vw, 1.13rem);
  line-height: 1.92;
  color: rgba(23, 23, 19, 0.74);
}

.dark .body-large {
  color: rgba(255, 253, 248, 0.78);
}

/* PANELS */

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

.text-panel {
  position: relative;
  min-height: 280px;
  padding: clamp(26px, 3.4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.86), rgba(255, 253, 248, 0.56));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  overflow: hidden;
  transition:
    transform 520ms var(--ease),
    box-shadow 520ms var(--ease),
    border-color 520ms ease;
}

.text-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(217, 185, 167, 0.25), transparent 34%);
  opacity: 0;
  transition: opacity 420ms ease;
}

.text-panel:hover {
  transform: translateY(-8px);
  border-color: rgba(23, 23, 19, 0.22);
  box-shadow: var(--shadow-soft);
}

.text-panel:hover::before {
  opacity: 1;
}

.text-panel > * {
  position: relative;
  z-index: 1;
}

.panel-index {
  display: inline-flex;
  margin-bottom: 28px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--moss-2);
}

.text-panel h3 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.016em;
}

.text-panel ul,
.feature-list,
.audience-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.text-panel li,
.feature-list li,
.audience-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(23, 23, 19, 0.72);
}

.text-panel li:first-child,
.feature-list li:first-child,
.audience-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

/* MATRIX */

.matrix {
  display: grid;
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.045);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.matrix-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 76px;
  border-top: 1px solid var(--line-dark);
  transition: background 320ms ease;
}

.matrix-row:first-child {
  border-top: 0;
}

.matrix-row:not(.matrix-head):hover {
  background: rgba(255, 253, 248, 0.06);
}

.matrix-cell {
  padding: 22px clamp(18px, 3vw, 32px);
  border-left: 1px solid var(--line-dark);
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.96rem;
  line-height: 1.65;
}

.matrix-cell:first-child {
  border-left: 0;
}

.matrix-head .matrix-cell {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
}

/* FEATURES */

.feature-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.feature-card {
  position: sticky;
  top: 104px;
  min-height: 540px;
  padding: clamp(30px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 30px;
  color: var(--white);
  overflow: hidden;
  background: var(--moss);
  box-shadow: var(--shadow-strong);
}

.feature-card-bg,
.feature-card::before {
  position: absolute;
  inset: 0;
  content: "";
}

.feature-card-bg {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(20, 20, 18, 0.1), rgba(20, 20, 18, 0.84)),
    url("assets/rhodemobile.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
  filter: saturate(0.82) contrast(1.05) brightness(0.9);
}

.feature-card::before {
  z-index: 1;
  background: rgba(52, 61, 45, 0.5);
  mix-blend-mode: multiply;
}

.feature-card > *:not(.feature-card-bg) {
  position: relative;
  z-index: 2;
}

.feature-card:hover .feature-card-bg {
  transform: scale(1.02);
  filter: saturate(0.94) contrast(1.08) brightness(0.86);
}

.feature-card h3 {
  margin: 24px 0 20px;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 3.65rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.024em;
}

.feature-card p {
  margin-bottom: 0;
  max-width: 500px;
  color: rgba(255, 253, 248, 0.84);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
  border-top: 1px solid var(--line);
}

.feature-list li {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  border-color: rgba(23, 23, 19, 0.12);
  transition: padding-left 360ms var(--ease), color 260ms ease;
}

.feature-list li:hover {
  padding-left: 10px;
  color: var(--ink);
}

/* PILLS */

.pill-cloud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.pill {
  min-height: 132px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.75vw, 1.7rem);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: rgba(255, 253, 248, 0.9);
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 185, 167, 0.12), transparent 44%),
    rgba(255, 253, 248, 0.05);
  transition: transform 520ms var(--ease), background 520ms ease, border-color 520ms ease;
}

.pill:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 253, 248, 0.4);
  background-color: rgba(255, 253, 248, 0.09);
}

/* AUDIENCE */

.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}

.audience-list {
  border-top: 1px solid var(--line);
}

.audience-list li {
  min-height: 66px;
  display: flex;
  align-items: center;
  transition: padding-left 360ms var(--ease), color 260ms ease;
}

.audience-list li:hover {
  padding-left: 10px;
  color: var(--ink);
}

/* PROJECTS */

.projects-section {
  background:
    linear-gradient(180deg, var(--white), var(--paper));
}

.projects {
  display: grid;
  gap: clamp(64px, 9vw, 132px);
}

.project {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.project::before {
  content: attr(data-project);
  position: absolute;
  top: -0.18em;
  left: -0.05em;
  z-index: 0;
  font-family: var(--serif);
  font-size: clamp(5rem, 16vw, 14rem);
  line-height: 1;
  color: rgba(23, 23, 19, 0.035);
  pointer-events: none;
}

.project:nth-child(even) {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.project:nth-child(even) .project-media {
  order: 2;
}

.project:nth-child(even) .project-copy {
  order: 1;
}

.project > * {
  position: relative;
  z-index: 1;
}

.project-media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: 30px;
  background: #20201e;
  box-shadow: var(--shadow-strong);
  transform: translateZ(0);
}

.project-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(0.82) contrast(1.06) brightness(0.96);
  transition: transform 1.45s var(--ease), filter 1.45s var(--ease);
}

.project.is-visible .project-media img {
  transform: scale(1);
}

.project-media:hover img {
  transform: scale(1.045);
  filter: saturate(0.92) contrast(1.08) brightness(0.9);
}

.project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(217, 185, 167, 0.28), transparent 32%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.06) 58%);
  opacity: 1;
  transition: opacity 800ms ease;
}

.project-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 12px;
  border: 1px solid rgba(255, 253, 248, 0.38);
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(17, 17, 17, 0.36);
  backdrop-filter: blur(12px);
}

.project-copy h3 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.8vw, 3.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.028em;
}

.project-copy p {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: 0.98rem;
  line-height: 1.86;
  color: rgba(23, 23, 19, 0.74);
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.meta-line span {
  padding: 7px 11px;
  border: 1px solid rgba(23, 23, 19, 0.08);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(52, 61, 45, 0.08);
}

.live-link {
  margin-top: 8px;
  color: var(--ink);
  border: 1px solid var(--ink);
  background: transparent;
}

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

/* CONDITIONS */

.conditions {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}

.conditions ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 253, 248, 0.78);
}

.conditions li {
  padding: 14px 0;
  border-top: 1px solid var(--line-dark);
}

.conditions li:first-child {
  border-top: 0;
}

/* CONTACT */

.contact-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(217, 185, 167, 0.32), transparent 28rem),
    radial-gradient(circle at 90% 70%, rgba(52, 61, 45, 0.13), transparent 32rem),
    var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: stretch;
}

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

.contact-item {
  min-height: 132px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.62);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  transition: transform 420ms var(--ease), border-color 420ms ease, background 420ms ease, box-shadow 420ms var(--ease);
}

.contact-item:hover {
  transform: translateY(-7px);
  border-color: rgba(23, 23, 19, 0.22);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-item small {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss-2);
}

.contact-item span {
  overflow-wrap: anywhere;
  font-size: 0.88rem;
  line-height: 1.55;
  font-weight: 800;
}

.contact-panel {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.8), rgba(255, 253, 248, 0.56));
  box-shadow: var(--shadow-soft);
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

label span {
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss-2);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 23, 19, 0.14);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.74);
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

textarea {
  resize: vertical;
  min-height: 142px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(52, 61, 45, 0.52);
  box-shadow: 0 0 0 4px rgba(52, 61, 45, 0.08);
  background: var(--white);
}

.submit-btn {
  width: 100%;
  min-height: 50px;
  margin-top: 8px;
  color: var(--white);
  border: 1px solid var(--ink);
  background: var(--ink);
}

/* FOOTER */

.footer {
  padding: 36px 6vw;
  text-align: center;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.58);
  background: var(--ink);
}

/* MOTION */

[data-motion] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease),
    filter 900ms var(--ease);
  will-change: opacity, transform;
}

[data-motion].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-motion="scale"] {
  transform: scale(0.94);
}

[data-motion="scale"].is-visible {
  transform: scale(1);
}

.magnetic {
  will-change: transform;
}

@keyframes contentRise {
  from {
    opacity: 0;
    transform: translateY(42px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.14);
    filter: blur(3px) saturate(0.78) contrast(1.1) brightness(0.7);
  }
  to {
    transform: scale(1.06);
    filter: blur(0) saturate(0.82) contrast(1.08) brightness(0.74);
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scrollLine {
  0% {
    transform: translateY(-24px);
  }
  100% {
    transform: translateY(62px);
  }
}

/* RESPONSIVE */

@media (max-width: 1080px) {
  .project,
  .project:nth-child(even),
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .project:nth-child(even) .project-media,
  .project:nth-child(even) .project-copy {
    order: initial;
  }

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

@media (max-width: 940px) {
  .cursor-glow {
    display: none;
  }

  .topbar {
    top: 12px;
    min-height: 54px;
    padding: 0 16px;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-content: center;
  }

  .brand {
    font-size: 0.82rem;
    letter-spacing: 0.24em;
  }

  .hero {
    min-height: 91svh;
    padding: 108px 22px 58px;
  }

  .hero-orbit,
  .scroll-cue {
    display: none;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
    line-height: 0.94;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.78;
  }

  .hero-note {
    font-size: 0.64rem;
    line-height: 1.8;
  }

  .section {
    padding: 78px 22px;
  }

  .section-head,
  .feature-wrap,
  .audience-grid,
  .conditions {
    grid-template-columns: 1fr;
  }

  .section-head {
    gap: 20px;
    margin-bottom: 42px;
  }

  .section-title {
    font-size: clamp(1.75rem, 8.5vw, 2.85rem);
    line-height: 1.04;
  }

  .body-large {
    font-size: 0.98rem;
    line-height: 1.82;
  }

  .feature-card {
    position: relative;
    top: auto;
    min-height: 430px;
  }

  .feature-list,
  .pill-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-media {
    min-height: 390px;
  }

  .project-copy h3 {
    font-size: clamp(1.8rem, 8.5vw, 2.8rem);
    line-height: 1;
  }
}

@media (max-width: 620px) {
  .topbar {
    left: 14px;
    right: 14px;
    min-height: 52px;
  }

  .hero {
    min-height: 88svh;
    padding: 98px 18px 48px;
  }

  .kicker {
    font-size: 0.62rem;
  }

  .hero-actions {
    width: 100%;
  }

  .primary-link,
  .ghost-link {
    flex: 1;
    min-width: 0;
  }

  .section {
    padding: 70px 18px;
  }

  .number {
    width: 44px;
    height: 44px;
    font-size: 0.88rem;
  }

  .two-col,
  .feature-list,
  .pill-cloud,
  .contact-links,
  .form-row {
    grid-template-columns: 1fr;
  }

  .text-panel {
    min-height: auto;
    border-radius: 20px;
  }

  .matrix {
    border-radius: 20px;
  }

  .matrix-row,
  .matrix-head {
    grid-template-columns: 1fr;
  }

  .matrix-cell {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
    padding: 18px;
  }

  .matrix-cell:first-child {
    border-top: 0;
  }

  .feature-card,
  .project-media,
  .contact-panel {
    border-radius: 22px;
  }

  .feature-card {
    min-height: 380px;
  }

  .pill {
    min-height: 112px;
    border-radius: 18px;
  }

  .project {
    gap: 28px;
  }

  .project::before {
    display: none;
  }

  .project-media {
    min-height: 320px;
  }

  .project-copy p {
    font-size: 0.94rem;
  }

  .meta-line span {
    font-size: 0.58rem;
  }

  .contact-item {
    min-height: 118px;
    border-radius: 18px;
  }

  .contact-panel {
    padding: 18px;
  }
}

/* ACCESSIBILITY */

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

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

  [data-motion] {
    opacity: 1;
    transform: none;
  }

  .hero-media img {
    animation: none;
  }
}

/* Brand arrow refinement */
.brand-arrow {
  display: inline-block;
  margin-left: 0.5em;
  transform: translateY(-0.02em);
  transition: transform 520ms var(--ease), opacity 520ms var(--ease);
  opacity: 0.78;
}

.brand:hover .brand-arrow,
.brand:focus-visible .brand-arrow {
  transform: translate(0.22em, -0.02em);
  opacity: 1;
}


/* Deadline release fixes */
.brand {
  display: inline-flex;
  align-items: center;
  gap: .35em;
  white-space: nowrap;
}

.hero-media img[src=""],
.hero-media img:not([src]) {
  display: none;
}

.hero-media {
  background:
    linear-gradient(120deg, rgba(23, 23, 19, 0.92), rgba(52, 61, 45, 0.58)),
    radial-gradient(circle at 70% 30%, rgba(217,185,167,.28), transparent 34rem),
    var(--ink);
}

.number {
  flex-shrink: 0;
}

.contact-panel input:focus,
.contact-panel textarea:focus,
.contact-panel select:focus {
  outline: none;
  border-color: rgba(23, 23, 19, 0.42);
  box-shadow: 0 0 0 4px rgba(217, 185, 167, 0.16);
}

.submit-btn:focus-visible,
.primary-link:focus-visible,
.ghost-link:focus-visible,
.live-link:focus-visible,
.contact-item:focus-visible,
.nav a:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 4px;
}

@media (max-width: 620px) {
  .brand-arrow { margin-left: .18em; }
}

/* Problem section split layout fix */
.problem-head {
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 0.78fr);
  align-items: start;
  gap: clamp(28px, 6vw, 96px);
}

.problem-head .section-title-wrap {
  display: grid;
  gap: 22px;
  align-content: start;
}

.problem-head .section-copy-wrap {
  padding-top: clamp(8px, 1.2vw, 18px);
}

.problem-head .body-large {
  max-width: 620px;
  margin: 0;
}

@media (max-width: 940px) {
  .problem-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .problem-head .section-copy-wrap {
    padding-top: 0;
  }

  .problem-head .body-large {
    max-width: 100%;
  }
}


/* === INVITÉ / INVITEE.GE TYPOGRAPHY + PALETTE OVERRIDE === */
body {
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at 16% 8%, rgba(164, 173, 143, 0.18), transparent 28rem),
    radial-gradient(circle at 92% 24%, rgba(47, 54, 43, 0.08), transparent 32rem),
    linear-gradient(135deg, rgba(251,247,238,.58) 0 25%, transparent 25% 50%, rgba(251,247,238,.42) 50% 75%, transparent 75%),
    var(--bg);
  background-size: auto, auto, 18px 18px, auto;
}

.page-noise {
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(48,54,44,.22) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(48,54,44,.14) 0 1px, transparent 1px);
  background-size: 4px 4px, 7px 7px;
}

.topbar {
  top: 20px;
  left: 6vw;
  right: 6vw;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 52px;
  color: var(--olive-dark);
  border: 1px solid var(--line);
  background: rgba(244, 239, 227, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: none;
}

.topbar.is-scrolled {
  top: 10px;
  color: var(--olive-dark);
  background: rgba(244, 239, 227, 0.9);
  border-bottom-color: var(--line);
  box-shadow: 0 18px 55px rgba(48, 54, 44, 0.08);
}

.brand {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--olive-dark);
}

.nav a {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(48, 54, 44, 0.72);
  opacity: 1;
}

.nav a:hover,
.nav a.is-active {
  color: var(--olive);
}

.menu-toggle {
  border-color: var(--line);
  color: var(--olive-dark);
}

.menu-toggle span {
  background: var(--olive-dark);
}

.mobile-nav {
  background: rgba(244, 239, 227, 0.96);
  color: var(--olive-dark);
}

h1,
h2,
h3,
.section-title,
.project-copy h3,
.feature-card h3,
.text-panel h3,
.pill,
.footer {
  color: var(--olive-dark);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 8vw, 6.8rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.12em;
}

.section-title {
  font-family: var(--geo);
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: -0.03em;
  max-width: 900px;
  color: var(--olive-dark);
}

.text-panel h3,
.feature-card h3,
.project-copy h3 {
  font-family: var(--geo);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--olive-dark);
}

.project-copy h3 {
  font-size: clamp(28px, 3vw, 42px);
}

.body-large,
p,
.text-panel li,
.feature-list li,
.audience-list li,
.matrix-cell,
.conditions li,
.contact-item span {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--muted);
}

.section {
  background-color: var(--paper);
}

.section.white,
.projects-section,
.section-intro,
.contact-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(164, 173, 143, 0.12), transparent 28rem),
    linear-gradient(135deg, rgba(251,247,238,.48) 0 25%, transparent 25% 50%, rgba(251,247,238,.36) 50% 75%, transparent 75%),
    var(--paper);
  background-size: auto, 18px 18px, auto;
}

.section.dark {
  color: var(--paper);
  background:
    radial-gradient(circle at 16% 10%, rgba(164, 173, 143, 0.15), transparent 30rem),
    radial-gradient(circle at 90% 84%, rgba(251, 247, 238, 0.07), transparent 34rem),
    var(--olive-dark);
}

.section.dark h2,
.section.dark h3,
.section.dark .section-title,
.section.dark .pill,
.section.dark .matrix-head .matrix-cell {
  color: var(--paper);
}

.section.dark .body-large,
.section.dark p,
.section.dark .matrix-cell,
.section.dark .conditions li {
  color: rgba(251, 247, 238, 0.68);
}

.hero {
  background:
    linear-gradient(90deg, rgba(47,54,43,.86), rgba(47,54,43,.48) 48%, rgba(47,54,43,.18)),
    var(--olive-dark);
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(47,54,43,.9), rgba(47,54,43,.48) 48%, rgba(47,54,43,.18)),
    radial-gradient(circle at 72% 30%, rgba(164, 173, 143, 0.18), transparent 32rem);
}

.hero h1,
.hero .hero-lead,
.hero .hero-note,
.hero .kicker {
  color: var(--paper);
}

.primary-link,
.submit-btn {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--paper);
}

.ghost-link,
.live-link {
  border-color: var(--line);
  color: var(--olive-dark);
}

.text-panel,
.project-media,
.contact-item,
.contact-panel {
  border-color: var(--line);
  background: rgba(251, 247, 238, 0.68);
}

.text-panel,
.project-media,
.feature-card,
.contact-item,
.contact-panel {
  border-radius: var(--radius);
}

.feature-card {
  background:
    linear-gradient(rgba(47,54,43,.88), rgba(47,54,43,.88)),
    var(--olive-dark);
  color: var(--paper);
}

.feature-card h3,
.feature-card p,
.feature-card .number {
  color: var(--paper);
}

.meta-line span,
.project-tag {
  border-color: rgba(89, 98, 79, 0.26);
  color: var(--olive);
  background: rgba(89, 98, 79, 0.08);
}

.project-tag {
  color: var(--paper);
  background: rgba(47, 54, 43, 0.42);
  border-color: rgba(251, 247, 238, 0.24);
}

/* Remove all page/section numbering */
.number,
.panel-index,
.kicker:empty {
  display: none !important;
}

.section-head {
  grid-template-columns: 1.05fr 0.95fr;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.problem-head {
  grid-template-columns: minmax(280px, 1.05fr) minmax(320px, 0.95fr);
}

.problem-head .section-copy-wrap {
  padding-top: 0;
}

.problem-head .body-large {
  margin: 0;
  max-width: 520px;
}

.contact-section {
  background: var(--olive-dark);
  color: var(--paper);
}

.contact-section h2,
.contact-section .section-title {
  color: var(--paper);
}

.contact-section p,
.contact-section .body-large {
  color: rgba(251, 247, 238, 0.64);
}

.contact-item,
.contact-panel {
  background: transparent;
  border-color: rgba(251, 247, 238, 0.16);
}

.contact-item small,
.contact-item span,
.contact-panel label span {
  color: rgba(251, 247, 238, 0.68);
}

.contact-panel input,
.contact-panel textarea,
.contact-panel select {
  background: transparent;
  border-color: rgba(251, 247, 238, 0.2);
  color: var(--paper);
}

.contact-panel option {
  color: var(--text);
}

.footer {
  color: rgba(251, 247, 238, 0.55);
  background: var(--olive-dark);
  border-top: 1px solid rgba(251, 247, 238, 0.12);
}

@media (max-width: 940px) {
  .section-head,
  .problem-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .problem-head .body-large {
    max-width: 100%;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.55rem, 13vw, 3.25rem);
    letter-spacing: 0.08em;
  }

  .section-title {
    font-size: clamp(24px, 6.4vw, 31px);
    line-height: 1.25;
  }

  .topbar {
    left: 16px;
    right: 16px;
  }
}

/* LANGUAGE SWITCH */

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(48, 54, 44, 0.14);
  border-radius: 999px;
  background: rgba(251, 247, 238, 0.42);
  backdrop-filter: blur(14px);
}

.lang-btn {
  width: 38px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(48, 54, 44, 0.58);
  transition: 0.35s var(--ease);
}

.lang-btn:hover {
  color: var(--olive-dark);
}

.lang-btn.active {
  background: var(--olive-dark);
  color: var(--paper);
}

.mobile-lang-switch {
  margin-top: 22px;
}

@media (max-width: 760px) {
  .nav .lang-switch {
    display: none;
  }

  .mobile-lang-switch {
    display: inline-flex;
  }

  .mobile-lang-switch .lang-btn {
    width: 44px;
    height: 30px;
  }
}
.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(251, 247, 238, 0.72);
}

.form-status.is-success {
  color: rgba(251, 247, 238, 0.9);
}

.form-status.is-error {
  color: #e8b4a8;
}

.form-status.is-loading {
  color: rgba(251, 247, 238, 0.62);
}
/* CONTACT HOVER FIX */

.contact-item {
  color: rgba(251, 247, 238, 0.78);
}

.contact-item:hover,
.contact-item:focus-visible {
  color: var(--paper);
  background: rgba(251, 247, 238, 0.08);
  border-color: rgba(251, 247, 238, 0.28);
}

.contact-item:hover small,
.contact-item:hover span,
.contact-item:focus-visible small,
.contact-item:focus-visible span {
  color: var(--paper);
}

.contact-item::before,
.contact-item::after {
  display: none !important;
}

.contact-item.magnetic {
  transform: none !important;
}
.mobile-nav a {
    font-size: 16px;       /* იყო ალბათ 22-32px */
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.2;
    padding: 14px 0;
}