:root {
  --bg: #f8f5f2;
  --bg-soft: #f4efea;
  --bg-powder: #f7efee;
  --surface: #ffffff;
  --text: #7b7067;
  --heading: #243d66;
  --accent: #d1a03f;
  --accent-dark: #b7862e;
  --line: #ece2d8;
  --shadow-soft: 0 12px 28px rgba(77, 61, 44, 0.07);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text);
  background:
    linear-gradient(
      180deg,
      #f9f6f3 0%,
      #f8f5f2 28%,
      #f7f3ef 62%,
      #f8f5f2 100%
    );
  line-height: 1.7;
}

body.menu-open { overflow: hidden; }

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

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--heading);
  line-height: 1.12;
  margin: 0 0 16px;
}

p { margin: 0 0 16px; }
ul { margin: 0; padding-left: 20px; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  isolation: isolate;
  padding: 102px 0;
}

.section > .container {
  position: relative;
  z-index: 2;
}

.section-label {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(209, 160, 63, 0.14);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-head { margin-bottom: 40px; }

.section-head-center {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.22s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(209, 160, 63, 0.28);
}

.btn-primary:hover { background: var(--accent-dark); }

.btn-outline {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: transparent;
}

.btn-outline:hover { background: rgba(209, 160, 63, 0.1); }

.text-link {
  text-decoration: none;
  color: var(--accent-dark);
  font-weight: 700;
  border-bottom: 1px solid rgba(183, 134, 46, 0.35);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(248, 245, 242, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  text-decoration: none;
  font-family: 'Comfortaa', cursive;
  color: var(--accent);
  font-size: 2.25rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  text-decoration: none;
  color: #687a96;
  font-weight: 700;
}

.nav-cta {
  margin-left: 8px;
  border-radius: 12px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--heading);
}

.hero {
  padding: 74px 0 98px;
  background:
    linear-gradient(rgba(248, 245, 242, 0.88), rgba(248, 245, 242, 0.94)),
    url('https://images.unsplash.com/photo-1528715471579-d1bcf0ba5e83?auto=format&fit=crop&w=2100&q=80') center/cover no-repeat;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: center;
}

.hero h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
.hero h1 span { color: var(--accent); }

.hero-subline {
  font-size: 1.08rem;
  color: #6d655c;
  font-weight: 700;
}

.hero blockquote {
  margin: 22px 0;
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 16px;
  font-style: italic;
  color: #5d6f8b;
  font-size: 1.1rem;
}

.hero-note,
.result-box {
  margin-bottom: 14px;
  border-radius: var(--radius-md);
  border: 1px solid #efe4d9;
  background: rgba(255, 255, 255, 0.86);
  padding: 16px 18px;
}

.hero-note h3,
.result-box h3 { font-size: 1.65rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.hero-visual {
  position: relative;
  max-width: 470px;
  width: 100%;
  justify-self: end;
}

.hero-visual img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 24px rgba(77, 61, 44, 0.06);
}

.hero-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 8px 18px rgba(45, 36, 27, 0.14);
}

.hero-badge strong {
  display: block;
  color: var(--accent-dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.about-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 12px;
}

.about-main-image {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 20px;
}

.about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.about-collage img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
}

.about-floating {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(77, 61, 44, 0.06);
  color: var(--accent);
  padding: 10px 20px;
  text-align: center;
  font-weight: 700;
}

.about-content h2 { font-size: clamp(2.4rem, 4.4vw, 3.7rem); }
.about-subline { font-weight: 700; color: #7a6f63; }

.content-card {
  background: #fff;
  border: 1px solid #eee2d5;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
}

.content-card h3 { font-size: 1.6rem; }

.about-stats {
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid #eadfce;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  text-align: center;
}

.about-stats strong {
  display: block;
  color: var(--accent);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
}

.services {
  background: linear-gradient(180deg, rgba(248, 245, 242, 0.7), rgba(244, 238, 231, 0.9));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  background: #fff;
  border: 1px solid #efe3d7;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 10px 24px rgba(77, 61, 44, 0.06);
}

.service-icon {
  width: 48px;
  height: 64px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  background: #f7ecec;
  margin-bottom: 14px;
}

.service-card h3 { font-size: 2rem; }

.service-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags span {
  background: #f6f1eb;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.84rem;
  color: #8b7c6c;
  font-weight: 700;
}

.journey { background: var(--bg-soft); }

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  border: 1px solid #ecdfd2;
  border-radius: 14px;
  background: #fff;
  padding: 18px;
}

.info-card h3 { font-size: 1.7rem; }

.coaching {
  background: linear-gradient(180deg, #f9f6f3 0%, #f5eee6 100%);
}

.coaching .container {
  max-width: 1100px;
}

.coaching-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.95fr);
  gap: 20px;
  align-items: start;
}

.coaching-head {
  margin-bottom: 12px;
}

.coaching-head h2 {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
}

.coaching-main .content-card,
.coaching-main .aha-box {
  margin-bottom: 14px;
}

.coaching-side {
  display: grid;
  gap: 12px;
  align-content: start;
}

.coaching-side .info-card,
.coaching-side .soft-cta {
  margin: 0;
}

.coaching-side .info-card ul {
  margin-top: 8px;
}

.aha-box {
  border-left: 3px solid var(--accent);
  background: #fff8ee;
  border-radius: 0 12px 12px 0;
  padding: 14px 16px;
  margin: 14px 0;
}

.aha-box strong {
  display: block;
  color: var(--accent-dark);
  margin-bottom: 4px;
}

.soft-cta {
  margin-top: 12px;
  background: #f4eadd;
  border: 1px solid #e8d8c6;
  border-radius: 14px;
  padding: 18px;
}

.soft-cta .btn {
  margin-top: 8px;
}

.feng-shui {
  background: linear-gradient(180deg, rgba(244, 236, 227, 0.72), rgba(248, 245, 242, 1));
}

.feng-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.testimonials {
  background: var(--bg-powder);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #eee2d6;
  padding: 24px;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(209, 160, 63, 0.45);
}

.testimonial-author {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 64px;
  border-radius: 50%;
  background: #f8e8e8;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.big-quote {
  max-width: 820px;
  margin: 48px auto 0;
  text-align: center;
  font-family: 'Comfortaa', cursive;
  color: var(--heading);
  font-size: clamp(1.95rem, 4vw, 3rem);
}

.big-quote cite {
  display: block;
  margin-top: 12px;
  color: var(--accent);
  font-size: 1.35rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
}

