/* =========================================================================
   Aviora Aesthetic Clinic — editorial landing
   Palette + type tokens
   ========================================================================= */
:root {
  --bg:           #FAF5EF;   /* ivory */
  --bg-warm:      #F0E8DC;   /* warm cream */
  --bg-deep:      #E8DCCB;   /* deeper sand */
  --mauve:        #B89B95;   /* logo mauve */
  --mauve-deep:   #8B6F69;   /* deeper mauve for hover */
  --taupe:        #7C6358;   /* warm taupe */
  --ink:          #1A1614;   /* near-black */
  --ink-soft:     #4A3F39;   /* secondary text */
  --line:         rgba(26,22,20,0.12);
  --line-soft:    rgba(26,22,20,0.06);
  --whatsapp:     #25D366;

  --serif:        'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --sans:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max:          1280px;
  --gutter:       clamp(20px, 4vw, 64px);
  --section-y:    clamp(72px, 10vw, 144px);

  --ease:         cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, iframe { display: block; max-width: 100%; }
img { height: auto; }

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

/* ----- Typography primitives -------------------------------------------- */
.wordmark {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.01em;
  text-transform: lowercase;
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 .4em;
  color: var(--ink);
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--mauve-deep);
}

.lede {
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.65;
  max-width: 58ch;
  color: var(--ink-soft);
}

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--mauve-deep);
  margin: 0 0 1.4rem;
  font-weight: 500;
}

/* ----- Page hero (sub-pages) ------------------------------------------- */
.page-hero {
  position: relative;
  min-height: 60svh;
  min-height: 60vh;
  overflow: hidden;
  color: var(--bg);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  padding: 0 var(--gutter) clamp(3rem, 6vw, 5rem);
}
.page-hero__media { position: absolute; inset: 0; z-index: -1; }
.page-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.74) saturate(108%);
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,22,20,.32) 0%, rgba(26,22,20,0) 35%, rgba(26,22,20,.62) 100%);
  z-index: -1;
}
.page-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding-top: clamp(8rem, 18vh, 12rem);
}
.page-hero__eyebrow {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  margin: 0 0 1.2rem;
  opacity: .85;
}
.page-hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: .95;
  letter-spacing: -0.02em;
  margin: 0 0 .8rem;
  max-width: 22ch;
}
.page-hero__title em {
  font-style: italic;
  color: var(--bg-warm);
}
.page-hero__lede {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-style: italic;
  margin: 0;
  max-width: 50ch;
  opacity: .92;
}

/* ----- Home page tiles ------------------------------------------------- */
.tiles {
  background: var(--bg);
}
.tiles__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.8rem, 1.6vw, 1.4rem);
}
@media (max-width: 980px) { .tiles__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tiles__grid { grid-template-columns: 1fr; } }

