:root {
  --ink:#19352e;
  --paper:#f4f0e8;
  --warm:#e7dccb;
  --sage:#bfcfbd;
  --peach:#d87552;
  --line:rgba(25,53,46,.18)
}

* {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth
}

body {
  margin:0;
  color:var(--ink);
  background:var(--paper);
  font-family:'DM Sans',sans-serif;
  font-size:14px
}

a {
  color:inherit;
  text-decoration:none
}

.announcement {
  padding:10px 20px;
  background:var(--ink);
  color:#f8f4ed;
  text-align:center;
  font-size:11px;
  letter-spacing:.07em;
  text-transform:uppercase
}

.announcement span {
  margin:0 12px;
  color:#d9b098
}

.site-header {
  min-height:78px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:0 clamp(20px,5vw,76px);
  border-bottom:1px solid var(--line)
}

.nav {
  display:flex;
  gap:30px;
  font-size:12px;
  font-weight:600
}

.nav a,
.header-actions a {
  transition:opacity .2s
}

.nav a:hover,
.header-actions a:hover {
  opacity:.55
}

.header-actions {
  justify-self:end;
  display:flex;
  align-items:center;
  gap:22px;
  font-size:12px
}

.bag {
  border:0;
  background:transparent;
  color:var(--ink);
  font:inherit;
  cursor:pointer
}

.bag span {
  display:inline-grid;
  place-items:center;
  width:20px;
  height:20px;
  margin-left:5px;
  border:1px solid var(--ink);
  border-radius:50%;
  font-size:10px
}

.feature h2,
.stories h2,
.newsletter h2 {
  margin:0;
  font-family:'DM Serif Display',serif;
  font-size:clamp(47px,5.1vw,76px);
  font-weight:400;
  line-height:.98;
  letter-spacing:-.05em
}

.button {
  display:inline-flex;
  align-items:center;
  gap:17px;
  padding:15px 18px;
  font-size:12px;
  font-weight:700
}

.button span {
  font-size:18px
}

.pillow {
  position:absolute;
  z-index:2;
  right:16%;
  bottom:22%;
  width:365px;
  height:205px;
  border-radius:46% 54% 47% 53%/60% 38% 62% 40%;
  background:linear-gradient(145deg,#fffef8,#cfcabf);
  box-shadow:-20px 25px 34px rgba(71,61,45,.16);
  transform:rotate(-14deg)
}

.pillow i {
  position:absolute;
  top:46px;
  left:64px;
  width:153px;
  height:100px;
  border:22px solid rgba(216,211,196,.88);
  border-radius:50%;
  transform:rotate(10deg)
}

.pillow b {
  position:absolute;
  right:48px;
  bottom:35px;
  width:72px;
  height:20px;
  border-radius:50%;
  background:rgba(183,176,164,.35)
}

.benefits {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  padding:32px clamp(20px,7vw,130px);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#faf7f0
}

.benefits div {
  padding:0 24px;
  border-right:1px solid var(--line);
  text-align:center
}

.benefits div:last-child {
  border:0
}

.benefits strong {
  display:block;
  font-family:'DM Serif Display';
  font-size:28px;
  font-weight:400
}

.benefits span {
  color:#62736b;
  font-size:11px
}

.products {
  padding:0 clamp(20px,7vw,130px) 140px
}

.product {
  background:#e1e3d8
}

.feature {
  display:grid;
  grid-template-columns:1fr 1fr;
  background:var(--ink);
  color:#f8f4ed
}

.stories {
  padding:135px clamp(20px,7vw,130px);
  text-align:center
}

.stories h2 {
  font-size:clamp(46px,5vw,68px)
}

.newsletter {
  padding:120px 20px;
  background:var(--warm);
  text-align:center
}

.newsletter h2 {
  font-size:clamp(46px,5.6vw,75px)
}

form {
  max-width:450px;
  display:flex;
  margin:35px auto 0;
  border-bottom:1px solid var(--ink)
}

input {
  flex:1;
  min-width:0;
  padding:14px 4px;
  border:0;
  background:transparent;
  color:var(--ink);
  font:inherit;
  outline:0
}

input::placeholder {
  color:#68786f
}

form button {
  padding:10px 4px;
  border:0;
  background:transparent;
  color:var(--ink);
  font:700 12px 'DM Sans';
  cursor:pointer
}

.form-message {
  min-height:18px;
  margin:14px 0 0;
  color:#4e685d;
  font-size:11px
}

footer {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  padding:27px clamp(20px,5vw,76px);
  background:var(--ink);
  color:#dce4d9;
  font-size:10px
}

footer div {
  display:flex;
  gap:16px
}

.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0)
}