.section-head-blog {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.post-card {
  background: #fff;
  border: 1px solid #ece0d4;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.post-card img,
.post-image-fallback {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.post-image-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f5ebdc, #efe0c9);
  color: #8c754d;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
}

.post-card h2,
.post-card h3 {
  font-size: 1.9rem;
  margin: 0;
}

.post-card h2 a,
.post-card h3 a {
  text-decoration: none;
}

.post-card > h3,
.post-card > p,
.post-card > .text-link {
  padding-left: 20px;
  padding-right: 20px;
}

.post-card > h3 { padding-top: 18px; }
.post-card > p { margin-top: 8px; margin-bottom: 12px; }
.post-card > .text-link { display: inline-block; margin-bottom: 20px; }

.post-card-content { padding: 20px; }

.empty-state {
  border: 1px solid #eadfce;
  border-radius: 18px;
  background: #fff;
  text-align: center;
  padding: 38px;
}

.empty-state h3 { font-size: 2.1rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-info h2 { font-size: clamp(2.2rem, 4.2vw, 3.5rem); }

.contact-cards {
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-cards article {
  background: #fff;
  border: 1px solid #ecdfd2;
  border-radius: 12px;
  padding: 14px;
}

.contact-cards h3 {
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.contact-cards a,
.contact-cards p {
  margin: 0;
  text-decoration: none;
}

.contact-cta {
  background: #f4ece3;
  border: 1px solid #e8dbcc;
  border-radius: 14px;
  padding: 22px;
}

.contact-cta h3 { font-size: 1.95rem; }

.contact-form-wrap {
  background: #fff;
  border: 1px solid #ebe0d5;
  border-radius: var(--radius-lg);
  padding: 26px;
}

.contact-form-wrap h3 { font-size: 2.3rem; }

.contact-form {
  display: grid;
  gap: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #7f7366;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e9dece;
  background: #fdfaf7;
  color: #524941;
  border-radius: 10px;
  padding: 12px 12px;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d5b376;
  box-shadow: 0 0 0 4px rgba(209, 160, 63, 0.12);
}

.full-width { width: 100%; }

.page-hero {
  padding: 86px 0 62px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f4efe9 0%, #f8f5f2 100%);
}

.page-hero h1 {
  margin-top: 10px;
  font-size: clamp(2.45rem, 4.8vw, 4.2rem);
}

.page-hero p {
  font-size: 1.05rem;
  max-width: 760px;
}

.blog-listing { padding-top: 70px; }

.blog-article-inner { max-width: 900px; }

.blog-cover-image {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin-bottom: 30px;
}

.post-content {
  font-size: 1.05rem;
  color: #52483f;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  margin-top: 24px;
  margin-bottom: 10px;
}

.post-content p,
.post-content ul,
.post-content ol,
.post-content blockquote { margin-bottom: 16px; }

.post-content blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  font-style: italic;
}

.blog-soft-cta { margin-top: 24px; }
.blog-article-footer { margin-top: 18px; }

.site-footer {
  margin-top: 24px;
  background: #f6f0e8;
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-text { margin: 4px 0 0; }
.footer-copy { color: #7c7166; font-size: 0.92rem; }

@media (max-width: 1100px) {
  .hero-wrap,
  .about-grid,
  .coaching-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-self: start;
    max-width: 560px;
  }

  .journey-grid,
  .testimonials-grid,
  .posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .section { padding: 80px 0; }

  .main-nav {
    position: fixed;
    top: 82px;
    right: 20px;
    width: min(320px, calc(100% - 40px));
    border: 1px solid #ebdece;
    background: #fffaf4;
    border-radius: 14px;
    padding: 18px;
    gap: 14px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 18px 30px rgba(40, 30, 20, 0.15);
  }

  .main-nav.is-open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { margin-left: 0; }

  .services-grid,
  .journey-grid,
  .feng-grid,
  .testimonials-grid,
  .posts-grid,
  .contact-cards,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section-head-blog {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container { width: min(1180px, calc(100% - 28px)); }
  .header-inner { min-height: 76px; }
  .site-logo { font-size: 2rem; }
  .hero-visual img { height: 460px; }
  .about-media { grid-template-columns: 1fr; }
  .about-collage img { height: 145px; }

  .about-floating {
    left: 14px;
    right: 14px;
    transform: none;
    bottom: 14px;
  }

  .about-stats { grid-template-columns: 1fr; }

  .footer-inner {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0;
  }
}


/* Final copy layout helpers */
.longform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.long-content .content-card p + p {
  margin-top: 10px;
}

.long-content .content-card ul {
  margin-top: 8px;
  display: grid;
  gap: 8px;
}

.feng-end {
  margin-top: 16px;
}

/* Gentle section blending */
.section + .section {
  margin-top: -12px;
  padding-top: calc(102px + 12px);
}

.section + .section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -86px;
  height: 172px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(180deg, rgba(248, 245, 242, 0) 0%, rgba(248, 245, 242, 0.68) 50%, rgba(248, 245, 242, 0) 100%);
}

/* Subtle feng shui white shapes */
.section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.36;
  background:
    radial-gradient(900px 340px at 18% 84%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 68%),
    radial-gradient(780px 300px at 88% 16%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 72%);
}

@media (max-width: 900px) {
  .longform-grid {
    grid-template-columns: 1fr;
  }

  .section + .section {
    margin-top: -8px;
    padding-top: calc(80px + 8px);
  }
}

/* Screenshot fit refinements */
.about-content-compact {
  max-width: 640px;
}

.about-content-compact p {
  margin-bottom: 14px;
  font-size: 1.04rem;
}

.about-content-compact p strong {
  color: #6e6257;
}

.services .section-head {
  margin-bottom: 46px;
}

.services .section-head p {
  max-width: 760px;
  margin: 0 auto;
}

.service-card {
  min-height: 264px;
}

.service-card h3 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 1.03rem;
}

.testimonials .section-head {
  margin-bottom: 34px;
}

.contact .section-head,
.contact-info p {
  max-width: 700px;
}

.section + .section::before {
  top: -94px;
  height: 188px;
  background: linear-gradient(
    180deg,
    rgba(248, 245, 242, 0) 0%,
    rgba(248, 245, 242, 0.56) 48%,
    rgba(248, 245, 242, 0) 100%
  );
}

.section::after {
  opacity: 0.22;
}

@media (max-width: 1100px) {
  .about-content-compact {
    max-width: 100%;
  }

  .service-card {
    min-height: 0;
  }
}


/* Read-more for long cards */
.section-long .content-card {
  position: relative;
}

.section-long .content-card.has-readmore {
  padding-bottom: 14px;
}

.section-long .read-more-content {
  position: relative;
}

.section-long .read-more-content.is-collapsed {
  max-height: var(--collapsed-max, 280px);
  overflow: hidden;
}

.section-long .read-more-content.is-collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 88px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 70%, #fff 100%);
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-top: 14px;
  border: 1px solid #e1c796;
  background: #fff8eb;
  color: var(--accent-dark);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
}

.read-more-btn:hover {
  background: #f7ecd7;
}

/* Softer typography in long content */
.section-long h2 {
  font-size: clamp(2rem, 3.3vw, 3rem);
}

.section-long .content-card h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
}

.section-long .content-card p,
.section-long .content-card li {
  font-size: 1.01rem;
}

@media (max-width: 900px) {
  .section-long .read-more-content.is-collapsed {
    max-height: var(--collapsed-max, 240px);
  }
}



/* Better visual rhythm in coaching */
.coaching-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.coaching-flow > .content-card,
.coaching-flow > .aha-box {
  margin: 0;
}

.coaching-flow > .content-card:first-child,
.coaching-flow > .content-card:last-child,
.coaching-flow > .aha-box {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .coaching-flow {
    grid-template-columns: 1fr;
  }
}




/* Homepage rebuild */
.hero-home {
  padding-top: 88px;
}

.hero-content-home {
  max-width: 620px;
}

.hero-support {
  max-width: 560px;
  font-size: 1.04rem;
}

.hero-visual-home {
  display: grid;
  gap: 14px;
}

.hero-badge-stack {
  max-width: 300px;
}

.hero-mini-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-mini-facts span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #efe2d4;
  color: #7d6d5c;
  font-size: 0.88rem;
  font-weight: 700;
}

