:root {
  --gold: #c89a3f;
  --gold-d: #7b5414;
  --brown: #2a1d0f;
  --green: #2f5f3a;
  --white: #ffffff;
  --bg: #fdf9f3;
  --bg-2: #f7f0e3;
  --text: #23180c;
  --muted: #6d6254;
  --border: rgba(123,84,20,0.12);
  --shadow: 0 14px 40px rgba(32,18,6,0.09);
  --shadow-md: 0 22px 56px rgba(32,18,6,0.12);
  --r: 22px;
  --r-lg: 28px;
  --ease: all 0.30s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; transition: var(--ease); }
ul { list-style: none; }

/* ========= SHARED ========= */
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-d);
  background: rgba(200,154,63,0.10);
  border: 1px solid rgba(200,154,63,0.20);
  letter-spacing: 0.4px;
}
.sec-eyebrow-light {
  display: inline-flex;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #f1cf83;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  margin-bottom: 14px;
}
.sec-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--brown);
  line-height: 1.2;
  margin: 14px 0 12px;
}
.sec-desc {
  color: var(--muted);
  font-size: 16px;
  max-width: 680px;
  margin: 0 auto;
}

/* ========= BREADCRUMB ========= */
.breadcrumb-bar {
  background: linear-gradient(90deg,#1c1208,#5a3b12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 13px 0;
}
.bc-inner {
  width: min(calc(100% - 24px),1320px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.bc-inner a { font-size: 13px; color: rgba(255,255,255,0.78); font-weight: 500; }
.bc-inner a:hover { color: #f1cf83; }
.bc-inner i { font-size: 10px; color: rgba(255,255,255,0.40); }
.bc-inner span { font-size: 13px; color: #f1cf83; font-weight: 600; }

/* ========= HERO ========= */
.about-hero {
  padding: 86px 0 96px;
  background:
    radial-gradient(circle at top right, rgba(200,154,63,0.07), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 60%, #f4ece0 100%);
}
.ah-container {
  width: min(calc(100% - 24px),1320px);
  margin-inline: auto;
}
.ah-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-d);
  background: rgba(200,154,63,0.10);
  border: 1px solid rgba(200,154,63,0.20);
  margin-bottom: 18px;
}
.ah-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  color: var(--brown);
  line-height: 1.12;
  margin-bottom: 18px;
}
.ah-title em {
  font-style: normal;
  background: linear-gradient(135deg, #c89a3f, #7b5414);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ah-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}
.ah-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.ah-stat {
  padding: 18px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  text-align: center;
}
.ah-stat strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.55rem;
  color: var(--gold-d);
  margin-bottom: 4px;
  line-height: 1;
}
.ah-stat span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.ah-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-ah-gold, .btn-ah-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--ease);
}
.btn-ah-gold {
  background: linear-gradient(135deg,#d4a843,#8c6118);
  color: #fff;
  box-shadow: 0 14px 30px rgba(140,97,24,0.22);
}
.btn-ah-gold:hover { color: #fff; transform: translateY(-2px); }
.btn-ah-wa {
  background: linear-gradient(135deg,#28c760,#15944a);
  color: #fff;
  box-shadow: 0 14px 30px rgba(37,211,102,0.20);
}
.btn-ah-wa:hover { color: #fff; transform: translateY(-2px); }

/* Image Grid */
.ah-img-grid { display: flex; flex-direction: column; gap: 12px; }
.ah-img-main {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.ah-img-main img { width: 100%; height: 340px; object-fit: cover; }
.ah-img-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(123,84,20,0.10);
  box-shadow: 0 10px 28px rgba(32,18,6,0.12);
}
.ah-img-badge i { font-size: 22px; color: var(--gold-d); }
.ah-img-badge span { font-size: 13px; font-weight: 700; color: var(--brown); line-height: 1.3; }
.ah-img-small-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ah-img-sm {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.ah-img-sm img { width: 100%; height: 170px; object-fit: cover; }

/* ========= CERTIFICATIONS STRIP ========= */
.cert-section {
  background: linear-gradient(135deg,#1b1208,#5c3b12,#9b6f28);
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cert-container { width: min(calc(100% - 24px),1320px); margin-inline: auto; }
.cert-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 160px;
}
.cert-item i { font-size: 26px; color: #f1cf83; flex-shrink: 0; }
.cert-item strong { display: block; color: #fff; font-size: 14px; margin-bottom: 3px; }
.cert-item span { color: rgba(255,255,255,0.70); font-size: 12px; }
.cert-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* ========= MISSION VISION VALUES ========= */
.mvv-section { padding: 92px 0; background: var(--bg); }
.mvv-container { width: min(calc(100% - 24px),1320px); margin-inline: auto; }
.mvv-head { text-align: center; margin-bottom: 48px; }
.mvv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.mvv-card {
  padding: 34px 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.mvv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.mvv-mission::before { background: linear-gradient(90deg,#d4a843,#8c6118); }
.mvv-vision::before  { background: linear-gradient(90deg,#2ddb6a,#15944a); }
.mvv-values::before  { background: linear-gradient(90deg,#4f8ef0,#1a5ecc); }
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mvv-icon {
  width: 64px; height: 64px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
  color: var(--gold-d);
  background: linear-gradient(135deg,rgba(200,154,63,0.16),rgba(200,154,63,0.06));
  border: 1px solid rgba(200,154,63,0.18);
}
.mvv-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.28rem;
  color: var(--brown);
  margin-bottom: 12px;
}
.mvv-card p { color: var(--muted); margin-bottom: 18px; font-size: 15px; line-height: 1.65; }
.mvv-list { display: flex; flex-direction: column; gap: 9px; }
.mvv-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--text); }
.mvv-list i { color: var(--green); font-size: 13px; margin-top: 3px; flex-shrink: 0; }

/* ========= TIMELINE ========= */
.story-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at top right, rgba(200,154,63,0.06), transparent 30%),
    linear-gradient(180deg,#f5ece0,var(--bg));
}
.story-container { width: min(calc(100% - 24px),1100px); margin-inline: auto; }
.story-head { text-align: center; margin-bottom: 60px; }
.timeline {
  position: relative;
  padding: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,var(--gold),rgba(200,154,63,0.20));
  transform: translateX(-50%);
}
.tl-item {
  display: flex;
  justify-content: flex-end;
  padding: 0 calc(50% + 36px) 40px 0;
  position: relative;
}
.tl-item.tl-right {
  justify-content: flex-start;
  padding: 0 0 40px calc(50% + 36px);
}
.tl-dot {
  position: absolute;
  left: 50%;
  top: 24px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg,#d4a843,#8c6118);
  border: 3px solid var(--bg);
  box-shadow: 0 6px 18px rgba(140,97,24,0.28);
  transform: translateX(-50%);
  z-index: 2;
}
.tl-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 24px;
  box-shadow: var(--shadow);
  max-width: 420px;
  width: 100%;
  transition: var(--ease);
}
.tl-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tl-year {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg,#d4a843,#8c6118);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
.tl-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.12rem;
  color: var(--brown);
  margin-bottom: 8px;
}
.tl-card p { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ========= WHY US ========= */
.why-section { padding: 92px 0; background: #fff; }
.why-container { width: min(calc(100% - 24px),1320px); margin-inline: auto; }
.why-head { text-align: center; margin-bottom: 48px; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.why-card {
  padding: 30px 24px;
  background: linear-gradient(180deg,rgba(255,255,255,0.97),rgba(247,242,232,0.97));
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  transition: var(--ease);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(200,154,63,0.22); }
.why-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold-d);
  background: linear-gradient(135deg,rgba(200,154,63,0.16),rgba(200,154,63,0.05));
  border: 1px solid rgba(200,154,63,0.16);
  margin-bottom: 18px;
}
.why-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 10px;
}
.why-card p { color: var(--muted); font-size: 14.5px; line-height: 1.65; }

/* ========= TEAM ========= */
.team-section {
  padding: 92px 0;
  background: linear-gradient(180deg,#f5ece0,var(--bg));
}
.team-container { width: min(calc(100% - 24px),1100px); margin-inline: auto; }
.team-head { text-align: center; margin-bottom: 48px; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-img { overflow: hidden; }
.team-img img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.4s ease; }
.team-card:hover .team-img img { transform: scale(1.04); }
.team-info { padding: 22px 22px 24px; }
.team-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.12rem;
  color: var(--brown);
  margin-bottom: 5px;
}
.team-role {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-d);
  margin-bottom: 12px;
}
.team-info p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.team-socials { display: flex; gap: 10px; }
.team-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold-d);
  background: rgba(200,154,63,0.10);
  border: 1px solid rgba(200,154,63,0.18);
}
.team-socials a:hover { background: var(--gold-d); color: #fff; }

/* ========= TESTIMONIALS ========= */
.at-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at center, rgba(200,154,63,0.06), transparent 40%),
    #fff;
}
.at-container { width: min(calc(100% - 24px),1320px); margin-inline: auto; }
.at-head { text-align: center; margin-bottom: 44px; }
.tcard {
  background: linear-gradient(180deg,rgba(255,255,255,0.96),rgba(248,243,234,0.96));
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  margin: 4px;
}
.tcard-stars { color: #f4bf42; font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.tcard-text {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 20px;
  min-height: 100px;
}
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,#d4a843,#8c6118);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 10px 22px rgba(140,97,24,0.22);
  flex-shrink: 0;
}
.tcard-author strong { display: block; color: var(--brown); font-size: 15px; }
.tcard-author span { font-size: 13px; color: var(--muted); }
#aboutTesti.owl-theme .owl-dots { margin-top: 26px !important; }
#aboutTesti.owl-theme .owl-dot span { background: rgba(123,84,20,0.20) !important; }
#aboutTesti.owl-theme .owl-dot.active span { background: var(--gold-d) !important; }

/* ========= CTA BANNER ========= */
.about-cta-section { padding: 0 0 86px; }
.acta-container { width: min(calc(100% - 24px),1320px); margin-inline: auto; }
.acta-box {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 60px 52px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 28%),
    linear-gradient(135deg,#1b1208 0%,#5c3b12 50%,#9b6f28 100%);
  box-shadow: 0 28px 70px rgba(30,18,6,0.20);
}
.acta-deco {
  position: absolute; right: 48px; top: 20px;
  font-size: 110px; color: rgba(255,255,255,0.05);
  line-height: 1; pointer-events: none;
}
.acta-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem,3vw,2.8rem);
  color: #fff;
  line-height: 1.2;
  margin: 12px 0 12px;
}
.acta-desc { color: rgba(255,255,255,0.82); font-size: 15px; }
.acta-btns { display: flex; flex-direction: column; gap: 14px; }
.acta-btn-gold, .acta-btn-wa {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 20px;
  border-radius: 20px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  width: 100%;
}
.acta-btn-gold {
  background: linear-gradient(135deg,#d4a843,#8c6118);
  color: #fff;
  box-shadow: 0 14px 30px rgba(140,97,24,0.24);
}
.acta-btn-gold:hover { color: #fff; transform: translateY(-2px); }
.acta-btn-wa {
  background: linear-gradient(135deg,#28c760,#15944a);
  color: #fff;
  box-shadow: 0 14px 30px rgba(37,211,102,0.22);
}
.acta-btn-wa:hover { color: #fff; transform: translateY(-2px); }
.acta-btn-gold i, .acta-btn-wa i { font-size: 22px; flex-shrink: 0; }
.acta-btn-gold span, .acta-btn-wa span {
  display: flex; flex-direction: column; line-height: 1.25; text-align: left;
}
.acta-btn-gold small, .acta-btn-wa small { font-size: 11px; font-weight: 500; opacity: 0.85; }

/* ========= RESPONSIVE ========= */
@media (max-width: 1199.98px) {
  .ah-stats { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 991.98px) {
  .about-hero { padding: 60px 0 72px; }
  .mvv-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .cert-divider { display: none; }
  .cert-inner { justify-content: flex-start; gap: 24px; }
  .timeline::before { left: 20px; }
  .tl-item, .tl-item.tl-right {
    justify-content: flex-start;
    padding: 0 0 34px 56px;
  }
  .tl-dot { left: 20px; }
  .tl-card { max-width: 100%; }
}

@media (max-width: 767.98px) {
  .about-hero { padding: 48px 0 60px; }
  .ah-title { font-size: 2.2rem; }
  .ah-stats { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .ah-cta { flex-direction: column; }
  .btn-ah-gold, .btn-ah-wa { justify-content: center; }
  .ah-img-main img { height: 260px; }
  .ah-img-sm img { height: 130px; }
  .mvv-section, .story-section, .why-section, .team-section, .at-section { padding: 64px 0; }
  .sec-title { font-size: 1.8rem; }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .acta-box { padding: 38px 24px; }
  .about-cta-section { padding-bottom: 64px; }
}

@media (max-width: 575.98px) {
  .ah-stats { grid-template-columns: 1fr 1fr; }
  .cert-inner { flex-direction: column; }
  .mvv-grid, .why-grid { grid-template-columns: 1fr; }
  .acta-title { font-size: 1.7rem; }
  .acta-btns { gap: 10px; }
}
