
:root {
  --lg-font-headline: "Marcellus", serif;
  --lg-font-body: "Montserrat", system-ui, sans-serif;
  --lg-font-serif: 'Times New Roman', serif;
  --lg-color-bg: #f5f1ec;
  --lg-color-ink: #2b2b2b;
  --lg-color-ink-soft: #6e6a67;
  --lg-color-accent: #548D83;
  --lg-color-accent-soft: #e0f0ed;
  --lg-radius-lg: 18px;
  --lg-radius-xl: 28px;
  --lg-shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.08);

  --bg: #E7E2DD;
  --line: #6a655d;
  --text: #3f3a33;
  --muted:#6b645c;
  --accent:#b29775;
  --maxw: 1050px;
}

 *,*::before,*::after{ box-sizing: border-box; }
  html,body{ height:100%; }
  body{
    margin:0;
    background: var(--bg);
    /* background: var(--bg); */
    color: var(--text);
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

/* HERO SECTION */

.experience-hero-section {
  padding: 80px 16px 50px;
  background: #FAF8F6;
  text-align: center;
}

@media (max-width: 768px) {
  .experience-hero-section {
    padding: 70px 16px 30px;
  }
}

.experience-hairline {
  width: 100%;
  max-width: 900px;
  margin: 16px auto;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.experience-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.experience-hero-content h1 {
  font-family: 'Marcellus', serif;
  font-size: clamp(26px, 5vw, 40px);
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #27211c;
  margin-bottom: 16px;
}

.experience-hero-lead {
  line-height: 1.8;
  color: var(--lg-color-ink-soft);
  max-width: 720px;
  margin: 0 auto 26px;
  font-family: "times new roman", serif;
  font-size: clamp(15px, 1.5vw, 18px);
}

.experience-hero-lead em {
  font-style: italic;
  color: #4a443d;
}

.experience-hero-lead b {
  font-weight: 600;
}

.experience-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  font-size: 15px;
  color:#6e6a63;
}

.experience-hero-badge svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 768px) {
  .experience-hero-badge {
    gap: 8px;
    font-size: 14px;
  }

  .experience-hero-badge svg {
    width: 18px;
    height: 18px;
  }
}




/* WHATSAPP FLOAT */
.whatsapp-float{
  position: fixed;
  bottom: 25px;
  right: 18px;
  width: 60px;
  height: 60px;
  /* background: #25D366; */
  background: #104622;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0,0,0,.3);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  z-index: 999;
  transition: transform .3s ease, box-shadow .3s ease;
  text-decoration: none !important;
}
.whatsapp-float:hover{
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,.4);
}
.whatsapp-icon{
  /* color: #fff; */
  color: #dcd6cc;
}


/* BLOGS / EXPERIENCES SECTION (layout like screenshot) */
.exp-blogs{
  background: #FAF8F6;
  padding: 48px 16px 80px;
}

.exp-blogs-wrap{
  max-width: 1050px;
  margin: 0 auto;
}

.exp-cat{
  margin-top: 26px;
}

.exp-cat-head{
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 10px auto 18px;
}

.exp-cat-title{
  font-family: 'Marcellus', serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #27211c;
  font-size: clamp(18px, 2.2vw, 24px);
  text-align: center;
  margin: 0;
  white-space: nowrap;
}

.exp-cat-line{
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.12);
}

.exp-row{
  margin: 22px 0;
}

.exp-card{
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 430px;
  overflow: hidden;
  box-shadow: var(--lg-shadow-soft);
}

.exp-row.is-reverse .exp-card{
  direction: rtl; /* swap columns */
}
.exp-row.is-reverse .exp-content,
.exp-row.is-reverse .exp-media{
  direction: ltr; /* keep text normal */
}

.exp-media{
  width: 100%;
  height: 100%;
  background: #eee;
}
.exp-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.exp-content{
  padding: clamp(26px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.exp-kicker{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6e6a63;
}

.exp-title{
  margin: 0 0 12px;
  font-family: 'Marcellus', serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #27211c;
  font-size: clamp(18px, 2.4vw, 26px);
}

.exp-text{
  margin: 0 auto 20px;
  max-width: 420px;
  color: var(--lg-color-ink-soft);
  font-size: 14px;
  line-height: 1.9;
}

.exp-btn{
  display: inline-block;
  margin: 0 auto;
  padding: 12px 26px;
  background: transparent;
  color: #000;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid #000;
  font-weight: 500;
  transition: transform .2s ease, opacity .2s ease;
}
.exp-btn:hover{
  transform: translateY(-1px);
  opacity: .92;
  background: #000;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px){
  .exp-card{
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .exp-media{
    height: 320px;
  }
  .exp-cat-title{
    white-space: normal;
  }
}