.intro-band {
  padding-top: 34px;
}

.intro-panel,
.statement-panel,
.grand-cta-panel {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid #ede0d3;
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.intro-panel {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.intro-panel h2,
.statement-panel h2,
.grand-cta-panel h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.intro-panel p,
.statement-panel p,
.grand-cta-panel p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.04rem;
}

.pillars-grid,
.feature-links-grid,
.editorial-grid,
.gallery-strip {
  display: grid;
  gap: 20px;
}

.pillars-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pillar-card {
  background: #fff;
  border: 1px solid #efe2d5;
  border-radius: 22px;
  padding: 26px 22px;
  box-shadow: var(--shadow-soft);
}

.pillar-card h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.home-about-grid,
.split-story-grid,
.escape-grid,
.page-intro-grid,
.image-text-grid,
.visual-break-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.home-about-media {
  grid-template-columns: 1fr;
  gap: 14px;
}

.about-collage-home {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-collage-home img {
  height: 190px;
}

.home-about-content {
  max-width: 620px;
}

.statement-section .container,
.grand-cta-section .container {
  max-width: 1040px;
}

.statement-panel,
.grand-cta-panel {
  text-align: center;
}

.split-panel {
  padding: 28px;
  border-radius: 24px;
}

.split-panel h3 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.escape-section {
  background: linear-gradient(180deg, rgba(244, 238, 231, 0.72), rgba(249, 246, 243, 1));
}

.escape-visual img,
.image-panel img,
.visual-break-card img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.escape-visual {
  min-height: 470px;
}

.escape-content h2,
.visual-break-copy h2,
.editorial-card h2,
.feature-link-card h2 {
  font-size: clamp(2.1rem, 3.4vw, 3.3rem);
}

.grand-cta-panel .btn {
  margin-top: 10px;
}

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

.feature-link-card {
  min-height: 360px;
  padding: 36px;
  border-radius: 30px;
  border: 1px solid #eadcca;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(245, 237, 228, 0.96));
}

.feature-link-feng {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(240, 236, 231, 0.96));
}

.feature-link-card p {
  margin-bottom: 18px;
}

/* Service pages */
.service-page-hero {
  background: linear-gradient(180deg, #f5efe7 0%, #f8f5f2 100%);
}

.service-page-hero-feng {
  background: linear-gradient(180deg, #efe7de 0%, #f8f5f2 100%);
}

.page-intro-grid {
  align-items: end;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.intro-side-card {
  align-self: stretch;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #ebddcf;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-side-card strong {
  color: var(--heading);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 10px;
}

.editorial-section {
  background: transparent;
}

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

.editorial-card {
  height: 100%;
  padding: 28px;
  border-radius: 24px;
}

.soft-accent-card {
  background: linear-gradient(180deg, #fffdfb 0%, #f8f1e8 100%);
}

.narrow-container {
  max-width: 860px;
}

.image-text-grid,
.image-text-grid-reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.image-text-grid-reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.image-panel {
  min-height: 420px;
}

.tall-image-panel {
  min-height: 520px;
}

.visual-break-section {
  background: linear-gradient(180deg, rgba(247, 241, 235, 0.78), rgba(248, 245, 242, 1));
}

.visual-break-card {
  min-height: 420px;
}

.visual-break-copy {
  padding: 10px 12px;
}

.visual-gallery-section {
  padding-top: 28px;
}

.gallery-strip {
  grid-template-columns: 1fr 1fr 0.95fr;
  align-items: stretch;
}

.gallery-card {
  min-height: 280px;
}

.gallery-copy-card {
  background: #fff;
  border: 1px solid #ebddcf;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.gallery-copy-card h3 {
  font-size: 2rem;
}

.escape-section-page .escape-content,
.escape-section-page .escape-visual {
  align-self: stretch;
}

.escape-section-page .escape-content {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid #eadfd1;
  border-radius: 24px;
  padding: 30px;
}

/* Footer improvements */
.footer-inner {
  padding: 24px 0;
}

.footer-nav,
.footer-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-nav a {
  text-decoration: none;
  color: #6a7d95;
  font-weight: 700;
}

.footer-meta {
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .pillars-grid,
  .feature-links-grid,
  .home-about-grid,
  .split-story-grid,
  .escape-grid,
  .page-intro-grid,
  .image-text-grid,
  .image-text-grid-reverse,
  .visual-break-grid,
  .editorial-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .footer-inner,
  .footer-nav,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .hero-mini-facts {
    gap: 8px;
  }

  .intro-panel,
  .statement-panel,
  .grand-cta-panel,
  .feature-link-card,
  .editorial-card,
  .split-panel,
  .escape-section-page .escape-content,
  .intro-side-card {
    padding: 24px;
  }

  .escape-visual,
  .image-panel,
  .tall-image-panel,
  .visual-break-card,
  .gallery-card {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .hero-home {
    padding-top: 64px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge-stack {
    position: static;
    max-width: none;
  }

  .hero-mini-facts span {
    width: 100%;
    justify-content: center;
  }

  .page-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Landing-page flow refinements */
.hero-home .hero-content h1 {
  max-width: 560px;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.start-here-panel,
.final-soft-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 235, 224, 0.96));
  border: 1px solid #e8d9ca;
  border-radius: 30px;
  padding: 38px;
  box-shadow: var(--shadow-soft);
}

.start-here-panel h2,
.final-soft-cta-panel h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
}

.start-here-panel p:last-of-type,
.final-soft-cta-panel p {
  margin-bottom: 0;
}

.start-here-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.section-intro-copy {
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-early {
  padding-top: 88px;
}

.escape-grid-emphasis .escape-content {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid #eadfd2;
  border-radius: 24px;
  padding: 30px;
}

.choose-start-head {
  max-width: 860px;
}

.choose-start-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.start-option-card {
  background: #fff;
  border: 1px solid #ebddd0;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.start-option-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: #f4eadf;
  color: var(--accent-dark);
  font-weight: 800;
}

.start-option-card h3 {
  font-size: 2rem;
}

.final-soft-cta-section {
  padding-top: 36px;
  padding-bottom: 82px;
}

.final-soft-cta-panel {
  grid-template-columns: 1fr;
  text-align: center;
}

.final-soft-cta-panel p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1100px) {
  .choose-start-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .start-here-panel,
  .final-soft-cta-panel,
  .escape-grid-emphasis .escape-content,
  .start-option-card {
    padding: 24px;
  }

  .start-here-panel {
    grid-template-columns: 1fr;
  }

  .start-here-actions {
    justify-content: flex-start;
  }
}

/* Stronger visual direction */
:root {
  --shadow-bold: 0 24px 56px rgba(58, 41, 25, 0.14);
  --shadow-card-lift: 0 18px 40px rgba(63, 45, 29, 0.11);
}

.hero-home {
  position: relative;
  padding-top: 108px;
  padding-bottom: 124px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.78) 0, rgba(255, 255, 255, 0) 28%),
    radial-gradient(circle at 84% 28%, rgba(209, 160, 63, 0.18) 0, rgba(209, 160, 63, 0) 24%),
    linear-gradient(115deg, rgba(247, 242, 237, 0.9) 0%, rgba(244, 236, 229, 0.76) 45%, rgba(238, 229, 222, 0.82) 100%),
    url('https://images.unsplash.com/photo-1528715471579-d1bcf0ba5e83?auto=format&fit=crop&w=2100&q=80') center/cover no-repeat;
}

.hero-home::before,
.hero-home::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero-home::before {
  width: 280px;
  height: 280px;
  right: 10%;
  top: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0) 72%);
}

.hero-home::after {
  left: 4%;
  bottom: 34px;
  width: 180px;
  height: 180px;
  border-radius: 28px;
  border: 1px solid rgba(183, 134, 46, 0.18);
  transform: rotate(-10deg);
}

.hero-home .hero-wrap,
.hero-home .container,
.pillars-section .container,
.feature-links-section .container,
.escape-section .container,
.services .container,
.choose-start-section .container,
.testimonials .container,
.statement-section .container,
.page-hero .container,
.editorial-section .container,
.visual-break-section .container,
.visual-gallery-section .container {
  position: relative;
  z-index: 2;
}

.hero-content-home {
  padding: 42px 42px 34px;
  border-radius: 34px;
  background: rgba(255, 252, 248, 0.62);
  border: 1px solid rgba(237, 222, 205, 0.9);
  box-shadow: var(--shadow-bold);
  backdrop-filter: blur(8px);
}

.hero-home .section-label {
  margin-bottom: 18px;
}

.hero-home .hero-content h1 {
  max-width: 520px;
  font-size: clamp(3.4rem, 5.4vw, 5.8rem);
  line-height: 0.95;
  margin-bottom: 20px;
}

.hero-subline {
  font-size: 1.18rem;
  color: #4f617d;
  max-width: 480px;
}

.hero-support {
  font-size: 1.08rem;
  max-width: 500px;
}

.hero-actions {
  margin-top: 22px;
}

.hero-visual-home {
  position: relative;
  padding: 0 0 0 38px;
}

.hero-visual-home::before {
  content: "";
  position: absolute;
  inset: 42px 0 42px 78px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(236, 226, 214, 0.95), rgba(245, 237, 229, 0.48));
}