.tile {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  color: var(--bg);
  isolation: isolate;
  background: var(--bg-warm);
}
.tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.tile:hover img { transform: scale(1.06); }
.tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,22,20,.05) 0%, rgba(26,22,20,.65) 100%);
  z-index: 0;
  transition: background .3s var(--ease);
}
.tile:hover::after { background: linear-gradient(180deg, rgba(26,22,20,.12) 0%, rgba(26,22,20,.78) 100%); }
.tile__content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.4rem 1.6rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.tile__eyebrow {
  font-size: .68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: .82;
  margin: 0;
}
.tile__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.005em;
  margin: 0;
  line-height: 1.05;
}
.tile__arrow {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  z-index: 1;
  width: 36px; height: 36px;
  border: 1px solid currentColor;
  border-radius: 999px;
  display: grid; place-items: center;
  opacity: .82;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.tile:hover .tile__arrow { opacity: 1; transform: translate(2px, -2px); }

/* ----- Active nav link ------------------------------------------------- */
.nav a[aria-current="page"] {
  opacity: 1;
  color: var(--mauve);
}
.is-scrolled .nav a[aria-current="page"] { color: var(--mauve-deep); }

/* ----- Site header ------------------------------------------------------ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem var(--gutter);
  background: transparent;
  color: var(--bg);
  transition: background .35s var(--ease), color .35s var(--ease),
              backdrop-filter .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(250, 245, 239, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  color: var(--ink);
  border-bottom-color: var(--line-soft);
}

.brand__mark {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.55rem;
  letter-spacing: -0.005em;
}

.nav {
  display: flex;
  gap: clamp(1rem, 2.4vw, 2.2rem);
  font-size: .85rem;
  letter-spacing: 0.04em;
}
.nav a {
  opacity: .82;
  position: relative;
  padding: .25em 0;
  transition: opacity .2s var(--ease);
}
.nav a:hover { opacity: 1; }
.nav a.is-active {
  opacity: 1;
}
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  width: 4px; height: 4px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: inherit;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 1.5px;
  background: currentColor;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav {
    position: fixed;
    inset: 0;
    background: var(--bg);
    color: var(--ink);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    font-size: 1.6rem;
    font-family: var(--serif);
    font-weight: 300;
    text-transform: none;
    letter-spacing: -0.005em;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
    z-index: 40;
  }
  body.nav-open .nav { opacity: 1; pointer-events: auto; }
  .nav-toggle { display: inline-flex; }
  .site-header .cta--small { display: none; }
  body.nav-open { overflow: hidden; }
}

/* ----- CTAs ------------------------------------------------------------- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: .95em 1.7em;
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.cta--primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.cta--primary:hover {
  background: var(--mauve-deep);
  border-color: var(--mauve-deep);
}
.cta--ghost {
  background: transparent;
  color: inherit;
}
.cta--ghost:hover { background: rgba(255,255,255,0.08); }
.is-scrolled .cta--ghost:hover { background: rgba(26,22,20,0.06); }

.cta--small {
  padding: .7em 1.3em;
  font-size: .74rem;
  background: rgba(250, 245, 239, 0.96);
  color: var(--ink);
  border-color: rgba(250, 245, 239, 0.96);
}
.cta--small:hover {
  background: var(--mauve);
  color: var(--ink);
  border-color: var(--mauve);
}
.is-scrolled .cta--small {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.is-scrolled .cta--small:hover {
  background: var(--mauve-deep);
  border-color: var(--mauve-deep);
  color: #fff;
}

/* ----- HERO ------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  overflow: hidden;
  color: var(--bg);
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  filter: brightness(.78) saturate(105%);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,22,20,.30) 0%, rgba(26,22,20,.0) 30%, rgba(26,22,20,.0) 55%, rgba(26,22,20,.55) 100%);
  z-index: -1;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(7rem, 18vh, 11rem) var(--gutter) 6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  min-height: 100vh;
}
.hero__eyebrow {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  margin: 0 0 1.6rem;
  opacity: .85;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(4.5rem, 16vw, 12rem);
  line-height: .85;
  letter-spacing: -0.02em;
  margin: 0 0 1.2rem;
}
.hero__title .wordmark { display: inline-block; }
.hero__tag {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-style: normal;
  letter-spacing: 0.01em;
  margin: 0 0 2.4rem;
  opacity: .92;
}
.hero__tag em {
  font-style: italic;
  color: var(--bg-warm);
}
.hero__cta {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center;
  gap: .8rem;
  font-size: .68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: .7;
  z-index: 1;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: currentColor;
  animation: scrollLine 2.4s var(--ease) infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); opacity: .2; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); opacity: .2; transform-origin: bottom; }
}

/* ----- Page hero (inner pages) ----------------------------------------- */
.page-hero {
  position: relative;
  min-height: 70vh;
  min-height: 70svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--bg);
  isolation: isolate;
  padding-bottom: clamp(3rem, 7vw, 5rem);
}
.page-hero__media {
  position: absolute; inset: 0;
  z-index: -1;
}
.page-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.78) saturate(105%);
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,22,20,.42) 0%, rgba(26,22,20,.0) 30%, rgba(26,22,20,.65) 100%);
  z-index: -1;
}
.page-hero__content {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 9rem var(--gutter) 0;
  position: relative;
  z-index: 1;
}
.page-hero__eyebrow {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin: 0 0 1.4rem;
  opacity: .85;
}
.page-hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: .95;
  letter-spacing: -0.015em;
  margin: 0 0 1.2rem;
  max-width: 18ch;
}
.page-hero__title em {
  font-style: italic;
  color: var(--bg-warm);
}
.page-hero__lede {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.5;
  max-width: 48ch;
  margin: 0;
  opacity: .92;
  color: var(--bg-warm);
}

