
/* ══════════════════════════════════════
   ABOUT PAGE — COMPLETE CLEAN CSS
══════════════════════════════════════ */

/* ─── HERO IMAGE BACKGROUND ─── */
.ab-hero--image {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.ab-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    display: block;
}


.ab-hero-grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.ab-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;      /* center rakho */
    justify-content: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 32px 56px;
    text-align: center;       /* center rakho */
}

.ab-hero .tll-breadcrumb {
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    align-self: flex-start;   
    width: 100%;              
}
.ab-hero .tll-breadcrumb a,
.ab-hero .tll-breadcrumb span {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
	align-self: flex-start;

}

.ab-hero .tll-breadcrumb a:hover {
    color: #C9A96E;
}

.ab-hero .tll-breadcrumb .sep {
    color: rgba(255, 255, 255, 0.48);
}

.ab-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(46px, 7vw, 86px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.42);
	font-family: var(--font-display, Georgia, serif);
}


/* Mobile */
@media (max-width: 768px) {
    .ab-hero--image { min-height: 70vh; }
    .ab-hero-inner {
        min-height: 70vh;
        padding: 92px 20px 44px;
    }
}

@media (max-width: 480px) {
    .ab-hero--image { min-height: 60vh; }
    .ab-hero-inner {
        min-height: 60vh;
        padding: 78px 16px 36px;
    }
    .ab-hero .tll-breadcrumb {
        font-size: 11px;
        margin-bottom: 14px;
    }
}
/* ---- Section + container ---- */
.ab-section { padding: 100px 0; }
.ab-section-cream { background: #FAF6F0; }
.ab-section-dark {
	background: #101010;
	color: #ffffff;
}
.ab-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}
.ab-section-head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 56px;
}

/* ---- Story grid ---- */
.ab-story {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 64px;
	align-items: center;
}

/* ----------------------------------------------------------------------------
   Left: image wrap — padding makes room for badge so it never clips
   ---------------------------------------------------------------------------- */
.ab-story-img-wrap {
	position: relative;
	padding-bottom: 28px;
	padding-right: 28px;
}

.ab-story-img {
	position: relative;
	aspect-ratio: 4/5;
	background: linear-gradient(135deg, #ede5d8 0%, #ddd0c0 100%);
	border-radius: 20px;
	overflow: hidden; /* clips image to rounded corners, badge is OUTSIDE this div */
}

.ab-story-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Fallback icon container */
.ab-story-img-fallback {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	gap: 12px;
}

/* Badge — positioned on the WRAP, outside the overflow:hidden image div */
.ab-story-badge{
	white-space: normal;
	max-width: calc(100% - 24px);
}
.ab-story-badge strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
	margin-bottom: 3px;
	letter-spacing: 0.3px;
}
.ab-story-badge span {
	font-size: 11px;
	color: #ffffff;
	letter-spacing: 0.5px;
	display: block;
}

/* ---- Right: text ---- */
.ab-story-text .section-label { text-align: left !important; }
.ab-story-text .section-title {
	text-align: left !important;
	font-size: 38px !important;
	line-height: 1.2 !important;
	margin-bottom: 0 !important;
}
.ab-divider {
	width: 56px;
	height: 3px;
	background: #DA6131;
	margin: 20px 0 26px;
	border-radius: 2px;
}
.ab-story-text p,
.ab-story-text .post-content p {
	font-size: 16px;
	line-height: 1.85;
	color: #60091A;
	margin: 0 0 18px;
}
.ab-story-text .post-content > *:last-child { margin-bottom: 0; }

/* Credibility tags */
.ab-cred-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}
.ab-cred-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #ffffff;
	color: #217C54;
	padding: 9px 14px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.2px;
}
.ab-cred-tag svg { flex-shrink: 0; }

/* ---- Mission & Vision ---- */
.ab-mv-section {
	position: relative;
	overflow: hidden;
	background: #101010;
}
.ab-mv-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.2;
}
.ab-mv-inner {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 32px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}
.ab-mv-label {
	font-family: var(--font-display, Georgia, serif);
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -.02em;
	margin: 0 0 20px;
	line-height: 1;
}
.ab-mv-divider {
	width: 48px;
	height: 2px;
	background: #DA6131;
	margin: 0 0 20px;
}
.ab-mv-text {
	font-size: 16px;
	line-height: 1.85;
	color: rgba(245,237,227,0.78);
	margin: 0 0 16px;
}

/* ---- Roots ---- */
.ab-roots-section {
	position: relative;
	overflow: hidden;
}
.ab-roots-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center top;
	opacity: 0.25;
}
.ab-roots-inner {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
	padding: 100px 32px;
	text-align: center;
}
.ab-roots-inner .section-label { text-align: center !important; }
.ab-roots-title {
	font-family: var(--font-display, Georgia, serif);
	font-size: clamp(32px, 4.5vw, 56px);
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -.02em;
	margin: 12px 0 24px;
	line-height: 1.05;
}
.ab-roots-text {
	font-size: 17px;
	line-height: 1.85;
	color: rgba(245,237,227,0.78);
	margin: 0 0 18px;
}

