:root{
  --ink:#0A2945;
  --ivory:#FBF8F2;
  --sage:#D7E0C2;
  --peach:#F7C4A5;
  --apricot:#F3DFD0;
  --rose:#F7DDD7;
  --lilac:#DCCFE7;
  --mist:#EAF3F7;
  --soft-blue:#D6E6ED;
  --white:#FFFFFF;
  --coral:#F49A78;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  background:var(--ivory);
}

body{
  margin:0;
  background:var(--ivory);
  color:var(--ink);
  font-family:Arial,"Trebuchet MS",sans-serif;
  -webkit-font-smoothing:antialiased;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  display:block;
  max-width:100%;
}

button,
input{
  font:inherit;
}

.page-width{
  width:min(1160px,calc(100% - 56px));
  margin-inline:auto;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header{
  position:relative;
  z-index:20;
  padding-top:28px;
  background:var(--ivory);
  overflow:hidden;
}

/* soft green curve in top-left */
.site-header::before{
  content:"";
  position:absolute;
  left:-105px;
  top:-170px;
  width:520px;
  height:350px;
  background:linear-gradient(145deg,#DBE3C8,#C8D1AA);
  border-radius:0 0 68% 0 / 0 0 80% 0;
  transform:rotate(-5deg);
  z-index:0;
}

.header-inner{
  position:relative;
  z-index:2;
  min-height:190px;
  display:flex;
  justify-content:center;
  align-items:flex-start;
}

.brand{
  display:block;
}

.brand img{
  display:block;
  width:240px;
  max-width:80vw;
  height:auto;
  margin:0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.hero{
  position:relative;
  min-height:575px;
  overflow:hidden;
  padding:18px 0 105px;
  background:
    radial-gradient(
      circle at 57% 34%,
      #FFFFFF 0,
      rgba(255,255,255,.72) 22%,
      rgba(251,248,242,.4) 48%,
      transparent 64%
    ),
    var(--ivory);
}

.hero-content{
  position:relative;
  z-index:5;
  text-align:center;
}

.eyebrow{
  margin:18px 0 24px;
  color:var(--coral);
  font-weight:800;
  letter-spacing:.17em;
  font-size:15px;
}

.hero h1{
  margin:0;
  font-size:clamp(50px,5.1vw,70px);
  line-height:1.02;
  letter-spacing:-.045em;
  font-weight:800;
}

.hero-copy{
  margin:24px auto 27px;
  font-size:18px;
  line-height:1.55;
  max-width:680px;
}

.squiggle{
  width:78px;
  height:13px;
  margin:15px auto 0;
  position:relative;
}

.squiggle::before{
  content:"";
  position:absolute;
  inset:1px 0;
  background-repeat:repeat-x;
  background-size:20px 10px;
}

.squiggle-lilac::before{
  background-image:
    radial-gradient(
      ellipse at 50% 100%,
      transparent 58%,
      #BCAFD0 60% 73%,
      transparent 75%
    );
}

.squiggle-sage::before{
  background-image:
    radial-gradient(
      ellipse at 50% 100%,
      transparent 58%,
      #B1B995 60% 73%,
      transparent 75%
    );
}


/* EMAIL SIGNUP */

.signup{
  width:min(565px,100%);
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:10px;
  padding:5px;
  background:#FFFFFF;
  border:1px solid rgba(10,41,69,.12);
  border-radius:999px;
  box-shadow:0 10px 26px rgba(10,41,69,.11);
}

.email-icon{
  flex:0 0 32px;
  display:grid;
  place-items:center;
}

.email-icon svg{
  width:21px;
  height:21px;
  fill:none;
  stroke:var(--ink);
  stroke-width:1.7;
}

.signup input{
  flex:1 1 auto;
  min-width:0;
  border:0;
  outline:0;
  background:transparent;
  color:var(--ink);
  padding:15px 4px;
  font-size:16px;
}

.signup input::placeholder{
  color:#707780;
}

.signup button{
  flex:0 0 auto;
  border:0;
  background:var(--ink);
  color:#FFFFFF;
  padding:16px 27px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
  white-space:nowrap;
}

.signup button:hover{
  opacity:.94;
}

.launch-note{
  margin:21px 0 0;
  font-family:"Segoe Print","Bradley Hand",cursive;
  font-size:18px;
  font-style:italic;
  transform:rotate(-1deg);
}

.hidden-form-target{
  display:none;
  width:0;
  height:0;
  border:0;
}

.signup-success{
  margin:14px 0 0;
  text-align:center;
  color:var(--ink);
  font-weight:700;
}


/* HERO DECORATION */

/* green shape now lives in header */
.hero-sage{
  display:none;
}

.hero-peach{
  position:absolute;
  right:-180px;
  bottom:-170px;
  width:590px;
  height:345px;
  background:linear-gradient(145deg,#FDEBE4,#F7D8D1);
  border-radius:70% 0 0 38% / 62% 0 0 46%;
}

.hero-rings{
  position:absolute;
  right:34px;
  top:35px;
  width:310px;
  height:310px;
  border-radius:50%;
  opacity:.28;
  background:
    repeating-radial-gradient(
      ellipse at 55% 52%,
      transparent 0 10px,
      rgba(228,194,164,.58) 11px 13px,
      transparent 14px 23px
    );
  transform:rotate(-16deg);
}

.hero-product{
  position:absolute;
  z-index:3;
  object-fit:cover;
  filter:drop-shadow(0 15px 15px rgba(10,41,69,.16));
  border-radius:32px;
}

.hero-hand{
  left:-20px;
  bottom:55px;
  width:185px;
  height:205px;
  transform:rotate(-12deg);
}

.hero-book{
  right:35px;
  top:105px;
  width:190px;
  height:220px;
  transform:rotate(8deg);
}


/* =========================================================
   IMPACT
   ========================================================= */

.impact{
  position:relative;
  overflow:hidden;
  min-height:520px;
  padding:83px 0 88px;
  margin-top:-3px;
  background:linear-gradient(104deg,#F8E5DB,#F6DDD8);
}

/*
  Simple overlap.
  No rotation / translate = no browser seam.
*/
.impact-top-wave{
  position:absolute;
  z-index:3;
  left:-5%;
  right:5%;
  top:-72px;
  height:90px;
  background:var(--ivory);
  border-radius:0 0 50% 50% / 0 0 100% 100%;
}

.impact-sage{
  position:absolute;
  left:-120px;
  top:-8px;
  width:640px;
  height:540px;
  background:linear-gradient(145deg,#D8E4D0,#C9D7C2);
  border-radius:0 58% 52% 0 / 0 52% 48% 0;
}

.impact-inner{
  position:relative;
  z-index:4;
  display:grid;
  grid-template-columns:1.07fr .93fr;
  align-items:center;
  gap:70px;
}

.impact-visual{
  width:100%;
  max-width:540px;
  aspect-ratio:1.18 / 1;
  overflow:hidden;
  border-radius:
    50% 48% 52% 46% /
    52% 45% 55% 48%;
  background:#F2ECDF;
  box-shadow:0 18px 35px rgba(10,41,69,.08);
}

.impact-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.impact-text{
  position:relative;
  max-width:445px;
}

.impact h2,
.everyday h2{
  margin:0;
  font-weight:800;
  letter-spacing:-.045em;
}

.impact h2{
  font-size:clamp(45px,4.4vw,61px);
  line-height:1.03;
}

.impact-text p{
  margin:22px 0 0;
  font-size:17px;
  line-height:1.58;
}

.heart{
  position:absolute;
  right:3px;
  top:20px;
  color:#C8AED4;
  font:64px/1 Georgia,serif;
  transform:rotate(-14deg);
}


/* =========================================================
   UNDERSTAND THE EVERYDAY
   ========================================================= */

.everyday{
  position:relative;
  overflow:hidden;
  padding:77px 0 85px;
  background:linear-gradient(180deg,#F5FAFC 0,#EAF3F7 100%);
}

.everyday-wave{
  position:absolute;
  left:-5%;
  right:-5%;
  top:-55px;
  height:96px;
  background:linear-gradient(104deg,#F8E5DB,#F6DDD8);
  border-radius:0 0 48% 52% / 0 0 70% 80%;
}

.everyday-heading{
  position:relative;
  z-index:2;
  text-align:center;
  margin-bottom:34px;
}

.everyday h2{
  font-size:clamp(38px,3.8vw,50px);
  line-height:1.05;
}

.product-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.product-card{
  text-align:center;
  position:relative;
}

.product-card:not(:last-child)::after{
  content:"";
  position:absolute;
  right:-11px;
  bottom:1px;
  width:1px;
  height:73px;
  background:rgba(10,41,69,.16);
}

.blob{
  height:185px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border-radius:
    44% 56% 48% 52% /
    50% 45% 55% 50%;
}

.blob img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.blob-peach{
  background:#F7C1A4;
}

.blob-lilac{
  background:#DED3E9;
}

.blob-blue{
  background:#D8E6EB;
}

.blob-sage{
  background:#DDE3C8;
}

.product-card h3{
  margin:15px 0 5px;
  font-size:17px;
}

.product-card p{
  margin:0;
  font-size:14px;
  line-height:1.45;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer{
  position:relative;
  background:linear-gradient(105deg,#D9CCE8,#E5DCEC);
  padding:53px 0 24px;
}

.footer-wave{
  position:absolute;
  left:-5%;
  right:-5%;
  top:-42px;
  height:84px;
  background:linear-gradient(105deg,#D9CCE8,#E5DCEC);
  border-radius:48% 52% 0 0 / 100% 100% 0 0;
}

.footer-inner{
  position:relative;
}

.footer-top{
  display:flex;
  justify-content:center;
  align-items:center;
  padding-bottom:25px;
  border-bottom:1px solid rgba(10,41,69,.15);
}

.instagram{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  font-size:15px;
  text-align:center;
}

.instagram svg{
  width:27px;
  height:27px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
}

.instagram svg .dot{
  fill:currentColor;
  stroke:none;
}

.instagram strong{
  text-decoration:underline;
  text-underline-offset:3px;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding-top:20px;
  font-size:13px;
}

.footer-heart{
  color:#F19A78;
  font:27px/0 Georgia,serif;
  font-weight:400;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:980px){

  .page-width{
    width:min(100% - 40px,900px);
  }

  .header-inner{
    min-height:180px;
  }

  .brand img{
    width:230px;
  }

  .hero-product{
    opacity:.55;
  }

  .hero-hand{
    left:-55px;
  }

  .hero-book{
    right:-45px;
  }

  .impact-inner{
    grid-template-columns:1fr 1fr;
    gap:35px;
  }

  .impact-sage{
    width:56%;
  }

  .product-grid{
    gap:16px;
  }

  .blob{
    height:160px;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:700px){

  .page-width{
    width:min(100% - 28px,650px);
  }

  .site-header{
    padding-top:20px;
  }

  .site-header::before{
    left:-170px;
    top:-185px;
    width:450px;
    height:320px;
  }

  .header-inner{
    min-height:155px;
  }

  .brand img{
    width:205px;
    max-width:78vw;
  }

  .hero{
    min-height:620px;
    padding:15px 0 80px;
  }

  .hero h1{
    font-size:49px;
  }

  .hero-copy{
    font-size:16px;
  }

  .wide-only{
    display:none;
  }

  .hero-rings{
    right:-155px;
    top:60px;
  }

  .hero-product{
    opacity:.55;
  }

  .hero-hand{
    left:-62px;
    bottom:62px;
    width:138px;
    height:155px;
  }

  .hero-book{
    right:-55px;
    top:170px;
    width:142px;
    height:165px;
  }

  .signup{
    width:min(500px,100%);
  }

  .signup button{
    width:auto;
    margin:0;
  }

  .launch-note{
    font-size:16px;
  }

  .impact{
    padding:74px 0 80px;
  }

  .impact-sage{
    width:100%;
    height:45%;
    border-radius:0 0 55% 0;
  }

  .impact-inner{
    grid-template-columns:1fr;
    gap:36px;
  }

  .impact-visual{
    margin:auto;
    max-width:470px;
  }

  .impact-text{
    text-align:center;
    margin:auto;
  }

  .impact h2{
    font-size:46px;
  }

  .impact-text p{
    font-size:16px;
  }

  .heart{
    display:none;
  }

  .everyday{
    padding:72px 0;
  }

  .everyday h2{
    font-size:39px;
  }

  .product-grid{
    grid-template-columns:1fr 1fr;
    gap:28px 14px;
  }

  .product-card:not(:last-child)::after{
    display:none;
  }

  .blob{
    height:165px;
  }

  .product-card h3{
    font-size:15px;
  }

  .product-card p{
    font-size:13px;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media(max-width:430px){

  .header-inner{
    min-height:145px;
  }

  .brand img{
    width:190px;
  }

  .hero h1{
    font-size:43px;
  }

  .hero-copy{
    font-size:15px;
  }

  .hero-hand,
  .hero-book{
    opacity:.36;
  }

  .signup{
    gap:6px;
  }

  .signup input{
    font-size:14px;
  }

  .signup button{
    padding:14px 16px;
    font-size:14px;
  }

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

  .blob{
    height:220px;
    max-width:320px;
    margin:auto;
  }

  .product-card p{
    font-size:14px;
  }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media(prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto;
  }
}