@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;750;800;850;900&display=swap');

:root{
  /* Cool and Collected: deep teals + bright metallics */
  --bg:#eaf3f1;          /* cool mist */
  --bg2:#d7e9e6;         /* pale teal */
  --card:#ffffff;        /* clean surface */
  --card2:#f5fbfa;       /* soft teal-white */
  --text:#153331;        /* deep teal text */
  --darktext:#102927;
  --muted:#5e7774;       /* calm muted teal-gray */
  --line:#c8ddda;
  --accent:#0f6f6a;      /* deep teal */
  --accent2:#48b8b0;     /* bright teal / metallic */
  --accent3:#d8ad5f;     /* soft gold metallic */
  --soft:#dff1ee;
  --white:#ffffff;
  --shadow:rgba(21,51,49,.12);
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(72,184,176,.22), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(216,173,95,.14), transparent 30%),
    linear-gradient(135deg,var(--bg),var(--bg2) 55%,#f8fcfb);
  color:var(--text);
  line-height:1.65;
  font-size:16px;
  font-feature-settings:"tnum" 1, "cv05" 1, "cv08" 1;
}

a{color:inherit}

.wrap{
  width:min(1120px,92%);
  margin:auto;
}

/* HEADER */
header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(234,243,241,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}

.nav{
  min-height:76px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:14px 0;
}

.brand{
  flex:0 0 auto;
  font-weight:850;
  letter-spacing:-.045em;
  font-size:20px;
  line-height:1.1;
  text-decoration:none;
  color:var(--text);
}

.navlinks{
  flex:1;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:14px;
  line-height:1.2;
  font-weight:600;
}

.navlinks a{
  text-decoration:none;
  white-space:nowrap;
  padding:8px 4px;
}

.navlinks a:hover{
  color:var(--accent);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 20px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:white;
  text-decoration:none;
  font-weight:800;
  border:1px solid rgba(255,255,255,.55);
  box-shadow:0 14px 32px rgba(15,111,106,.18);
}

.btn:hover{
  filter:brightness(1.04);
  transform:translateY(-1px);
}

.btn.secondary{
  background:rgba(255,255,255,.62);
  color:var(--accent);
  box-shadow:none;
  border:1px solid rgba(15,111,106,.20);
}

.navlinks .btn{
  padding:10px 15px;
}

/* HERO + TYPOGRAPHY */
.hero{
  padding:82px 0 50px;
}

.tag{
  display:inline-block;
  padding:8px 13px;
  border-radius:999px;
  background:rgba(72,184,176,.14);
  color:var(--accent);
  border:1px solid rgba(72,184,176,.28);
  font-weight:800;
  font-size:14px;
  margin-bottom:18px;
}

h1{
  font-size:clamp(38px,6vw,72px);
  line-height:.98;
  margin:0 0 22px;
  letter-spacing:-.07em;
  color:var(--text);
}

h2,
.section-title{
  font-size:clamp(28px,4vw,46px);
  line-height:1.08;
  letter-spacing:-.055em;
  margin:0 0 16px;
  color:var(--text);
}

h3{
  font-size:23px;
  line-height:1.15;
  letter-spacing:-.04em;
  margin:0 0 10px;
}

p{margin-top:0}

.lead{
  font-size:20px;
  color:var(--muted);
  max-width:780px;
  margin:0 0 26px;
}

section{
  padding:54px 0;
}

.wide{
  background:rgba(255,255,255,.46);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:start;
}

.two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:start;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:26px;
}

.card,
.step,
.faq-item,
.item,
form{
  background:linear-gradient(145deg,var(--card),var(--card2));
  border:1px solid rgba(15,111,106,.12);
  border-radius:26px;
  color:var(--darktext);
  box-shadow:0 18px 42px var(--shadow);
}

.card{
  padding:24px;
}

.card h2,
.card h3,
.step h3,
.faq-item h3{
  color:var(--darktext);
}

.card p,
.step p,
.faq-item p,
.item,
form .small{
  color:#526c69;
}

.card p{
  margin:0 0 12px;
}

.card p:last-child{
  margin-bottom:0;
}

.card .btn.secondary{
  background:rgba(15,111,106,.07);
  color:var(--accent);
  border:1px solid rgba(15,111,106,.14);
}

