:root{
  --black:#FAF7F0;
  --white:#ffffff;
  --gray:#000000;
  --coffee:#000000;
  --wa:#25D366;
  --green:#0b6b72;
  --green-dark:#084b53;
    /* Responsive container max: prefer 960px but scale with viewport height
      so wide short screens don't create overly wide content. Uses aspect-based
      sizing via viewport height multiplier. */
  --container-max: min(960px, calc(100vh * 1.6));
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',system-ui,sans-serif;
}

html,
body{
  width:100%;
  overflow-x:hidden;
  user-select:none;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
}

body{
  background:var(--black);
  color:var(--gray); /* page body text should be dark on cream background */
  line-height:1.25;
}

/* Ensure hero text remains light for contrast on the gradient */
.hero, .hero *{
  color: #ffffff;
}

/* ================= LAYOUT ================= */
.wrapper{
  max-width:var(--container-max);
  margin:auto;
  padding:0 20px 72px;
}

.section{
  margin-top:110px;
}

.hero{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:18px;
  justify-content:center;
  width:100vw;
  max-width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  padding:clamp(32px, 5vw, 70px);
  min-height:100vh;
  background: linear-gradient(135deg, #00c2cd 5%, #00666b 20%, #1d6e72 70%, #43adb2 90%, #c5d3dd 100%);
  overflow:hidden;
}

.hero-image{
  position:absolute;
  bottom:0;
  right:0;
  width: clamp(320px, 40vw, 55%);
  max-height: 80vh;
  object-fit:contain;
  pointer-events: none;
  z-index: 0;
}

.hero > :not(.hero-image) {
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .hero{
    justify-content:flex-start;
    padding:clamp(32px, 5vw, 70px);
    min-height:100vh;
  }
  .hero-image{
    width: clamp(300px, 60vw, 80%);
    height: auto;
    aspect-ratio: 1 / 1;
    max-height: 100vh;
    right: 0;
    bottom: 0;
    transform: none;
  }
}

.hero-banner{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:12px 10px;
  background:#2b4e50;
  width:100vw;
  max-width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  overflow:hidden;
}

.hero-banner-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  max-width:100%;
  min-width:0;
}

.hero-banner p{
  margin:0;
  color:#fff289;
  font-size:clamp(9px, 3vw, 15px);
  font-weight:400;
  white-space:nowrap;
  line-height:1.2;
  letter-spacing:-.04em;
  min-width:0;
  max-width:calc(100vw - 28px);
}

@media (max-width: 640px) {
  .hero-banner{
    padding:10px 8px;
  }
  .hero-banner p{
    font-size:clamp(9px, 3.2vw, 14px);
  }
}

@media (max-width: 420px) {
  .hero-banner{
    padding:8px 8px;
  }
  .hero-banner p{
    font-size:clamp(9px, 4vw, 13px);
  }
}

/* ================= TEXT ================= */
.hero h1{
  font-size:clamp(42px,5vw,72px);
  font-weight:700;
  letter-spacing:-.02em;
  line-height:1.05;
  max-width:720px;
}

.hero p{
  color:#ffffff;
  font-size:clamp(16px,1.6vw,20px);
  max-width:560px;
}

h2{
  font-size:clamp(22px,4vw,34px);
  text-align: center;
  font-weight:600;
    max-width:var(--container-max);
}

p{
  color:var(--gray);
  max-width:var(--container-max);
}

/* ================= CTA ================= */
.btn-wa{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 28px;
  border-radius:999px;
  background:var(--wa);
  color:#000;
  font-size:clamp(px,7vw,58px);
  font-weight:600;
  text-decoration:none;
  width:max-content;
  transition:transform .2s ease, box-shadow .2s ease;
}
.btn-wa:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(37,211,102,.35);
}

.section .btn-wa{
  margin-top:22px;
}

.btn-wa2{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 28px;
  border-radius:999px;
  background:var(--wa);
  color:#000;
  font-size:clamp(px,7vw,58px);
  font-weight:600;
  text-decoration:none;
  width:max-content;
  transition:transform .2s ease, box-shadow .2s ease;
}
.btn-wa2:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(37,211,102,.35);
}

.cta-actions{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-top:22px;
}

.btn-wa2,
.btn-wa3{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 28px;
  border-radius:999px;
  font-size:clamp(14px,2.4vw,18px);
  font-weight:600;
  text-decoration:none;
  width:100%;
  max-width:320px;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-wa2{
  background:var(--wa);
  color:#000;
}
.btn-wa2:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(37,211,102,.35);
}

.btn-wa3{
  background:#e8e8e8;
  color:#1d1d1d;
}
.btn-wa3:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 18px rgba(0,0,0,.12);
  background:#dcdcdc;
}

