/* =========================
   ABOUT.CSS (FULL FILE)
   Includes: base + header + buttons + about sections
   ========================= */

html { scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #1c1a1a;
  background: #e7e5e5;
}

/* Header / Nav */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.logo{
  height: 70px;
  width: auto;
  display: block;
}

.nav-links a{
  color: #646464;
  text-decoration: none;
  margin-left: 16px;
  font-weight: 600;
}

.nav-links a:hover{ text-decoration: underline; }

/* Helpers */
.wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.page{
  padding-top: 110px;
}

.muted{ color: #6b7280; }
.section-title{
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  color: #111;
}

/* Buttons */
.reachout-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 26px;
  background: #000000;
  color: #ffffff;

  border-radius: 4px;
  border: none;
  text-decoration: none;

  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 13px;
  cursor: pointer;

  box-shadow: 0 8px 20px rgba(0,0,0,0.20);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.reachout-btn:hover{
  background: #111111;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.24);
}

.reachout-btn:active{
  transform: translateY(0px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

.reachout-btn:focus-visible{
  outline: 3px solid #14b8b8;
  outline-offset: 3px;
}

.contact-link{
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.25);
  width: fit-content;
}

.contact-link:hover{
  border-bottom-color: rgba(0,0,0,0.55);
}

/* Section 1: hero */
.about-hero{
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 52px 0 36px;
}

.about-hero h1{
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: clamp(34px, 4vw, 50px);
  color: #111;
}

.about-hero .lead{
  margin: 0 0 10px;
  max-width: 75ch;
  color: #444;
  line-height: 1.65;
}

/* Section 2: founder spotlight */
.about-founder{
  padding: 46px 0 18px;
}

.founder-card{
  display: grid;
  grid-template-columns: minmax(220px, 345px) 1fr;
  gap: 18px;
  align-items: start;
}


.founder-photo{
  width: 100%;
  max-width: 345px;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}


.bio{
  margin-left: 0px;
  margin: 10px 0 0;
  color: #444;
  line-height: 1.65;
  max-width: 78ch;
}

.founder-actions{
  margin-top: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* Section 3: values */
.about-values{
  padding: 18px 0 46px;
}

.values-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 10px;
}

.value-card{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.value-card h3{
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  color: #111;
}

.value-card p{
  margin: 0;
  color: #444;
  line-height: 1.6;
}

/* Section 4: what we do */
.about-whatwedo{
  background: #ffffff;
  padding: 56px 0 70px;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.what-title{
  margin: 0 0 26px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  color: #6e1c1d;
  font-size: clamp(22px, 3vw, 34px);
}

.what-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: start;
}

.what-card{
  text-align: center;
  color: #1f1f1f;
}

.what-icon{
  width: 150px;
  height: 150px;
  margin: 0 auto 16px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  background: #f3f4f6;
}

.what-icon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.what-card h3{
  margin: 10px 0 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.what-card p{
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: #4b5563;
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}

/* Section 5: close band */
.about-close{
  margin-top: 100px;
  background: #6e1c1d;
  color: #e8eef7;
  padding: 60px 0;
}

.close-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.about-close h2{
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  color: #ffffff;
}

.about-close p{
  margin-top: 0;
  color: #b7c0ce;
  line-height: 1.6;
  max-width: 70ch;
}

.close-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.10em;
  font-size: 12px;
  white-space: nowrap;
}

.close-btn:hover{
  background: rgba(255,255,255,0.92);
}

.site-footer {
  background: #000;
  color: #9a9a9a;
  padding: 60px 0 40px;
}

.site-footer a {
  color: #9a9a9a;
  text-decoration: none;
  font-size: 14px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 13px;
  line-height: 1.4;
}

.footer-nav,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav,
  .footer-social {
    align-items: center;
  }
}





/* Responsive */
@media (max-width: 1000px){
  .what-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px){
  .founder-card{ grid-template-columns: 1fr; }
  .values-grid{ grid-template-columns: 1fr; }
  .close-inner{ flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px){
  .what-grid{ grid-template-columns: 1fr; }
  .what-icon{ width: 140px; height: 140px; }
}