@media(max-width:800px) {
  .site-header {
    grid-template-columns:1fr auto;
    min-height:65px
  }
  .nav {
    display:none
  }
  .benefits {
    grid-template-columns:repeat(2,1fr);
    gap:25px
  }
  .benefits div:nth-child(2) {
    border:0
  }
  .feature {
    grid-template-columns:1fr
  }
  .stories {
    padding:90px 25px
  }
  .products {
    padding:0 20px 90px
  }
  footer {
    align-items:flex-start;
    flex-direction:column
  }
  .header-actions>a {
    display:none
  }
}

@media(max-width:430px) {
  .announcement {
    font-size:9px
  }
  .announcement span {
    margin:0 4px
  }
  .pillow {
    right:4%;
    width:325px
  }
  .benefits div {
    padding:0 8px
  }
  .benefits strong {
    font-size:24px
  }
}

.checkout-button {
  padding:10px 13px;
  border:0;
  background:var(--ink);
  color:#fff;
  font:700 11px 'DM Sans';
  cursor:pointer
}

.cart-drawer {
  position:fixed;
  z-index:200;
  top:0;
  right:0;
  width:min(385px,100%);
  height:100vh;
  padding:26px;
  background:#faf7f0;
  box-shadow:-15px 0 35px rgba(25,53,46,.18);
  transform:translateX(105%);
  transition:transform .25s ease
}

.cart-drawer.is-open {
  transform:translateX(0)
}

.cart-drawer__head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:20px;
  border-bottom:1px solid var(--line)
}

.cart-drawer h2 {
  margin:0;
  font-family:'DM Serif Display';
  font-size:32px;
  font-weight:400
}

.cart-drawer__head button {
  border:0;
  background:transparent;
  color:var(--ink);
  font-size:28px;
  cursor:pointer
}

.cart-total {
  display:flex;
  justify-content:space-between;
  margin-top:20px;
  font-size:14px
}

.checkout-button {
  width:100%;
  margin-top:20px;
  padding:15px
}

.newsletter {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  padding:88px clamp(20px,10vw,155px);
  background:var(--ink);
  color:#f7f3eb;
  text-align:left
}

.newsletter h2 {
  font-size:clamp(39px,4vw,60px)
}

.newsletter>div>p:not(.kicker) {
  max-width:450px;
  color:#ced9d1;
  line-height:1.7
}

.newsletter form {
  max-width:none;
  margin:0;
  border-color:rgba(255,255,255,.65)
}

.newsletter input {
  color:#fff
}

.newsletter input::placeholder {
  color:#c7d2ca
}

.newsletter form button {
  color:#fff
}

.newsletter small {
  display:block;
  margin-top:15px;
  color:#b8c8be;
  font-size:9px;
  line-height:1.5
}

.newsletter .form-message {
  color:#fff
}

@media(max-width:800px) {
  .newsletter {
    grid-template-columns:1fr;
    gap:30px;
    padding:65px 25px
  }
}

.announcement {
  padding:8px 20px;
  background:#2e465b;
  font-size:10px;
  letter-spacing:.03em;
  text-transform:none
}

.site-header {
  position:relative;
  z-index:10;
  min-height:48px;
  background:#f7f3eb;
  padding:0 clamp(20px,13vw,185px);
  grid-template-columns:1fr auto 1fr
}

.site-header .brand-logo {
  grid-column:2;
  grid-row:1;
  justify-self:center
}

.brand-logo img {
  display:block;
  width:87px;
  height:auto
}

.site-header .nav {
  grid-column:1;
  grid-row:1;
  gap:22px;
  font-size:10px;
  white-space:nowrap
}

.site-header .header-actions {
  grid-column:3;
  grid-row:1;
  font-size:11px
}

.site-header .header-actions>a {
  font-size:19px;
  line-height:1
}

.site-header .bag {
  font-size:0
}

.site-header .bag:before {
  content:'🛒';
  font-size:15px;
  filter:grayscale(1)
}

.site-header .bag span {
  width:14px;
  height:14px;
  margin-left:1px;
  font-size:8px
}