/* ----- Intro (landing) -------------------------------------------------- */
.intro {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 144px) var(--gutter);
  text-align: center;
}
.intro .eyebrow { color: var(--mauve-deep); }
.intro .display { margin: .2em auto .8em; max-width: 14ch; }
.intro .lede { margin: 0 auto; }

/* ----- Discover grid (landing nav cards) ------------------------------- */
.discover {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(72px, 10vw, 144px);
}
.discover .section-head { padding: 0 0 clamp(2rem, 5vw, 4rem); }
.discover__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.2rem, 2.4vw, 2rem);
}
@media (max-width: 720px) { .discover__grid { grid-template-columns: 1fr; } }

.discover-card {
  display: block;
  background: var(--bg-warm);
  border-radius: 10px;
  overflow: hidden;
  color: inherit;
  transition: transform .35s var(--ease);
  position: relative;
}
.discover-card:hover { transform: translateY(-4px); }

.discover-card__figure {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-deep);
}
.discover-card__figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.discover-card:hover .discover-card__figure img { transform: scale(1.05); }

.discover-card__body {
  padding: clamp(1.6rem, 2.6vw, 2.4rem);
}
.discover-card__kicker {
  font-size: .72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mauve-deep);
  margin: 0 0 .8rem;
  font-weight: 500;
}
.discover-card__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .8rem;
}
.discover-card__title em {
  font-style: italic;
  color: var(--mauve-deep);
}
.discover-card__caption {
  margin: 0 0 1.3rem;
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.discover-card__arrow {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: .25em;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.discover-card:hover .discover-card__arrow { color: var(--mauve-deep); border-bottom-color: var(--mauve-deep); }

/* ----- Closing CTA band ------------------------------------------------ */
.band {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
}
.band__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(80px, 12vw, 140px) var(--gutter);
}
.band .eyebrow { color: var(--mauve); }
.band .display {
  color: var(--bg);
  font-style: italic;
  font-weight: 300;
  margin: .2em auto .8em;
  max-width: 22ch;
}
.band .display em {
  font-style: italic;
  color: var(--mauve);
}
.band__attr {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--mauve);
  margin: 0 0 2.4rem;
}

/* ----- Sections / reveals ---------------------------------------------- */
section { padding-top: var(--section-y); padding-bottom: var(--section-y); }

.reveal > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll-line { animation: none; }
}

.section-head { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section-head--centered { text-align: center; }
.section-head--centered .lede { margin-left: auto; margin-right: auto; }

/* ----- Philosophy ------------------------------------------------------ */
.philosophy {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.philosophy__inner { max-width: 56ch; }
.philosophy__figure {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-warm);
  aspect-ratio: 4 / 5;
}
.philosophy__figure img {
  width: 100%; height: 100%;
  object-fit: cover;
}
@media (max-width: 860px) {
  .philosophy { grid-template-columns: 1fr; }
  .philosophy__figure { order: -1; }
}

/* ----- Treatments ------------------------------------------------------ */
.treatments .section-head { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.treatments .section-head .lede { margin-left: auto; margin-right: auto; }

.cards {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.card {
  background: var(--bg);
  padding: clamp(2rem, 3.4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: .8rem;
  position: relative;
  min-height: 260px;
  transition: background .3s var(--ease);
}
.card:hover { background: var(--bg-warm); }
.card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--mauve-deep);
  letter-spacing: 0.05em;
}
.card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--ink);
}
.card__body {
  margin: 0;
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.65;
}
.card__tag {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  font-size: .65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: .35em .9em;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
}
.card--feature { background: var(--bg-warm); }
.card--feature:hover { background: var(--bg-deep); }