.hero-card,
.split-card,
.cta{
  background:
    radial-gradient(circle at 10% 0%, rgba(72,184,176,.22), transparent 36%),
    linear-gradient(145deg,#ffffff,#dff1ee);
  border:1px solid rgba(15,111,106,.14);
  border-radius:34px;
  padding:34px;
  color:var(--darktext);
  box-shadow:0 26px 70px rgba(15,111,106,.15);
}

.hero-card h2,
.split-card h2,
.cta h2{
  color:var(--darktext);
}

.hero-card p,
.split-card p,
.cta p{
  color:#4d6663;
}

.hero-card h2{
  font-size:28px;
  line-height:1.15;
}

.check{
  display:flex;
  gap:12px;
  margin:13px 0;
  color:#526c69;
}

.check b{
  color:var(--darktext);
}

.quote{
  font-size:24px;
  line-height:1.35;
  letter-spacing:-.035em;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  padding:28px;
  border-radius:28px;
  color:white;
  box-shadow:0 18px 44px rgba(15,111,106,.18);
}

.list{
  display:grid;
  gap:13px;
}

.item{
  padding:18px;
}

.item b{
  color:var(--accent);
}

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:26px;
}

.step{
  padding:22px;
}

.step .num{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:white;
  font-weight:900;
  margin-bottom:12px;
}

.proof-list{
  display:grid;
  gap:12px;
}

.proof-list div{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(15,111,106,.12);
  border-radius:18px;
  padding:14px 16px;
  color:var(--darktext);
  box-shadow:0 12px 28px rgba(15,111,106,.08);
}

.proof-list b{
  color:var(--accent);
}

/* FAQ */
.faq{
  display:grid;
  gap:14px;
  margin-top:26px;
}

.faq-item{
  padding:20px 22px;
}

/* FORMS */
form{
  padding:26px;
  display:grid;
  gap:12px;
}

input,
select,
textarea{
  width:100%;
  border:1px solid rgba(15,111,106,.16);
  border-radius:16px;
  padding:14px 15px;
  font:inherit;
  background:#ffffff;
  color:var(--darktext);
}

textarea{
  min-height:120px;
}

input:focus,
select:focus,
textarea:focus{
  outline:2px solid rgba(72,184,176,.28);
  border-color:var(--accent2);
}

button{
  cursor:pointer;
  border:0;
  font:inherit;
}

.small{
  font-size:14px;
  color:var(--muted);
}

/* COOKIE */
.cookie-notice{
  position:fixed;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  width:min(920px,92%);
  background:#ffffff;
  color:var(--darktext);
  border:1px solid rgba(15,111,106,.16);
  border-radius:22px;
  box-shadow:0 18px 55px rgba(15,111,106,.20);
  padding:16px;
  z-index:999;
  display:none;
  gap:14px;
  align-items:center;
  justify-content:space-between;
}

.cookie-notice.show{
  display:flex;
}

.cookie-notice p{
  margin:0;
  color:#526c69;
  font-size:14px;
}

.cookie-notice a{
  color:var(--accent);
  font-weight:800;
}

.cookie-notice button{
  flex:0 0 auto;
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:white;
  font-weight:800;
  padding:10px 16px;
  cursor:pointer;
}

/* FOOTER */
footer{
  padding:34px 0;
  color:var(--muted);
  border-top:1px solid var(--line);
}

footer a{
  color:var(--accent);
  text-decoration:none;
  font-weight:600;
}

footer a:hover{
  color:var(--accent2);
}

/* RESPONSIVE */
@media(max-width:1050px){
  .nav{
    align-items:flex-start;
    flex-direction:column;
    gap:8px;
  }

  .navlinks{
    justify-content:flex-start;
    width:100%;
    gap:8px 12px;
  }

  .navlinks a{
    padding:7px 0;
  }
}