.hero-visual-home img {
  position: relative;
  z-index: 2;
  height: 640px;
  border-radius: 34px;
  box-shadow: var(--shadow-bold);
}

.hero-badge-stack {
  left: 0;
  bottom: 120px;
  max-width: 320px;
  padding: 18px 20px;
  border-radius: 22px;
}

.hero-mini-facts {
  position: absolute;
  right: 8px;
  bottom: 18px;
  z-index: 3;
  max-width: 280px;
  justify-content: flex-end;
}

.hero-mini-facts span {
  box-shadow: 0 10px 24px rgba(53, 37, 21, 0.1);
}

.intro-band {
  padding-top: 18px;
}

.intro-panel,
.statement-panel,
.grand-cta-panel,
.start-here-panel,
.final-soft-cta-panel,
.intro-side-card,
.gallery-copy-card,
.escape-grid-emphasis .escape-content,
.escape-section-page .escape-content,
.contact-form-wrap,
.contact-cta {
  box-shadow: var(--shadow-bold);
}

.pillars-section {
  background: linear-gradient(180deg, rgba(245, 237, 229, 0.72), rgba(248, 245, 242, 0.96));
}

.pillars-grid {
  gap: 24px;
}

.pillar-card {
  position: relative;
  min-height: 250px;
  padding: 30px 24px 26px;
  border-radius: 26px;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.pillar-card::before {
  content: "0" counter(pillar-index);
}

.pillars-grid {
  counter-reset: pillar-index;
}

.pillar-card::before {
  counter-increment: pillar-index;
  position: absolute;
  right: 20px;
  top: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  line-height: 1;
  color: rgba(36, 61, 102, 0.08);
}

.pillar-card::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(209, 160, 63, 0));
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-lift);
  border-color: rgba(209, 160, 63, 0.35);
}

.home-about-grid {
  gap: 44px;
  align-items: stretch;
}

.home-about-media {
  padding: 26px;
  border-radius: 34px;
  background: linear-gradient(160deg, rgba(255,255,255,0.92), rgba(241, 232, 223, 0.76));
  box-shadow: var(--shadow-bold);
}

.home-about-content {
  align-self: center;
}

.about-stats {
  margin-top: 28px;
  padding-top: 22px;
  gap: 16px;
}

.about-stats div {
  padding: 18px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(245,237,228,0.82));
  border: 1px solid rgba(232, 220, 206, 0.86);
}

.statement-section {
  padding-top: 74px;
  padding-bottom: 88px;
}

.statement-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 44px;
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(244, 235, 225, 0.9));
}

.statement-panel h2,
.grand-cta-panel h2 {
  line-height: 0.98;
}

.split-story-grid {
  gap: 26px;
}

.split-panel {
  padding: 34px 32px;
  box-shadow: var(--shadow-soft);
}

.split-story-grid .split-panel:first-child {
  background: linear-gradient(180deg, #fffdfb 0%, #f5ede4 100%);
}

.split-story-grid .split-panel:last-child {
  background: linear-gradient(180deg, #fff 0%, #f3eee9 100%);
}

.testimonials {
  background: linear-gradient(180deg, rgba(246, 237, 232, 0.86), rgba(248, 245, 242, 0.96));
}

.testimonials-grid {
  gap: 22px;
}

.testimonial-card {
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-lift);
}

.big-quote {
  margin-top: 60px;
  padding: 0 16px;
}

.escape-section {
  background:
    linear-gradient(135deg, rgba(243, 234, 225, 0.92), rgba(249, 246, 243, 0.98));
}

.escape-grid-emphasis {
  gap: 0;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-bold);
  background: linear-gradient(90deg, rgba(243, 234, 225, 0.88), rgba(255,255,255,0.78));
}

.escape-grid-emphasis .escape-visual {
  min-height: 560px;
}

.escape-grid-emphasis .escape-visual img {
  border-radius: 0;
}

.escape-grid-emphasis .escape-content {
  border: 0;
  border-radius: 0;
  min-height: 100%;
  padding: 48px 44px;
  background: linear-gradient(180deg, rgba(255,255,255,0.68), rgba(247, 239, 231, 0.92));
}

.services {
  background: linear-gradient(180deg, rgba(247, 241, 236, 0.9), rgba(241, 233, 225, 0.96));
}

.services-grid {
  gap: 24px;
}

.service-card {
  min-height: 292px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-lift);
  border-color: rgba(209, 160, 63, 0.32);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
}

.choose-start-section {
  background: linear-gradient(180deg, rgba(248, 245, 242, 0.96), rgba(245, 238, 231, 0.82));
}

.choose-start-grid {
  gap: 24px;
}