@media (max-width: 1080px) { .cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }

.treatments__figure {
  max-width: var(--max);
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  padding: 0 var(--gutter);
}
.treatments__figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}
.treatments__figure figcaption {
  margin-top: 1.4rem;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--taupe);
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

/* ----- Opening Specials ------------------------------------------------ */
.specials {
  background: var(--bg);
}
.specials .section-head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }

.specials__hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
@media (max-width: 980px) {
  .specials__hero { grid-template-columns: 1fr; max-width: 540px; }
}

.special-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(2rem, 3vw, 2.6rem);
  border-radius: 10px;
  overflow: hidden;
  min-height: 480px;
  transition: transform .4s var(--ease);
}
.special-card:hover { transform: translateY(-4px); }

.special-card--warm {
  background:
    linear-gradient(165deg, rgba(124,99,88,.05) 0%, rgba(26,22,20,.78) 100%),
    url('assets/reel-interior.jpg') center / cover no-repeat,
    var(--taupe);
  color: var(--bg);
}
.special-card--dark {
  background: var(--ink);
  color: var(--bg);
}
.special-card--neutral {
  background: var(--bg-deep);
  color: var(--ink);
}

.special-card__brand {
  margin: 0;
  opacity: .85;
}
.special-card__brand .wordmark {
  font-size: 1.4rem;
  font-weight: 300;
}

.special-card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: .4rem 0 0;
}
.special-card__title--display {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.special-card__price {
  display: flex;
  align-items: baseline;
  gap: .55em;
  margin: .4rem 0 .6rem;
}
.special-card__price-label {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: .75;
}
.special-card__price-value {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 3.6vw, 3.3rem);
  letter-spacing: -0.01em;
  line-height: 1;
}

.special-card__includes-label,
.special-card__limited {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: .68;
  margin: .4rem 0 .2rem;
}
.special-card__limited {
  margin-top: .8rem;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: .82rem;
  opacity: .82;
  font-style: italic;
}

.special-card__includes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55em 1.2em;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
}
.special-card__includes li {
  position: relative;
  padding-left: 1.2em;
}
.special-card__includes li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--mauve);
}

.special-card__tiers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .6em;
}
.special-card__tiers li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8em;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.special-card__cta {
  margin-top: auto;
  padding-top: 1.2rem;
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  align-self: flex-start;
  border-bottom: 1px solid currentColor;
  padding-bottom: .35em;
  transition: gap .2s var(--ease), color .2s var(--ease);
}
.special-card__cta:hover { color: var(--mauve); }

/* Pill chip — the recurring brand element */
.pill {
  display: inline-flex;
  align-items: center;
  padding: .5em 1em;
  background: var(--mauve);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .85rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  white-space: nowrap;
}
.pill--small { font-size: .76rem; padding: .42em .9em; }
.special-card--dark .pill { background: var(--bg-warm); color: var(--ink); }
.special-card--warm .pill { background: rgba(255,255,255,.92); color: var(--ink); }

/* Pricing menu (below the 3 promo cards) */
.specials__menu {
  max-width: 880px;
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  padding: clamp(2.4rem, 5vw, 4rem) clamp(2rem, 5vw, 3.4rem);
  background: var(--bg-warm);
  border-radius: 10px;
}
.specials__menu-head {
  text-align: center;
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}
.specials__menu-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0;
  letter-spacing: -0.01em;
}
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.menu-row:last-child { border-bottom: 0; }
.menu-row__name {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--ink-soft);
}
.specials__menu-foot {
  margin: clamp(1.6rem, 3vw, 2.2rem) 0 0;
  text-align: center;
}

/* ----- Founders grid (about page) -------------------------------------- */
.founders {
  background: var(--bg-warm);
}
.founders .section-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.founders__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
@media (max-width: 880px) {
  .founders__grid { grid-template-columns: 1fr; }
}

