/* =========================================================
   Tell Mel - brand stylesheet
   Palette pulled from the logo: dusty rose + deep wine,
   smoky phoenix greys, warm ivory.
   ========================================================= */

:root {
  --ivory:      #FBF6F2;
  --cream:      #F5EAE4;
  --blush:      #EFD9D6;
  --rose:       #E0B7B7;
  --rose-deep:  #C98E90;
  --mauve:      #B98A93;
  --wine:       #7C1F38;
  --wine-deep:  #5E162B;
  --plum:       #40202D;
  --ink:        #3A2A2E;
  --ink-soft:   #6B565B;
  --gold:       #C9A24B;
  --smoke:      #9B8A8E;
  --white:      #ffffff;

  --shadow-sm: 0 2px 10px rgba(64, 32, 45, .06);
  --shadow-md: 0 14px 40px rgba(94, 22, 43, .12);
  --shadow-lg: 0 30px 70px rgba(94, 22, 43, .18);

  --radius:    18px;
  --radius-lg: 28px;
  --maxw:      1180px;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--wine); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--wine-deep); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--plum);
  line-height: 1.08;
  margin: 0 0 .4em;
  font-weight: 600;
  letter-spacing: .3px;
}

h1 { font-size: clamp(2.9rem, 7vw, 5.4rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }

p { margin: 0 0 1.1em; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .74rem;
  font-weight: 800;
  color: var(--rose-deep);
  margin-bottom: 1rem;
  display: inline-block;
}

.lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 60ch; }

.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--sans);
  font-weight: 800;
  font-size: .98rem;
  letter-spacing: .02em;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center;
}
.btn--primary {
  background: var(--wine);
  color: var(--ivory);
  box-shadow: 0 10px 26px rgba(124, 31, 56, .32);
}
.btn--primary:hover { background: var(--wine-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(124, 31, 56, .4); }
.btn--ghost {
  background: transparent;
  color: var(--wine);
  border-color: var(--rose-deep);
}
.btn--ghost:hover { background: var(--wine); color: var(--ivory); border-color: var(--wine); transform: translateY(-2px); }
.btn--light {
  background: var(--ivory);
  color: var(--wine);
}
.btn--light:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 18px 38px; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 246, 242, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(124, 31, 56, .1);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; border-radius: 8px; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--wine);
  letter-spacing: .5px;
  line-height: 1;
}
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a {
  font-weight: 700;
  font-size: .96rem;
  color: var(--ink);
  position: relative;
}
.nav__links a:hover { color: var(--wine); }
.nav__links a.active { color: var(--wine); }
.nav__cta { margin-left: 6px; }
/* the CTA is a filled button: keep its label light, overriding the nav link color */
.nav__links a.nav__cta,
.nav__links a.nav__cta:hover { color: var(--ivory); }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--wine);
}
.nav__toggle svg { width: 28px; height: 28px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 600px at 78% -8%, var(--blush), transparent 60%),
    radial-gradient(900px 500px at 6% 110%, var(--rose) , transparent 55%),
    linear-gradient(160deg, var(--cream), var(--ivory));
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
  /* keep the horizontal padding from .wrap; only set vertical here */
  padding-top: clamp(56px, 8vw, 104px);
  padding-bottom: clamp(64px, 9vw, 110px);
}
.hero h1 { color: var(--wine); }
.hero h1 em { font-style: italic; color: var(--rose-deep); }
.hero__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: var(--plum);
  margin: 0 0 1.3rem;
}
.hero__lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 52ch; margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__art {
  position: relative;
  justify-self: center;
}
.hero__art img {
  width: min(430px, 84vw);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.hero__badge {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--ivory);
  border-radius: 18px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  max-width: 250px;
}
.hero__badge b { font-family: var(--serif); font-size: 1.6rem; color: var(--wine); line-height: 1; }
.hero__badge span { font-size: .82rem; color: var(--ink-soft); line-height: 1.25; }

/* trust strip */
.trust {
  display: flex; flex-wrap: wrap; gap: 14px 34px;
  align-items: center; justify-content: center;
  padding: 22px 24px;
  border-top: 1px solid rgba(124,31,56,.10);
  color: var(--ink-soft);
  font-weight: 700; font-size: .92rem;
}
.trust span { display: inline-flex; align-items: center; gap: 9px; }
.trust .dot { color: var(--rose-deep); }

