/* ============================================
   BIN & CO. — Design tokens
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,500&family=Caveat:wght@500;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
  --navy:#1B3A6B;
  --blue:#2F5FA8;
  --blue-mid:#6E93D1;
  --blue-pale:#DCE7F7;
  --blue-pale-2:#EFF4FC;
  --cream:#FDFCFA;
  --white:#FFFFFF;
  --ink:#22314F;
  --ink-soft:#5A6B8C;
  --gold:#E3B23C; /* small warm spark, used sparingly */

  --display: 'Fraunces', serif;
  --script: 'Caveat', cursive;
  --body: 'Poppins', sans-serif;

  --radius: 18px;
  --shadow: 0 12px 30px rgba(27,58,107,0.12);
  --container: 1180px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--body);
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;margin:0;padding:0;}
h1,h2,h3,h4{font-family:var(--display);color:var(--navy);margin:0 0 .5em;line-height:1.15;}
h1{font-weight:900;}
h2{font-weight:700;}
h3{font-weight:600;}
p{margin:0 0 1em;}
.container{max-width:var(--container);margin:0 auto;padding:0 24px;}

:focus-visible{outline:3px solid var(--gold);outline-offset:3px;}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}

/* ---------- Gingham texture ---------- */
.gingham{
  background-color:var(--blue-pale-2);
  background-image:
    repeating-linear-gradient(0deg, rgba(47,95,168,0.10) 0 18px, transparent 18px 36px),
    repeating-linear-gradient(90deg, rgba(47,95,168,0.10) 0 18px, transparent 18px 36px);
}
.gingham-dark{
  background-color:var(--blue);
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0 18px, transparent 18px 36px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 18px, transparent 18px 36px);
}

/* ---------- Heart divider (signature motif) ---------- */
.heart-divider{
  display:flex;align-items:center;justify-content:center;gap:14px;
  margin:0 0 28px;
  color:var(--blue);
}
.heart-divider .line{height:2px;width:64px;background:var(--blue-mid);border-radius:2px;}
.heart-divider .heart{font-size:18px;line-height:1;}
.heart-divider.on-dark{color:var(--white);}
.heart-divider.on-dark .line{background:rgba(255,255,255,0.55);}

.eyebrow{
  font-family:var(--script);
  font-size:1.5rem;
  color:var(--blue);
  display:block;
  margin-bottom:.15em;
}

/* ---------- Scalloped wave divider (from the badge logo) ---------- */
.scallop{
  display:block;
  width:100%;
  height:36px;
  line-height:0;
}
.scallop svg{width:100%;height:100%;display:block;}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(253,252,250,0.92);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--blue-pale);
}
.nav-wrap{
  display:flex;align-items:center;justify-content:space-between;
  padding:12px 24px;
  max-width:var(--container);margin:0 auto;
}
.brand{display:flex;align-items:center;gap:12px;}
.brand img{height:56px;width:56px;border-radius:50%;}
.brand-text{font-family:var(--display);font-weight:700;color:var(--navy);font-size:1.15rem;line-height:1.1;}
.brand-text small{display:block;font-family:var(--script);color:var(--blue);font-size:1rem;font-weight:500;}

.main-nav ul{display:flex;gap:8px;align-items:center;}
.main-nav a{
  padding:10px 16px;border-radius:999px;
  font-weight:500;font-size:.95rem;color:var(--navy);
  transition:background .2s ease, color .2s ease;
}
.main-nav a:hover{background:var(--blue-pale);}
.main-nav a.active{background:var(--blue);color:var(--white);}
.nav-cta{
  background:var(--blue) !important;color:var(--white) !important;
  box-shadow:var(--shadow);
}
.nav-cta:hover{background:var(--navy) !important;}