.founder-card {
  background: var(--bg);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .35s var(--ease);
}
.founder-card:hover { transform: translateY(-4px); }

.founder-card__figure {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-deep);
}
.founder-card__figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.founder-card:hover .founder-card__figure img { transform: scale(1.04); }

.founder-card__body {
  padding: clamp(1.8rem, 3vw, 2.6rem);
}
.founder-card__kicker {
  font-size: .72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mauve-deep);
  margin: 0 0 .9rem;
  font-weight: 500;
}
.founder-card__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0 0 .25rem;
  color: var(--ink);
}
.founder-card__creds {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin: 0 0 1.4rem;
  font-weight: 500;
}
.founder-card__quote {
  position: relative;
  margin: 0 0 1.6rem;
  padding-left: 1.4rem;
  border-left: 1px solid var(--mauve);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  line-height: 1.4;
  color: var(--ink);
}
.founder-card__quote .quote-mark {
  position: absolute; left: 0.05em; top: -.55em;
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--mauve);
  font-style: normal;
  line-height: 1;
}
.founder-card__bio {
  margin: 0;
  font-size: .98rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ----- Treatments feature row (treatments page) ------------------------ */
.treatments__feature {
  max-width: var(--max);
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.treatments__feature-figure {
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-warm);
}
.treatments__feature-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.treatments__feature-body .display { margin-bottom: .8em; }
.treatments__feature-body .cta { margin-top: 1.4rem; }
@media (max-width: 880px) {
  .treatments__feature { grid-template-columns: 1fr; }
}

/* ----- Skin Diaries (diaries page) ------------------------------------- */
.diary {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 144px) var(--gutter);
}
.diary__head {
  text-align: center;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}
.diary__issue {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--mauve-deep);
  margin: 0 0 1.4rem;
  font-weight: 500;
}
.diary__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}
.diary__title em {
  font-style: italic;
  color: var(--mauve-deep);
  display: block;
  font-size: 1.15em;
  margin-bottom: .1em;
}

.diary__quote {
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.diary__quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.45;
  margin: 0;
  color: var(--ink);
}
.diary__byline {
  margin: 1.2rem 0 0;
  font-size: .82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mauve-deep);
}

.diary__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.8rem, 1.6vw, 1.4rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.diary__shot {
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-deep);
}
.diary__shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.diary__shot:hover img { transform: scale(1.04); }
.diary__shot--lead { grid-column: span 2; aspect-ratio: 8 / 5; }
@media (max-width: 720px) {
  .diary__gallery { grid-template-columns: 1fr; }
  .diary__shot--lead { grid-column: auto; aspect-ratio: 4 / 5; }
}

.diary__caption {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--taupe);
  max-width: 56ch;
  margin: 0 auto;
}

.diaries-next {
  background: var(--bg-warm);
}
.diaries-next__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) var(--gutter);
  text-align: center;
}
.diaries-next .display { margin: .2em auto .6em; }
.cta--dark-on-light {
  color: var(--ink);
  border-color: var(--ink);
}
.cta--dark-on-light:hover {
  background: var(--ink);
  color: var(--bg);
}

/* ----- (legacy single-section .founder kept for safety) ---------------- */
.founder.legacy {
  background: var(--bg-warm);
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.founder__figure {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #d9c8b5;
  aspect-ratio: 4 / 5;
}
.founder__figure img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.founder__role {
  margin: -.4rem 0 1.8rem;
  font-size: .92rem;
  letter-spacing: 0.04em;
  color: var(--taupe);
}
.pull-quote {
  position: relative;
  margin: 0 0 1.8rem;
  padding-left: 1.4rem;
  border-left: 1px solid var(--mauve);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.4;
  color: var(--ink);
}
.quote-mark {
  position: absolute; left: -0.1em; top: -.5em;
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--mauve);
  font-style: normal;
  line-height: 1;
}
@media (max-width: 860px) {
  .founder { grid-template-columns: 1fr; }
}

