/* AY Natural About Page */
.ay-about-page {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 20px 90px;
  font-family: "Manrope", sans-serif;
  color: #2B2B2B;
}

/* Hero */
.ay-about-hero {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.ay-about-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B4F3A;
}

.ay-about-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #3A2118;
}

.ay-about-hero p {
  margin: 0 auto;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.75;
  color: #666666;
}

/* Intro Text */
.ay-about-intro {
  max-width: 860px;
  margin: 0 auto 56px;
  padding: 30px 34px;
  background: #FFF8F1;
  border: 1px solid #E0D6CC;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(90, 58, 42, 0.07);
  text-align: center;
}

.ay-about-intro p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.8;
  color: #4F4A46;
}

.ay-about-intro p + p {
  margin-top: 14px;
}

/* Founder Block */
.ay-founder-block {
  max-width: 980px;
  margin: 0 auto 58px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 28px;
  background: #F7F5F2;
  border: 1px solid #E0D6CC;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(90, 58, 42, 0.06);
}

.ay-founder-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: #EFEAE4;
}

.ay-founder-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ay-founder-content {
  padding: 8px 6px;
}

.ay-founder-content h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #3A2118;
}

.ay-founder-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #555555;
}

.ay-founder-content p + p {
  margin-top: 12px;
}

/* Cards */
.ay-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 54px;
}

.ay-about-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E0D6CC;
  border-radius: 8px;
  padding: 34px 28px 32px;
  box-shadow: 0 12px 30px rgba(90, 58, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ay-about-card:hover {
  transform: translateY(-3px);
  border-color: rgba(107, 79, 58, 0.42);
  box-shadow: 0 18px 44px rgba(90, 58, 42, 0.12);
}

.ay-about-card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #EFEAE4;
  color: #6B4F3A;
}

.ay-about-card-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
  display: block;
}

.ay-about-card h2 {
  margin: 0 0 15px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
  color: #5A3A2A;
}

.ay-about-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.75;
  color: #555555;
}

.ay-about-card p + p {
  margin-top: 12px;
}

/* B2B Block */
.ay-b2b-block {
  max-width: 980px;
  margin: 0 auto 54px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
  padding: 38px;
  background: linear-gradient(135deg, #5A3A2A 0%, #6B4F3A 100%);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(90, 58, 42, 0.16);
  color: #FFF8F1;
}

.ay-b2b-block .ay-about-eyebrow {
  color: #F3E5D4;
}

.ay-b2b-content h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.ay-b2b-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 248, 241, 0.88);
}

.ay-b2b-content p + p {
  margin-top: 12px;
}

.ay-b2b-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 24px;
  padding: 12px 22px;
  border-radius: 4px;
  background: #FFF8F1;
  color: #5A3A2A;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.ay-b2b-button:hover {
  background: #F3E5D4;
  color: #5A3A2A;
  transform: translateY(-1px);
  text-decoration: none;
}

.ay-b2b-list {
  display: grid;
  gap: 10px;
}

.ay-b2b-list-item {
  padding: 12px 14px;
  border-radius: 6px;
  background: rgba(255, 248, 241, 0.11);
  border: 1px solid rgba(255, 248, 241, 0.16);
  color: #FFF8F1;
  font-size: 14px;
  font-weight: 700;
}

/* Contact */
.ay-about-contact {
  margin: 0 auto 42px;
  padding: 42px 34px;
  background: linear-gradient(135deg, #F3E5D4 0%, #FFF8F1 100%);
  border: 1px solid #E0D6CC;
  border-radius: 10px;
  text-align: center;
}

.ay-about-contact-content {
  max-width: 720px;
  margin: 0 auto;
}

.ay-about-contact h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.025em;
  color: #3A2118;
}

.ay-about-contact p {
  margin: 0 0 24px;
  font-size: 16.5px;
  line-height: 1.7;
  color: #666666;
}

.ay-about-contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.ay-about-contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 20px;
  border-radius: 4px;
  background: #6B4F3A;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ay-about-contact-links a:hover {
  background: #5A3F2E;
  color: #FFFFFF;
  transform: translateY(-1px);
  text-decoration: none;
}

/* Closing */
.ay-about-closing {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.ay-about-closing p {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #5A3A2A;
}

/* Tablet */
@media (max-width: 980px) {
  .ay-about-page {
    padding: 56px 18px 72px;
  }

  .ay-founder-block,
  .ay-b2b-block {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .ay-founder-image {
    aspect-ratio: 16 / 9;
  }

  .ay-about-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ay-about-card {
    padding: 28px 24px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .ay-about-page {
    padding: 42px 16px 58px;
  }

  .ay-about-hero {
    margin-bottom: 26px;
    text-align: left;
  }

  .ay-about-hero h1 {
    font-size: 34px;
  }

  .ay-about-hero p {
    font-size: 16px;
    line-height: 1.65;
  }

  .ay-about-intro {
    margin-bottom: 36px;
    padding: 24px 20px;
    text-align: left;
  }

  .ay-about-intro p {
    font-size: 15.5px;
    line-height: 1.7;
  }

  .ay-founder-block {
    margin-bottom: 38px;
    padding: 20px;
  }

  .ay-founder-image {
    aspect-ratio: 4 / 3;
  }

  .ay-founder-content {
    padding: 0;
  }

  .ay-founder-content h2,
  .ay-b2b-content h2 {
    font-size: 28px;
  }

  .ay-founder-content p,
  .ay-b2b-content p {
    font-size: 15.5px;
    line-height: 1.7;
  }

  .ay-about-card-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
  }

  .ay-about-card-icon svg {
    width: 21px;
    height: 21px;
  }

  .ay-about-card h2 {
    font-size: 20px;
  }

  .ay-about-card p {
    font-size: 15px;
  }

  .ay-b2b-block {
    margin-bottom: 38px;
    padding: 26px 20px;
  }

  .ay-b2b-button {
    width: 100%;
  }

  .ay-about-contact {
    padding: 32px 20px;
    text-align: left;
  }

  .ay-about-contact-links {
    justify-content: flex-start;
    flex-direction: column;
  }

  .ay-about-contact-links a {
    width: 100%;
  }

  .ay-about-closing {
    text-align: left;
  }
}