@media(max-width:900px){
  .steps{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:850px){
  .grid,
  .two,
  .cards{
    grid-template-columns:1fr;
  }

  .hero{
    padding:52px 0 36px;
  }

  .lead{
    font-size:18px;
  }

  section{
    padding:42px 0;
  }

  .hero-card,
  .cta,
  .quote,
  .split-card{
    border-radius:24px;
    padding:24px;
  }
}

@media(max-width:650px){
  .cookie-notice{
    flex-direction:column;
    align-items:flex-start;
  }

  .cookie-notice button{
    width:100%;
  }
}

@media(max-width:560px){
  .steps{
    grid-template-columns:1fr;
  }
}

@media(max-width:520px){
  .wrap{
    width:min(94%,1120px);
  }

  .nav{
    min-height:auto;
  }

  .brand{
    font-size:19px;
  }

  .navlinks{
    font-size:13px;
  }

  .navlinks .btn{
    width:100%;
    margin-top:4px;
  }

  .btn{
    width:100%;
    margin:4px 0;
  }

  h1{
    font-size:40px;
  }
}

/* Box refinement v1 — calmer, sharper, less childish */
.card,
.step,
.faq-item,
.item,
form{
  background:#ffffff !important;
  border:1px solid rgba(15,111,106,.12) !important;
  border-radius:16px !important;
  box-shadow:0 8px 24px rgba(15,111,106,.07) !important;
}

.card{
  padding:22px !important;
}

.step{
  padding:20px !important;
}

.faq-item{
  padding:18px 20px !important;
}

.item{
  padding:16px 18px !important;
}

form{
  padding:24px !important;
}

.hero-card,
.split-card,
.cta{
  background:linear-gradient(145deg,#ffffff,#f5fbfa) !important;
  border:1px solid rgba(15,111,106,.13) !important;
  border-radius:18px !important;
  box-shadow:0 12px 34px rgba(15,111,106,.09) !important;
}

.quote{
  border-radius:18px !important;
  box-shadow:0 12px 32px rgba(15,111,106,.12) !important;
}

input,
select,
textarea{
  border-radius:10px !important;
}

.btn{
  border-radius:12px !important;
}

.tag{
  border-radius:10px !important;
}

.cookie-notice{
  border-radius:16px !important;
}

/* tighter card typography */
.card h3,
.step h3,
.faq-item h3{
  margin-bottom:8px !important;
}

.card p,
.step p,
.faq-item p{
  line-height:1.55 !important;
}

/* better grid rhythm */
.cards{
  gap:16px !important;
}

.grid,
.two{
  gap:24px !important;
}

.steps{
  gap:14px !important;
}

/* mobile */
@media(max-width:850px){
  .hero-card,
  .cta,
  .quote,
  .split-card{
    border-radius:16px !important;
    padding:22px !important;
  }

  .card,
  .step,
  .faq-item,
  .item,
  form{
    border-radius:14px !important;
  }
}

/* Premium structure v1 */
.premium-hero{
  position:relative;
  overflow:hidden;
  padding:96px 0 64px;
}

.premium-hero:before{
  content:"";
  position:absolute;
  inset:24px 4%;
  background:
    radial-gradient(circle at 20% 10%, rgba(72,184,176,.20), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(216,173,95,.18), transparent 28%),
    linear-gradient(135deg,rgba(255,255,255,.72),rgba(223,241,238,.54));
  border:1px solid rgba(15,111,106,.10);
  border-radius:28px;
  z-index:-1;
}

.premium-kicker{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:22px 0 0;
}

.premium-pill{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:9px 12px;
  border-radius:10px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(15,111,106,.12);
  color:var(--accent);
  font-weight:750;
  font-size:14px;
}

.premium-panel{
  background:#ffffff;
  border:1px solid rgba(15,111,106,.12);
  border-radius:18px;
  box-shadow:0 14px 42px rgba(15,111,106,.10);
  padding:28px;
}

.premium-panel .mini-title{
  font-size:14px;
  color:var(--accent);
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:12px;
}

.premium-result{
  display:grid;
  gap:14px;
  margin-top:18px;
}

.premium-result div{
  padding:14px 0;
  border-bottom:1px solid rgba(15,111,106,.10);
}

.premium-result div:last-child{
  border-bottom:0;
}

.premium-result b{
  display:block;
  color:var(--darktext);
  margin-bottom:4px;
}

.premium-result span{
  color:#526c69;
}

.premium-band{
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:white;
  border-radius:18px;
  padding:34px;
  box-shadow:0 16px 38px rgba(15,111,106,.16);
}

.premium-band h2{
  color:white;
}

.premium-band .lead{
  color:rgba(255,255,255,.86);
}

.premium-band .btn{
  background:#ffffff;
  color:var(--accent);
}

.premium-band .btn.secondary{
  background:rgba(255,255,255,.14);
  color:white;
  border-color:rgba(255,255,255,.35);
}

.comparison{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:26px;
}

.comparison-box{
  background:#ffffff;
  border:1px solid rgba(15,111,106,.12);
  border-radius:16px;
  padding:24px;
  box-shadow:0 8px 24px rgba(15,111,106,.07);
}

.comparison-box.soft{
  background:linear-gradient(145deg,#ffffff,#f5fbfa);
  border-color:rgba(15,111,106,.18);
}

.comparison-box ul{
  padding-left:20px;
  margin:12px 0 0;
  color:#526c69;
}

.comparison-box li{
  margin-bottom:8px;
}

@media(max-width:850px){
  .premium-hero{
    padding:58px 0 42px;
  }

  .premium-hero:before{
    inset:12px 2%;
    border-radius:20px;
  }

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

/* Heading size fix v1 — smaller, calmer, more premium */
h1{
  font-size:clamp(32px,4.2vw,52px) !important;
  line-height:1.08 !important;
  letter-spacing:-.045em !important;
  max-width:880px;
}

h2,
.section-title{
  font-size:clamp(24px,3vw,36px) !important;
  line-height:1.14 !important;
  letter-spacing:-.035em !important;
}

h3{
  font-size:20px !important;
  line-height:1.22 !important;
  letter-spacing:-.025em !important;
}

.hero-card h2,
.premium-panel h2{
  font-size:24px !important;
  line-height:1.18 !important;
}

.quote{
  font-size:20px !important;
  line-height:1.42 !important;
}

.lead{
  font-size:18px !important;
  line-height:1.62 !important;
  max-width:760px;
}

.premium-hero{
  padding:72px 0 48px !important;
}

.hero{
  padding:62px 0 40px !important;
}

/* Cards feel less loud */
.card h3,
.step h3,
.faq-item h3{
  font-size:19px !important;
}

/* Mobile even calmer */
@media(max-width:850px){
  h1{
    font-size:34px !important;
    line-height:1.1 !important;
  }

  h2,
  .section-title{
    font-size:26px !important;
    line-height:1.16 !important;
  }

  h3{
    font-size:19px !important;
  }

  .lead{
    font-size:17px !important;
  }

  .premium-hero,
  .hero{
    padding:44px 0 32px !important;
  }
}

@media(max-width:520px){
  h1{
    font-size:31px !important;
  }

  h2,
  .section-title{
    font-size:24px !important;
  }
}

/* Menu refinement v1 — stable desktop + cleaner mobile */
header{
  min-height:72px !important;
}

.nav{
  min-height:72px !important;
  padding:12px 0 !important;
}

.navlinks{
  gap:10px !important;
}

.navlinks a{
  font-size:13.5px !important;
  padding:7px 3px !important;
}

.navlinks .btn{
  padding:9px 13px !important;
  border-radius:10px !important;
}

/* desktop: keep brand and nav stable */
@media(min-width:1051px){
  .brand{
    min-width:190px;
  }

  .navlinks{
    flex-wrap:nowrap !important;
  }
}

/* tablet: allow wrapping but keep it neat */
@media(max-width:1050px){
  header{
    position:relative !important;
  }

  .nav{
    align-items:flex-start !important;
    gap:10px !important;
  }

  .navlinks{
    display:flex !important;
    flex-wrap:wrap !important;
    justify-content:flex-start !important;
    gap:8px 12px !important;
    width:100% !important;
  }

  .navlinks a{
    background:rgba(255,255,255,.58);
    border:1px solid rgba(15,111,106,.10);
    border-radius:9px;
    padding:8px 10px !important;
    line-height:1.1 !important;
  }

  .navlinks .btn{
    width:auto !important;
    margin:0 !important;
    background:linear-gradient(135deg,var(--accent),var(--accent2)) !important;
    color:white !important;
  }
}

/* mobile: compact chips */
@media(max-width:650px){
  .nav{
    padding:12px 0 10px !important;
  }

  .brand{
    font-size:18px !important;
  }

  .navlinks{
    gap:7px !important;
  }

  .navlinks a{
    font-size:12.5px !important;
    padding:7px 8px !important;
  }

  .navlinks .btn{
    width:auto !important;
    padding:7px 10px !important;
  }
}

/* very small mobile: hide less important menu links to avoid ugly wrapping */
@media(max-width:430px){
  .navlinks a[href="/keho-jumissa-stressista/"],
  .navlinks a[href="/hermoston-rauhoittaminen/"]{
    display:none !important;
  }

  .navlinks{
    gap:7px !important;
  }
}

/* Nina image final fix */
.nina-photo-card{
  background:#ffffff !important;
  border:1px solid rgba(15,111,106,.12) !important;
  border-radius:16px !important;
  overflow:hidden !important;
  box-shadow:0 10px 30px rgba(15,111,106,.10) !important;
}

.nina-photo-card img{
  display:block !important;
  width:100% !important;
  height:500px !important;
  object-fit:cover !important;
  object-position:center top !important;
}

.nina-photo-caption{
  padding:16px 18px !important;
}

.nina-photo-caption b{
  display:block !important;
  color:var(--darktext) !important;
  font-size:18px !important;
  margin-bottom:4px !important;
}

.nina-photo-caption span{
  color:#526c69 !important;
  font-size:14px !important;
}

@media(max-width:850px){
  .nina-photo-card img{
    height:420px !important;
  }
}

/* Nina image crop fix v1 */
.nina-photo-card{
  max-width:460px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

.nina-photo-card img{
  height:auto !important;
  max-height:620px !important;
  width:100% !important;
  object-fit:contain !important;
  object-position:center center !important;
  background:#f5fbfa !important;
}

/* Homepage hero: keep image elegant, not oversized */
.premium-hero .nina-photo-card{
  align-self:start !important;
}

/* Nina page can show image a bit larger */
body .nina-photo-card img{
  display:block !important;
}

/* Mobile */
@media(max-width:850px){
  .nina-photo-card{
    max-width:100% !important;
  }

  .nina-photo-card img{
    max-height:none !important;
  }
}

/* Trust image placement */
.trust-photo-row{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:22px;
  align-items:center;
  background:#ffffff;
  border:1px solid rgba(15,111,106,.12);
  border-radius:16px;
  padding:18px;
  box-shadow:0 8px 24px rgba(15,111,106,.07);
}

.trust-photo-row img{
  width:220px;
  height:auto;
  border-radius:14px;
  display:block;
  background:#f5fbfa;
}

.trust-photo-row h3{
  margin-bottom:6px;
}

.trust-photo-row p{
  color:#526c69;
  margin-bottom:12px;
}

@media(max-width:700px){
  .trust-photo-row{
    grid-template-columns:1fr;
  }

  .trust-photo-row img{
    width:100%;
    max-width:320px;
  }
}

/* Editorial image sections */
.editorial-image-section{
  padding:34px 0;
}

.editorial-image-card{
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(15,111,106,.12);
  box-shadow:0 12px 34px rgba(15,111,106,.09);
  background:#ffffff;
}

.editorial-image-card img{
  display:block;
  width:100%;
  height:auto;
}

.editorial-image-caption{
  padding:16px 20px;
  color:#526c69;
  font-size:14px;
}

.editorial-image-caption b{
  color:var(--darktext);
}

/* Start options / offer cards */
.offer-options{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:28px;
}

.offer-card{
  position:relative;
  background:#ffffff;
  border:1px solid rgba(15,111,106,.12);
  border-radius:16px;
  padding:24px;
  box-shadow:0 8px 24px rgba(15,111,106,.07);
}

.offer-card.featured{
  border:2px solid rgba(15,111,106,.32);
  box-shadow:0 14px 36px rgba(15,111,106,.12);
}

.offer-badge{
  display:inline-block;
  margin-bottom:14px;
  padding:7px 10px;
  border-radius:9px;
  background:rgba(72,184,176,.13);
  color:var(--accent);
  font-size:13px;
  font-weight:850;
}

.offer-card.featured .offer-badge{
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#ffffff;
}

.offer-card h3{
  margin-bottom:10px;
}

.offer-card p{
  color:#526c69;
}

.offer-list{
  margin:16px 0 20px;
  padding:0;
  list-style:none;
  display:grid;
  gap:9px;
  color:#526c69;
}

.offer-list li:before{
  content:"✓";
  color:var(--accent);
  font-weight:900;
  margin-right:8px;
}

@media(max-width:900px){
  .offer-options{
    grid-template-columns:1fr;
  }
}

/* Hormozi-style premium value stack */
.premium-offer-box{
  background:#ffffff;
  border:2px solid rgba(15,111,106,.22);
  border-radius:18px;
  padding:30px;
  box-shadow:0 18px 48px rgba(15,111,106,.12);
}

.value-table{
  display:grid;
  gap:10px;
  margin:22px 0;
}

.value-row{
  display:grid;
  grid-template-columns:1fr auto;
  gap:16px;
  align-items:center;
  padding:12px 0;
  border-bottom:1px solid rgba(15,111,106,.10);
  color:#526c69;
}

.value-row b{
  color:var(--darktext);
}

.value-row span{
  font-weight:850;
  color:var(--accent);
  white-space:nowrap;
}

.total-value{
  margin-top:20px;
  padding:20px;
  border-radius:14px;
  background:rgba(72,184,176,.10);
  border:1px solid rgba(15,111,106,.16);
}

.total-value .old{
  font-size:20px;
  color:#526c69;
  text-decoration:line-through;
  font-weight:750;
}

.total-value .new{
  font-size:42px;
  line-height:1;
  color:var(--accent);
  font-weight:950;
  letter-spacing:-.05em;
  margin-top:8px;
}

.total-value .note{
  color:#526c69;
  margin-top:8px;
}

.bonus-highlight{
  display:inline-block;
  padding:8px 11px;
  border-radius:10px;
  background:rgba(216,173,95,.18);
  border:1px solid rgba(216,173,95,.32);
  color:#6d5a31;
  font-weight:850;
  font-size:14px;
  margin-bottom:14px;
}

@media(max-width:650px){
  .value-row{
    grid-template-columns:1fr;
    gap:4px;
  }

  .total-value .new{
    font-size:34px;
  }
}

/* 3-tier offer refinement */
.tier-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:28px;
}

.tier-card{
  position:relative;
  background:#ffffff;
  border:1px solid rgba(15,111,106,.12);
  border-radius:16px;
  padding:24px;
  box-shadow:0 8px 24px rgba(15,111,106,.07);
}

.tier-card.featured{
  border:2px solid rgba(15,111,106,.34);
  box-shadow:0 16px 42px rgba(15,111,106,.13);
}

.tier-card.premium{
  border:2px solid rgba(216,173,95,.45);
  background:linear-gradient(145deg,#ffffff,#f9fbf7);
}

.tier-badge{
  display:inline-block;
  margin-bottom:14px;
  padding:7px 10px;
  border-radius:9px;
  background:rgba(72,184,176,.13);
  color:var(--accent);
  font-size:13px;
  font-weight:850;
}

.tier-card.featured .tier-badge{
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#ffffff;
}

.tier-card.premium .tier-badge{
  background:rgba(216,173,95,.20);
  color:#765f27;
  border:1px solid rgba(216,173,95,.35);
}

.tier-price{
  font-size:34px;
  line-height:1;
  font-weight:950;
  letter-spacing:-.05em;
  color:var(--accent);
  margin:14px 0;
}

.tier-price small{
  display:block;
  font-size:14px;
  font-weight:650;
  letter-spacing:0;
  color:#526c69;
  margin-top:7px;
}

.tier-value{
  font-size:14px;
  color:#526c69;
  margin-bottom:14px;
}

.tier-value s{
  color:#829290;
}

.tier-list{
  list-style:none;
  padding:0;
  margin:16px 0 22px;
  display:grid;
  gap:9px;
  color:#526c69;
}

.tier-list li:before{
  content:"✓";
  color:var(--accent);
  font-weight:900;
  margin-right:8px;
}

.tier-note{
  margin-top:22px;
  padding:18px;
  border-radius:14px;
  background:rgba(72,184,176,.08);
  border:1px solid rgba(15,111,106,.12);
  color:#526c69;
}

@media(max-width:950px){
  .tier-grid{
    grid-template-columns:1fr;
  }
}

/* Instagram trust section */
.instagram-box{
  background:#ffffff;
  border:1px solid rgba(15,111,106,.12);
  border-radius:16px;
  padding:24px;
  box-shadow:0 8px 24px rgba(15,111,106,.07);
  display:grid;
  grid-template-columns:1fr auto;
  gap:20px;
  align-items:center;
}

.instagram-box p{
  margin:0;
  color:#526c69;
}

.instagram-handle{
  display:inline-flex;
  margin-top:10px;
  font-weight:850;
  color:var(--accent);
}

@media(max-width:700px){
  .instagram-box{
    grid-template-columns:1fr;
  }
}

/* Retreat event block */
.retreat-event{
  background:#ffffff;
  border:1px solid rgba(15,111,106,.14);
  border-radius:16px;
  box-shadow:0 10px 30px rgba(15,111,106,.08);
  padding:28px;
  margin-top:24px;
}

.retreat-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:16px 0 18px;
}

.retreat-meta span{
  display:inline-flex;
  padding:8px 10px;
  border-radius:9px;
  background:rgba(72,184,176,.10);
  color:var(--accent);
  font-weight:800;
  font-size:14px;
}

.retreat-price{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin:22px 0;
}

.retreat-price div{
  background:#f5fbfa;
  border:1px solid rgba(15,111,106,.10);
  border-radius:14px;
  padding:16px;
}

.retreat-price b{
  display:block;
  color:var(--darktext);
  font-size:22px;
  margin-bottom:4px;
}

.retreat-price span{
  color:#526c69;
  font-size:14px;
}

.retreat-list{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  gap:9px;
  color:#526c69;
}

.retreat-list li:before{
  content:"✓";
  color:var(--accent);
  font-weight:900;
  margin-right:8px;
}

.retreat-note{
  margin-top:18px;
  padding:16px;
  border-radius:14px;
  background:rgba(216,173,95,.13);
  border:1px solid rgba(216,173,95,.28);
  color:#526c69;
}

@media(max-width:850px){
  .retreat-price{
    grid-template-columns:1fr;
  }
}

/* Simple icon logo */
.brand{
  display:inline-flex !important;
  align-items:center !important;
  gap:10px !important;
}

.brand-icon{
  width:34px;
  height:34px;
  display:block;
  flex:0 0 auto;
}

.brand span{
  display:inline-block;
}

@media(max-width:520px){
  .brand-icon{
    width:30px;
    height:30px;
  }
}

/* Inline brand logo hard fix */
header .brand{
  display:inline-flex !important;
  align-items:center !important;
  gap:10px !important;
  text-decoration:none !important;
  color:var(--text) !important;
}

header .brand svg.brand-icon{
  display:block !important;
  width:36px !important;
  height:36px !important;
  min-width:36px !important;
  max-width:36px !important;
  flex:0 0 36px !important;
  overflow:visible !important;
  opacity:1 !important;
  visibility:visible !important;
}

header .brand span{
  display:inline-block !important;
  white-space:nowrap !important;
}

@media(max-width:520px){
  header .brand svg.brand-icon{
    width:31px !important;
    height:31px !important;
    min-width:31px !important;
    max-width:31px !important;
    flex-basis:31px !important;
  }
}

/* Logo recovery v1 — CSS-only brand icon */
header .brand{
  display:inline-flex !important;
  align-items:center !important;
  gap:10px !important;
  text-decoration:none !important;
  color:var(--text) !important;
  white-space:nowrap !important;
}

header .brand::before{
  content:"" !important;
  display:inline-block !important;
  width:30px !important;
  height:30px !important;
  min-width:30px !important;
  border-radius:50% !important;
  background:
    radial-gradient(circle at 34% 34%, #d8ad5f 0 13%, transparent 14%),
    linear-gradient(135deg, transparent 0 35%, #48b8b0 36% 67%, transparent 68%),
    #eaf3f1 !important;
  border:2px solid #0f6f6a !important;
  box-shadow:0 3px 10px rgba(15,111,106,.12) !important;
}

@media(max-width:520px){
  header .brand::before{
    width:27px !important;
    height:27px !important;
    min-width:27px !important;
  }
}

/* Remove bad logo experiment — keep clean text brand */
header .brand::before{
  content:none !important;
  display:none !important;
}

header .brand-icon,
header .brand svg.brand-icon,
header .brand img.brand-icon{
  display:none !important;
}

header .brand{
  display:inline-flex !important;
  align-items:center !important;
  gap:0 !important;
  text-decoration:none !important;
  color:var(--text) !important;
  font-weight:850 !important;
  letter-spacing:-.045em !important;
}

/* External trust / Roots section */
.external-trust{
  background:#ffffff;
  border:1px solid rgba(15,111,106,.12);
  border-radius:16px;
  padding:26px;
  box-shadow:0 8px 24px rgba(15,111,106,.07);
}

.external-trust .trust-source{
  display:inline-block;
  margin-bottom:12px;
  padding:7px 10px;
  border-radius:9px;
  background:rgba(72,184,176,.12);
  color:var(--accent);
  font-size:13px;
  font-weight:850;
}

.external-trust ul{
  margin:16px 0 20px;
  padding-left:20px;
  color:#526c69;
}

.external-trust li{
  margin-bottom:8px;
}

.external-trust p{
  color:#526c69;
}