/* ----- Founder (alt mirror) ------------------------------------------- */
.founder--alt {
  background: var(--bg);
}
.founder--alt .founder__figure { order: 2; }
.founder--alt .founder__content { order: 1; }
@media (max-width: 860px) {
  .founder--alt .founder__figure { order: -1; }
  .founder--alt .founder__content { order: 1; }
}

.founder__handle {
  margin: 1.4rem 0 0;
  font-family: var(--sans);
  font-size: .92rem;
  letter-spacing: 0.06em;
}
.founder__handle a {
  text-decoration: underline;
  text-decoration-color: rgba(184,155,149,.5);
  text-underline-offset: 4px;
}
.founder__handle a:hover { color: var(--mauve-deep); }
.founder__handle--muted { color: var(--taupe); font-style: italic; }

.founder__figure { position: relative; }
.founder__figure-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .6rem;
  background:
    linear-gradient(160deg, var(--bg-warm) 0%, var(--bg-deep) 100%);
  color: var(--taupe);
  text-align: center;
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.founder__figure-placeholder .wordmark {
  font-size: 2.4rem;
  color: var(--mauve-deep);
  letter-spacing: 0;
  text-transform: lowercase;
}
.founder__figure--empty .founder__figure-placeholder { display: flex; }

/* ----- Together (team page closer) ----------------------------------- */
.together {
  background: var(--bg-warm);
  text-align: center;
}
.together__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.together .lede { margin-left: auto; margin-right: auto; }
.together__cta {
  margin-top: 2.4rem;
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----- Getting here (visit page) ------------------------------------- */
.getting-here {
  background: var(--bg-warm);
  text-align: center;
}
.getting-here .lede { margin-left: auto; margin-right: auto; }
.getting-here__cta {
  margin-top: 2.4rem;
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.visit__value-mute {
  color: rgba(240,232,220,.55);
  font-size: .85em;
  font-style: italic;
}

/* ----- The Space ------------------------------------------------------- */
.space__gallery {
  max-width: var(--max);
  margin: clamp(2.5rem, 6vw, 5rem) auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto;
  gap: clamp(.8rem, 1.6vw, 1.6rem);
}
.space__item {
  margin: 0;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-warm);
  aspect-ratio: 4 / 5;
}
.space__item--tall { aspect-ratio: 3 / 5; grid-row: span 2; }
.space__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.space__item:hover img { transform: scale(1.04); }
.space__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.2rem;
  background: linear-gradient(180deg, rgba(26,22,20,0) 0%, rgba(26,22,20,0.55) 100%);
  color: var(--bg);
  font-family: var(--serif);
  font-size: 1.05rem;
}
@media (max-width: 900px) {
  .space__gallery { grid-template-columns: 1fr 1fr; }
  .space__item--tall { grid-row: span 1; aspect-ratio: 4/5; }
}
@media (max-width: 580px) {
  .space__gallery { grid-template-columns: 1fr; }
}

/* ----- Skin Diaries --------------------------------------------------- */
.diaries .section-head { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.diaries .section-head .lede { margin-left: auto; margin-right: auto; }

.diary-card {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.diary-card__figure {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-warm);
  aspect-ratio: 4 / 5;
}
.diary-card__figure img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.diary-card__kicker {
  font-family: var(--sans);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--mauve-deep);
  margin: 0 0 1.2rem;
}
.diary-card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  line-height: 1.35;
  letter-spacing: -0.005em;
  margin: 0 0 1.4rem;
  color: var(--ink);
}
.diary-card__caption {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--taupe);
  font-style: italic;
  margin: 0;
}
@media (max-width: 860px) {
  .diary-card { grid-template-columns: 1fr; }
}

/* ----- Visit ----------------------------------------------------------- */
.visit {
  background: var(--ink);
  color: var(--bg);
}
.visit {
  max-width: 100%;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.visit__content {
  padding: var(--section-y) var(--gutter);
}
.visit .eyebrow { color: var(--mauve); }
.visit .display { color: var(--bg); }
.visit .display em { color: var(--mauve); }

.visit__detail { margin: 0 0 2rem; }
.visit__label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--mauve);
  margin: 0 0 .5rem;
}
.visit__value {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 0;
  color: var(--bg-warm);
}
.visit__value a {
  text-decoration: underline;
  text-decoration-color: rgba(184,155,149,.5);
  text-underline-offset: 4px;
  transition: text-decoration-color .2s var(--ease);
}
.visit__value a:hover { text-decoration-color: var(--mauve); }

