@import url("https://fonts.googleapis.com/css2?family=Allura&family=Gloock&family=Libre+Baskerville:wght@400;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,600;1,700&display=swap");

:root {
  --white: #ffffff;
  --black: #000000;
  --muted: #7d797c;
  --muted-dark: #474044;
  --footer: #171416;
  --footer-soft: #2a2428;
  --line: rgba(125, 121, 124, 0.45);
  --gloock: "Gloock", Georgia, serif;
  --playfair: "Playfair Display", Georgia, serif;
  --libre: "Libre Baskerville", Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--libre);
}

img, svg { display: block; }

a { color: inherit; }

button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 1000;
  background: var(--black);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--white);
  padding: 26px 24px 0;
  text-align: center;
}

.brand {
  display: grid;
  justify-items: center;
  gap: 6px;
  text-decoration: none;
}

.brand__mark {
  width: 164px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, transparent 0deg 2.1deg, #001b36 2.1deg 3.2deg);
  -webkit-mask: radial-gradient(circle, transparent 0 55%, #000 55% 78%, transparent 78%);
  mask: radial-gradient(circle, transparent 0 55%, #000 55% 78%, transparent 78%);
  margin-bottom: -112px;
}

.brand__title {
  font-family: var(--gloock);
  font-size: clamp(34px, 5vw, 57px);
  font-weight: 400;
  letter-spacing: clamp(5px, 1vw, 11.4px);
  color: var(--black);
  line-height: 1.08;
  position: relative;
}

.site-nav {
  width: min(1010px, calc(100vw - 64px));
  margin: 88px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.site-nav a {
  font-family: var(--libre);
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  color: var(--black);
  padding: 18px 12px;
}

.site-nav a:hover,
.site-nav a.is-active { color: var(--muted); }

.dot-nav {
  position: fixed;
  right: 38px;
  top: 96px;
  z-index: 100;
  display: grid;
  gap: 52px;
}

.dot-nav a {
  width: 15px;
  height: 15px;
  border: 3px solid var(--muted);
  border-radius: 50%;
  background: transparent;
}

.dot-nav a.is-active { background: var(--muted); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms ease, transform 800ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sticky-hero {
  height: 150vh;
  padding-top: 56px;
}

.hero-collage {
  position: sticky;
  top: 230px;
  width: 100%;
  min-height: 560px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.hero-tile {
  min-height: 560px;
  background-image: url("assets/reference-hero.png");
  background-repeat: no-repeat;
  background-size: 272% auto;
}

.hero-tile--book { background-position: 1% 0%; }
.hero-tile--robe { background-position: 34% 0%; }
.hero-tile--matcha { background-position: 66.5% 0%; }
.hero-tile--pilates { background-position: 99% 0%; }

.hero-collage h1 {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  font-family: var(--playfair);
  font-size: clamp(38px, 5.4vw, 56px);
  font-weight: 400;
  color: var(--muted);
  text-align: center;
  pointer-events: none;
}

.home-about {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.7fr);
  gap: 52px;
  padding: 86px max(28px, 6vw) 110px;
}

.eyebrow {
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 22px;
}

.home-about h2 {
  margin: 0;
  display: grid;
  gap: 8px;
  font-family: var(--playfair);
  font-size: 34px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.home-about__copy a {
  display: inline-block;
  margin-top: 36px;
  font-family: var(--playfair);
  color: var(--black);
  font-size: 18px;
}

.home-post-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 33vw);
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-snap-type: x mandatory;
}

.post-card { scroll-snap-align: start; }

.post-card a {
  min-height: 360px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  background: var(--black);
}

.post-card a::after,
.blog-list-card__image::after,
.single-post__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.58));
}

.post-card__image,
.blog-list-card__image,
.single-post__image {
  position: absolute;
  inset: 0;
  background-image: url("assets/reference-about.png");
  background-size: 235% auto;
  background-repeat: no-repeat;
}

.post-card__image--food,
.blog-list-card__image--food,
.single-post__image--food { background-position: 1% 100%; }
.post-card__image--coffee,
.blog-list-card__image--coffee,
.single-post__image--coffee { background-position: 50% 100%; }
.post-card__image--morning,
.blog-list-card__image--morning,
.single-post__image--morning { background-position: 99% 100%; }

.post-card__title {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-family: var(--libre);
  font-size: 19px;
  line-height: 1.35;
  padding: 34px;
}

.brand-banner {
  background: var(--muted-dark);
  color: var(--white);
  text-align: center;
  padding: 42px 20px 46px;
}

.brand-banner__name {
  margin: 0 0 16px;
  font-family: var(--playfair);
  font-size: 26px;
}

.brand-banner__tagline {
  margin: 0;
  font-family: var(--playfair);
  font-size: 18px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--footer);
  color: var(--white);
  padding: 72px max(24px, 7vw) 28px;
}

.footer-images {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  pointer-events: none;
}

.footer-images span {
  background-image: url("assets/reference-contact.png");
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(1);
}

.footer-images__one { background-position: left top; }
.footer-images__two { background-position: center; }
.footer-images__three { background-position: right bottom; }

.site-footer > *:not(.footer-images) {
  position: relative;
  z-index: 1;
}

.back-to-top {
  display: block;
  width: fit-content;
  margin: 0 auto 60px;
  font-family: var(--playfair);
  font-size: 18px;
  color: var(--white);
}

.footer-contact {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--playfair);
}

.footer-contact h2,
.contact-page h1 {
  font-family: var(--playfair);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  margin: 0 0 18px;
}

.footer-contact p,
.contact-page p {
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.45;
}

.subscribe-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  margin-top: 30px;
}

.subscribe-form input {
  border: 3px solid var(--white);
  border-right: 0;
  background: var(--white);
  color: var(--black);
  min-height: 58px;
  padding: 0 20px;
}

.subscribe-form button {
  border: 3px solid var(--white);
  background: var(--black);
  color: var(--white);
  cursor: pointer;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 24px;
  margin-top: 10px;
  color: var(--white);
  font-family: var(--libre);
}

.footer-lower {
  display: flex;
  justify-content: space-between;
  gap: 56px;
  margin-top: 92px;
}

.disclaimer {
  max-width: 680px;
  font-family: var(--libre);
}

.disclaimer h3 { margin: 0 0 10px; font-size: 16px; }
.disclaimer p { margin: 0; font-size: 13px; line-height: 1.7; }

.social { text-align: center; min-width: 160px; font-family: var(--playfair); }
.social svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.8; margin: 0 auto; }

.copyright {
  margin: 58px 0 0;
  font-family: var(--libre);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.chat-button {
  position: fixed;
  right: 26px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #5f5760;
  color: var(--white);
  padding: 16px 28px;
  border-radius: 10px 10px 0 0;
  text-decoration: none;
  font-family: var(--playfair);
  font-size: 20px;
}

.chat-button__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 6px solid var(--white);
  display: inline-block;
}