@media(max-width:800px) {
  .site-header {
    padding:0 18px;
    min-height:54px
  }
  .site-header .nav {
    display:none
  }
  .site-header .brand-logo {
    grid-column:1
  }
  .site-header .header-actions {
    grid-column:2
  }
}

.home-page {
  --navy:#263c52;
  --cream:#f4f0e8;
  --sand:#e8e1d6;
  --charcoal:#1d2926;
  --muted:#64706b;
  margin:0;
  background:var(--cream);
  color:var(--charcoal);
  font-family:Montserrat,sans-serif
}

.home-page * {
  box-sizing:border-box
}

.home-page .announcement {
  height:36px;
  display:grid;
  place-items:center;
  padding:0 20px;
  background:var(--navy);
  color:#fff;
  font-size:10px;
  font-weight:500;
  letter-spacing:.02em
}

.home-page .site-header {
  position:sticky;
  top:0;
  z-index:50;
  min-height:76px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:0 clamp(18px,2vw,32px);
  border:0;
  border-bottom:1px solid rgba(28,40,37,.1);
  background:rgba(248,246,240,.96);
  backdrop-filter:blur(14px)
}

.home-page .nav {
  display:flex;
  gap:clamp(28px,3vw,46px);
  font-size:12px;
  font-weight:500
}

.home-page .nav a {
  position:relative;
  padding:31px 0
}

.home-page .nav a:after {
  content:"";
  position:absolute;
  right:0;
  bottom:22px;
  left:0;
  height:1px;
  background:currentColor;
  transform:scaleX(0);
  transition:transform .2s
}

.home-page .nav a:hover:after {
  transform:scaleX(1)
}

.home-page .nav a.is-active:after {
  transform:scaleX(1)
}

.home-page .brand-logo {
  grid-column:2;
  grid-row:1;
  justify-self:center
}

.home-page .brand-logo img {
  display:block;
  width:112px;
  height:auto
}

.home-page .header-actions {
  grid-column:3;
  grid-row:1;
  justify-self:end;
  display:flex;
  align-items:center;
  gap:26px
}

.home-page .header-icon,
.home-page .bag {
  display:grid;
  place-items:center;
  width:24px;
  height:28px;
  padding:0;
  border:0;
  background:transparent;
  cursor:pointer
}

.home-page .header-icon svg,
.home-page .bag svg {
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.4
}

.home-page .bag {
  position:relative;
  font-size:0
}

.home-page .bag:before {
  content:none
}

.home-page .bag span {
  position:absolute;
  top:-1px;
  right:-8px;
  width:15px;
  height:15px;
  display:grid;
  place-items:center;
  margin:0;
  border:0;
  border-radius:50%;
  background:var(--navy);
  color:#fff;
  font-size:8px
}

.mobile-menu {
  display:none
}

.callixe-hero {
  position:relative;
  height:calc(100vh - 112px);
  min-height:560px;
  max-height:680px;
  background:linear-gradient(90deg,rgba(246,243,236,.94) 0%,rgba(246,243,236,.7) 27%,rgba(246,243,236,.06) 62%),url("../assets/hero-relief.jpg") center/cover no-repeat
}

.callixe-hero__copy {
  position:absolute;
  right:auto;
  bottom:34px;
  left:clamp(20px,2.5vw,38px);
  top:auto;
  max-width:470px;
  transform:none
}

.home-page .eyebrow,
.section-title>p,
.expert-heading>p,
.newsletter>div>p {
  margin:0 0 16px;
  color:#586761;
  font-size:10px;
  font-weight:700;
  letter-spacing:.14em
}

.callixe-hero h1 {
  margin:0;
  color:#243344;
  font-family:"Libre Baskerville",serif;
  font-size:clamp(40px,3.6vw,52px);
  font-weight:700;
  line-height:.98;
  letter-spacing:-.045em;
  white-space:nowrap
}

.callixe-hero__copy>p:not(.eyebrow) {
  margin:8px 0 27px;
  color:#2b3b3a;
  font-size:16px;
  letter-spacing:.025em
}

.cta-dark,
.cta-light {
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
  min-width:190px;
  padding:15px 20px;
  border-radius:6px;
  background:#17211e;
  color:#fff;
  font-size:11px;
  font-weight:700;
  transition:transform .2s,background .2s
}

.cta-dark:hover,
.cta-light:hover {
  transform:translateY(-2px)
}

.callixe-hero__copy small {
  display:block;
  margin:12px 0 0 30px;
  color:#394c46;
  font-size:9px;
  font-weight:600
}