/* ---- Timeline ---- */
.ab-timeline {
	position: relative;
	max-width: 720px;
	margin: 0 auto;
}
.ab-timeline::before {
	content: '';
	position: absolute;
	left: 80px;
	top: 0;
	bottom: 0;
	width: 1px;
	background: #60091A;
}
.ab-timeline-item {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 28px;
	margin-bottom: 40px;
	position: relative;
}
.ab-timeline-item:last-child { margin-bottom: 0; }
.ab-timeline-year {
	font-family: var(--font-body, Georgia, serif);
	font-size: 18px;
	font-weight: 700;
	color: #60091A;
	text-align: right;
	padding-right: 28px;
	padding-top: 2px;
	position: relative;
}
.ab-timeline-year::after {
	content: '';
	position: absolute;
	right: -5px;
	top: 8px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #60091A;
	border: 2px solid #1A120B;
}
.ab-timeline-content h4 {
	font-family: var(--font-body, Georgia, serif);
	font-size: 18px;
	font-weight: 700;
	color: #60091A;
	margin: 0 0 6px;
}
.ab-timeline-content p {
	font-size: 14px;
	line-height: 1.65;
	color: #101010;
	margin: 0;
}

/* ---- SEO text ---- */
.ab-seo-section {
	background: #ffffff;
	padding: 64px 32px;
}
.ab-seo-inner {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}
.ab-seo-title {
	font-family: var(--font-display, Georgia, serif);
	font-size: 20px;
	font-weight: 500;
	color: #60091A;
	margin: 0 0 16px;
}
.ab-seo-text {
	font-size: 15px;
	line-height: 1.85;
	color: #101010;
	margin: 0;
}
.ab-story-badge {
	position: absolute;
	bottom: 0;
	right: 0;
	background: #1A120B;
	color: #ffffff;
	border-radius: 14px;
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 12px 32px rgba(0,0,0,0.25);
	z-index: 2;
	border: 1px solid rgba(201,169,110,0.15);
	white-space: nowrap;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

/* ─── TABLET (≤ 1024px) ─── */
@media (max-width: 1024px) {
	.ab-section { padding: 80px 0; }
	.ab-container { padding: 0 24px; }
	.ab-hero h1 { font-size: 44px; }
	.ab-hero-stats { gap: 32px; }
	.ab-story { gap: 48px; }
	.ab-story-text .section-title { font-size: 32px !important; }
	.ab-mv-inner { gap: 56px; padding: 64px 32px; }
	.ab-mv-label { font-size: 32px; }
	.ab-roots-inner { padding: 64px 32px; }
	.ab-roots-title { font-size: 32px; }
}

/* ─── MOBILE (≤ 768px) ─── */
@media (max-width: 768px) {
	.ab-section { padding: 56px 0; }
	.ab-container { padding: 0 20px; }

	.ab-hero-inner { padding: 72px 20px 56px; }
	.ab-hero h1 { font-size: 36px; line-height: 1.15; }
	.ab-hero-desc { font-size: 15px; line-height: 1.6; }
	.ab-hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
	.ab-hero-stat-num { font-size: 28px; }

	.ab-story { grid-template-columns: 1fr; gap: 40px; }
	
	.ab-story-img { aspect-ratio: 4/3; }
	.ab-story-text .section-title { font-size: 28px !important; }
	.ab-story-text p,
	.ab-story-text .post-content p { font-size: 15px; line-height: 1.75; }
	.ab-cred-tag { padding: 8px 12px; font-size: 12px; }

	.ab-mv-inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px; }
	.ab-mv-label { font-size: 26px; }

	.ab-roots-inner { padding: 56px 24px; }
	.ab-roots-title { font-size: 28px; }
	.ab-roots-text { font-size: 15px; line-height: 1.75; }

	.ab-timeline::before { left: 82px; }
	.ab-timeline-item { grid-template-columns: 70px 1fr; gap: 24px; margin-bottom: 28px; }
	.ab-timeline-year { font-size: 15px; padding-right: 16px; }

	.ab-seo-section { padding: 48px 20px; }
	.ab-story {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.ab-story-img{
	aspect-ratio:2/2;
	border-radius:24px;
	overflow:hidden;
}

.ab-story-badge{
	position:absolute;
	left:80%;
	bottom:-14px;
	transform:translateX(-50%);
	width:max-content;
	max-width:220px;
	display:flex;
	align-items:center;
	justify-content:center;
	gap:10px;
	padding:14px 18px;
	border-radius:18px;
	background:#1A120B;
	box-shadow:0 18px 40px rgba(0,0,0,.28);
	z-index:5;
	white-space:nowrap;
}

.ab-story-badge strong{
	font-size:13px;
	line-height:1.2;
}

.ab-story-badge span{
	font-size:11px;
}

}
/* ─── SMALL PHONES (≤ 480px) ─── */
@media (max-width: 480px) {
	.ab-section { padding: 44px 0; }

	.ab-hero-inner { padding: 56px 16px 44px; }
	.ab-hero h1 { font-size: 30px; }
	.ab-hero-desc { font-size: 14px; }
	.ab-hero-stats { gap: 16px; }
	.ab-hero-stat-num { font-size: 24px; }

	.ab-story { gap: 36px; }
	
	.ab-story-img { aspect-ratio: 4/3; }
	.ab-story-badge { padding: 10px 14px; border-radius: 12px; gap: 8px; }
	.ab-story-badge > div:first-child { font-size: 18px; }
	.ab-story-badge strong { font-size: 12px; }

	.ab-mv-inner { padding: 44px 18px; gap: 32px; }
	.ab-mv-label { font-size: 22px; }

	.ab-roots-inner { padding: 44px 18px; }
	.ab-roots-title { font-size: 24px; }

	.ab-timeline::before { left: 65px; }
	.ab-timeline-item { grid-template-columns: 56px 1fr; gap: 18px; margin-bottom: 22px; }
	.ab-timeline-year { font-size: 13px; padding-right: 12px; }

	.ab-seo-section { padding: 40px 16px; }
}

/* ─── TINY PHONES (≤ 360px) ─── */
@media (max-width: 360px) {
	.ab-hero h1 { font-size: 26px; }
	.ab-hero-stat-num { font-size: 22px; }
	.ab-mv-label { font-size: 20px; }
	.ab-roots-title { font-size: 22px; }
	.ab-story-text .section-title { font-size: 22px !important; }
	.ab-cred-tag { font-size: 11px; padding: 7px 10px; }
	.ab-timeline::before { left: 56px; }
	.ab-timeline-item { grid-template-columns: 48px 1fr; gap: 14px; }
	.ab-timeline-year { font-size: 12px; }
}
/* ════════════════════════════════════════════════════════════
   KNOW OUR FOUNDER
═════════════════════════════════════════════════════════════ */

.tll-founder-section {
  background: var(--cream, #F4EEE2);
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
  border-top: 1px solid rgba(96, 9, 26, 0.15);
  border-bottom: 1px solid rgba(96, 9, 26, 0.15);
}

.tll-founder-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  position: relative;
}

/* Vertical divider line */
.tll-founder-wrap::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
  width: 1px;
  height: 90%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--red, #60091A) 15%,
    var(--red, #60091A) 85%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ─── LEFT: IMAGE ─── */
.tll-founder-media {
  position: relative;
  z-index: 2;
  padding-right: 60px;
}

.tll-founder-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(26, 18, 11, 0.18);
}

.tll-founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.tll-founder-image-frame:hover .tll-founder-image {
  transform: scale(1.03);
}

/* ─── RIGHT: CONTENT ─── */
.tll-founder-content {
  position: relative;
  z-index: 2;
  padding: 20px 0 20px 60px;
  text-align: center;
}

.tll-founder-title {
  font-family: 'Balkind', Georgia, serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red, #60091A);
  margin: 0 0 36px;
}

.tll-founder-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--red, #60091A);
  margin: 0 0 22px;
  font-weight: 400;
  text-align: center;
}