.start-option-card {
  min-height: 268px;
  padding: 32px 30px;
  border-radius: 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.start-option-card:nth-child(2) {
  transform: translateY(22px);
}

.start-option-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-lift);
}

.feature-links-section {
  padding-top: 72px;
  padding-bottom: 96px;
}

.feature-links-grid {
  gap: 28px;
}

.feature-link-card {
  position: relative;
  min-height: 460px;
  padding: 44px;
  overflow: hidden;
  justify-content: flex-end;
}

.feature-link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33, 30, 26, 0.04), rgba(33, 30, 26, 0.46));
}

.feature-link-card > * {
  position: relative;
  z-index: 2;
}

.feature-link-coaching {
  color: #f8f2ea;
  border-color: rgba(255,255,255,0.14);
  background:
    linear-gradient(180deg, rgba(29, 40, 60, 0.12), rgba(29, 40, 60, 0.74)),
    url('/public/images/feature-koucing.png') center/cover no-repeat;
}

.feature-link-feng {
  color: #fff6ef;
  border-color: rgba(255,255,255,0.16);
  background:
    linear-gradient(180deg, rgba(78, 58, 39, 0.08), rgba(78, 58, 39, 0.7)),
    url('/public/images/feature-feng-shui.png') center/cover no-repeat;
}

.feature-link-card h2,
.feature-link-card p,
.feature-link-card .section-label {
  color: inherit;
}

.feature-link-card .section-label {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
}

.blog-preview {
  background: linear-gradient(180deg, rgba(248, 245, 242, 0.92), rgba(244, 237, 230, 0.8));
}

.post-card {
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-lift);
}

.contact {
  background: linear-gradient(180deg, rgba(243, 234, 225, 0.62), rgba(248,245,242,0.98));
}

.contact-grid {
  gap: 34px;
}

.contact-form-wrap {
  padding: 32px;
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 30%, rgba(209, 160, 63, 0.18) 0%, rgba(209, 160, 63, 0) 24%),
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.6) 0%, rgba(255,255,255,0) 26%);
  pointer-events: none;
}

.service-page-hero,
.service-page-hero-feng {
  padding-top: 104px;
  padding-bottom: 84px;
}

.intro-side-card {
  min-height: 100%;
  padding: 36px;
}

.editorial-card,
.gallery-copy-card,
.visual-break-copy {
  box-shadow: var(--shadow-soft);
}

.visual-break-copy {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(245,237,229,0.82));
}

.aha-box.large {
  padding: 22px 24px;
  border-left-width: 4px;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 1100px) {
  .hero-content-home {
    padding: 34px;
  }

  .hero-visual-home {
    padding-left: 0;
  }

  .hero-visual-home::before {
    inset: 26px 28px 0 28px;
  }

  .start-option-card:nth-child(2) {
    transform: none;
  }

  .feature-link-card {
    min-height: 380px;
  }
}

@media (max-width: 900px) {
  .hero-home {
    padding-top: 84px;
    padding-bottom: 92px;
  }

  .hero-content-home,
  .statement-panel,
  .feature-link-card,
  .escape-grid-emphasis .escape-content,
  .visual-break-copy,
  .contact-form-wrap,
  .intro-side-card {
    padding: 24px;
  }

  .hero-home .hero-content h1 {
    font-size: clamp(3rem, 12vw, 4.6rem);
  }

  .hero-visual-home img {
    height: 520px;
  }

  .hero-badge-stack {
    bottom: 92px;
  }

  .hero-mini-facts {
    position: static;
    max-width: none;
    justify-content: flex-start;
    margin-top: 8px;
  }

  .escape-grid-emphasis {
    border-radius: 28px;
  }

  .escape-grid-emphasis .escape-visual img {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .hero-content-home {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-visual-home::before,
  .hero-home::after {
    display: none;
  }

  .hero-visual-home img {
    height: 430px;
    border-radius: 24px;
  }

  .hero-badge-stack {
    max-width: none;
    border-radius: 18px;
  }

  .feature-link-card {
    min-height: 320px;
    padding: 24px;
  }

  .escape-grid-emphasis .escape-content {
    padding: 24px;
  }
}

/* Final contrast and hero stability pass */
:root {
  --bg: #f5efe9;
  --bg-soft: #ecdfd3;
  --bg-powder: #efe0d8;
  --line: #dfcfbf;
  --text: #695c52;
  --heading: #163255;
}

body {
  background:
    linear-gradient(
      180deg,
      #f7f1eb 0%,
      #f1e7dd 26%,
      #e8dbcf 58%,
      #f6efe8 100%
    );
}

.site-header {
  background: rgba(247, 241, 235, 0.98);
  border-bottom-color: #ddcdbd;
}

.hero-home {
  padding-top: 96px;
  padding-bottom: 110px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.72) 0, rgba(255, 255, 255, 0) 24%),
    radial-gradient(circle at 84% 28%, rgba(209, 160, 63, 0.24) 0, rgba(209, 160, 63, 0) 22%),
    linear-gradient(120deg, rgba(246, 239, 232, 0.97) 0%, rgba(231, 219, 209, 0.9) 46%, rgba(222, 208, 196, 0.92) 100%),
    url('https://images.unsplash.com/photo-1528715471579-d1bcf0ba5e83?auto=format&fit=crop&w=2100&q=80') center/cover no-repeat;
}

.hero-home::after {
  display: none;
}

.hero-wrap {
  gap: 52px;
  align-items: center;
}

.hero-content-home {
  padding: 46px 44px 38px;
  background: rgba(255, 251, 247, 0.82);
  border: 1px solid rgba(223, 206, 191, 0.96);
}

.hero-home .hero-content h1 {
  max-width: 540px;
  font-size: clamp(3.3rem, 5.6vw, 5.5rem);
}

.hero-subline {
  color: #355172;
}

.hero-visual-home {
  padding: 0;
  gap: 18px;
}

.hero-visual-home::before {
  inset: auto;
  top: 34px;
  left: 34px;
  right: 34px;
  bottom: 94px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(224, 209, 196, 0.95), rgba(242, 232, 223, 0.68));
}

.hero-visual-frame {
  position: relative;
  z-index: 2;
  padding: 0 0 0 28px;
}

.hero-visual-frame img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-bold);
}

.hero-side-panels {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 14px;
  align-items: stretch;
}

.hero-badge-stack {
  position: static;
  max-width: none;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 251, 247, 0.94);
  border: 1px solid #e0d1c2;
  box-shadow: var(--shadow-soft);
}

.hero-badge-stack span {
  display: block;
  margin-top: 4px;
}

.hero-mini-facts {
  position: static;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-mini-facts span {
  justify-content: flex-start;
  min-height: 52px;
  background: rgba(249, 244, 239, 0.96);
  border: 1px solid #e0d1c2;
  color: #68574b;
}

.intro-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(241, 231, 221, 0.96));
  border-color: #dfcfbf;
}