@media (min-width: 900px){
  .cta-actions{
    flex-direction:row;
    gap:16px;
  }
  .btn-wa2,
  .btn-wa3{
    max-width:none;
    min-width:240px;
    flex:1;
    width:auto;
  }
}

/* ================= LOW DATA MODE ================= */
body.low-data img{
  opacity:.9;
}
body.low-data *{
  animation:none!important;
  transition:none!important;
}

/* ================= HEADER ================= */
.header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
  background:linear-gradient(90deg,var(--green-dark),var(--green));
  border-bottom:1px solid rgba(255,255,255,.18);
  padding:12px 14px;
  box-shadow:0 6px 22px rgba(0,0,0,.2);
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease;
}
.header.show{
  opacity:1;
  pointer-events:auto;
}
.header-content{
  max-width:var(--container-max);
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:center;
}
.header-logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}
.header-logo img{
  height:clamp(28px,5vw,34px);
  width:auto;
  filter:brightness(1.1);
}

/* ================= FAB ================= */
.fab{
  position:fixed;
  bottom:30px;
  right:30px;
  width:60px;
  height:60px;
  border-radius:50%;
  background:var(--wa);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  z-index:99;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease, transform .3s ease;
  box-shadow:0 4px 16px rgba(37,211,102,.3);
}
.fab.show{
  opacity:1;
  pointer-events:auto;
}
.fab:hover{
  transform:scale(1.1);
}
.fab-icon{
  font-size:28px;
  font-weight:700;
  color:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
}

/* ================= FOOTER ================= */
.footer{
  margin-top:120px;
  text-align:center;
  font-size:13px;
  color:var(--gray);
}

/* ================= PHOTO ROW ================= */
.photo-row{
  margin-top:48px;
  margin-bottom:56px;
  text-align:center;
}
.photo-row h2{
  font-size:clamp(28px,4vw,40px);
  margin-bottom:28px;
  color:#0f1f2b;
}
.photo-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:18px;
  margin:0 auto;
  max-width:calc(3 * 280px + 2 * 18px);
}
.photo-card{
  display:flex;
  flex-direction:column;
  gap:0;
  border-radius:26px;
  overflow:hidden;
  background:#ffffff;
  box-shadow:0 8px 18px rgba(16,77,88,0.12);
  flex:0 1 clamp(200px,22vw,260px);
  max-width:260px;
}
.photo-img{
  width:100%;
  aspect-ratio:2 / 3;
  object-fit:cover;
  display:block;
}
.photo-caption{
  padding:16px 18px;
  font-size:clamp(14px,1vw,16px);
  line-height:1.4;
  font-weight:700;
  color:#0f1f2b;
  text-align:left;
  min-height:56px;
  display:flex;
  align-items:center;
}
@media (max-width: 900px){
  .photo-card{
    flex:0 1 min(240px,45%);
  }
}
@media (max-width: 640px){
  .wrapper{
    padding-left:14px;
    padding-right:14px;
  }
  .photo-card{
    flex:0 1 min(200px,48%);
    max-width:none;
  }
}
@media (max-width: 520px){
  .photo-card{
    flex:0 1 min(170px,48%);
  }
}
@media (max-width: 320px){
  .photo-card{
    flex:0 1 100%;
  }
}

/* ================= FAQ ================= */
.faq-section{
  margin-top:20px;
  padding:20px 20px;
  background:#fff6c8;
  border-radius:28px;
}
.faq-section h2{
  text-align:center;
  margin-bottom:10px;
  font-size:clamp(20px,3.5vw,28px);
}
.faq-list{
  max-width:var(--container-max);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.faq-item{
  background:rgba(255,255,255,0.92);
  border-radius:20px;
  border:1px solid rgba(0,0,0,0.06);
  overflow:hidden;
}
.faq-item[open]{
  background:#fff3a7;
  border-color:rgba(0,0,0,0.12);
}
.faq-item:last-child{border-bottom:0}
.faq-toggle{
  width:100%;
  text-align:left;
  padding:14px 18px;
  background:none;
  border:0;
  color:#000;
  font-weight:600;
  font-size:16px;
  display:flex;
  align-items:center;
  gap:12px;
  cursor:pointer;
}
.faq-toggle{position:relative; z-index:2}
.faq-toggle .question{flex:1}
.faq-toggle .icon{color:#000; font-weight:700; margin-right:8px}
.faq-panel{
  padding:12px 18px 18px;
  color:#000;
  font-size:14px;
  line-height:1.45;
}
.faq-panel{position:relative; z-index:1}

/* details/summary helper rules */
.faq-toggle::-webkit-details-marker{display:none}
.faq-toggle{user-select:none}
.faq-toggle .icon::after{content:'+';}
.faq-item[open] .faq-toggle .icon::after{content:'-';}