.about-hero { position: relative; min-height: 520px; display: grid; place-items: center; overflow: hidden; }
.about-hero__image { position: absolute; inset: 0; background: url("assets/reference-about.png") center/cover no-repeat; filter: saturate(0.88); }
.about-hero::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.14); }
.about-hero h1 { position: relative; z-index: 1; margin: 0; font-family: var(--playfair); font-size: clamp(76px, 14vw, 143px); color: var(--muted); font-weight: 400; }

.about-story { background: var(--footer); color: var(--white); padding: 86px max(24px, 12vw); }
.about-story__panel { max-width: 920px; margin: 0 auto; }
.about-story h2 { font-family: var(--playfair); font-size: clamp(28px, 4vw, 38px); font-weight: 400; margin: 0 0 32px; }
.about-story p { font-family: var(--libre); font-size: 16px; line-height: 1.9; }

.work-together { padding: 86px max(24px, 14vw); }
.work-together h2 { font-family: var(--playfair); font-size: clamp(34px, 6vw, 68px); font-weight: 400; text-align: center; margin: 0 0 44px; }
.work-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.work-form label { display: grid; gap: 8px; font-family: var(--libre); }
.work-form input, .work-form textarea { border: 1px solid var(--black); padding: 14px; }
.work-form__message, .work-form button, .work-form .form-message { grid-column: 1 / -1; }
.work-form button { justify-self: center; min-width: 180px; border: 1px solid var(--black); background: var(--black); color: var(--white); padding: 14px 32px; cursor: pointer; }
.work-form .form-message { color: var(--black); text-align: center; }