.tll-founder-text p strong {
  font-weight: 600;
  color: var(--red, #60091A);
}

.tll-founder-text p:last-of-type {
  margin-bottom: 28px;
}

/* Italic cursive quote */
.tll-founder-quote {
  font-family: 'Balkind';
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 100;
  line-height: 1.2;
  color: var(--red, #60091A);
  margin: 0;
  padding: 0;
  border: none;
  text-align: center;
  letter-spacing:1.5px;
}

/* ─── TABLET ─── */
@media (max-width: 1024px) {
  .tll-founder-section {
    padding: 60px 0;
  }
  .tll-founder-wrap {
    padding: 0 32px;
  }
  .tll-founder-media {
    padding-right: 40px;
  }
  .tll-founder-content {
    padding-left: 40px;
  }
  .tll-founder-title {
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 24px;
  }
  .tll-founder-text p {
    font-size: 15px;
  }
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .tll-founder-section {
    padding: 48px 0;
  }
  .tll-founder-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 20px;
  }
  .tll-founder-wrap::after {
    display: none;
  }
  .tll-founder-media {
    padding-right: 0;
  }
  .tll-founder-image-frame {
    aspect-ratio: 4 / 5;
    max-width: 380px;
    margin: 0 auto;
  }
  .tll-founder-content {
    padding: 0;
    text-align: center;
  }
  .tll-founder-title {
    font-size: clamp(28px, 7vw, 38px);
    margin-bottom: 20px;
  }
  .tll-founder-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
  }
  .tll-founder-quote {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 16px;
  }
}

/* ─── SMALL MOBILE ─── */
@media (max-width: 480px) {
  .tll-founder-section {
    padding: 36px 0;
  }
  .tll-founder-wrap {
    gap: 24px;
    padding: 0 16px;
  }
  .tll-founder-title {
    font-size: 28px;
  }
  .tll-founder-text p {
    font-size: 14px;
  }
  .tll-founder-quote {
    font-size: 15px;
  }
}