.callixe-hero__copy small span {
  display:inline-grid;
  place-items:center;
  width:14px;
  height:14px;
  margin-right:6px;
  border:1px solid;
  border-radius:50%
}

.trust-cards {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
  padding:38px clamp(18px,2vw,32px);
  background:#eee9df
}

.trust-cards article {
  display:grid;
  grid-template-columns:47px 1fr;
  gap:18px;
  align-items:start;
  min-height:160px;
  padding:32px;
  background:#e4ddd2;
  border-radius:8px
}

.trust-icon {
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border:1px solid #7a837f;
  border-radius:50%;
  font-family:"Libre Baskerville",serif;
  font-size:12px
}

.trust-icon svg {
  width:24px;
  height:24px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.2
}

.trust-cards h2 {
  margin:1px 0 8px;
  font-family:"Libre Baskerville",serif;
  font-size:18px;
  line-height:1.25
}

.trust-cards p {
  max-width:280px;
  margin:0;
  color:#58635e;
  font-size:14px;
  line-height:1.5
}

.press-strip {
  padding:68px clamp(18px,2vw,32px) 64px;
  border-top:1px solid rgba(36,51,68,.1);
  border-bottom:1px solid rgba(36,51,68,.1);
  background:#e9e3d9;
  text-align:center
}

.press-strip>p {
  margin:0 0 20px;
  color:#4d5b57;
  font-size:12px;
  font-weight:700;
  letter-spacing:.2em
}

.press-strip blockquote {
  max-width:900px;
  min-height:0;
  margin:0 auto 42px;
  color:#273431;
  font-family:"Libre Baskerville",serif;
  font-size:clamp(20px,2.2vw,28px);
  line-height:1.55
}

.press-logos {
  display:grid;
  grid-template-columns:repeat(5,minmax(120px,1fr));
  align-items:center;
  gap:clamp(24px,4vw,60px);
  max-width:1180px;
  margin:auto;
  color:#151515
}

.press-logos strong {
  font-size:clamp(21px,2vw,29px);
  line-height:.85;
  letter-spacing:-.07em;
  white-space:nowrap
}

.press-logos small {
  display:block;
  font-size:6px;
  letter-spacing:.25em
}

.press-logos .press-script {
  font-family:"Libre Baskerville",serif;
  font-size:clamp(18px,1.8vw,25px);
  font-style:italic
}

.healing {
  padding:115px clamp(18px,2vw,32px) 125px
}

.section-title {
  max-width:700px;
  margin:0 auto 54px;
  text-align:center
}

.section-title h2,
.community h2,
.routine h2,
.expert-heading h2,
.newsletter h2 {
  margin:0;
  font-family:"Libre Baskerville",serif;
  font-weight:400;
  letter-spacing:-.04em
}

.section-title h2 {
  font-size:clamp(40px,4.5vw,64px)
}

.section-title span {
  display:block;
  max-width:570px;
  margin:20px auto 0;
  color:var(--muted);
  font-size:16px;
  line-height:1.6
}

.therapy-grid {
  display:grid;
  grid-template-columns:1.22fr 1fr;
  gap:18px
}

.therapy-card {
  position:relative;
  display:block;
  min-height:610px;
  overflow:hidden;
  background:#ddd
}

.therapy-card img {
  width:100%;
  height:100%;
  position:absolute;
  inset:0;
  object-fit:cover;
  transition:transform .55s
}

.therapy-card:hover img {
  transform:scale(1.025)
}

.therapy-card:after {
  content:"";
  position:absolute;
  inset:38% 0 0;
  background:linear-gradient(transparent,rgba(15,22,20,.75))
}

.therapy-card>div {
  position:absolute;
  z-index:2;
  right:38px;
  bottom:35px;
  left:38px;
  color:#fff
}

.therapy-card small {
  font-size:9px;
  font-weight:700;
  letter-spacing:.15em
}

.therapy-card h3 {
  margin:10px 0 5px;
  font-family:"Libre Baskerville",serif;
  font-size:clamp(30px,3vw,43px);
  font-weight:400
}

.therapy-card p {
  margin:0 0 20px;
  font-size:12px
}

.therapy-card>div>span {
  display:inline-block;
  padding:12px 20px;
  border:0;
  border-radius:999px;
  background:#fff;
  color:#111;
  font-size:11px;
  font-weight:700;
  transition:transform .2s,background .2s
}