.pillars-section {
  background: linear-gradient(180deg, #eaded4 0%, #f6efe8 100%);
}

.statement-section,
.blog-preview {
  background: linear-gradient(180deg, #f3e8df 0%, #e7d9cc 100%);
}

.statement-panel,
.grand-cta-panel,
.start-here-panel,
.final-soft-cta-panel {
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(236, 223, 210, 0.96));
  border-color: #d9c6b4;
}

.escape-section,
.services,
.choose-start-section,
.contact,
.visual-break-section {
  background: linear-gradient(180deg, #eaded2 0%, #f6efe8 100%);
}

.service-card,
.start-option-card,
.post-card,
.testimonial-card,
.editorial-card,
.gallery-copy-card,
.contact-form-wrap,
.contact-cta,
.visual-break-copy {
  border-color: #dfcdbc;
}

.feature-link-card::before {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.06), rgba(18, 18, 18, 0.62));
}

.page-hero {
  background: linear-gradient(180deg, #eadfd3 0%, #f6efe8 100%);
  border-bottom-color: #ddcdbd;
}

@media (max-width: 1100px) {
  .hero-visual-frame {
    padding-left: 0;
  }

  .hero-visual-home::before {
    left: 24px;
    right: 24px;
    bottom: 140px;
  }
}

@media (max-width: 900px) {
  .hero-home {
    padding-top: 78px;
    padding-bottom: 82px;
  }

  .hero-content-home {
    padding: 28px 24px;
  }

  .hero-visual-home::before {
    left: 18px;
    right: 18px;
    top: 22px;
    bottom: 160px;
  }

  .hero-visual-frame img {
    height: 520px;
  }

  .hero-side-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-home {
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .hero-home::before,
  .hero-visual-home::before {
    display: none;
  }

  .hero-content-home {
    padding: 24px 20px;
  }

  .hero-visual-frame img {
    height: 420px;
    border-radius: 24px;
  }

  .hero-badge-stack,
  .hero-mini-facts span {
    border-radius: 18px;
  }
}

/* Final contrast and hero stability pass */
:root {
  --bg: #f5efe9;
  --bg-soft: #ecdfd3;
  --bg-powder: #efe0d8;
  --line: #dfcfbf;
  --text: #695c52;
  --heading: #163255;
}

body {
  background:
    linear-gradient(
      180deg,
      #f7f1eb 0%,
      #f1e7dd 26%,
      #e8dbcf 58%,
      #f6efe8 100%
    );
}

.site-header {
  background: rgba(247, 241, 235, 0.98);
  border-bottom-color: #ddcdbd;
}

.hero-home {
  padding-top: 96px;
  padding-bottom: 110px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.72) 0, rgba(255, 255, 255, 0) 24%),
    radial-gradient(circle at 84% 28%, rgba(209, 160, 63, 0.24) 0, rgba(209, 160, 63, 0) 22%),
    linear-gradient(120deg, rgba(246, 239, 232, 0.97) 0%, rgba(231, 219, 209, 0.9) 46%, rgba(222, 208, 196, 0.92) 100%),
    url('https://images.unsplash.com/photo-1528715471579-d1bcf0ba5e83?auto=format&fit=crop&w=2100&q=80') center/cover no-repeat;
}

.hero-home::after {
  display: none;
}

.hero-wrap {
  gap: 52px;
  align-items: center;
}

.hero-content-home {
  padding: 46px 44px 38px;
  background: rgba(255, 251, 247, 0.82);
  border: 1px solid rgba(223, 206, 191, 0.96);
}

.hero-home .hero-content h1 {
  max-width: 540px;
  font-size: clamp(3.3rem, 5.6vw, 5.5rem);
}

.hero-subline {
  color: #355172;
}

.hero-visual-home {
  padding: 0;
  gap: 18px;
}

.hero-visual-home::before {
  inset: auto;
  top: 34px;
  left: 34px;
  right: 34px;
  bottom: 94px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(224, 209, 196, 0.95), rgba(242, 232, 223, 0.68));
}

.hero-visual-frame {
  position: relative;
  z-index: 2;
  padding: 0 0 0 28px;
}

.hero-visual-frame img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-bold);
}

.hero-side-panels {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 14px;
  align-items: stretch;
}

.hero-badge-stack {
  position: static;
  max-width: none;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 251, 247, 0.94);
  border: 1px solid #e0d1c2;
  box-shadow: var(--shadow-soft);
}

.hero-badge-stack span {
  display: block;
  margin-top: 4px;
}

.hero-mini-facts {
  position: static;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-mini-facts span {
  justify-content: flex-start;
  min-height: 52px;
  background: rgba(249, 244, 239, 0.96);
  border: 1px solid #e0d1c2;
  color: #68574b;
}

.intro-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(241, 231, 221, 0.96));
  border-color: #dfcfbf;
}

.pillars-section {
  background: linear-gradient(180deg, #eaded4 0%, #f6efe8 100%);
}

.statement-section,
.blog-preview {
  background: linear-gradient(180deg, #f3e8df 0%, #e7d9cc 100%);
}

.statement-panel,
.grand-cta-panel,
.start-here-panel,
.final-soft-cta-panel {
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(236, 223, 210, 0.96));
  border-color: #d9c6b4;
}

.escape-section,
.services,
.choose-start-section,
.contact,
.visual-break-section {
  background: linear-gradient(180deg, #eaded2 0%, #f6efe8 100%);
}

.service-card,
.start-option-card,
.post-card,
.testimonial-card,
.editorial-card,
.gallery-copy-card,
.contact-form-wrap,
.contact-cta,
.visual-break-copy {
  border-color: #dfcdbc;
}

.feature-link-card::before {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.06), rgba(18, 18, 18, 0.62));
}

