/* ============================================================
   GLYDE MEDIA — about-glyde.css
   Styles for the Glyde With Us section
   ============================================================ */

.about-glyde {
  position: relative;
  padding: 140px 80px;
  overflow: hidden;
  text-align: center;
  background: var(--navy2);
}

.about-glyde::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(61,189,160,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,189,160,0.03) 1px, transparent 1px);
  background-size: 64px 64px; pointer-events: none;
}

.about-glyde::after {
  content: 'GLYDE';
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--cond); font-size: 340px; font-weight: 900;
  color: rgba(255,255,255,0.018); letter-spacing: -0.04em;
  pointer-events: none; line-height: 1; user-select: none; white-space: nowrap;
}

.about-inner {
  position: relative; z-index: 2;
  max-width: 860px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}

.about-headline {
  font-family: var(--cond);
  font-size: clamp(56px, 8vw, 108px);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 48px; white-space: nowrap;
}
.about-headline .l1 { color: var(--white); }
.about-headline .l2 {
  -webkit-text-stroke: 2px var(--teal);
  color: transparent; font-style: italic;
}

.about-divider {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  margin: 0 auto 48px;
}

.about-body {
  font-family: var(--sans);
  font-size: 18px; font-weight: 300;
  line-height: 2; color: rgba(255,255,255,0.58);
  margin-bottom: 20px; max-width: 720px;
}
.about-body strong { color: var(--white); font-weight: 500; }

.about-quote {
  margin: 48px auto 0; padding: 32px 48px;
  border-left: 2px solid var(--teal); border-right: 2px solid var(--teal);
  max-width: 600px;
}
.about-quote p {
  font-family: var(--cond);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700; font-style: italic;
  color: var(--white); letter-spacing: 0.02em; line-height: 1.4;
}
.about-quote p em { color: var(--teal); font-style: normal; }

.about-location {
  margin-top: 48px;
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; justify-content: center;
  font-family: var(--cond); font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.loc-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 6px rgba(61,189,160,0.6);
  flex-shrink: 0;
}
.loc-city { color: rgba(255,255,255,0.35); }

.about-travel {
  font-family: var(--cond); font-size: 10px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--teal); opacity: 0.7; margin-top: 10px;
}

@media (max-width: 768px) {
  .about-glyde { padding: 100px 32px; }
  .about-headline { font-size: clamp(36px, 10vw, 72px); white-space: normal; }
  .about-body { font-size: 16px; }
  .about-quote { padding: 24px 28px; }
  .about-glyde::after { font-size: 180px; }
}
