/* =================================================================
   THE CARE COTTAGE — Luxury beauty, jewel-tone violet × pink
   ================================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

:root {
  /* Jewel-tone palette — deeper, more luxury, less candy */
  --violet:        #5B2E91;  /* deeper, richer — not lollipop */
  --violet-deep:   #3D1E64;
  --violet-soft:   #7B4FB5;
  --plum:          #2A1340;
  --plum-deep:     #1A0B2A;

  --pink:          #E85578;  /* slightly deeper, less neon */
  --pink-soft:     #F5A0B0;
  --pink-pale:     #FCE4EA;

  --lavender:      #E8DBF0;
  --lavender-soft: #F5EFFA;

  --white:         #FAFAF7;
  --pure:          #FFFFFF;
  --ink:           #14081F;

  --gold:          #D4AF6A;  /* subtle luxury accent */

  --bg:            var(--white);
  --bg-quiet:      var(--lavender-soft);
  --text:          var(--ink);
  --text-mute:     #6B5A78;
  --line:          rgba(20, 8, 31, 0.12);

  /* Type scale */
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-md:    1.125rem;
  --text-lg:    1.25rem;
  --text-xl:    1.5rem;
  --text-2xl:   2rem;
  --text-3xl:   2.75rem;
  --text-4xl:   clamp(2.25rem, 4.5vw, 3.75rem);
  --text-hero:  clamp(2.75rem, 6.5vw, 5.75rem);

  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  --content-max: 1280px;
  --content-pad: clamp(1.25rem, 4vw, 3rem);

  --font-display: "Archivo", "Inter", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --font-script:  "Allura", "Dancing Script", cursive;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =================================================================
   TYPOGRAPHY
   ================================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
}

h1 {
  font-size: var(--text-hero);
  font-weight: 800;
}

h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: -0.028em;
}

h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

p { margin: 0 0 var(--sp-4); }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--violet);
  margin: 0 0 var(--sp-5);
}

/* =================================================================
   BUTTONS
   ================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.95rem 1.7rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--violet);
  color: var(--white);
  border-color: var(--violet);
}
.btn--primary:hover { background: var(--violet-deep); border-color: var(--violet-deep); transform: translateY(-1px); }

.btn--pink {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.btn--pink:hover { background: #d54466; border-color: #d54466; transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: currentColor;
}
.btn--ghost:hover { background: var(--text); color: var(--white); }

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost-light:hover { background: var(--white); color: var(--violet); border-color: var(--white); }

/* =================================================================
   UTILITIES
   ================================================================= */

.reg-mark {
  font-size: 0.55em;
  vertical-align: super;
  line-height: 1;
  margin-left: 1px;
  color: var(--gold);
  font-weight: 700;
}
.nowrap { white-space: nowrap; }

/* =================================================================
   HEADER — Clean white, real logo
   ================================================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--pure);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 200ms ease;
}
.header.is-scrolled {
  box-shadow: 0 8px 30px rgba(46, 26, 71, 0.06);
}

.header__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 1rem var(--content-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--plum);
}
.header__logo img {
  height: 56px;
  width: auto;
}

.header__nav {
  display: flex;
  gap: var(--sp-8);
  font-family: var(--font-display);
}
.header__nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: -0.005em;
  position: relative;
  padding: 0.25rem 0;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.header__nav a:hover::after { transform: scaleX(1); }

.header__actions {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
}
.icon-btn {
  position: relative;
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--plum);
  transition: background 180ms ease;
}
.icon-btn:hover { background: var(--lavender); }
.cart-count {
  position: absolute;
  top: 3px; right: 3px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* =================================================================
   HERO — Clean white start, jewel-tone moments
   ================================================================= */

.hero {
  background: var(--white);
  padding: clamp(3.5rem, 7vw, 6.5rem) var(--content-pad) clamp(3.5rem, 6vw, 5.5rem);
  position: relative;
  overflow: hidden;
}

.hero__grid {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero__copy {
  max-width: 620px;
}

.hero h1 {
  color: var(--plum);
  margin-bottom: var(--sp-6);
}

.hero h1 .gradient {
  background: linear-gradient(135deg, var(--violet) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 800;
}

.hero__lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-mute);
  margin-bottom: var(--sp-8);
  max-width: 540px;
}

.hero__ctas {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-10);
  flex-wrap: wrap;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--violet);
  margin: 0;
  padding-bottom: 0.4em;
}

.hero__visual { position: relative; }

.hero__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--plum);
  box-shadow: 0 30px 80px rgba(20, 8, 31, 0.18);
}
.hero__photo::before {
  content: "";
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, var(--violet) 0%, var(--pink) 100%);
  z-index: -1;
  border-radius: 12px;
  opacity: 0.15;
  filter: blur(20px);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero__photo figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(20, 8, 31, 0.92), transparent);
  padding: var(--sp-12) var(--sp-6) var(--sp-5);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.figcaption__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}