.work-page { background: var(--white); }
.work-hero { width: min(930px, calc(100vw - 48px)); margin: 0 auto; padding: 104px 0 66px; text-align: center; }
.work-hero__eyebrow { margin: 0 0 18px; font-family: var(--libre); font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.work-hero h1 { margin: 0; font-family: var(--playfair); font-size: clamp(54px, 8vw, 116px); font-weight: 400; line-height: 0.95; color: var(--black); }
.work-hero p:last-child { max-width: 680px; margin: 28px auto 0; font-family: var(--libre); font-size: clamp(17px, 1.4vw, 21px); line-height: 1.8; color: var(--muted); }
.work-section-label { margin: 0 0 16px; font-family: var(--libre); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.work-intro, .work-credentials { width: min(900px, calc(100vw - 48px)); margin: 0 auto; padding: 56px 0; border-top: 1px solid var(--line); }
.work-intro h2, .work-credentials h2, .work-cta h2 { margin: 0; font-family: var(--playfair); font-size: clamp(34px, 4.8vw, 62px); font-weight: 400; line-height: 1.05; color: var(--black); }
.work-intro > p:last-child { max-width: 720px; margin: 26px 0 0; font-family: var(--libre); font-size: 17px; line-height: 1.9; color: var(--muted); }
.work-credentials ul { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin: 34px 0 0; padding: 0; list-style: none; }
.work-credentials li { border: 1px solid var(--line); padding: 22px; font-family: var(--libre); font-size: 15px; line-height: 1.7; color: var(--muted); }
.work-services { width: min(1120px, calc(100vw - 48px)); margin: 34px auto 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.work-card { border: 1px solid var(--line); padding: 34px 30px 38px; background: rgba(255, 255, 255, 0.82); }
.work-card span { display: block; margin-bottom: 42px; font-family: var(--libre); color: var(--muted); }
.work-card h2 { margin: 0 0 18px; font-family: var(--playfair); font-size: clamp(26px, 2.4vw, 38px); font-weight: 400; line-height: 1.08; }
.work-card p { margin: 0; font-family: var(--libre); color: var(--muted); line-height: 1.75; }
.work-card__meta { margin-top: 22px !important; padding-top: 20px; border-top: 1px solid var(--line); font-size: 14px; }
.work-card__meta strong { color: var(--black); font-weight: 400; }
.work-process { width: min(960px, calc(100vw - 48px)); margin: 78px auto 0; padding: 58px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.work-process h2 { margin: 0 0 34px; font-family: var(--playfair); font-size: clamp(34px, 5vw, 62px); font-weight: 400; }
.work-process__steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; text-align: left; }
.work-process__steps p { margin: 0; font-family: var(--libre); color: var(--muted); line-height: 1.75; }
.work-process__steps strong { display: block; margin-bottom: 8px; color: var(--black); font-weight: 400; }
.work-cta { width: min(900px, calc(100vw - 48px)); margin: 0 auto; padding: 78px 0 0; text-align: center; }
.work-cta h2 { max-width: 760px; margin: 0 auto; }
.work-cta__button { display: inline-flex; align-items: center; justify-content: center; margin-top: 30px; min-width: 220px; min-height: 52px; border: 1px solid var(--black); background: var(--black); color: var(--white); font-family: var(--libre); font-size: 15px; text-decoration: none; transition: background 180ms ease, color 180ms ease; }
.work-cta__button:hover { background: var(--white); color: var(--black); }
.work-contact { width: min(960px, calc(100vw - 48px)); margin: 0 auto; padding: 76px 0 104px; }

.blog-hero { padding: 64px 24px 30px; text-align: center; }
.blog-hero h1 { margin: 0 0 12px; font-family: "Allura", cursive; font-style: normal; font-size: clamp(50px, 7vw, 88px); font-weight: 400; line-height: 0.95; letter-spacing: 0.01em; white-space: nowrap; }
.blog-hero p { font-family: var(--libre); font-size: 18px; }
.blog-index { max-width: 1060px; margin: 0 auto; padding: 12px 24px 110px; }
.blog-tools { display: flex; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); padding-bottom: 20px; margin-bottom: 34px; }
.filter-pill { background: transparent; border: 0; font-family: var(--libre); font-size: 16px; }
.search { display: flex; align-items: center; gap: 10px; font-family: var(--libre); }
.search input { border: 1px solid var(--line); padding: 10px 12px; }
.blog-list { display: grid; gap: 28px; }
.blog-list-card { display: grid; grid-template-columns: 280px 1fr; min-height: 220px; border: 1px solid var(--line); }
.blog-list-card__image { position: relative; display: block; background-image: url("assets/reference-about.png"); background-size: 235% auto; background-repeat: no-repeat; }
.blog-list-card__body { padding: 30px; }
.byline { color: var(--muted); font-size: 13px; margin: 0 0 14px; }
.blog-list-card h2 { font-family: var(--playfair); font-size: clamp(24px, 3vw, 34px); font-weight: 400; margin: 0 0 16px; }
.blog-list-card h2 a { text-decoration: none; }
.blog-list-card h2 a:hover { color: var(--muted); }
.blog-list-card__body > p:not(.byline) { line-height: 1.6; }
.post-meta { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 14px; margin-top: 22px; color: var(--muted); }
.like-button { border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: 22px; }
.like-button.is-liked { color: #b24050; }

.contact-page { max-width: 880px; margin: 0 auto; padding: 120px 24px; text-align: center; }
.contact-page .subscribe-form--page { color: var(--black); }
.contact-page .subscribe-form--page input { border-color: var(--black); }
.contact-page .subscribe-form--page button { border-color: var(--black); }
.contact-page .form-message { color: var(--black); }

.single-post { max-width: 850px; margin: 0 auto; padding: 86px 24px 120px; }
.post-back { font-family: var(--libre); color: var(--muted); }
.single-post__image { position: relative; height: 440px; margin: 32px 0; background-image: url("assets/reference-about.png"); background-size: 235% auto; background-repeat: no-repeat; }
.single-post h1 { font-family: var(--playfair); font-size: clamp(38px, 6vw, 68px); line-height: 1.05; font-weight: 400; margin: 0 0 28px; }
.single-post p { font-family: var(--libre); font-size: 17px; line-height: 1.9; }

@media (max-width: 900px) {
  .site-header { padding: 22px 16px 0; }
  .brand__mark { width: 112px; margin-bottom: -72px; }
  .site-nav { margin-top: 56px; width: calc(100vw - 32px); }
  .site-nav a { font-size: 15px; padding: 14px 8px; }
  .dot-nav { right: 16px; gap: 24px; }
  .sticky-hero { height: auto; padding-top: 28px; }
  .hero-collage { position: relative; top: auto; min-height: auto; grid-template-columns: repeat(2, 1fr); }
  .hero-tile { min-height: 260px; background-size: 360% auto; }
  .home-about { grid-template-columns: 1fr; padding: 70px 20px; }
  .home-post-strip { grid-auto-columns: minmax(280px, 86vw); }
  .post-card a { min-height: 330px; }
  .footer-lower, .blog-tools { flex-direction: column; }
  .subscribe-form { grid-template-columns: 1fr; }
  .subscribe-form input { border-right: 3px solid var(--white); border-bottom: 0; }
  .contact-page .subscribe-form--page input { border-right-color: var(--black); }
  .subscribe-form button { min-height: 58px; }
  .blog-list-card { grid-template-columns: 1fr; }
  .blog-list-card__image { min-height: 260px; }
  .work-form { grid-template-columns: 1fr; }
  .chat-button { left: 14px; right: 14px; justify-content: center; border-radius: 10px; }
  .copyright { padding-bottom: 72px; }
}

/* Home page alignment pass to match the Wix reference screenshots. */
.site-header {
  padding: 28px 24px 0;
  min-height: 468px;
}

.brand__mark {
  width: 236px;
  margin-bottom: -166px;
}

.brand__title {
  font-size: clamp(48px, 5.2vw, 86px);
  letter-spacing: clamp(8px, 1.35vw, 24px);
  line-height: 1;
  margin-top: 106px;
}

.site-nav {
  width: min(1350px, calc(100vw - 420px));
  margin-top: 156px;
}

.site-nav a {
  font-size: clamp(20px, 1.65vw, 31px);
  padding: 25px 12px 26px;
}

.sticky-hero {
  height: auto;
  padding-top: 56px;
}

.hero-collage {
  position: relative;
  top: auto;
  min-height: 519px;
  width: 100vw;
}

.hero-tile {
  min-height: 519px;
  background-size: 300% auto;
}

.hero-tile--book { background-position: 0% 0%; }
.hero-tile--robe { background-position: 32.6% 0%; }
.hero-tile--matcha { background-position: 65.7% 0%; }
.hero-tile--pilates { background-position: 99.8% 0%; }

.hero-collage h1 {
  font-size: clamp(52px, 5vw, 90px);
  color: var(--black);
  transform: translateY(58px);
}

.hero-collage::after,
.home-about::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -42px;
  width: 64px;
  height: 9px;
  border-radius: 999px;
  background: rgba(87, 85, 87, 0.75);
  transform: translateX(-50%);
}

.home-about {
  position: relative;
  display: block;
  padding: 174px 24px 202px;
  text-align: center;
}

.home-about__title {
  margin: 0 auto;
  font-family: var(--playfair);
  font-size: clamp(98px, 14.2vw, 218px);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: 0.02em;
  color: transparent;
  background-image: linear-gradient(rgba(170, 199, 115, 0.74), rgba(104, 132, 64, 0.74)), url("assets/reference-about.png");
  background-size: cover;
  background-position: center 36%;
  -webkit-background-clip: text;
  background-clip: text;
}

.home-about__link {
  display: inline-block;
  margin-top: 92px;
  font-family: var(--playfair);
  font-size: clamp(18px, 1.5vw, 25px);
  color: var(--black);
  text-decoration: none;
}

.home-about__link:hover {
  text-decoration: underline;
}

.home-post-strip {
  width: min(1480px, calc(100vw - 536px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
  overflow: visible;
  padding: 0 0 148px;
}

.post-card a {
  min-height: 235px;
}

.post-card__image {
  background-image: url("assets/reference-about.png");
  background-size: 214% auto;
}

.post-card__image--food { background-position: 0% 99%; }
.post-card__image--coffee { background-position: 50% 99%; }
.post-card__image--morning { background-position: 100% 99%; }

.post-card__title {
  font-size: clamp(20px, 1.55vw, 31px);
  line-height: 1.18;
  padding: 0 42px 39px;
  letter-spacing: 0.01em;
}

.brand-banner {
  background: var(--white);
  color: var(--black);
  padding: 0 24px 116px;
}

.brand-banner__name {
  font-size: clamp(30px, 2.6vw, 43px);
  margin-bottom: 38px;
}

.brand-banner::before {
  content: "";
  display: block;
  width: 43px;
  height: 3px;
  margin: 0 auto 44px;
  background: rgba(92, 90, 92, 0.68);
}

.brand-banner__tagline {
  max-width: 650px;
  margin: 0 auto;
  color: var(--black);
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1.25;
}

@media (max-width: 1100px) {
  .site-header {
    min-height: 320px;
  }

  .brand__mark {
    width: 150px;
    margin-bottom: -104px;
  }

  .brand__title {
    margin-top: 70px;
  }

  .site-nav {
    width: min(760px, calc(100vw - 48px));
    margin-top: 96px;
  }

  .hero-collage {
    min-height: 360px;
  }

  .hero-tile {
    min-height: 360px;
  }

  .home-post-strip {
    width: min(760px, calc(100vw - 40px));
    grid-template-columns: 1fr;
  }

  .post-card a {
    min-height: 310px;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 260px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand__title {
    font-size: 34px;
    letter-spacing: 6px;
  }

  .site-nav {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .site-nav a {
    font-size: 16px;
    padding: 12px 10px;
  }

  .sticky-hero {
    padding-top: 24px;
  }

  .hero-collage {
    grid-template-columns: repeat(2, 1fr);
    min-height: auto;
  }

  .hero-tile {
    min-height: 240px;
    background-size: 380% auto;
  }

  .hero-collage h1 {
    font-size: 42px;
    transform: none;
    padding: 0 20px;
  }

  .home-about {
    padding: 110px 18px 142px;
  }

  .home-about__title {
    font-size: 78px;
  }

  .home-about__link {
    margin-top: 52px;
  }

  .home-post-strip {
    padding-bottom: 88px;
  }
}

/* Final homepage header/hero correction: shorter title, centered logo, four nav links, image directly below. */
.site-header {
  min-height: 466px;
  padding-top: 31px;
}

.brand__mark {
  width: 236px;
  margin-bottom: -151px;
}

.brand__title {
  width: max-content;
  max-width: calc(100vw - 96px);
  margin-top: 103px;
  font-size: 57px;
  letter-spacing: 11.4px;
  white-space: nowrap;
}

.site-nav {
  width: min(1325px, calc(100vw - 420px));
  grid-template-columns: repeat(4, 1fr);
  margin-top: 156px;
}

.site-nav a {
  font-size: 28px;
  padding: 25px 12px 27px;
}

.sticky-hero {
  padding-top: 0;
}

.hero-collage {
  min-height: 520px;
}

.hero-tile {
  min-height: 520px;
  background-size: 281% auto;
}

.hero-collage h1 {
  font-size: 74px;
  transform: translateY(64px);
}

@media (max-width: 1100px) {
  .site-header {
    min-height: 350px;
  }

  .brand__title {
    font-size: 42px;
    letter-spacing: 7px;
    margin-top: 74px;
  }

  .brand__mark {
    width: 154px;
    margin-bottom: -101px;
  }

  .site-nav {
    width: min(860px, calc(100vw - 48px));
    margin-top: 96px;
  }

  .site-nav a {
    font-size: 18px;
  }

  .hero-collage h1 {
    font-size: 52px;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 340px;
  }

  .brand__title {
    font-size: 30px;
    letter-spacing: 4px;
    white-space: normal;
  }

  .site-nav {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 82px;
  }

  .site-nav a {
    font-size: 15px;
  }
}

/* Smaller top brand lockup per latest homepage feedback. */
.site-header {
  min-height: 300px;
  padding-top: 22px;
}

.brand__mark {
  width: 150px;
  margin-bottom: -96px;
}

.brand__title {
  margin-top: 68px;
  font-size: 42px;
  letter-spacing: 8px;
}

.site-nav {
  width: min(980px, calc(100vw - 220px));
  margin-top: 92px;
}

.site-nav a {
  font-size: 22px;
  padding: 18px 10px 19px;
}

@media (max-width: 1100px) {
  .site-header {
    min-height: 270px;
  }

  .brand__mark {
    width: 124px;
    margin-bottom: -82px;
  }

  .brand__title {
    margin-top: 58px;
    font-size: 34px;
    letter-spacing: 6px;
  }

  .site-nav {
    width: min(760px, calc(100vw - 48px));
    margin-top: 74px;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 260px;
  }

  .brand__mark {
    width: 108px;
    margin-bottom: -72px;
  }

  .brand__title {
    margin-top: 52px;
    font-size: 28px;
    letter-spacing: 4px;
  }
}

/* Trim roughly one inch of vertical height from the top header area. */
.site-header {
  min-height: 204px;
}

.site-nav {
  margin-top: 52px;
}

@media (max-width: 1100px) {
  .site-header {
    min-height: 190px;
  }

  .site-nav {
    margin-top: 42px;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 184px;
  }

  .site-nav {
    margin-top: 38px;
  }
}

/* Compact header pass: keep the hero image tight under the nav on scroll. */
.site-header {
  min-height: 170px;
  padding-top: 14px;
}

.brand__mark {
  width: 112px;
  margin-bottom: -72px;
}

.brand__title {
  margin-top: 46px;
  font-size: 32px;
  letter-spacing: 6px;
}

.site-nav {
  width: min(820px, calc(100vw - 120px));
  margin-top: 34px;
}

.site-nav a {
  font-size: 18px;
  padding: 13px 8px 14px;
}

.sticky-hero {
  padding-top: 0;
  margin-top: 0;
}

.hero-collage {
  top: 170px;
  margin-top: 0;
}

@media (max-width: 1100px) {
  .site-header {
    min-height: 160px;
    padding-top: 12px;
  }

  .brand__mark {
    width: 102px;
    margin-bottom: -66px;
  }

  .brand__title {
    margin-top: 42px;
    font-size: 28px;
    letter-spacing: 5px;
  }

  .site-nav {
    width: min(720px, calc(100vw - 48px));
    margin-top: 28px;
  }

  .site-nav a {
    font-size: 16px;
    padding: 12px 8px 13px;
  }

  .hero-collage {
    top: 160px;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 210px;
    padding: 12px 16px 0;
  }

  .brand__mark {
    width: 94px;
    margin-bottom: -62px;
  }

  .brand__title {
    margin-top: 40px;
    font-size: 25px;
    letter-spacing: 3px;
  }

  .site-nav {
    width: calc(100vw - 32px);
    margin-top: 30px;
  }

  .site-nav a {
    font-size: 14px;
    padding: 11px 6px 12px;
  }

  .hero-collage {
    top: auto;
  }
}


/* Refined sunburst logo: Wix-style circle without making the header too tall. */
.site-header {
  min-height: 248px;
  padding-top: 16px;
}

.brand {
  position: relative;
  min-height: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand__mark {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 164px;
  margin: 0;
  transform: translateX(-50%);
  background: repeating-conic-gradient(from -0.5deg, #001b36 0deg 0.95deg, transparent 0.95deg 3.8deg);
  -webkit-mask: radial-gradient(circle, transparent 0 55%, #000 55% 78%, transparent 78%);
  mask: radial-gradient(circle, transparent 0 55%, #000 55% 78%, transparent 78%);
}

.brand__title {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: calc(100vw - 96px);
  margin-top: 6px;
  font-size: 48px;
  letter-spacing: 9px;
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  width: min(960px, calc(100vw - 180px));
  margin-top: 28px;
}

.hero-collage {
  top: 248px;
}

@media (max-width: 1100px) {
  .site-header {
    min-height: 218px;
    padding-top: 14px;
  }

  .brand {
    min-height: 118px;
  }

  .brand__mark {
    width: 136px;
  }

  .brand__title {
    margin-top: 4px;
    font-size: 36px;
    letter-spacing: 6px;
  }

  .site-nav {
    width: min(760px, calc(100vw - 56px));
    margin-top: 24px;
  }

  .hero-collage {
    top: 218px;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 220px;
    padding-top: 12px;
  }

  .brand {
    min-height: 104px;
  }

  .brand__mark {
    width: 110px;
  }

  .brand__title {
    max-width: calc(100vw - 28px);
    margin-top: 3px;
    font-size: 25px;
    letter-spacing: 3px;
    white-space: nowrap;
  }

  .site-nav {
    width: calc(100vw - 32px);
    margin-top: 22px;
  }

  .hero-collage {
    top: auto;
  }
}

/* Hero placement fix: one cohesive image strip directly below the nav. */
.sticky-hero {
  height: auto;
  padding-top: 0;
  margin-top: 0;
}

.hero-collage {
  position: relative;
  top: auto;
  width: 100%;
  min-height: 360px;
  display: block;
  background-image: url("assets/hero-collage.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
}

.hero-tile {
  display: none;
}

.hero-collage h1 {
  display: none;
}

@media (max-width: 1100px) {
  .hero-collage {
    top: auto;
    min-height: 300px;
  }
}

@media (max-width: 700px) {
  .hero-collage {
    min-height: 220px;
  }
}

/* Four-image hero template: replace these asset files to swap the strip images. */
.site-header {
  min-height: 264px;
}

.site-nav {
  margin-top: 44px;
}

.hero-collage {
  position: relative;
  top: auto;
  width: 100%;
  height: 320px;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: none;
}

.hero-tile {
  display: block;
  min-height: 0;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.hero-tile--book {
  background-image: url("assets/hero-book.png");
  background-position: center center;
}

.hero-tile--robe {
  background-image: url("assets/hero-robe.png");
  background-position: center center;
}

.hero-tile--matcha {
  background-image: url("assets/hero-matcha.png");
  background-position: center center;
}

.hero-tile--pilates {
  background-image: url("assets/hero-pilates.png");
  background-position: center center;
}

.hero-collage h1 {
  display: none;
}

@media (max-width: 1100px) {
  .site-header {
    min-height: 236px;
  }

  .site-nav {
    margin-top: 34px;
  }

  .hero-collage {
    height: 270px;
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 230px;
  }

  .site-nav {
    margin-top: 28px;
  }

  .hero-collage {
    height: auto;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-tile {
    height: 190px;
  }
}

/* Show the full four-photo hero without skewing or cutting off the bottoms. */
.hero-collage {
  height: clamp(360px, 28vw, 560px);
  min-height: 0;
}

.hero-tile {
  background-size: cover;
  background-position: center bottom;
}

.hero-tile--book,
.hero-tile--robe,
.hero-tile--matcha,
.hero-tile--pilates {
  background-position: center bottom;
}

@media (max-width: 1100px) {
  .hero-collage {
    height: clamp(280px, 28vw, 340px);
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .hero-collage {
    height: auto;
    min-height: 0;
  }

  .hero-tile {
    height: clamp(220px, 56vw, 340px);
  }
}

/* Exact-ratio hero pass: preserve full image proportions at every width. */
.hero-collage {
  height: auto;
  min-height: 0;
  aspect-ratio: 2720 / 760;
}

.hero-tile {
  height: 100%;
  background-size: cover;
  background-position: center center;
}

.hero-tile--book,
.hero-tile--robe,
.hero-tile--matcha,
.hero-tile--pilates {
  background-position: center center;
}

@media (max-width: 1100px) {
  .hero-collage {
    height: auto;
    min-height: 0;
    aspect-ratio: 2720 / 760;
  }
}

@media (max-width: 700px) {
  .hero-collage {
    height: auto;
    min-height: 0;
    aspect-ratio: 1360 / 1520;
  }

  .hero-tile {
    height: auto;
    min-height: 0;
    aspect-ratio: 680 / 760;
  }
}

/* Slightly taller hero frame while keeping images proportional. */
.hero-collage {
  aspect-ratio: 2720 / 790;
}

@media (max-width: 1100px) {
  .hero-collage {
    aspect-ratio: 2720 / 790;
  }
}

@media (max-width: 700px) {
  .hero-collage {
    aspect-ratio: 1360 / 1580;
  }

  .hero-tile {
    aspect-ratio: 680 / 790;
  }
}

/* About preview match: large centered image-filled title with airy Wix-style spacing. */
.home-about {
  position: relative;
  display: grid;
  justify-items: center;
  padding: clamp(140px, 11vw, 210px) 24px clamp(150px, 12vw, 230px);
  text-align: center;
  background: var(--white);
}

.home-about__title {
  margin: 0 auto;
  font-family: var(--playfair);
  font-size: clamp(118px, 11.3vw, 196px);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: 0.015em;
  color: transparent;
  background-image: linear-gradient(rgba(170, 199, 115, 0.72), rgba(98, 124, 64, 0.72)), url("assets/reference-about.png");
  background-size: 118% auto;
  background-position: center 42%;
  -webkit-background-clip: text;
  background-clip: text;
}

.home-about__link {
  display: inline-block;
  margin-top: clamp(72px, 5.4vw, 104px);
  font-family: var(--playfair);
  font-size: clamp(18px, 1.35vw, 24px);
  color: var(--black);
  text-decoration: none;
}

.home-post-strip {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .home-about {
    padding: 118px 20px 158px;
  }

  .home-about__title {
    font-size: clamp(82px, 15vw, 132px);
  }

  .home-about__link {
    margin-top: 58px;
  }
}

@media (max-width: 700px) {
  .home-about {
    padding: 86px 18px 124px;
  }

  .home-about__title {
    font-size: clamp(58px, 20vw, 88px);
  }

  .home-about__link {
    margin-top: 42px;
    font-size: 18px;
  }
}

/* Expanded blog library: six cohesive home cards and readable full posts. */
.home-post-strip {
  width: min(1520px, calc(100vw - 240px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 3.2vw, 58px);
  padding: 0 0 150px;
}

.post-card a {
  min-height: clamp(270px, 18vw, 340px);
}

.post-card__title {
  max-width: 92%;
  font-size: clamp(18px, 1.25vw, 26px);
  line-height: 1.18;
  padding: 0 clamp(24px, 2vw, 42px) clamp(28px, 2.2vw, 42px);
}

.post-card__image--glucose,
.blog-list-card__image--glucose,
.single-post__image--glucose {
  background-image: url("assets/olives.jpg");
  background-size: cover;
  background-position: center center;
}

.post-card__image--cortisol,
.blog-list-card__image--cortisol,
.single-post__image--cortisol {
  background-image: url("assets/cortisol-yoga.jpg");
  background-size: cover;
  background-position: center center;
}

.post-card__image--pcos,
.blog-list-card__image--pcos,
.single-post__image--pcos {
  background-image: url("assets/sushi.jpg");
  background-size: cover;
  background-position: center center;
}

.blog-index {
  max-width: 1120px;
}

.blog-list-card {
  grid-template-columns: minmax(280px, 360px) 1fr;
  min-height: 270px;
}

.blog-list-card__image {
  background-size: 214% auto;
}

.blog-list-card__image--glucose,
.blog-list-card__image--cortisol,
.blog-list-card__image--pcos {
  background-size: cover;
}

.single-post {
  max-width: 900px;
}

.single-post h2 {
  font-family: var(--playfair);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 400;
  line-height: 1.16;
  margin: 48px 0 18px;
}

.single-post h3 {
  font-family: var(--playfair);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 400;
  margin: 34px 0 12px;
}

.single-post ul,
.single-post ol {
  font-family: var(--libre);
  font-size: 17px;
  line-height: 1.9;
  margin: 0 0 24px;
  padding-left: 28px;
}

.single-post li {
  margin: 0 0 10px;
}

.single-post a {
  overflow-wrap: anywhere;
}

.post-tags {
  color: var(--muted);
  font-size: 14px !important;
}

@media (max-width: 1100px) {
  .home-post-strip {
    width: min(860px, calc(100vw - 48px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-list-card {
    grid-template-columns: 1fr;
  }

  .blog-list-card__image {
    min-height: 300px;
  }
}

@media (max-width: 700px) {
  .home-post-strip {
    width: calc(100vw - 36px);
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 96px;
  }

  .post-card a {
    min-height: 300px;
  }

  .blog-index {
    padding-left: 18px;
    padding-right: 18px;
  }

  .single-post {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Homepage-specific images for the first three blog preview cards. */
.post-card__image--food {
  background-image: url("assets/food.jpg");
  background-size: cover;
  background-position: center center;
}

.post-card__image--coffee {
  background-image: url("assets/coffee.jpg");
  background-size: cover;
  background-position: center center;
}

.post-card__image--morning {
  background-image: url("assets/red-light.avif");
  background-size: cover;
  background-position: center center;
}

/* Featured image replacements for existing blog posts. */
.post-card__image--food,
.blog-list-card__image--food,
.single-post__image--food {
  background-image: url("assets/blog-balancing-hormones.avif");
  background-size: cover;
  background-position: center center;
}

.post-card__image--coffee,
.blog-list-card__image--coffee,
.single-post__image--coffee {
  background-image: url("assets/blog-matcha-coffee.jpg");
  background-size: cover;
  background-position: center center;
}

.post-card__image--morning,
.blog-list-card__image--morning,
.single-post__image--morning {
  background-image: url("assets/bread.jpg");
  background-size: cover;
  background-position: center center;
}

/* Final home ABOUT preview: use the supplied image instead of generated text. */
.home-about {
  min-height: clamp(560px, 43vw, 790px);
  padding: clamp(96px, 7vw, 142px) 24px clamp(112px, 7.5vw, 158px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(48px, 3.8vw, 76px);
}

.home-about__title {
  display: block;
  width: min(980px, 58vw);
  margin: 0;
  font-size: 0;
  line-height: 0;
  letter-spacing: 0;
  background: none;
  background-image: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: inherit;
}

.home-about__title img {
  display: block;
  width: 100%;
  height: auto;
}

.home-about__link {
  margin-top: 0;
}

@media (max-width: 700px) {
  .home-about {
    min-height: 410px;
    padding: 72px 18px 102px;
    gap: 34px;
  }

  .home-about__title {
    width: min(520px, 86vw);
  }
}

/* Homepage blog previews: centered editorial grid, 3 / 2 / 1 columns. */
.home-post-strip {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1500px, calc(100vw - 96px));
  margin: 0 auto;
  gap: clamp(42px, 3.6vw, 64px);
  justify-content: center;
  justify-items: stretch;
  align-items: stretch;
  overflow: visible;
  padding-bottom: 148px;
  scroll-snap-type: none;
}

.home-post-strip .post-card {
  width: 100%;
  max-width: none;
  scroll-snap-align: none;
}

.home-post-strip .post-card a {
  width: 100%;
  height: clamp(310px, 21vw, 390px);
  min-height: 310px;
  aspect-ratio: auto;
}

.home-post-strip .post-card a::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.62));
}

.home-post-strip .post-card__image {
  background-size: cover;
  background-position: center center;
}

.home-post-strip .post-card__title {
  max-width: 92%;
  padding: 0 clamp(28px, 2.2vw, 44px) clamp(30px, 2.3vw, 42px);
  font-size: clamp(20px, 1.45vw, 28px);
  line-height: 1.16;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
}

@media (max-width: 1100px) {
  .home-post-strip {
    width: min(960px, calc(100vw - 48px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
  }

  .home-post-strip .post-card a {
    height: clamp(310px, 34vw, 380px);
  }
}

@media (max-width: 700px) {
  .home-post-strip {
    width: calc(100vw - 36px);
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 96px;
  }

  .home-post-strip .post-card {
    max-width: none;
  }

  .home-post-strip .post-card a {
    height: clamp(320px, 72vw, 420px);
  }
}

/* Data-rendered blog content and polished preview card sizing. */
.single-post__content h2 {
  font-family: var(--playfair);
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 400;
  line-height: 1.16;
  margin: 50px 0 18px;
}

.single-post__content h3 {
  font-family: var(--playfair);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 400;
  line-height: 1.2;
  margin: 34px 0 12px;
}

.single-post__content .citation-text {
  color: var(--muted);
  font-size: 15px;
}

.single-post__content ul {
  margin-bottom: 28px;
}

.blog-list-card__body {
  gap: 8px;
}

/* Compact soft-image footer/contact section. */
.brand-banner {
  padding: 48px 24px 40px;
}

.brand-banner__name {
  margin-bottom: 16px;
}

.brand-banner::before {
  margin-bottom: 22px;
}

.site-footer {
  position: relative;
  isolation: isolate;
  background: #eef2e5;
  background-image: url("assets/about.jpg");
  background-size: cover;
  background-position: center;
  color: var(--black);
  padding: 60px max(24px, 7vw) 34px;
  text-align: center;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/about.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.76);
}

.footer-images {
  display: none;
}

.back-to-top {
  margin: 0 auto 28px;
  color: var(--black);
}

.footer-contact {
  max-width: 860px;
}

.footer-contact h2 {
  margin-bottom: 10px;
  font-size: clamp(24px, 2.4vw, 32px);
}

.footer-contact p {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.38;
}

.footer-contact a {
  color: inherit;
}

.subscribe-form {
  width: min(820px, 100%);
  margin: 22px auto 0;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
}

.subscribe-form input {
  min-height: 48px;
  border-color: rgba(0, 0, 0, 0.82);
}

.subscribe-form button {
  min-height: 48px;
  border-color: rgba(0, 0, 0, 0.82);
}

.form-message {
  color: var(--black);
}

.footer-lower {
  max-width: 820px;
  margin: 34px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.disclaimer {
  max-width: 720px;
}

.disclaimer h3 {
  margin-bottom: 6px;
  font-size: 14px;
}

.disclaimer p {
  font-size: 12px;
  line-height: 1.45;
}

.social {
  min-width: 0;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.social-links a {
  display: inline-flex;
  color: inherit;
}

.social-links svg {
  margin: 0;
}

.social p {
  margin: 0 0 8px;
}

.social svg {
  width: 28px;
  height: 28px;
}

.copyright {
  margin-top: 26px;
  font-size: 12px;
  color: var(--black);
}

@media (max-width: 700px) {
  .site-footer {
    padding: 48px 18px 30px;
  }

  .subscribe-form {
    grid-template-columns: minmax(0, 1fr) minmax(132px, 36vw);
  }

  .subscribe-form input {
    padding: 0 12px;
  }

  .subscribe-form button {
    font-size: 13px;
  }
}

/* Homepage hero collage: flush four-tile banner with one centered title. */
.sticky-hero {
  margin: 0;
  padding: 0;
  overflow: visible;
}

.hero-collage {
  position: relative;
  left: auto;
  top: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: none;
  background-image: none;
  transform: none;
}

.hero-collage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.08)),
    linear-gradient(90deg, rgba(245, 247, 238, 0.08), rgba(245, 247, 238, 0.02) 22%, rgba(245, 247, 238, 0.02) 78%, rgba(245, 247, 238, 0.08));
}

.hero-tile {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: none;
}

.hero-tile + .hero-tile {
  margin-left: 0;
  width: 100%;
}

.hero-tile--book {
  background-image: url("assets/hero-book-clean.avif");
}

.hero-tile--robe {
  background-image: url("assets/hero-robe-clean.avif");
}

.hero-tile--matcha {
  background-image: url("assets/hero-matcha-clean.avif");
}

.hero-tile--pilates {
  background-image: url("assets/hero-pilates-clean.avif");
}

.hero-collage h1 {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 max(28px, 5vw) 0.18em;
  box-sizing: border-box;
  overflow: visible;
  font-family: var(--playfair);
  font-size: clamp(42px, 5.15vw, 82px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  color: var(--black);
  transform: none;
  pointer-events: none;
}

.hero-collage h1::before,
.hero-collage h1::after {
  content: none;
}

@media (max-width: 900px) {
  .hero-collage h1 {
    font-size: clamp(34px, 6vw, 54px);
    padding-inline: 22px;
  }
}

@media (max-width: 700px) {
  .hero-collage h1 {
    font-size: clamp(30px, 9vw, 48px);
    line-height: 1.18;
    white-space: normal;
  }
}

/* About page editorial body text section. */
.about-story {
  background: #fff;
  color: #747071;
  padding: clamp(72px, 8vw, 112px) 24px;
}

.about-story__panel {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-story h2 {
  color: var(--black);
  font-family: var(--playfair);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.18;
  margin: 0 0 34px;
  text-align: left;
}

.about-story p {
  color: #747071;
  font-family: var(--libre);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 400;
  line-height: 2.1;
  margin: 0 0 32px;
  text-align: left;
}

.about-story p:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .about-story {
    padding: 58px 18px;
  }

  .about-story__panel {
    padding: 0;
  }

  .about-story p {
    line-height: 1.95;
    margin-bottom: 26px;
  }
}

/* About page top hero and portrait placement. */
.about-hero {
  min-height: clamp(420px, 38vw, 620px);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(92px, 8vw, 142px) 24px clamp(82px, 7vw, 132px);
  overflow: visible;
}

.about-hero__image {
  display: none;
}

.about-hero::after {
  content: none;
}

.about-hero__title {
  display: block;
  width: min(980px, 58vw);
  margin: 0;
  font-size: 0;
  line-height: 0;
  letter-spacing: 0;
  background: none;
  background-image: none;
  color: inherit;
}

.about-hero__title img {
  display: block;
  width: 100%;
  height: auto;
}

.about-portrait {
  background: #fff;
  padding: clamp(46px, 6vw, 76px) 24px 0;
}

.about-portrait__frame {
  width: min(390px, 76vw);
  margin: 0 auto;
}

.about-portrait__frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5.6;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  box-shadow: 0 22px 58px rgba(30, 28, 27, 0.13);
}

@media (max-width: 700px) {
  .about-hero {
    min-height: 330px;
    padding: 72px 18px 66px;
  }

  .about-hero__title {
    width: min(520px, 86vw);
  }

  .about-portrait {
    padding-top: 42px;
  }

  .about-portrait__frame {
    width: min(330px, 82vw);
  }
}

/* Blog index post grid: 3 columns desktop, 2 tablet, 1 mobile. */
.blog-index {
  max-width: 1320px;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.6vw, 36px);
}

.blog-list-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  min-height: 0;
  overflow: hidden;
  background: var(--white);
}

.blog-list-card__image {
  position: relative;
  inset: auto;
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center center;
}

.blog-list-card__body {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2vw, 30px);
}

.blog-list-card h2 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.16;
}

.blog-list-card__body > p:not(.byline) {
  font-size: 15px;
  line-height: 1.65;
}

.blog-list-card .post-meta {
  margin-top: auto;
}

@media (max-width: 1100px) {
  .blog-index {
    max-width: 900px;
  }

  .blog-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .blog-index {
    max-width: 560px;
  }

  .blog-list {
    grid-template-columns: 1fr;
  }
}

/* Standalone Work With Me page responsive structure. */
@media (max-width: 1100px) {
  .work-services,
  .work-credentials ul,
  .work-process__steps {
    grid-template-columns: 1fr;
  }

  .work-card span {
    margin-bottom: 24px;
  }
}

@media (max-width: 700px) {
  .work-hero {
    width: calc(100vw - 36px);
    padding: 72px 0 44px;
  }

  .work-intro,
  .work-credentials,
  .work-cta,
  .work-services,
  .work-process,
  .work-contact {
    width: calc(100vw - 36px);
  }

  .work-intro,
  .work-credentials {
    padding: 42px 0;
  }

  .work-card {
    padding: 28px 24px 32px;
  }

  .work-process {
    margin-top: 54px;
    padding: 44px 0;
  }

  .work-contact {
    padding: 58px 0 82px;
  }
}

/* About page magazine-profile layout. */
.about-page {
  background: var(--white);
}

.about-feature {
  width: min(1180px, calc(100vw - 96px));
  margin: 0 auto;
  padding: clamp(72px, 7vw, 112px) 0 clamp(62px, 6vw, 96px);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(58px, 7vw, 112px);
  align-items: start;
}

.about-page .about-portrait__frame {
  width: min(430px, 100%);
  margin: clamp(22px, 4vw, 58px) 0 0 clamp(4px, 2vw, 28px);
  transform: rotate(-1.1deg);
}

.about-page .about-portrait__frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 4px;
  box-shadow: 0 26px 72px rgba(26, 23, 22, 0.13);
}

.about-page .about-portrait__frame figcaption {
  margin: 14px 0 0 8px;
  font-family: var(--libre);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
}

.about-page .about-story__panel {
  max-width: 650px;
  margin: 0;
  padding: 0;
  text-align: left;
}

.about-page .about-hero__title {
  width: min(560px, 100%);
  margin: 0 0 clamp(34px, 4.2vw, 56px);
  line-height: 0;
}

.about-page .about-hero__title img {
  display: block;
  width: 100%;
  height: auto;
}

.about-page .about-story__hook {
  margin: 0 0 22px;
  font-family: var(--playfair);
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1.05;
  color: var(--black);
}

.about-page .about-story__panel p {
  max-width: 600px;
  margin: 0 0 18px;
  font-family: var(--libre);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.85;
  color: #625e60;
}

.about-page .about-story__panel p:nth-child(even) {
  margin-left: clamp(0px, 1.4vw, 18px);
}

.about-page .about-work-compact {
  width: min(560px, calc(100vw - 48px));
  height: auto;
  min-height: 0;
  margin: 0 auto clamp(68px, 7vw, 104px);
  padding: clamp(38px, 4vw, 54px) 0 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.about-page .about-work-compact h2 {
  margin: 0 0 22px;
  font-family: var(--playfair);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.1;
}

.about-page .about-work-form {
  max-width: 500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.about-page .about-work-form label {
  text-align: left;
}

.about-page .about-work-form input,
.about-page .about-work-form textarea {
  padding: 10px 12px;
}

.about-page .about-work-form button {
  min-width: 140px;
  padding: 11px 24px;
}

@media (max-width: 900px) {
  .about-feature {
    width: min(680px, calc(100vw - 44px));
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 58px;
  }

  .about-page .about-portrait__frame {
    width: min(360px, 78vw);
    margin: 0 auto;
  }

  .about-page .about-story__panel {
    max-width: 100%;
  }

  .about-page .about-hero__title {
    width: min(500px, 86vw);
  }
}

@media (max-width: 700px) {
  .about-feature {
    width: calc(100vw - 36px);
    gap: 38px;
    padding: 46px 0 52px;
  }

  .about-page .about-portrait__frame {
    width: min(300px, 76vw);
  }

  .about-page .about-story__panel p:nth-child(even) {
    margin-left: 0;
  }

  .about-page .about-work-compact {
    width: calc(100vw - 36px);
  }
}

/* Contact page editorial redesign. */
.contact-page {
  width: min(1120px, calc(100vw - 64px));
  max-width: none;
  margin: 0 auto;
  padding: clamp(70px, 7vw, 116px) 0 clamp(76px, 8vw, 126px);
  text-align: left;
  color: var(--black);
}

.contact-hero {
  max-width: 760px;
  margin: 0 auto clamp(42px, 5vw, 70px);
  text-align: center;
}

.contact-eyebrow {
  margin: 0 0 14px;
  font-family: var(--libre);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-page .contact-hero h1 {
  margin: 0;
  font-family: var(--playfair);
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.contact-page .contact-hero p:last-child {
  max-width: 620px;
  margin: 24px auto 0;
  font-family: var(--libre);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.85;
  color: #625e60;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: stretch;
  padding: clamp(34px, 4.5vw, 58px);
  border: 1px solid rgba(125, 121, 124, 0.34);
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 12% 18%, rgba(170, 199, 115, 0.22), transparent 34%),
    #fff;
}

.contact-card::before {
  content: "";
  position: absolute;
  left: clamp(28px, 4vw, 54px);
  right: clamp(28px, 4vw, 54px);
  top: clamp(24px, 3vw, 38px);
  height: 1px;
  background: rgba(125, 121, 124, 0.24);
}

.contact-note,
.contact-details {
  position: relative;
  z-index: 1;
}

.contact-note {
  padding-top: 34px;
}

.contact-note span,
.contact-page .subscribe-form--page label,
.contact-email p {
  display: block;
  margin: 0;
  font-family: var(--libre);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-note h2 {
  max-width: 420px;
  margin: 28px 0 18px;
  font-family: var(--playfair);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.02;
}

.contact-page .contact-note p {
  max-width: 460px;
  margin: 0 0 18px;
  font-family: var(--libre);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.85;
  color: #625e60;
}

.contact-page .contact-note p.contact-note__accent {
  font-family: var(--playfair);
  font-style: italic;
  color: var(--muted-dark);
}

.contact-details {
  display: grid;
  align-content: center;
  gap: 32px;
  padding: clamp(28px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(26, 23, 22, 0.08);
}

.contact-email {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.contact-email a {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--playfair);
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.12;
  color: var(--black);
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}

.contact-page .subscribe-form--page {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  color: var(--black);
}

.contact-subscribe-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px;
}

.contact-page .subscribe-form--page input {
  min-height: 52px;
  border: 1px solid rgba(0, 0, 0, 0.52);
  border-right: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 0 16px;
}

.contact-page .subscribe-form--page button {
  min-height: 52px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.contact-page .subscribe-form--page button:hover {
  background: var(--white);
  color: var(--black);
}

.contact-page .form-message {
  min-height: 20px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 13px;
}

@media (max-width: 900px) {
  .contact-page {
    width: min(720px, calc(100vw - 40px));
    padding-top: 58px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .contact-page {
    width: calc(100vw - 32px);
    padding: 46px 0 72px;
  }

  .contact-hero {
    margin-bottom: 34px;
  }

  .contact-card {
    padding: 28px 20px;
  }

  .contact-card::before {
    left: 20px;
    right: 20px;
  }

  .contact-details {
    padding: 24px 18px;
  }

  .contact-subscribe-row {
    grid-template-columns: 1fr;
  }

  .contact-page .subscribe-form--page input {
    border-right: 1px solid rgba(0, 0, 0, 0.52);
    border-bottom: 0;
  }

  .contact-page .subscribe-form--page button {
    width: 100%;
  }
}