/* ---------- About / intro ---------- */
.prose-lg p { font-size: 1.2rem; color: var(--ink-soft); }
.prose-lg strong { color: var(--plum); }

/* ---------- Services ---------- */
.grid-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(124,31,56,.06);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__img { aspect-ratio: 4 / 3; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__img img { transform: scale(1.06); }
.card__body { padding: 24px 24px 28px; }
.card__body h3 { color: var(--wine); margin-bottom: .35em; }
.card__body p { font-size: 1rem; color: var(--ink-soft); margin: 0; }

/* ---------- Split feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.split--rev .split__media { order: 2; }
.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.feature-list { list-style: none; padding: 0; margin: 1.4rem 0 2rem; display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.02rem; }
.feature-list .tick {
  flex: 0 0 auto;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--blush); color: var(--wine);
  display: grid; place-items: center; font-weight: 900;
  margin-top: 2px;
}
.feature-list b { color: var(--plum); }

/* ---------- Bands ---------- */
.band-rose { background: linear-gradient(160deg, var(--cream), var(--blush)); }
.band-wine {
  background:
    radial-gradient(700px 380px at 85% 0%, rgba(224,183,183,.22), transparent 60%),
    linear-gradient(160deg, var(--wine-deep), var(--plum));
  color: var(--blush);
}
.band-wine h1, .band-wine h2, .band-wine h3 { color: #fff; }
.band-wine .eyebrow { color: var(--rose); }
.band-wine .lede, .band-wine p { color: #EBD3D2; }

/* ---------- Testimonials ---------- */
.grid-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(124,31,56,.06);
  display: flex; flex-direction: column;
}
.quote .mark { font-family: var(--serif); font-size: 3.4rem; color: var(--rose); line-height: .6; height: 26px; }
.quote p { font-size: 1.05rem; color: var(--ink); font-style: italic; }
.quote .who { margin-top: auto; font-weight: 800; color: var(--wine); font-style: normal; }
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 6px; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery img {
  width: 100%; height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease;
}
.gallery img:hover { transform: scale(1.03); }

/* ---------- Free session promo ---------- */
.promo {
  background:
    radial-gradient(600px 320px at 90% 10%, rgba(201,162,75,.22), transparent 60%),
    linear-gradient(150deg, var(--wine), var(--wine-deep));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 34px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.promo h2 { color: #fff; }
.promo p { color: #F0D9D8; }
.promo__meta { display: grid; gap: 12px; margin: 20px 0 26px; }
.promo__meta div { display: flex; gap: 12px; align-items: center; font-weight: 700; }
.promo__meta .ic {
  width: 40px; height: 40px; flex: none; border-radius: 12px;
  background: rgba(255,255,255,.14); display: grid; place-items: center; font-size: 1.2rem;
}
.promo__card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.promo__card .big { font-family: var(--serif); font-size: 2.6rem; color: #fff; line-height: 1; }
.promo__card .free { display:inline-block; background: var(--gold); color: var(--plum); font-weight: 900; padding: 4px 14px; border-radius: 999px; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }

/* ---------- Forms ---------- */
.form-shell {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(124,31,56,.07);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 800;
  font-size: .9rem;
  color: var(--plum);
  margin-bottom: 7px;
  letter-spacing: .01em;
}
.field .req { color: var(--wine); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid #E3D2CE;
  border-radius: 12px;
  background: var(--ivory);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 4px rgba(224,183,183,.35);
  background: #fff;
}
.field textarea { min-height: 120px; resize: vertical; }
.field--hint { font-size: .82rem; color: var(--ink-soft); margin-top: 6px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .85rem; color: var(--ink-soft); margin-top: 14px; text-align: center; }

.form-success {
  display: none;
  background: var(--blush);
  border: 1.5px solid var(--rose-deep);
  color: var(--plum);
  border-radius: 14px;
  padding: 18px 20px;
  font-weight: 700;
  margin-bottom: 18px;
}
.form-success.show { display: block; }

.form-aside h2 { color: var(--wine); }
.aside-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 18px; }
.aside-list li { display: flex; gap: 14px; }
.aside-list .ic {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  background: var(--blush); color: var(--wine); display: grid; place-items: center; font-size: 1.25rem;
}
.aside-list b { display: block; color: var(--plum); font-family: var(--serif); font-size: 1.15rem; }
.aside-list span { font-size: .96rem; color: var(--ink-soft); }

/* referral / share */
.share-box {
  margin-top: 26px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px dashed var(--rose-deep);
}
.share-box h3 { color: var(--wine); font-size: 1.35rem; }
.share-btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.share-btns .btn { padding: 11px 18px; font-size: .88rem; }
.chip-copy {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1.5px solid #E3D2CE; border-radius: 999px;
  padding: 10px 16px; font-weight: 800; font-size: .88rem; color: var(--wine); cursor: pointer;
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background:
    radial-gradient(800px 400px at 80% -20%, var(--blush), transparent 60%),
    linear-gradient(160deg, var(--cream), var(--ivory));
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 64px);
  text-align: center;
}
.page-hero h1 { color: var(--wine); }
.page-hero .lede { margin: 0 auto; }

/* ---------- Pricing cards ---------- */
.grid-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 26px;
}
.price {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 30px 34px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(124,31,56,.08);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price.featured { border: 2px solid var(--wine); box-shadow: var(--shadow-md); }
.price .flag {
  position: absolute; top: -13px; left: 30px;
  background: var(--gold); color: var(--plum);
  font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
}
.price h3 { color: var(--wine); margin-bottom: .3em; }
.price .amt { font-family: var(--serif); font-size: 2.5rem; color: var(--plum); line-height: 1; margin: 6px 0 10px; }
.price .amt small { font-size: .9rem; color: var(--ink-soft); font-family: var(--sans); font-weight: 700; }
.price .fmt { font-size: .84rem; color: var(--rose-deep); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.price p { font-size: .98rem; color: var(--ink-soft); }
.price .btn { margin-top: auto; }

/* ---------- Contact strip ---------- */
.contact-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 22px 40px;
}
.contact-item { display: flex; gap: 14px; align-items: center; flex: 0 1 auto; }
.contact-item .ic {
  width: 48px; height: 48px; flex: none; border-radius: 14px;
  background: rgba(255,255,255,.14); display: grid; place-items: center; font-size: 1.3rem;
}
.contact-item b { display:block; color:#fff; font-family: var(--serif); font-size: 1.05rem; }
.contact-item a, .contact-item span { color: #EBD3D2; }
/* keep contact values (esp. the long email) on a single line */
.contact-item a, .contact-item .val {
  white-space: nowrap; font-size: clamp(.8rem, 2.9vw, .98rem);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--plum);
  color: var(--rose);
  padding: 56px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 40px; }
.site-footer h4 { color: #fff; font-family: var(--serif); font-size: 1.3rem; }
.site-footer a { color: var(--rose); font-weight: 600; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-brand img { height: 54px; border-radius: 10px; margin-bottom: 14px; }
.footer-brand p { color: var(--mauve); font-size: .96rem; max-width: 34ch; }
.socials { display: flex; gap: 12px; margin-top: 16px; }
.socials a {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,.08); display: grid; place-items: center;
  color: var(--rose); font-weight: 800;
}
.socials a:hover { background: var(--wine); color: #fff; }
.footer-bottom {
  margin-top: 44px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: .85rem; color: var(--mauve);
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__cta { justify-content: center; }
  .hero__lede { margin-left: auto; margin-right: auto; }
  .hero__art { order: -1; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .promo { grid-template-columns: 1fr; }
  .form-shell { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* collapse nav to hamburger early since there are several links */
@media (max-width: 1024px) {
  .nav__links {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    background: var(--ivory);
    padding: 18px 24px 26px;
    gap: 18px;
    border-bottom: 1px solid rgba(124,31,56,.12);
    box-shadow: var(--shadow-md);
    transform: translateY(-140%);
    transition: transform .3s ease;
    align-items: stretch;
  }
  .nav__links.open { transform: none; }
  .nav__links a { padding: 6px 2px; font-size: 1.05rem; }
  .nav__cta { display: inline-flex; justify-content: center; margin-left: 0; }
  .nav__toggle { display: inline-flex; }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .grid-2 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
}

/* ---------- Hero logo card (phoenix lockup) ---------- */
.logo-card {
  background: radial-gradient(120% 120% at 30% 10%, #ECCDCE, #D9A7A9 70%);
  border-radius: var(--radius-lg);
  padding: 46px 34px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 420px;
  margin: 0 auto;
}
.logo-card img { width: 170px; margin: 0 auto 4px; }
.logo-card .wm { font-family: var(--serif); font-weight: 700; font-size: clamp(2.8rem,6vw,3.6rem); color: var(--wine); line-height: 1; letter-spacing: 1px; }
.logo-card .tl { font-family: var(--serif); font-style: italic; color: var(--wine-deep); font-size: 1.2rem; margin-top: 12px; line-height: 1.35; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid rgba(124,31,56,.08); border-radius: 14px;
  margin-bottom: 14px; box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 20px 24px; font-family: var(--serif); font-size: 1.3rem;
  color: var(--wine); font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; gap: 14px; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--rose-deep); font-size: 1.7rem; font-weight: 700; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .a { padding: 0 24px 22px; color: var(--ink-soft); font-size: 1rem; }

/* ---------- Stat tiles ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 22px; }
.stat {
  text-align: center; background: #fff; border-radius: 16px; padding: 28px 18px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(124,31,56,.06);
}
.stat b { display: block; font-family: var(--serif); font-size: 2.3rem; color: var(--wine); line-height: 1.05; margin-bottom: 6px; }
.stat span { font-size: .95rem; color: var(--ink-soft); }
.band-wine .stat { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.band-wine .stat b { color: #fff; }
.band-wine .stat span { color: #EBD3D2; }

/* ---------- Numbered steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step {
  background: #fff; border-radius: 18px; padding: 30px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(124,31,56,.06);
}
.step .n {
  width: 46px; height: 46px; border-radius: 50%; background: var(--wine); color: var(--ivory);
  display: grid; place-items: center; font-family: var(--serif); font-size: 1.4rem; font-weight: 700; margin-bottom: 16px;
}
.step h3 { color: var(--wine); margin-bottom: .3em; }
.step p { font-size: .98rem; color: var(--ink-soft); margin: 0; }

/* mini contact card */
.mini-contact {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 18px;
  max-width: 760px; margin: 26px auto 0;
}
.mini-contact a, .mini-contact span {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  background: #fff; border: 1px solid rgba(124,31,56,.08); border-radius: 14px;
  padding: 16px 18px; font-weight: 700; color: var(--wine); box-shadow: var(--shadow-sm);
}

/* ---------- Inline SVG icons (replacing emoji) ---------- */
.i { width: 1.15em; height: 1.15em; display: inline-block; vertical-align: -0.18em; }
.ic .i { width: 22px; height: 22px; vertical-align: middle; }
.contact-item .ic .i { width: 24px; height: 24px; }
.socials .i { width: 20px; height: 20px; vertical-align: middle; }
.trust .i, .promo__meta .i { width: 1.05em; height: 1.05em; }

/* ---------- Contrast fixes on dark (wine) bands ---------- */
.band-wine .feature-list li { color: #F0DCDB; }
.band-wine .feature-list b { color: #ffffff; }
.band-wine .feature-list .tick { background: rgba(255,255,255,.16); color: #ffffff; }
.band-wine a:not(.btn) { color: #ffffff; }
.band-wine a:not(.btn):hover { color: #ffffff; opacity: .82; }
.band-wine .contact-item a, .band-wine .contact-item span { color: #F0DCDB; }
.band-wine .contact-item b { color: #ffffff; }
/* promo is also a dark gradient */
.promo a:not(.btn) { color: #ffffff; }
.promo .feature-list li { color: #F0DCDB; }
.promo .feature-list b { color: #ffffff; }

/* sale / slashed price */
.price .amt .was {
  color: var(--ink-soft); font-size: 1.5rem; font-weight: 400;
  margin-right: 8px; opacity: .75; text-decoration: line-through;
}

/* ---------- New phoenix logo image ---------- */
.hero__logo {
  width: min(460px, 86vw);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  display: block;
}
/* nav + footer show the logo as a rounded, center-cropped tile */
.brand img { width: 48px; height: 48px; object-fit: cover; object-position: center 42%; border-radius: 12px; }
.footer-brand img { width: 58px; height: 58px; object-fit: cover; object-position: center 42%; border-radius: 14px; }