.figcaption__role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-soft);
}

/* =================================================================
   BRAND MARK STRIP
   ================================================================= */

.brandmark {
  background: var(--white);
  padding: var(--sp-16) var(--content-pad);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brandmark__words {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--violet) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 var(--sp-4);
}
.brandmark__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--plum);
  margin: 0;
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.3;
}

/* =================================================================
   HERO-IMAGE
   ================================================================= */

.hero-image {
  background: var(--white);
  padding: var(--sp-16) var(--content-pad);
}
.hero-image img {
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 21/9;
  object-fit: cover;
}

/* =================================================================
   SECTION HEAD
   ================================================================= */

.section-head {
  max-width: var(--content-max);
  margin: 0 auto var(--sp-12);
  text-align: center;
}
.section-head .eyebrow { margin-bottom: var(--sp-3); }
.section-head h2 { max-width: 720px; margin-inline: auto; color: var(--plum); }

/* =================================================================
   PILLARS
   ================================================================= */

.pillars {
  background: var(--lavender-soft);
  padding: var(--sp-24) var(--content-pad);
}

.pillars__grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.pillar {
  display: flex;
  flex-direction: column;
  background: var(--pure);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--violet);
  box-shadow: 0 20px 50px rgba(91, 46, 145, 0.15);
}
.pillar__image {
  aspect-ratio: 4/5;
  background: var(--lavender);
  overflow: hidden;
}
.pillar__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.pillar:hover .pillar__image img { transform: scale(1.04); }

.pillar__body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}
.pillar__body h3 { color: var(--plum); }
.pillar__body p {
  color: var(--text-mute);
  font-size: 0.95rem;
  margin: 0;
  flex: 1;
}
.pillar__cta {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
  margin-top: var(--sp-2);
}
.pillar:hover .pillar__cta { color: var(--pink); }

/* =================================================================
   FROM CLASS — Shanta's class-made products
   ================================================================= */

.from-class {
  background: var(--white);
  padding: var(--sp-24) var(--content-pad);
  border-top: 1px solid var(--line);
}

.section-head__lede {
  color: var(--text-mute);
  font-size: 1.05rem;
  max-width: 580px;
  margin: var(--sp-3) auto 0;
  line-height: 1.55;
}

.from-class__grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--lavender-soft);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--violet);
  box-shadow: 0 20px 50px rgba(91, 46, 145, 0.15);
}

.product-card__image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--lavender);
  overflow: hidden;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.product-card:hover .product-card__image img { transform: scale(1.04); }

.product-card__badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  background: rgba(20, 8, 31, 0.78);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.product-card__body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}
.product-card__body h3 { color: var(--plum); }
.product-card__body p {
  color: var(--text-mute);
  font-size: 0.92rem;
  margin: 0;
  flex: 1;
  line-height: 1.55;
}

.product-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(20, 8, 31, 0.08);
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--violet);
  letter-spacing: -0.01em;
}

.btn--small {
  padding: 0.6rem 1.1rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.from-class__note {
  max-width: var(--content-max);
  margin: var(--sp-10) auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-mute);
}
.from-class__note a {
  color: var(--violet);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.from-class__note a:hover { color: var(--pink); }

/* =================================================================
   RITUAL KIT
   ================================================================= */

.ritual {
  background: var(--lavender);
  padding: var(--sp-24) var(--content-pad);
}

.ritual__grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.ritual__visual img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(42, 19, 64, 0.18);
}

.ritual__copy h2 { color: var(--plum); margin-bottom: var(--sp-5); }
.ritual__lede {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--plum);
  margin-bottom: var(--sp-4);
}
.ritual__note {
  color: var(--text-mute);
  margin-bottom: var(--sp-8);
}
.ritual__price-row {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.ritual__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--violet);
  letter-spacing: -0.02em;
}

/* =================================================================
   CUSTOM — Violet → pink gradient
   ================================================================= */

.custom {
  background: linear-gradient(135deg, var(--violet) 0%, var(--pink) 100%);
  color: var(--white);
  padding: var(--sp-24) var(--content-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.custom__inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.custom .eyebrow { color: var(--white); opacity: 0.85; }
.custom__headline {
  color: var(--white);
  margin-bottom: var(--sp-6);
}
.custom__lede {
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.94);
  margin-bottom: var(--sp-10);
}
.custom .btn--ghost-light:hover { color: var(--violet); }

/* =================================================================
   FOUNDER (deep plum)
   ================================================================= */

.founder {
  background: var(--plum);
  color: var(--white);
  padding: var(--sp-24) var(--content-pad);
}

.founder__grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.founder__visual img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 25%;
}