.therapy-card:hover>div>span {
  background:#f1eee7;
  transform:translateY(-2px)
}

.therapy-card--back img {
  object-position:center
}

.community {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  min-height:700px;
  background:#dce3dc
}

.community-copy {
  align-self:center;
  padding:80px clamp(24px,4vw,56px)
}

.community h2 {
  font-size:clamp(42px,4.6vw,65px);
  line-height:1.05
}

.community-intro {
  max-width:430px;
  margin:24px 0 45px;
  color:#59665f;
  font-size:13px;
  line-height:1.75
}

.review {
  max-width:500px;
  padding-top:25px;
  border-top:1px solid rgba(29,41,38,.25)
}

.stars {
  color:#304d42;
  font-size:13px;
  letter-spacing:.2em
}

.review blockquote {
  margin:15px 0 20px;
  font-family:"Libre Baskerville",serif;
  font-size:20px;
  line-height:1.55
}

.review strong {
  font-size:11px
}

.review strong span {
  margin-left:8px;
  color:#67736d;
  font-weight:400
}

.community-collage {
  position:relative;
  min-height:700px;
  overflow:hidden
}

.collage-main {
  width:100%;
  height:100%;
  position:absolute;
  inset:0;
  object-fit:cover
}

.collage-float {
  position:absolute;
  right:7%;
  bottom:7%;
  width:33%;
  aspect-ratio:3/4;
  object-fit:cover;
  border:8px solid #f5f2eb;
  box-shadow:0 15px 35px rgba(20,30,27,.2)
}

.therapy-seal {
  position:absolute;
  left:4%;
  bottom:5%;
  width:112px
}

.routine {
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:670px;
  background:#243b34;
  color:#fff
}

.routine-photo {
  min-height:670px;
  overflow:hidden
}

.routine-photo img {
  width:100%;
  height:100%;
  display:block;
  object-fit:cover
}

.routine-copy {
  align-self:center;
  max-width:650px;
  padding:85px clamp(24px,4vw,56px)
}

.routine-copy .eyebrow {
  color:#b9c9c0
}

.routine h2 {
  font-size:clamp(41px,4.3vw,62px);
  line-height:1.07
}

.routine-copy>p:not(.eyebrow) {
  margin:25px 0;
  color:#d0dbd5;
  font-size:13px;
  line-height:1.8
}

.routine ul {
  margin:28px 0 35px;
  padding:0;
  list-style:none
}

.routine li {
  padding:12px 0;
  border-top:1px solid rgba(255,255,255,.22);
  font-size:11px
}

.routine li:before {
  content:"✓";
  margin-right:12px
}

.cta-light {
  background:#f7f4ed;
  color:#223630
}

.expert {
  padding:120px clamp(18px,2vw,32px);
  background:#f5f1e9
}

.expert-heading {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:35px;
  margin-bottom:48px
}

.expert-heading h2 {
  max-width:700px;
  font-size:clamp(37px,4.1vw,58px);
  line-height:1.08
}

.expert-card {
  display:grid;
  grid-template-columns:.65fr 1fr;
  max-width:1100px;
  margin:auto;
  background:#e5ded2
}

.expert-card>img {
  width:100%;
  height:520px;
  object-fit:cover;
  object-position:center 32%
}

.expert-card>div {
  align-self:center;
  padding:55px clamp(35px,6vw,85px)
}

.expert-card blockquote {
  margin:20px 0 38px;
  font-family:"Libre Baskerville",serif;
  font-size:clamp(20px,2.2vw,29px);
  line-height:1.5
}

.expert-card h3 {
  margin:0 0 6px;
  font-size:12px
}

.expert-card p {
  margin:0;
  color:#64716b;
  font-size:11px
}

.home-page .newsletter {
  display:block;
  padding:62px clamp(18px,2vw,32px) 30px;
  border-bottom:1px solid rgba(255,255,255,.12);
  background:#263c52;
  color:#fff;
  text-align:left
}

.home-page .newsletter>div {
  max-width:none;
  margin:auto
}

.home-page .newsletter h2 {
  display:flex;
  align-items:center;
  gap:15px;
  margin:0;
  font-family:"Libre Baskerville",serif;
  font-size:clamp(28px,3vw,40px);
  font-weight:700;
  letter-spacing:0;
  line-height:1.2
}

