:root{
  --bg:#E7E2DD;
  --line:#6a655d;
  --text:#3f3a33;
  --muted:#6b645c;
  --accent:#b29775;
  --maxw:1200px;

  --font-body:'Montserrat', system-ui, sans-serif;
  --font-display:'Marcellus', serif;
  --font-serif:'Times New Roman', serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

/* header strip like your pages */
.header-section{
  text-align:center;
  padding:0;
  background:#FAF8F6;
}
.separator-line{
  width:100%;
  height:1px;
  background-color:#443e37;
  margin-bottom:18px;
}
.section-heading{
  text-align:center;
  font-size:.8em;
  letter-spacing:3px;
  text-transform:uppercase;
  margin:15px 0 30px;
  font-weight:400;
  color:#555;
}

/* HERO */
.eh-hero{
  padding:80px 16px 40px;
  background:#FAF8F6;
  text-align:center;
}
@media (max-width:768px){
  .eh-hero{ padding:70px 16px 30px; }
}

.eh-hairline{
  margin:22px auto;
  height:1px;
  max-width:1400px;
  background:linear-gradient(90deg, transparent, var(--line), transparent);
  opacity:.45;
}

.eh-hero-inner{
  max-width:900px;
  margin:0 auto;
}

.eh-hero-inner h1{
  font-family:var(--font-display);
  font-weight:400;
  font-size:clamp(26px,5vw,40px);
  letter-spacing:.02em;
  margin:10px 0 14px;
}

.eh-lead{
  max-width:720px;
  margin:0 auto 22px;
  font-family:var(--font-serif);
  font-size:clamp(15px,1.5vw,18px);
  color:var(--muted);
  line-height:1.8;
}

.eh-badge{
  display:inline-flex;
  align-items:center;
  gap:12px;
  color:#6e6a63;
  letter-spacing:.12em;
  font-weight:500;
  font-size:14px;
  opacity:.92;
}

.eh-badge svg{
  width:20px;
  height:20px;
}

/* headings */
.section-tagline{
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:.82rem;
  color:#9a8d84;
  margin-bottom:8px;
  text-align:center;
}
.section-title{
  font-family:var(--font-display);
  font-weight:400;
  font-size:clamp(22px,3vw,30px);
  margin:0 0 10px;
  text-align:center;
}
.section-subtitle{
  max-width:720px;
  margin:0 auto 34px;
  font-family:var(--font-serif);
  font-size:clamp(15px,1.5vw,18px);
  color:var(--muted);
  text-align:center;
}

/* DUAL FEATURE SECTION */
.eh-dual{
  padding:70px 16px 90px;
  background:#faf7f2;
}

.eh-inner{
  max-width:var(--maxw);
  margin:0 auto;
  text-align:center;
}

.eh-dual-grid{
  margin-top:42px;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:26px;
}

@media (max-width:900px){
  .eh-dual-grid{ grid-template-columns:1fr; }
}

/* CARD */
.eh-dual-card{
  position:relative;
  min-height:520px;
  border-radius:26px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  background:#000;
  box-shadow:0 22px 50px rgba(0,0,0,.10);
  transition:transform .35s ease, box-shadow .35s ease;
}

.eh-dual-card:hover{
  transform:translateY(-6px);
  box-shadow:0 28px 65px rgba(0,0,0,.16);
}

/* IMAGE */
.eh-dual-media{
  position:absolute;
  inset:0;
}

.eh-dual-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.03);
  transition:transform .8s ease, filter .8s ease;
}

.eh-dual-card:hover img{
  transform:scale(1.10);
  filter:saturate(1.08);
}

/* GRADIENT */
.eh-dual-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.60), rgba(0,0,0,.18) 55%);
  z-index:1;
}

/* CONTENT */
.eh-dual-overlay{
  position:relative;
  z-index:2;
  height:100%;
  background: rgba(0, 0, 0, 0.3);
  padding:26px 26px 28px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  text-align:left;
}