.page-hero {
  background: linear-gradient(180deg, #eadfd3 0%, #f6efe8 100%);
  border-bottom-color: #ddcdbd;
}

@media (max-width: 1100px) {
  .hero-visual-frame {
    padding-left: 0;
  }

  .hero-visual-home::before {
    left: 24px;
    right: 24px;
    bottom: 140px;
  }
}

@media (max-width: 900px) {
  .hero-home {
    padding-top: 78px;
    padding-bottom: 82px;
  }

  .hero-content-home {
    padding: 28px 24px;
  }

  .hero-visual-home::before {
    left: 18px;
    right: 18px;
    top: 22px;
    bottom: 160px;
  }

  .hero-visual-frame img {
    height: 520px;
  }

  .hero-side-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-home {
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .hero-home::before,
  .hero-visual-home::before {
    display: none;
  }

  .hero-content-home {
    padding: 24px 20px;
  }

  .hero-visual-frame img {
    height: 420px;
    border-radius: 24px;
  }

  .hero-badge-stack,
  .hero-mini-facts span {
    border-radius: 18px;
  }
}

/* Solid sections, olive-gold accents, lotus pattern */
:root {
  --olive-gold: #a99661;
  --olive-gold-soft: #cab98b;
  --olive-ink: #6b6f57;
  --section-cream: #f6f1eb;
  --section-sand: #efe6dc;
  --section-blush: #f3ebe3;
  --section-warm: #ede2d7;
  --lotus-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%2398864a' stroke-opacity='.09' stroke-width='1.4'%3E%3Cpath d='M80 98c-10-8-18-20-18-32 11 4 18 15 18 32Z'/%3E%3Cpath d='M80 98c10-8 18-20 18-32-11 4-18 15-18 32Z'/%3E%3Cpath d='M80 98c-18-3-31-14-37-29 14 1 28 9 37 29Z'/%3E%3Cpath d='M80 98c18-3 31-14 37-29-14 1-28 9-37 29Z'/%3E%3Cpath d='M80 99c-3-17 0-33 10-46 5 13 3 29-10 46Z'/%3E%3Cpath d='M80 99c3-17 0-33-10-46-5 13-3 29 10 46Z'/%3E%3C/g%3E%3C/svg%3E");
}

body {
  background: #f5efe8;
}

.section {
  padding: 108px 0;
}

.section + .section {
  margin-top: 0;
  padding-top: 108px;
}

.section + .section::before,
.section::after {
  display: none;
}

.hero-home,
.page-hero,
.pillars-section,
.statement-section,
.escape-section,
.services,
.choose-start-section,
.blog-preview,
.contact,
.visual-break-section,
.visual-gallery-section,
.editorial-section,
.final-soft-cta-section {
  background-image: none;
}

.hero-home {
  background-color: #eee5db;
}

.intro-band,
.statement-section,
.blog-preview,
.final-soft-cta-section {
  background-color: var(--section-cream);
}

.pillars-section,
.visual-break-section,
.contact,
.editorial-section:nth-of-type(even) {
  background-color: var(--section-sand);
}

.services,
.choose-start-section,
.visual-gallery-section,
.page-hero,
.escape-section {
  background-color: var(--section-blush);
}

.start-here-section,
.story-fit-section,
.testimonials,
.editorial-section,
.grand-cta-section {
  background-color: var(--section-warm);
}

.site-header,
.intro-panel,
.statement-panel,
.start-here-panel,
.grand-cta-panel,
.contact-form-wrap,
.contact-cta,
.visual-break-copy,
.gallery-copy-card,
.editorial-card,
.split-panel,
.testimonial-card,
.post-card,
.service-card,
.start-option-card,
.pillar-card,
.final-soft-cta-panel {
  background-image: none;
}

.section-label {
  background: rgba(169, 150, 97, 0.1);
  color: var(--olive-gold);
}

.site-logo,
.btn-outline,
.text-link,
.hero-badge strong,
.about-stats strong,
.big-quote cite {
  color: var(--olive-gold);
}

.btn-primary {
  background: var(--olive-gold);
  box-shadow: 0 12px 26px rgba(169, 150, 97, 0.18);
}

.btn-primary:hover {
  background: #958458;
}

.btn-outline {
  border-color: rgba(169, 150, 97, 0.48);
}

.main-nav a {
  color: #68746f;
}

.hero-subline,
.contact-form label {
  color: var(--olive-ink);
}

.feature-link-card .section-label {
  background: rgba(255,255,255,0.18);
  color: #fff4dc;
}

.pillars-section,
.blog-preview,
.contact,
.final-soft-cta-section {
  position: relative;
}

.pillars-section::before,
.blog-preview::before,
.contact::before,
.final-soft-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image: var(--lotus-pattern);
  background-size: 220px 220px;
  background-position: top left, bottom right;
}

.final-soft-cta-section {
  padding-top: 76px;
  padding-bottom: 108px;
}

.final-soft-cta-panel {
  position: relative;
  max-width: 1380px;
  margin: 0 auto;
  padding: 48px 48px 44px;
  text-align: center;
  border-radius: 38px;
  border: 1px solid #dccdbd;
  background: #fcf8f4;
  box-shadow: 0 26px 60px rgba(87, 65, 40, 0.12);
}

.final-soft-cta-panel::before {
  content: "";
  display: block;
  width: 100%;
  height: 46px;
  margin: 0 auto 34px;
  border-radius: 999px;
  background: rgba(169, 150, 97, 0.1);
}

.final-soft-cta-panel .section-label {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 340px;
  padding: 0;
  background: transparent;
  border: 0;
  letter-spacing: 0.14em;
}

.final-soft-cta-panel h2 {
  max-width: 1180px;
  margin: 0 auto 28px;
  font-size: clamp(3.1rem, 5vw, 5rem);
  line-height: 0.98;
}

.final-soft-cta-panel p {
  max-width: 860px;
  margin: 0 auto 34px;
  font-size: 1.08rem;
}

.final-soft-cta-panel .btn {
  width: 100%;
  justify-content: center;
  padding: 22px 28px;
  border-radius: 22px;
  font-size: 1rem;
  background: transparent;
  color: var(--olive-gold);
  border: 1px solid rgba(169, 150, 97, 0.42);
  box-shadow: none;
}

.final-soft-cta-panel .btn:hover {
  background: rgba(169, 150, 97, 0.045);
}

@media (max-width: 900px) {
  .section,
  .section + .section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .final-soft-cta-panel {
    padding: 40px 24px 24px;
    border-radius: 28px;
  }

  .final-soft-cta-panel::before {
    height: 50px;
    margin-bottom: 26px;
  }

  .final-soft-cta-panel .section-label {
    top: 18px;
    min-width: 0;
    width: calc(100% - 64px);
    font-size: 0.73rem;
  }

  .final-soft-cta-panel h2 {
    font-size: clamp(2.3rem, 8vw, 3.8rem);
  }
}

@media (max-width: 640px) {
  .final-soft-cta-section {
    padding-top: 58px;
    padding-bottom: 82px;
  }

  .final-soft-cta-panel {
    padding: 34px 18px 18px;
  }

  .final-soft-cta-panel::before {
    height: 30px;
    margin-bottom: 20px;
  }

  .final-soft-cta-panel .btn {
    padding: 18px 20px;
    border-radius: 18px;
  }
}




/* Remove white framing around photography */
.hero-visual-home::before {
  display: none;
}

.hero-visual-frame {
  padding: 0;
}

.hero-visual-frame img {
  border-radius: 28px;
}

.home-about-media {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-main-image {
  border-radius: 28px;
  box-shadow: var(--shadow-bold);
}

.about-collage-home {
  margin-top: 14px;
}

.about-collage-home img {
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 1100px) {
  .hero-visual-frame {
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .about-main-image,
  .hero-visual-frame img {
    border-radius: 22px;
  }

  .about-collage-home img {
    border-radius: 16px;
  }
}

/* Make Cesta z města image fill the full panel */
.escape-grid-emphasis .escape-visual {
  display: flex;
  min-height: 100%;
  align-self: stretch;
}

.escape-grid-emphasis .escape-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  flex: 1 1 auto;
  object-fit: cover;
  display: block;
}

/* Symmetry for homepage feature cards */
.feature-links-grid {
  align-items: stretch;
}

.feature-link-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: stretch;
}

.feature-link-card h2 {
  min-height: 3.2em;
  margin-bottom: 18px;
}

.feature-link-card p {
  margin-bottom: 24px;
}

.feature-link-card .btn {
  align-self: end;
  width: 100%;
}

@media (max-width: 900px) {
  .feature-link-card h2 {
    min-height: 0;
  }
}

/* Signature logo in header and footer */
.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.site-logo-header {
  flex: 0 0 auto;
  margin-right: auto;
}

.site-logo-header img {
  height: 64px;
}

.site-logo-footer {
  margin-bottom: 8px;
}

.site-logo-footer img {
  height: 64px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .site-logo-header img {
    height: 56px;
  }
}

@media (max-width: 640px) {
  .site-logo-header img {
    height: 48px;
  }

  .site-logo-footer img {
    height: 50px;
  }
}






/* Better heading contrast for Feng Shui feature card */
.feature-link-feng h2 {
  color: #fffaf2;
  text-shadow: 0 2px 18px rgba(42, 28, 17, 0.34);
}


/* Pillar index readability fix */
.pillar-card {
  padding-top: 42px;
}

.pillar-card::before {
  right: 22px;
  top: 26px;
  font-size: 2.9rem;
  color: #E0ABB3;
}

.pillar-card h3 {
  max-width: calc(100% - 88px);
}



/* Tighter section spacing */
.section {
  padding: 60px 0;
}

.section + .section {
  padding-top: 60px;
}

.hero-home {
  padding-top: 72px;
  padding-bottom: 68px;
}

.statement-section {
  padding-top: 46px;
  padding-bottom: 52px;
}

.feature-links-section,
.final-soft-cta-section {
  padding-top: 44px;
  padding-bottom: 58px;
}

.final-soft-cta-section {
  padding-top: 42px;
}

@media (max-width: 900px) {
  .section,
  .section + .section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .hero-home {
    padding-top: 58px;
    padding-bottom: 52px;
  }

  .feature-links-section,
  .final-soft-cta-section {
    padding-top: 34px;
    padding-bottom: 42px;
  }
}

@media (max-width: 640px) {
  .section,
  .section + .section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .hero-home {
    padding-top: 48px;
    padding-bottom: 42px;
  }
}

/* Unify aha-box with card style */
.aha-box,
.aha-box.large {
  border-left: 0;
  border-radius: 24px;
  border: 1px solid #dfcdbc;
  background: #fcf8f4;
  box-shadow: var(--shadow-soft);
  padding: 28px 30px;
}

.aha-box strong,
.aha-box.large strong {
  color: var(--olive-gold);
  font-size: 1.05rem;
}

/* Wider desktop layout */
.container {
  width: min(1360px, calc(100% - 40px));
}

.statement-section .container,
.grand-cta-section .container,
.narrow-container {
  max-width: 1180px;
}

.final-soft-cta-panel {
  max-width: 1480px;
}

@media (max-width: 640px) {
  .container {
    width: min(1360px, calc(100% - 24px));
  }
}

/* Final hero refinement */
.hero-home {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.62) 0%, rgba(255,255,255,0) 24%),
    radial-gradient(circle at 88% 20%, rgba(224,171,179,0.18) 0%, rgba(224,171,179,0) 20%),
    #eee4d9;
}