.founder .eyebrow { color: var(--pink-soft); }
.founder h2 {
  color: var(--white);
  margin-bottom: var(--sp-8);
}
.founder p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: var(--sp-5);
}
.founder__sign {
  margin-top: var(--sp-8);
  color: var(--pink-soft);
  font-size: 0.95rem;
}
.founder__signature {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 2.5rem;
  color: var(--white);
  display: inline-block;
  margin-top: var(--sp-2);
  letter-spacing: 0.01em;
  line-height: 1;
}

/* =================================================================
   JESSE'S HOUSE
   ================================================================= */

.jesses {
  background: var(--white);
  padding: var(--sp-20) var(--content-pad);
  border-bottom: 1px solid var(--line);
}
.jesses__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.jesses h2 { color: var(--plum); margin-bottom: var(--sp-5); }
.jesses p {
  color: var(--text-mute);
  font-size: 1.1rem;
  margin-bottom: var(--sp-8);
}
.jesses__ctas {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* =================================================================
   JOURNAL
   ================================================================= */

.journal {
  background: var(--white);
  padding: var(--sp-24) var(--content-pad);
}
.journal__grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}
.journal__card {
  padding: var(--sp-8);
  background: var(--lavender-soft);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: background 240ms ease, transform 240ms ease;
  cursor: pointer;
}
.journal__card:hover {
  background: var(--lavender);
  transform: translateY(-3px);
}
.journal__cat {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 0;
}
.journal__card h3 { color: var(--plum); }
.journal__card p { color: var(--text-mute); margin: 0; flex: 1; }
.journal__cta {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
  margin-top: var(--sp-3);
}
.journal__cta--soon {
  color: var(--gold);
  opacity: 0.85;
}

/* =================================================================
   NEWSLETTER
   ================================================================= */

.newsletter {
  background: var(--violet);
  color: var(--white);
  padding: var(--sp-24) var(--content-pad);
  text-align: center;
}
.newsletter__inner {
  max-width: 640px;
  margin: 0 auto;
}
.newsletter .eyebrow { color: var(--pink-soft); }
.newsletter h2 { color: var(--white); margin-bottom: var(--sp-5); }
.newsletter p {
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--sp-8);
  font-size: 1.05rem;
}
.newsletter__form {
  display: flex;
  gap: var(--sp-3);
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter__form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font: inherit;
  outline: none;
  transition: border-color 200ms ease, background 200ms ease;
}
.newsletter__form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.55);
}
.newsletter__form input[type="email"]:focus {
  border-color: var(--pink);
  background: rgba(255,255,255,0.12);
}
.newsletter .btn--pink:hover { background: var(--white); color: var(--violet); border-color: var(--white); }

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

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

.footer {
  background: var(--plum-deep);
  color: rgba(255,255,255,0.7);
  padding: var(--sp-20) var(--content-pad) var(--sp-8);
}
.footer__top {
  max-width: var(--content-max);
  margin: 0 auto var(--sp-12);
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: var(--sp-10);
}
.footer__brand .header__logo { color: var(--white); }
.footer__brand .header__logo img {
  height: 64px;
  filter: brightness(1.05);
}
.footer__motto {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--pink-soft);
  margin-top: var(--sp-4);
  max-width: 240px;
  line-height: 1.4;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 var(--sp-5);
}
.footer__col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--sp-2);
  transition: color 180ms ease;
}
.footer__col a:hover { color: var(--pink-soft); }

/* Founder credit block (Francisca-style) */
.footer__credit {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--sp-10) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer__credit p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto var(--sp-4);
}
.footer__credit p:last-child { margin-bottom: 0; }
.footer__credit strong {
  color: var(--gold);
  font-weight: 700;
}
.footer__credit a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.footer__credit a:hover { color: var(--pink-soft); }

.footer__bottom {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-top: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.footer__bottom p { margin: 0; }
.footer__bottom__affil {
  font-style: italic;
  color: var(--gold);
}

/* =================================================================
   RESPONSIVE
   ================================================================= */

@media (max-width: 960px) {
  .header__nav { display: none; }
  .header__logo img { height: 48px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 440px; margin: 0 auto; width: 100%; }
  .ritual__grid { grid-template-columns: 1fr; }
  .founder__grid { grid-template-columns: 1fr; }
  .founder__visual { max-width: 440px; }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .from-class__grid { grid-template-columns: repeat(2, 1fr); }
  .journal__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .header__inner { padding: 0.8rem var(--content-pad); }
  .header__logo img { height: 42px; }
  .hero { padding: 3rem var(--content-pad) 3.5rem; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .pillars__grid { grid-template-columns: 1fr; }
  .from-class__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: var(--sp-6); }
  .nowrap { white-space: normal; }
  .brandmark__words { letter-spacing: 0.25em; }
  .newsletter__form { flex-direction: column; }
  .newsletter__form .btn { width: 100%; }
}
