/* ================================================================
   ASCENSION WHARF   about.css
   About page specific styles (extends style.css)
   ================================================================ */

/* ---- About Hero ---- */
.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 120px 32px 60px;
  width: 100%;
  max-width: 1000px;
}
.about-hero-sub-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.about-hero-tagline {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  margin: 16px auto 28px;
  line-height: 1.7;
}
.about-hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-about-outline {
  padding: 13px 28px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn-about-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
}

/* ---- About Sections ---- */
.about-section {
  padding: 90px 0;
  background: var(--black);
}
.about-section:nth-child(odd) {
  background: #070707;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-split-reverse {
  /* left=text, right=image on larger screens */
}

/* ---- AW Logo Card ---- */
.aw-logo-card {
  background: linear-gradient(135deg, #012f1d 0%, #01200d 100%);
  border-radius: 20px;
  border: 1px solid rgba(248,190,126,0.15);
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  min-height: 420px;
  box-shadow: 0 0 60px rgba(1,47,29,0.4), inset 0 0 40px rgba(0,0,0,0.3);
}
.aw-card-compass {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(248,190,126,0.35));
}
.aw-card-name {
  font-family: "Game of Thrones", serif;
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 400;
  color: #f8be7e;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.3;
  margin-top: 4px;
}
.aw-card-tagline {
  font-size: 12px;
  color: rgba(248,190,126,0.45);
  letter-spacing: 0.1em;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  margin-top: 8px;
}

/* ---- About text col ---- */
.about-section-h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.about-grey { color: rgba(255,255,255,0.4); }
.about-divider {
  width: 48px;
  height: 2px;
  background: rgba(28,101,27,0.7);
  margin-bottom: 28px;
  border-radius: 2px;
}
.about-text-block {
  margin-bottom: 24px;
}
.about-text-block h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.about-text-block p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.75;
}
.about-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.about-stars {
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-stars span:first-child {
  color: #f8a000;
  font-size: 16px;
  letter-spacing: 2px;
}
.about-stars-label {
  font-size: 13px;
  color: var(--grey);
}

/* ---- About image ---- */
.about-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  max-height: 520px;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.9);
  transition: filter 0.3s, transform 0.4s;
}
.about-img-wrap:hover .about-img {
  filter: brightness(0.95) saturate(1);
  transform: scale(1.02);
}

/* ---- Tools section ---- */
.about-tools-section {
  background: var(--black) !important;
}
.about-tools-header {
  text-align: center;
  margin-bottom: 56px;
}
.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(28,101,27,0.3);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}
.about-tools-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.about-tools-desc {
  font-size: 16px;
  color: var(--grey);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.72;
}

/* ---- Tool grid ---- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tool-card {
  background: linear-gradient(145deg, rgb(1,47,29) 0%, rgb(1,35,20) 100%);
  border: 1px solid rgba(1,47,29,0.8);
  border-radius: 18px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.25s, box-shadow 0.25s;
}
.tool-card:hover {
  border-color: rgba(248,190,126,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.tool-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.tool-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
}
.tool-icon-wrap img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
/* Specific icon bg colors */
.tool-icon-instantly { background: #1a1a2e; }
.tool-icon-slack     { background: #4a154b; }
.tool-icon-dropbox   { background: #0061fe; }
.tool-icon-sheets    { background: #0f9d58; }
.tool-icon-notion    { background: #fff; }
.tool-icon-frameio   { background: #1c1c1c; }

.tool-arrow {
  font-size: 18px;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
  line-height: 1;
}
.tool-card:hover .tool-arrow { color: rgba(248,190,126,0.7); }

.tool-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tool-badge {
  background: rgba(248,190,126,0.15);
  border: 1px solid rgba(248,190,126,0.3);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #f8be7e;
  padding: 2px 7px;
  letter-spacing: 0.05em;
}
.tool-category {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.tool-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .tools-grid  { grid-template-columns: 1fr 1fr; }
  .aw-logo-card { min-height: 320px; }
}
@media (max-width: 560px) {
  .tools-grid { grid-template-columns: 1fr; }
  .about-hero-btns { flex-direction: column; align-items: center; }
}