.home-page .newsletter h2:before {
  content:"✤";
  flex:0 0 auto;
  color:#fff;
  font-family:Arial,sans-serif;
  font-size:34px;
  line-height:1
}

.home-page .newsletter>div>span {
  display:block;
  margin-top:12px;
  color:#fff;
  font-size:15px
}

.home-page .newsletter form {
  width:min(1200px,100%);
  max-width:none;
  display:grid;
  grid-template-columns:minmax(240px, 1fr) 300px;
  gap:8px;
  margin:26px 0 0;
  border:0
}

.newsletter-input {
  display:flex;
  align-items:center;
  overflow:hidden;
  border-radius:8px;
  background:#fff
}

.home-page .newsletter .newsletter-input input {
  width:100%;
  padding:16px 14px;
  color:#263c52;
  font-size:14px
}

.home-page .newsletter .newsletter-input input::placeholder {
  color:#9ca4ae
}

.newsletter-input span {
  padding-right:10px;
  color:#00b9a7;
  font-size:12px
}

.home-page .newsletter form button {
  padding:16px 25px;
  border:0;
  border-radius:8px;
  background:#1d2826;
  color:#fff;
  font-size:14px;
  font-weight:700
}

.home-page .newsletter small {
  display:block;
  margin-top:26px;
  color:#fff;
  font-size:11px;
  line-height:1.5
}

.home-page .newsletter .form-message {
  min-height:0;
  margin:7px 0 0;
  color:#fff;
  font-size:10px
}

.callixe-footer {
  display:block;
  padding:0;
  background:#263c52;
  color:#fff;
  font-family:Montserrat,sans-serif;
  font-size:11px
}

.footer-links {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:clamp(35px,6vw,90px);
  max-width:1400px;
  margin:auto;
  padding:56px clamp(25px,7vw,110px)
}

.callixe-footer .footer-links>div {
  display:block
}

.callixe-footer h3 {
  margin:0 0 15px;
  font-family:"Libre Baskerville",serif;
  font-size:22px;
  font-weight:700
}

.callixe-footer a {
  display:block;
  margin:0 0 16px;
  color:#fff;
  font-size:14px
}

.callixe-footer p {
  max-width:290px;
  margin:0 0 20px;
  color:#fff;
  font-size:14px;
  line-height:1.6
}

.footer-bottom {
  display:grid;
  grid-template-columns:110px minmax(560px,1fr) 290px;
  align-items:center;
  gap:28px;
  min-height:84px;
  padding:20px 24px;
  border-top:1px solid rgba(255,255,255,.12);
  font-size:12px
}

.footer-policies {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  align-items:center;
  gap:20px
}

.footer-policies a {
  margin:0;
  font-size:12px;
  text-align:center;
  white-space:nowrap
}

.footer-bottom>span {
  text-align:right;
  white-space:nowrap
}

.social-links {
  display:flex;
  align-items:center;
  gap:22px
}

.social-links a {
  margin:0;
  display:grid;
  place-items:center;
  width:18px;
  min-height:18px;
  font-size:15px;
  font-weight:700;
  line-height:1
}

.social-links svg {
  display:block;
  width:18px;
  height:18px;
  fill:none;
  stroke:#fff;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round
}

.social-links a:first-child svg,
.social-links a:nth-child(3) svg {
  fill:#fff;
  stroke:none
}

.social-links a:nth-child(2) .solid {
  fill:#fff;
  stroke:none
}

.social-links a:nth-child(3) .solid {
  fill:#263c52;
  stroke:none
}

.home-products {
  padding:105px clamp(18px,2vw,32px) 120px;
  background:#eee9df
}

.home-products__head {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:38px
}

.home-products__head p {
  margin:0 0 12px;
  color:#66736d;
  font-size:9px;
  font-weight:700;
  letter-spacing:.14em
}

.home-products__head h2 {
  margin:0;
  font-family:"Libre Baskerville",serif;
  font-size:clamp(38px,4vw,56px);
  font-weight:400;
  letter-spacing:-.04em
}

.home-products__head>a {
  padding-bottom:5px;
  border-bottom:1px solid;
  font-size:10px;
  font-weight:700
}

.home-product-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px
}

.home-product-card {
  min-width:0
}

.home-product-card__image {
  display:block;
  aspect-ratio:1;
  overflow:hidden;
  border-radius:8px;
  background:#f8f8f6
}

.home-product-card__image img {
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .4s
}