.nav-toggle{
  display:none;background:none;border:2px solid var(--blue);border-radius:10px;
  width:44px;height:40px;cursor:pointer;position:relative;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after{
  content:'';position:absolute;left:9px;right:9px;height:2px;background:var(--navy);
}
.nav-toggle span{top:19px;}
.nav-toggle::before{top:12px;}
.nav-toggle::after{top:26px;}

@media (max-width:860px){
  .nav-toggle{display:block;}
  .main-nav{
    position:absolute;top:100%;left:0;right:0;background:var(--white);
    border-bottom:1px solid var(--blue-pale);box-shadow:var(--shadow);
    max-height:0;overflow:hidden;transition:max-height .3s ease;
  }
  .main-nav.open{max-height:400px;}
  .main-nav ul{flex-direction:column;padding:12px 24px 20px;gap:4px;}
  .main-nav a{display:block;}
}

/* ============================================
   BUTTONS
   ============================================ */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:14px 28px;border-radius:999px;
  font-family:var(--body);font-weight:600;font-size:.98rem;
  cursor:pointer;border:2px solid transparent;transition:transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{background:var(--blue);color:var(--white);box-shadow:var(--shadow);}
.btn-primary:hover{background:var(--navy);}
.btn-outline{background:transparent;border-color:var(--blue);color:var(--blue);}
.btn-outline:hover{background:var(--blue);color:var(--white);}
.btn-outline.on-dark{border-color:var(--white);color:var(--white);}
.btn-outline.on-dark:hover{background:var(--white);color:var(--blue);}

/* ============================================
   HERO
   ============================================ */
.hero{
  padding:64px 0 40px;
  position:relative;
  overflow:hidden;
}
.hero .container{
  display:grid;grid-template-columns:1.1fr .9fr;gap:48px;align-items:center;
}
.hero-copy .eyebrow{font-size:1.7rem;}
.hero-copy h1{font-size:clamp(2.4rem,5vw,3.6rem);}
.hero-copy p.lead{font-size:1.15rem;color:var(--ink-soft);max-width:46ch;}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap;margin-top:24px;}
.hero-art{
  position:relative;border-radius:28px;overflow:hidden;
  box-shadow:var(--shadow);
  aspect-ratio:1/1;
}
.hero-art img{width:100%;height:100%;object-fit:cover;}

.hero-trust{
  display:flex;gap:28px;margin-top:36px;flex-wrap:wrap;
}
.hero-trust div{text-align:left;}
.hero-trust strong{display:block;font-family:var(--display);font-size:1.6rem;color:var(--navy);}
.hero-trust span{font-size:.85rem;color:var(--ink-soft);}

@media (max-width:860px){
  .hero .container{grid-template-columns:1fr;}
  .hero-art{order:-1;max-width:340px;margin:0 auto;}
}

/* ============================================
   SECTIONS
   ============================================ */
section{padding:72px 0;}
.section-head{text-align:center;max-width:640px;margin:0 auto 48px;}
.section-head h2{font-size:clamp(1.8rem,3.5vw,2.6rem);}
.section-head p{color:var(--ink-soft);}

/* Cards grid */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;}
@media (max-width:860px){
  .grid-3, .grid-2{grid-template-columns:1fr;}
}

.card{
  background:var(--white);border-radius:var(--radius);
  padding:32px 28px;box-shadow:var(--shadow);
  border:1px solid rgba(47,95,168,0.08);
}
.card .icon{
  width:56px;height:56px;border-radius:16px;
  background:var(--blue-pale);color:var(--blue);
  display:flex;align-items:center;justify-content:center;
  font-size:1.5rem;margin-bottom:16px;
}
.card h3{margin-bottom:.4em;}
.card p{color:var(--ink-soft);margin-bottom:0;}

/* Steps (how it works) — numbered because order genuinely matters */
.steps{
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;counter-reset:step;
}
@media (max-width:860px){ .steps{grid-template-columns:1fr;} }
.step{position:relative;padding-top:8px;}
.step::before{
  counter-increment:step;content:counter(step);
  display:flex;align-items:center;justify-content:center;
  width:44px;height:44px;border-radius:50%;
  background:var(--blue);color:var(--white);
  font-family:var(--display);font-weight:700;
  margin-bottom:16px;
}
.step h3{margin-bottom:.3em;font-size:1.15rem;}
.step p{color:var(--ink-soft);font-size:.95rem;}

/* Testimonial */
.testimonial{
  max-width:720px;margin:0 auto;text-align:center;
}
.testimonial p.quote{
  font-family:var(--display);font-style:italic;font-size:1.4rem;color:var(--navy);
}
.testimonial .who{font-family:var(--script);font-size:1.3rem;color:var(--blue);}