.hero-wrap {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.hero-content-home {
  max-width: 560px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-home .section-label {
  margin-bottom: 20px;
}

.hero-home .hero-content h1 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: clamp(3.8rem, 6vw, 6.1rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero-subline {
  max-width: 520px;
  margin-bottom: 18px;
  font-size: 1.2rem;
  line-height: 1.55;
  color: #627264;
  font-weight: 700;
}

.hero-support {
  max-width: 520px;
  margin-bottom: 26px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #706257;
}

.hero-actions {
  gap: 14px;
  margin-top: 0;
}

.hero-actions .btn {
  min-width: 188px;
  padding: 15px 24px;
  border-radius: 18px;
}

.hero-visual-home {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 660px;
}

.hero-visual-home::after {
  content: "";
  position: absolute;
  inset: 26px -24px -26px 48px;
  border-radius: 42px;
  background: rgba(255, 248, 241, 0.58);
  border: 1px solid rgba(221, 205, 189, 0.72);
  z-index: 1;
}

.hero-visual-frame {
  position: relative;
  z-index: 2;
  padding: 0;
}

.hero-visual-frame img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center top;
  border-radius: 40px;
  box-shadow: 0 28px 54px rgba(94, 74, 55, 0.14);
}

@media (max-width: 1100px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-content-home {
    max-width: 100%;
  }

  .hero-visual-home {
    justify-self: center;
    max-width: 620px;
  }
}

@media (max-width: 900px) {
  .hero-home {
    padding-top: 52px;
    padding-bottom: 44px;
  }

  .hero-home .hero-content h1 {
    font-size: clamp(3rem, 11vw, 4.8rem);
  }

  .hero-subline,
  .hero-support {
    max-width: 100%;
  }

  .hero-visual-home::after {
    inset: 18px -12px -18px 18px;
    border-radius: 30px;
  }

  .hero-visual-frame img {
    height: 560px;
    border-radius: 30px;
  }
}

@media (max-width: 640px) {
  .hero-home {
    padding-top: 42px;
    padding-bottom: 32px;
  }

  .hero-wrap {
    gap: 26px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-visual-home::after {
    display: none;
  }

  .hero-visual-frame img {
    height: 440px;
    border-radius: 24px;
  }
}

/* Hero headline safety fix */
.hero-wrap {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 48px;
}

.hero-content-home {
  min-width: 0;
  max-width: 620px;
}

.hero-home .hero-content h1 {
  max-width: 620px;
  font-size: clamp(3.3rem, 5.5vw, 5.4rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero-subline,
.hero-support {
  max-width: 560px;
}

@media (max-width: 1100px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-home .hero-content h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-home .hero-content h1 {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
    line-height: 1.04;
  }
}

/* Hero image natural framing fix */
.hero-visual-home {
  max-width: 600px;
}

.hero-visual-home::after {
  inset: 20px -18px -18px 28px;
  border-radius: 34px;
}

.hero-visual-frame img {
  height: 610px;
  object-position: center 22%;
  border-radius: 34px;
}

@media (max-width: 900px) {
  .hero-visual-home {
    max-width: 560px;
  }

  .hero-visual-home::after {
    inset: 14px -10px -14px 14px;
    border-radius: 26px;
  }

  .hero-visual-frame img {
    height: 500px;
    object-position: center 18%;
    border-radius: 28px;
  }
}

@media (max-width: 640px) {
  .hero-visual-home {
    max-width: 100%;
  }

  .hero-visual-frame img {
    height: 420px;
    object-position: center 18%;
    border-radius: 22px;
  }
}

/* Hero photo quality and clean background fix */
.hero-visual-home::after {
  display: none;
}

.hero-visual-home {
  max-width: 520px;
}

.hero-visual-frame img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  border-radius: 28px;
}

@media (max-width: 900px) {
  .hero-visual-home {
    max-width: 480px;
  }

  .hero-visual-frame img {
    height: auto;
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .hero-visual-home {
    max-width: 100%;
  }

  .hero-visual-frame img {
    border-radius: 20px;
  }
}

/* Coaching page image-text balance */
.image-text-grid {
  align-items: stretch;
}

.image-text-grid .image-panel,
.image-text-grid .coaching-feng-card {
  min-height: 100%;
}

.image-text-grid .image-panel img {
  height: 100%;
  min-height: 100%;
}

.coaching-feng-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Feng Shui balance block sizing */
.feng-balance-grid {
  align-items: center;
}

.feng-balance-image {
  min-height: 0;
  max-width: 760px;
}

.feng-balance-image img {
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feng-balance-copy {
  align-self: center;
}

@media (max-width: 980px) {
  .feng-balance-image {
    max-width: none;
  }
}