*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --dark: #0d2016;
  --dark2: #122a1c;
  --dark3: #1a3828;
  --gold: #c49a3c;
  --gold-light: #e0b84e;
  --gold-pale: #fdf5e0;
  --white: #ffffff;
  --off-white: #f7f5f0;
  --light: #f2f0eb;
  --text: #1a1a1a;
  --muted: #6b7280;
  --border: #e5e0d5;
  --card: #ffffff;
  --shadow: 0 4px 24px rgba(0, 0, 0, .08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .14);
  --radius: 16px;
  --radius-sm: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--light);
  color: var(--text);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #f0ede6;
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

/* ══════════════════════════
   PAGE HERO BANNER
══════════════════════════ */
.page-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 130px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(196, 154, 60, .18) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(26, 56, 40, .9) 0%, transparent 60%),
    linear-gradient(135deg, #0d2016 0%, #1a3828 40%, #0d2016 100%);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 85%, rgba(196, 154, 60, .12) 0%, transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(196, 154, 60, .08) 0%, transparent 40%);
}

.page-hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.page-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
  border: 1px solid rgba(196, 154, 60, .45);
  padding: 5px 16px;
  border-radius: 4px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 13px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .6);
  transition: color .2s;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  color: rgba(255, 255, 255, .35);
}

.breadcrumb strong {
  color: var(--gold);
}

/* ══════════════════════════
   SHARED
══════════════════════════ */
section {
  padding: 88px 80px;
}

@media(max-width:1100px) {
  section {
    padding: 64px 40px;
  }
}

@media(max-width:768px) {
  section {
    padding: 56px 24px;
  }
}

.section-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.section-title.light {
  color: #fff;
}

.section-sub {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 600px;
}

.section-sub.light {
  color: rgba(255, 255, 255, .65);
}

.gold-line {
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 18px 0 0;
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: .1s;
}

.d2 {
  transition-delay: .2s;
}

.d3 {
  transition-delay: .3s;
}

.d4 {
  transition-delay: .4s;
}

.d5 {
  transition-delay: .5s;
}

/* ══════════════════════════
   SECTION 1 — OUR STORY
══════════════════════════ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.story-images {
  position: relative;
  height: 520px;
}

.story-img-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 72%;
  height: 82%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(145deg, #0d2016 0%, #1a3828 40%, #0f2e1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-img-main .img-art {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 70% 40%, rgba(196, 154, 60, .22) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(26, 56, 40, .8) 0%, transparent 45%),
    linear-gradient(145deg, #0d2016 0%, #1a3828 50%, #112418 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.story-img-main .img-art-icon {
  font-size: 64px;
  opacity: .85;
}

.story-img-main .img-art-label {
  font-family: 'Playfair Display', serif;
  color: rgba(255, 255, 255, .55);
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.story-img-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 54%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--off-white);
  background: linear-gradient(145deg, #c49a3c 0%, #e0b84e 50%, #a07820 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-img-secondary .img-art {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .18) 0%, transparent 50%),
    linear-gradient(145deg, #b8902e 0%, #d4a83a 50%, #c49a3c 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.story-img-secondary .img-art-icon {
  font-size: 44px;
  opacity: .9;
}

.story-img-secondary .img-art-label {
  color: rgba(13, 32, 22, .75);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Playfair Display', serif;
}

.story-badge {
  position: absolute;
  left: 0;
  bottom: 60px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 14px;
  padding: 16px 22px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(196, 154, 60, .45);
  z-index: 2;
}

.story-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1;
  display: block;
}

.story-text p {
  font-size: 15.5px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 20px;
}

.story-text p:last-of-type {
  margin-bottom: 0;
}

/* ══════════════════════════
   SECTION 2 — STATS BAR
══════════════════════════ */
.stats-bar {
  background: var(--dark);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-bar-item {
  padding: 40px 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  transition: background .25s;
}

.stats-bar-item:hover {
  background: rgba(255, 255, 255, .04);
}

.stats-bar-item:last-child {
  border-right: none;
}

.stats-icon {
  font-size: 30px;
  color: var(--gold);
}

.stats-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stats-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .5);
  margin-top: 4px;
}

/* ══════════════════════════
   SECTION 3 — WHAT WE DO
══════════════════════════ */
#what-we-do {
  background: #fff;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.what-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 32px;
  border-top: 4px solid transparent;
  transition: all .3s;
}

.what-card:hover {
  border-top-color: var(--gold);
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.what-card-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.what-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text);
}

.what-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

/* ══════════════════════════
   SECTION 4 — WHY US
══════════════════════════ */
#why-us {
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 52px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  transition: all .25s;
}

.why-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 50px;
  height: 50px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.why-item h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.why-item p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

.why-visual {
  position: relative;
}