.eh-kicker{
  font-size:.78rem;
  letter-spacing:.20em;
  text-transform:uppercase;
  color:rgba(255,255,255,.85);
  margin:0 0 6px;
}

.eh-title{
  font-family:var(--font-display);
  font-weight:400;
  font-size:clamp(22px,2.5vw,32px);
  color:#fff;
  margin:0 0 10px;
}

.eh-text{
  max-width:520px;
  font-family:var(--font-serif);
  font-size:1.05rem;
  line-height:1.75;
  letter-spacing: .03em;
  color:rgba(255,255,255,.86);
  margin:0 0 18px;
}

/* CTA pill */
.eh-cta{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:12px 18px;
  border-radius:999px;
  width:fit-content;
  border:1px solid rgba(255,255,255,.35);
  box-shadow:0 18px 38px rgba(0,0,0,.25);
  transition:transform .25s ease, box-shadow .25s ease;
}

.eh-dual-card:hover .eh-cta{
  transform:translateY(-2px);
  box-shadow:0 22px 45px rgba(0,0,0,.30);
}

.eh-cta-text{
  font-size:.78rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  /* color:#2f2620; */
  color:#fff;
  white-space:nowrap;
}

.eh-cta-icon{
  width:36px;
  height:36px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#104622;
  color:#E7E2DD;
}

/* =========================
   EVENTS ALBUM / PDF SECTION
   ========================= */
.eh-album{
  padding: 10px 16px 90px;
  background: #faf7f2;
}

.eh-album-shell{
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr);
  gap: 26px;
  align-items: stretch;
}

/* media */
.eh-album-media{
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 22px 55px rgba(0,0,0,.10);
  background: #000;
}

.eh-album-media img{
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .9s ease, filter .9s ease;
}

.eh-album-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 20% 15%, rgba(255,255,255,.20), transparent 55%),
              linear-gradient(to top, rgba(0,0,0,.42), rgba(0,0,0,.08) 55%);
  pointer-events:none;
}

.eh-album-shell:hover .eh-album-media img{
  transform: scale(1.08);
  filter: saturate(1.08);
}

/* content */
.eh-album-content{
  background: #fffdf9;
  border-radius: 26px;
  padding: 26px 26px 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  border: 1px solid rgba(68,62,55,.10);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eh-album-title{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 32px);
  margin: 0 0 10px;
  color: var(--text);
  text-align: left;
}
.eh-album-subtitle{
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--accent);
  margin: 0 0 6px;
}

.eh-album-text{
  margin: 10px 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--muted);
  line-height: 1.8;
}

/* button */
/* .eh-album-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 auto;
  padding: 12px 18px 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(16,70,34,.32);
  background: rgba(16,70,34,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
  overflow: hidden;
} */

.eh-album-btn{
  position: relative;

  /* FULL WIDTH */
  width: 100%;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center; /* text left, icon right */
  gap: 12px;
  padding: 14px 20px;
  border-radius: 999px;
  background: rgba(250,248,246,.75);
  backdrop-filter: blur(10px);
  text-decoration: none;
  border: 1px solid rgba(16,70,34,.32);
  background: rgba(16,70,34,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
  overflow: hidden;
}


.eh-album-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0,0,0,.14);
  background: rgba(16,70,34,.14);
  border-color: rgba(16,70,34,.44);
}

.eh-album-btn-text{
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #104622;
  
  /* white-space: nowrap; */
}

.eh-album-note{
  margin: 12px 0 0;
  font-family: var(--font-body);
  font-size: .86rem;
  color: rgba(107,100,92,.9);
}

/* responsive */
@media (max-width: 900px){
  .eh-album-shell{
    grid-template-columns: minmax(0,1fr);
  }

  .eh-album-media img{
    min-height: 340px;
  }

  .eh-album-content{
    text-align: left;
  }
}


/* WhatsApp Float (same as your pages) */
.whatsapp-float{
  position:fixed;
  bottom:25px;
  right:18px;
  width:60px;
  height:60px;
  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:#dcd6cc;
}