/* CTA band */
.cta-band{
  text-align:center;color:var(--white);border-radius:28px;
  padding:56px 24px;margin:0 24px;
}
.cta-band h2{color:var(--white);}
.cta-band p{color:rgba(255,255,255,0.85);max-width:520px;margin:0 auto 24px;}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;align-items:stretch;}
@media (max-width:860px){ .pricing-grid{grid-template-columns:1fr;} }
.price-card{
  background:var(--white);border-radius:var(--radius);
  padding:36px 28px;box-shadow:var(--shadow);
  display:flex;flex-direction:column;
  border:2px solid transparent;
}
.price-card.featured{border-color:var(--blue);position:relative;transform:translateY(-8px);}
.price-card.featured .badge{
  position:absolute;top:-14px;left:50%;transform:translateX(-50%);
  background:var(--gold);color:var(--navy);font-weight:700;font-size:.8rem;
  padding:6px 16px;border-radius:999px;white-space:nowrap;
}
.price-card h3{font-family:var(--script);font-size:1.8rem;color:var(--blue);margin-bottom:0;}
.price-card .price{font-family:var(--display);font-size:2.4rem;font-weight:800;color:var(--navy);margin:8px 0 4px;}
.price-card .price span{font-size:1rem;font-weight:500;color:var(--ink-soft);}
.price-card .desc{color:var(--ink-soft);margin-bottom:20px;}
.price-card ul{flex:1;margin-bottom:24px;}
.price-card li{
  padding:9px 0;border-top:1px dashed var(--blue-pale);
  display:flex;gap:10px;font-size:.95rem;
}
.price-card li:first-child{border-top:none;}
.price-card li::before{content:'♥';color:var(--blue-mid);flex-shrink:0;}

.pricing-note{
  text-align:center;color:var(--ink-soft);font-size:.9rem;max-width:600px;margin:32px auto 0;
}

/* ============================================
   ABOUT
   ============================================ */
.about-hero{display:grid;grid-template-columns:.9fr 1.1fr;gap:48px;align-items:center;}
@media (max-width:860px){.about-hero{grid-template-columns:1fr;}}
.about-photo{
  border-radius:28px;overflow:hidden;box-shadow:var(--shadow);
  aspect-ratio:4/5;
}
.about-photo img{width:100%;height:100%;object-fit:cover;}

.values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
@media (max-width:860px){.values-grid{grid-template-columns:repeat(2,1fr);}}
.value{text-align:center;padding:20px;}
.value .heart-mark{font-size:1.8rem;color:var(--blue);margin-bottom:8px;}
.value h3{font-size:1.05rem;}
.value p{color:var(--ink-soft);font-size:.9rem;}

/* ============================================
   FOUNDERS
   ============================================ */
.founders-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:32px;max-width:820px;margin:0 auto;}
@media (max-width:700px){.founders-grid{grid-template-columns:1fr;}}
.founder-card{
  background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow);
  padding:36px 32px;text-align:center;
}
.founder-avatar{
  width:130px;height:130px;border-radius:50%;background:var(--blue-pale);
  display:flex;align-items:center;justify-content:center;margin:0 auto 20px;
  font-family:var(--display);font-size:2.1rem;font-weight:700;color:var(--blue);
  overflow:hidden;
}
.founder-avatar img{width:100%;height:100%;object-fit:cover;}
.founder-card h3{margin-bottom:.1em;font-size:1.3rem;}
.founder-card .founder-role{
  font-family:var(--script);color:var(--blue);font-size:1.2rem;margin-bottom:16px;display:block;
}
.founder-card p{color:var(--ink-soft);text-align:left;font-size:.95rem;}
.founder-card p.coming-soon{font-style:italic;text-align:center;}

/* ============================================
   SERVICE AREA / TABLE style list
   ============================================ */
.included-list{display:grid;grid-template-columns:1fr 1fr;gap:14px 32px;}
@media (max-width:600px){.included-list{grid-template-columns:1fr;}}
.included-list li{display:flex;gap:12px;align-items:flex-start;padding:6px 0;}
.included-list li::before{content:'✓';color:var(--white);background:var(--blue);
  width:22px;height:22px;border-radius:50%;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:.75rem;margin-top:2px;}

/* ============================================
   CONTACT
   ============================================ */
