/* ===== ABOUT HERO ===== */
.about-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: 180px;
  padding-bottom: 64px;
  overflow: hidden;
}
.about-hero-watermark {
  position: absolute;
  bottom: -50px;
  right: -30px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 30vw;
  line-height: 1;
  color: var(--ink);
  opacity: 0.03;
  pointer-events: none;
  user-select: none;
}

.about-hero-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--slate);
  margin-bottom: 24px;
}

.about-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 115%;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 1000px;
  margin-bottom: 40px;
}

.about-hero-line {
  width: 320px;
  height: 0.5px;
  background-color: var(--ink);
}

/* ===== OUR STORY ===== */
.about-story {
  padding: 80px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  grid-template-rows: auto auto;
  gap: 48px;
}

.story-text {
  grid-column: 1;
  grid-row: 1;
}

.story-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--coral);
  margin-bottom: 24px;
}

.story-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  line-height: 115%;
  color: var(--ink);
  margin-bottom: 32px;
}

.story-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-body p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 160%;
  color: var(--slate);
}

.story-image-wrap {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  height: 600px;
}

.story-image-border {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 0.5px solid var(--ink);
  z-index: 0;
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  filter: grayscale(100%);
  transition: filter 0.7s ease;
}

.story-image:hover {
  filter: grayscale(0%);
}

.story-card {
  grid-column: 1;
  grid-row: 2;
  background-color: var(--ink);
  color: var(--white);
  padding: 48px;
}

.story-card-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.story-card p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== VALUES ===== */
.about-values {
  padding: 120px 0;
  background-color: rgba(10, 17, 40, 0.05);
  border-top: 0.5px solid var(--ink);
  border-bottom: 0.5px solid var(--ink);
}

.values-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.values-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: var(--ink);
}

.values-header-right {
  text-align: right;
  font-family: var(--font-sans);
}

.values-version {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin-bottom: 4px;
}

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

.value-card {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 0.5px solid var(--ink);
  transition: transform 0.5s ease;
}

.value-card:hover {
  transform: scale(1.02);
}

.value-card .material-symbols-outlined {
  font-size: 48px;
}

.value-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
}

.value-card p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 160%;
}

.value-card--coral {
  background-color: var(--coral);
  color: var(--white);
  border-radius: 999px;
  text-align: center;
  align-items: center;
}

.value-card--dark {
  background-color: var(--ink);
  color: var(--white);
}

.value-card--glass {
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  color: var(--ink);
}

/* ===== WHY US ===== */
.about-why {
  background-color: var(--ink);
  padding: 120px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid rgba(255, 255, 255, 0.2);
}

.why-item {
  padding: 48px;
  border-right: 0.5px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s ease;
}

.why-item:last-child {
  border-right: none;
}

.why-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.why-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  margin-bottom: 32px;
  transition: color 0.3s ease;
}

.why-item:hover .why-number {
  color: var(--coral);
}

.why-item h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}

.why-item p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* ── HERO ─────────────────────────────── */
  .about-hero {
    padding-top: calc(var(--nav-height) + 48px);
    padding-bottom: 52px;
    min-height: auto;
    align-items: flex-start;
  }

  .about-hero-watermark {
    display: none;
  }

  /* label — coral accent line ზემოდან */
  .about-hero-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--coral);
    margin-bottom: 20px;
    padding-left: 14px;
    border-left: 2px solid var(--coral);
    line-height: 1.5;
  }

  .about-hero h1 {
    font-size: clamp(26px, 7.5vw, 36px);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
  }

  /* ხაზი — სრული სიგანე, coral */
  .about-hero-line {
    width: 100%;
    max-width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--coral) 40%, transparent 100%);
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  /* მობილური რიგი: სურათი → ტექსტი → ლურჯი card */
  .story-image-wrap {
    grid-column: 1;
    grid-row: 1;
    height: 280px;
  }

  .story-image-border {
    display: none;
  }

  .story-text {
    grid-column: 1;
    grid-row: 2;
  }

  .story-card {
    grid-column: 1;
    grid-row: 3;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-item {
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
  }

  .accreditations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .accreditation-item {
    border-bottom: 0.5px solid var(--ink);
  }

  /* story section */
  .about-story {
    padding: 48px 0;
  }

  .story-image-wrap {
    height: 280px;
  }

  .story-image-border {
    display: none;
  }

  .story-card {
    padding: 32px 24px;
  }

  /* values */
  .about-values {
    padding: 64px 0;
  }

  .value-card {
    padding: 32px 24px;
  }

  /* value-card coral pill — ამოვიღოთ border-radius მობილურზე */
  .value-card--coral {
    border-radius: 16px;
  }

  /* why us */
  .about-why {
    padding: 64px 0;
  }

  .why-number {
    font-size: 48px;
    margin-bottom: 16px;
  }

  .why-item {
    padding: 32px 24px;
  }
}