.visit__cta { margin-top: 2.4rem; }
.visit .cta--primary {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}
.visit .cta--primary:hover { background: var(--mauve); color: var(--ink); border-color: var(--mauve); }

.visit__map {
  position: relative;
  min-height: 500px;
}
.visit__map iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(.25) contrast(.95);
}
@media (max-width: 900px) {
  .visit { grid-template-columns: 1fr; }
  .visit__map { min-height: 380px; }
}

/* ----- Footer ---------------------------------------------------------- */
.site-footer {
  background: var(--bg-warm);
  color: var(--ink);
  padding: clamp(3.6rem, 6vw, 5.4rem) var(--gutter) 2rem;
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.4rem, 5vw, 3.4rem);
  border-bottom: 1px solid var(--line-soft);
}
.site-footer__brand {
  margin: 0 0 .6rem;
}
.site-footer__brand .wordmark {
  font-size: 2.6rem;
  color: var(--mauve-deep);
  font-weight: 300;
}
.site-footer__tag {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
}
.site-footer__tag em { color: var(--mauve-deep); font-style: italic; }
.site-footer__addr {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--taupe);
  margin: 0;
  max-width: 32ch;
}
.site-footer__heading {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--mauve-deep);
  margin: 0 0 1.1rem;
  font-weight: 500;
}
.site-footer__links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  font-size: .92rem;
}
.site-footer__links a {
  color: var(--ink-soft);
  transition: color .2s var(--ease);
}
.site-footer__links a:hover { color: var(--mauve-deep); }
.site-footer__base {
  max-width: var(--max);
  margin: clamp(1.6rem, 3vw, 2.2rem) auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.site-footer__copy {
  font-size: .78rem;
  color: var(--taupe);
  margin: 0;
  letter-spacing: 0.04em;
}
.site-footer__hash {
  margin: 0;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--mauve-deep);
  font-style: italic;
}

@media (max-width: 820px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .site-footer__base {
    flex-direction: column;
    text-align: center;
  }
}

/* ----- Home teaser ----------------------------------------------------- */
.home-teaser {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
}
.home-teaser__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.home-teaser .eyebrow { color: var(--mauve); }
.home-teaser .display { color: var(--bg); }
.home-teaser .display em { color: var(--mauve); }
.home-teaser .lede {
  color: var(--bg-warm);
  margin-left: auto;
  margin-right: auto;
}
.home-teaser__cta {
  margin-top: 2.4rem;
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.home-teaser .cta--primary {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}
.home-teaser .cta--primary:hover { background: var(--mauve); border-color: var(--mauve); }

/* Ghost CTA tinted for light backgrounds */
.cta--dark {
  color: var(--ink);
  border-color: var(--ink);
}
.cta--dark:hover { background: rgba(26,22,20,0.06); color: var(--ink); border-color: var(--ink); }
.home-teaser .cta--dark { color: var(--bg-warm); border-color: var(--bg-warm); }
.home-teaser .cta--dark:hover { background: rgba(250,245,239,0.10); color: var(--bg); border-color: var(--bg); }

.philosophy__cta { margin-top: 2.2rem; }

/* ----- Floating WhatsApp CTA (mobile) --------------------------------- */
.floating-cta {
  position: fixed;
  bottom: 1.2rem; right: 1.2rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: .9em 1.3em;
  background: var(--whatsapp);
  color: #fff;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(37,211,102,.32), 0 2px 6px rgba(0,0,0,.12);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,.4), 0 2px 8px rgba(0,0,0,.16);
}
@media (max-width: 820px) {
  .floating-cta span { display: none; }
  .floating-cta { padding: .9em; }
}