.contact-wrap{display:grid;grid-template-columns:1fr 1.2fr;gap:48px;align-items:start;}
@media (max-width:860px){.contact-wrap{grid-template-columns:1fr;}}
.contact-info .card{margin-bottom:20px;}
.contact-info h3{margin-bottom:.2em;}
.contact-info a{color:var(--blue);font-weight:600;}

.form-card{
  background:var(--white);border-radius:var(--radius);padding:36px;box-shadow:var(--shadow);
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
@media (max-width:600px){.form-row{grid-template-columns:1fr;}}
.field{margin-bottom:18px;}
.field label{display:block;font-weight:600;font-size:.9rem;margin-bottom:6px;color:var(--navy);}
.field input, .field select, .field textarea{
  width:100%;padding:13px 14px;border-radius:12px;border:1.5px solid var(--blue-pale);
  font-family:var(--body);font-size:.98rem;background:var(--blue-pale-2);
  transition:border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none;border-color:var(--blue);background:var(--white);
}
.field textarea{resize:vertical;min-height:120px;}
.form-note{font-size:.85rem;color:var(--ink-soft);margin-top:10px;}
.form-status{margin-top:14px;font-weight:600;}
.form-status.success{color:#1c7a4d;}
.form-status.error{color:#b9432c;}

/* ============================================
   FOOTER
   ============================================ */
.site-footer{
  padding:48px 0 28px;color:var(--white);
}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:32px;margin-bottom:32px;}
@media (max-width:700px){.footer-grid{grid-template-columns:1fr;}}
.footer-brand{display:flex;align-items:center;gap:12px;margin-bottom:12px;}
.footer-brand img{height:48px;width:48px;border-radius:50%;}
.footer-brand span{font-family:var(--display);font-weight:700;font-size:1.2rem;}
.site-footer p{color:rgba(255,255,255,0.8);font-size:.92rem;}
.site-footer h4{color:var(--white);font-family:var(--body);font-size:.9rem;letter-spacing:.06em;text-transform:uppercase;margin-bottom:14px;}
.site-footer ul li{margin-bottom:10px;}
.site-footer a{color:rgba(255,255,255,0.85);}
.site-footer a:hover{color:var(--white);text-decoration:underline;}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.2);padding-top:20px;
  text-align:center;font-size:.85rem;color:rgba(255,255,255,0.7);
}

/* ============================================
   SOCIAL LINKS (footer)
   ============================================ */
.social-links{display:flex;gap:10px;margin-top:14px;}
.social-links a{
  width:36px;height:36px;border-radius:50%;
  background:rgba(255,255,255,0.14);
  display:flex;align-items:center;justify-content:center;
  transition:background .2s ease;
}
.social-links a:hover{background:rgba(255,255,255,0.3);}
.social-links svg{width:18px;height:18px;fill:var(--white);}
.page-hero{padding:56px 0 40px;text-align:center;}
.page-hero .eyebrow{font-size:1.7rem;}
.page-hero h1{font-size:clamp(2rem,4vw,2.8rem);}
.page-hero p{color:var(--ink-soft);max-width:560px;margin:0 auto;}

/* ============================================
   BLOG ARTICLE
   ============================================ */
.article-back{display:inline-block;margin-bottom:24px;font-weight:600;color:var(--blue);}
.article-wrap{
  background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow);
  padding:44px clamp(20px,5vw,56px);max-width:760px;margin:0 auto;
}
.article-meta{color:var(--ink-soft);font-size:.9rem;margin-bottom:8px;}
.article-wrap h1{font-size:clamp(1.7rem,3.5vw,2.3rem);margin-bottom:.3em;}
.article-wrap h2{font-size:1.3rem;margin-top:1.6em;}
.article-wrap p{font-size:1.02rem;line-height:1.75;color:var(--ink);}
.article-wrap ul, .article-wrap ol{margin:0 0 1.2em 1.4em;color:var(--ink);}
.article-wrap li{margin-bottom:.5em;line-height:1.6;}
.article-wrap strong{color:var(--navy);}
.article-cta{
  margin-top:32px;padding:22px 24px;border-radius:16px;background:var(--blue-pale-2);
  display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;
}
.article-cta p{margin:0;font-weight:600;color:var(--navy);}