.why-visual-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
  background:
    radial-gradient(circle at 65% 35%, rgba(196, 154, 60, .22) 0%, transparent 50%),
    radial-gradient(circle at 25% 75%, rgba(26, 56, 40, .6) 0%, transparent 45%),
    linear-gradient(155deg, #0d2016 0%, #1a3828 45%, #0f2e1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-visual-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.why-visual-art .art-icon {
  font-size: 72px;
  opacity: .85;
}

.why-visual-art .art-title {
  font-family: 'Playfair Display', serif;
  color: rgba(255, 255, 255, .65);
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.why-visual-art .art-sub {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.why-visual-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-visual-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.why-badge-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.why-badge-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ══════════════════════════
   SECTION 5 — OUR VISION
══════════════════════════ */
#vision {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.vision-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(196, 154, 60, .12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(196, 154, 60, .08) 0%, transparent 50%);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.vision-left .section-sub {
  max-width: 480px;
}

.vision-pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 36px;
}

.vision-pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, .06);
  border-radius: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .1);
  transition: all .25s;
}

.vision-pillar:hover {
  background: rgba(196, 154, 60, .1);
  border-color: rgba(196, 154, 60, .3);
}

.pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--gold);
  font-weight: 700;
  min-width: 36px;
  line-height: 1;
}

.pillar-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.pillar-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}

.vision-quote {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(196, 154, 60, .25);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}

.vision-quote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 96px;
  color: var(--gold);
  line-height: .8;
  position: absolute;
  top: 20px;
  left: 28px;
  opacity: .35;
}

.vision-quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: #fff;
  line-height: 1.6;
  margin-bottom: 28px;
  margin-top: 24px;
}

.vision-quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.author-img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--gold);
}

.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.author-role {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  margin-top: 3px;
}

/* ══════════════════════════
   SECTION 6 — MILESTONES
══════════════════════════ */
#milestones {
  background: #fff;
}

.timeline {
  position: relative;
  margin-top: 56px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(196, 154, 60, .15) 100%);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content {
  padding: 28px 36px;
  background: var(--light);
  border-radius: 16px;
  transition: all .3s;
}

.timeline-content:hover {
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.timeline-item.left .timeline-content {
  grid-column: 1;
  text-align: right;
}

.timeline-item.right .timeline-content {
  grid-column: 3;
}

.timeline-item.left .timeline-empty {
  grid-column: 3;
}

.timeline-item.right .timeline-empty {
  grid-column: 1;
}

.timeline-dot {
  grid-column: 2;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  box-shadow: 0 0 0 6px rgba(196, 154, 60, .2);
  font-family: 'Playfair Display', serif;
  justify-self: center;
  z-index: 1;
  flex-shrink: 0;
}

.timeline-year {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--text);
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════
   SECTION 7 — TEAM / VALUES
══════════════════════════ */
#values {
  background: var(--off-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s;
}

.value-card:hover::after {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--text);
  margin-bottom: 10px;
}

.value-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* ══════════════════════════
   SECTION 8 — CTA BANNER
══════════════════════════ */
#cta-banner {
  background: var(--dark);
  position: relative;
  padding: 80px;
  text-align: center;
  overflow: hidden;
}

#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(196, 154, 60, .15) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(196, 154, 60, .1) 0%, transparent 40%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-inner p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.75;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  display: inline-block;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 154, 60, .4);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  padding: 14px 30px;
  border: 1.5px solid rgba(255, 255, 255, .4);
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}


/* ══════════════════════════
   FLOATING CTAs
══════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.sticky-whatsapp {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .45);
  cursor: pointer;
  transition: transform .2s;
  animation: pulse-wa 2.5s infinite;
}

.sticky-whatsapp:hover {
  transform: scale(1.1);
}

@keyframes pulse-wa {

  0%,
  100% {
    box-shadow: 0 4px 18px rgba(37, 211, 102, .45);
  }

  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, .7), 0 0 0 10px rgba(37, 211, 102, .12);
  }
}

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */
@media(max-width:1100px) {

  .story-grid,
  .why-grid,
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .story-images {
    height: 320px;
    margin-bottom: 24px;
  }

  .what-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline-item.left .timeline-content,
  .timeline-item.right .timeline-content {
    grid-column: 1;
    text-align: left;
  }

  .timeline-dot {
    display: none;
  }

  .timeline-empty {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 40px;
  }

  .footer-bottom {
    padding: 18px 40px;
  }

  #cta-banner {
    padding: 60px 40px;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
  
  .stats-bar-item:nth-child(even) {
    border-right: none;
  }
  
  .stats-bar-item:nth-child(1),
  .stats-bar-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
}

@media(max-width:768px) {

  .what-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }
  
  .stats-bar-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, .1) !important;
    padding: 24px;
  }

  .stats-bar-item:last-child {
    border-bottom: none !important;
  }

  .why-visual-img {
    height: 320px;
  }

  .page-hero {
    height: 320px;
  }

  nav {
    padding: 0 20px;
  }
}