.home-product-card:hover .home-product-card__image img {
  transform:scale(1.025)
}

.home-product-card h3 {
  margin:15px 0 10px;
  font-family:"Libre Baskerville",serif;
  font-size:17px;
  font-weight:700;
  line-height:1.35
}

.home-product-card__price {
  display:flex;
  align-items:center;
  gap:15px;
  font-size:12px
}

.home-product-card__price strong {
  font-weight:500
}

.home-product-card__price del {
  color:#969b98;
  font-size:11px
}

@media(max-width:900px) {
  .home-page .site-header {
    grid-template-columns:auto 1fr auto;
    padding:0 20px
  }
  .mobile-menu {
    grid-column:1;
    display:block;
    width:28px;
    padding:5px 0;
    border:0;
    background:transparent
  }
  .mobile-menu span {
    display:block;
    width:20px;
    height:1px;
    margin:5px 0;
    background:currentColor
  }
  .home-page .brand-logo {
    grid-column:2
  }
  .home-page .brand-logo img {
    width:98px
  }
  .home-page .nav {
    position:absolute;
    top:76px;
    right:0;
    left:0;
    display:none;
    padding:20px;
    background:#f8f6f0;
    border-top:1px solid rgba(0,0,0,.08);
    box-shadow:0 14px 25px rgba(0,0,0,.08)
  }
  .home-page.menu-open .nav {
    display:grid
  }
  .home-page .nav a {
    padding:9px
  }
  .home-page .header-icon {
    display:none
  }
  .callixe-hero {
    min-height:520px;
    background-position:62% center
  }
  .callixe-hero__copy {
    top:auto;
    right:22px;
    bottom:45px;
    left:22px;
    max-width:430px;
    padding:25px;
    border-radius:8px;
    background:rgba(246,243,236,.86);
    backdrop-filter:blur(5px);
    transform:none
  }
  .trust-cards {
    grid-template-columns:1fr
  }
  .trust-cards article {
    min-height:0
  }
  .therapy-card {
    min-height:520px
  }
  .community,
  .routine {
    grid-template-columns:1fr
  }
  .community-collage {
    min-height:620px
  }
  .routine-photo {
    min-height:520px
  }
  .expert-card {
    grid-template-columns:1fr
  }
  .expert-card>img {
    height:480px
  }
  .home-page .newsletter form {
    max-width:600px
  }
  .home-product-grid {
    gap:16px
  }
  .footer-links {
    grid-template-columns:repeat(2,1fr)
  }
  .footer-bottom {
    grid-template-columns:repeat(3,1fr)
  }
  .footer-bottom>span {
    text-align:left
  }
  .social-links {
    grid-column:1/-1
  }
}

.expert-card {
  position:relative;
  min-height:470px;
  overflow:hidden;
  border-radius:10px;
  background:#263c52
}

.expert-card img {
  width:100%;
  height:100%;
  object-fit:cover
}

.expert-card:after {
  content:"";
  position:absolute;
  inset:45% 0 0;
  background:linear-gradient(transparent,rgba(0,0,0,.88))
}

.expert-card>div {
  position:absolute;
  z-index:1;
  right:18px;
  bottom:19px;
  left:18px;
  color:#fff
}

.expert-card h3 {
  margin:0 0 4px;
  font-family:'Libre Baskerville',serif;
  font-size:25px
}

.expert-card p,
.expert-card em {
  margin:0;
  font-size:12px
}

.expert-card em {
  display:block;
  margin-top:6px
}

@media(max-width:1000px) {
  .expert-card {
    min-height:390px
  }
}

@media(max-width:650px) {
  .expert-card {
    min-height:420px
  }
}

@media(max-width:620px) {
  .callixe-hero h1 {
    font-size:clamp(28px,8.5vw,36px)
  }
  .callixe-hero__copy>p:not(.eyebrow) {
    font-size:12px
  }
  .trust-cards {
    padding:20px 14px
  }
  .trust-cards article {
    padding:25px 20px
  }
  .press-logos {
    grid-template-columns:repeat(2,1fr);
    gap:32px 20px
  }
  .press-strip blockquote {
    margin-bottom:34px;
    font-size:18px
  }
  .press-strip {
    padding:50px 20px
  }
  .press-logos strong:last-child {
    grid-column:1/-1
  }
  .healing {
    padding:80px 14px
  }
  .therapy-grid {
    grid-template-columns:1fr
  }
  .therapy-card {
    min-height:470px
  }
  .community-copy,
  .routine-copy {
    padding:70px 25px
  }
  .community-collage {
    min-height:500px
  }
  .therapy-seal {
    width:85px
  }
  .expert {
    padding:80px 14px
  }
  .expert-heading {
    align-items:start;
    flex-direction:column
  }
  .expert-card>img {
    height:390px
  }
  .expert-card>div {
    padding:35px 25px
  }
  .home-page .newsletter {
    padding:45px 25px 35px
  }
  .home-page .newsletter form {
    grid-template-columns:1fr;
    gap:12px
  }
  .home-page .newsletter form button {
    width:100%
  }
  .home-products {
    padding:75px 14px 80px
  }
  .home-products__head {
    align-items:start;
    flex-direction:column
  }
  .home-product-grid {
    grid-template-columns:1fr;
    gap:35px
  }
  .home-product-card h3 {
    font-size:18px
  }
  .footer-links {
    grid-template-columns:1fr 1fr;
    gap:35px;
    padding:35px 25px
  }
  .callixe-footer h3 {
    font-size:18px
  }
  .footer-bottom {
    grid-template-columns:1fr 1fr;
    padding:25px
  }
  .social-links {
    grid-column:1/-1
  }
  .footer-bottom>span {
    grid-column:1/-1
  }
}

@media(max-width:800px) {
  body:not(.home-page) .site-header {
    grid-template-columns:auto 1fr auto;
    gap:14px;
    padding:0 16px;
  }
  body:not(.home-page) .nav {
    display:flex;
    justify-content:center;
    gap:14px;
    font-size:10px;
  }
}

@media(max-width:430px) {
  body:not(.home-page) .site-header {
    grid-template-columns:1fr auto;
    padding:9px 14px;
  }
  body:not(.home-page) .nav {
    grid-column:1 / -1;
    grid-row:2;
    order:3;
    padding:8px 0 2px;
    border-top:1px solid var(--line);
  }
}

/* Final mobile responsive rules */
@media(max-width:600px) {
  html,
  body {
    width:100%;
    max-width:100%;
    overflow-x:hidden
  }
  body * {
    min-width:0
  }
  img,
  video {
    max-width:100%
  }
  .announcement {
    height:auto!important;
    min-height:29px;
    padding:6px 12px!important;
    line-height:1.35;
    text-align:center
  }
  .site-header {
    min-height:58px!important;
    grid-template-columns:auto 1fr auto!important;
    gap:10px!important;
    padding:0 14px!important
  }
  .brand-logo {
    grid-column:2!important;
    grid-row:1!important
  }
  .brand-logo img {
    width:88px!important
  }
  .header-actions {
    grid-column:3!important;
    grid-row:1!important;
    gap:9px!important
  }
  .header-icon {
    display:none!important
  }
  .nav {
    position:absolute!important;
    top:58px!important;
    right:0!important;
    left:0!important;
    grid-column:auto!important;
    grid-row:auto!important;
    display:none!important;
    padding:14px 18px!important;
    border-top:1px solid rgba(0,0,0,.08)!important;
    background:#f8f6f0!important;
    box-shadow:0 14px 25px rgba(0,0,0,.08)!important
  }
  .menu-open .nav {
    display:grid!important;
    gap:2px!important
  }
  .nav a {
    padding:10px!important;
    font-size:13px!important
  }
  .nav a:after {
    right:auto!important;
    bottom:3px!important;
    left:10px!important;
    width:28px!important
  }
  .callixe-hero {
    min-height:480px;
    background-position:62% center
  }
  .callixe-hero__copy {
    right:14px;
    bottom:22px;
    left:14px;
    padding:20px
  }
  .callixe-hero h1 {
    font-size:36px
  }
  .community-collage,
  .routine-photo {
    min-height:390px
  }
  .therapy-card {
    min-height:420px
  }
  .expert-card>img {
    height:360px
  }
  .footer-links {
    grid-template-columns:1fr!important;
    gap:28px!important;
    padding:34px 20px!important
  }
  .footer-bottom {
    grid-template-columns:1fr!important;
    gap:14px!important;
    padding:22px 20px!important
  }
  .footer-bottom>* {
    grid-column:auto!important;
    text-align:left!important;
    overflow-wrap:anywhere
  }
  .footer-policies {
    flex-wrap:wrap;
    justify-content:flex-start;
    gap:10px 22px
  }
}
