:root {
  --bg: #fbf7ef;
  --bg-soft: #f3ebdf;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --text: #1e2927;
  --muted: #64716d;
  --accent: #123f3c;
  --accent-2: #8b5e4b;
  --line: #e2d8cb;
  --shadow: 0 18px 50px rgba(32, 40, 37, .08);
  --shadow-strong: 0 26px 70px rgba(18, 63, 60, .16);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 12% 14%, rgba(139, 94, 75, .16), transparent 28%),
    radial-gradient(circle at 80% 8%, rgba(18, 63, 60, .12), transparent 30%),
    linear-gradient(180deg, #fbf7ef 0%, #f7efe4 52%, #fbf7ef 100%);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(226, 216, 203, .72);
  background: rgba(251, 247, 239, .78);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: var(--container);
  min-height: 78px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-weight: 760;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  padding: 6px;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  font-size: 14px;
  color: #334541;
}

.desktop-nav a,
.shop-link,
.mobile-nav a,
.site-footer a {
  text-decoration: none;
}

.desktop-nav a {
  padding: 10px 0;
}

.desktop-nav a:hover,
.shop-link:hover,
.site-footer a:hover {
  color: var(--accent-2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shop-link {
  font-size: 14px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(18, 63, 60, .18);
}

.button-secondary {
  background: var(--surface-strong);
  color: var(--accent);
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--accent);
}

.button-light {
  border-color: white;
  background: white;
  color: var(--accent);
}

.button-small {
  min-height: 40px;
  padding: 10px 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--accent);
}

.mobile-nav {
  padding: 10px 24px 24px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.mobile-nav a {
  display: block;
  padding: 13px 0;
  color: var(--text);
}

.mobile-shop {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 18px;
  margin-top: 10px;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .78fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  max-width: var(--container);
  position: relative;
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 24px 44px;
}

.hero::after {
  position: absolute;
  right: 19%;
  bottom: 6%;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(18, 63, 60, .14);
  border-radius: 999px;
  content: "";
  pointer-events: none;
  animation: slow-spin 18s linear infinite;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(40px, 5.4vw, 66px);
  line-height: 1.04;
  font-weight: 740;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: balance;
}

.hero p {
  max-width: 760px;
  margin: 26px 0 0;
  color: #45534f;
  font-size: 19px;
  line-height: 1.75;
}

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

.hero-visual {
  position: relative;
  min-height: 540px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 253, 248, .94) 0%, rgba(239, 225, 209, .96) 100%),
    radial-gradient(circle at 48% 44%, rgba(255,255,255,.85), transparent 42%);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  animation: float-in 900ms cubic-bezier(.2, .8, .2, 1) both;
}

.hero-visual img {
  position: absolute;
  inset: 7% auto auto 9%;
  width: 72%;
  max-height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(42, 52, 47, .16)) saturate(.96);
  animation: body-float 6s ease-in-out infinite;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(18, 63, 60, .16);
  border-radius: 999px;
  pointer-events: none;
}

.visual-orbit-one {
  inset: 12% 14% 16% 10%;
  animation: slow-spin 24s linear infinite;
}

.visual-orbit-two {
  inset: 23% 6% 24% 24%;
  animation: slow-spin 32s linear infinite reverse;
}

.pulse-dot {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(139, 94, 75, .32);
  animation: pulse 2.4s ease-out infinite;
}

.pulse-dot-one {
  top: 28%;
  right: 24%;
}

.pulse-dot-two {
  left: 18%;
  bottom: 24%;
  animation-delay: .8s;
}

.hero-mark {
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.audience-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: var(--container);
  margin: -18px auto 42px;
  padding: 0 24px;
}

.audience-band a {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--accent);
  box-shadow: 0 12px 36px rgba(32, 40, 37, .06);
  text-decoration: none;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.audience-band a::after {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(18, 63, 60, .08);
  content: "";
  transition: transform .24s ease, background .24s ease;
}

.audience-band a:hover {
  border-color: rgba(18, 63, 60, .32);
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px);
}

.audience-band a:hover::after {
  background: rgba(18, 63, 60, .14);
  transform: scale(1.5);
}

.audience-band span {
  display: block;
  font-size: 22px;
  font-weight: 780;
  line-height: 1.15;
}

.page-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 74px 24px 46px;
}

.breadcrumb {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent-2);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.content-band,
.product-band {
  padding: 28px 24px 76px;
}

.home-section,
.reflection-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 76px 24px;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading p {
  max-width: 760px;
  color: #40504c;
  font-size: 18px;
}

.text-link {
  color: var(--accent);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.large-link {
  display: inline-block;
  margin-top: 26px;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.area-card,
.condition-card,
.testimonial-card {
  border: 1px solid rgba(226, 216, 203, .9);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .82);
  box-shadow: 0 16px 45px rgba(32, 40, 37, .06);
  backdrop-filter: blur(10px);
}

.area-card {
  position: relative;
  display: grid;
  min-height: 150px;
  padding: 20px;
  color: var(--accent);
  text-decoration: none;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.area-card::before {
  position: absolute;
  inset: auto -30px -38px auto;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(18, 63, 60, .14);
  border-radius: 999px;
  content: "";
  transition: transform .24s ease;
}

.area-card:hover,
.condition-card:hover {
  background: #fff;
  box-shadow: var(--shadow-strong);
  transform: translateY(-5px);
}

.area-card:hover::before {
  transform: scale(1.45);
}

.card-index {
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 800;
}

.area-card strong {
  align-self: end;
  font-size: 20px;
  line-height: 1.2;
}

.condition-section {
  border-top: 1px solid rgba(226, 216, 203, .8);
}

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

.condition-card {
  display: grid;
  gap: 14px;
  min-height: 260px;
  padding: 24px;
  color: var(--text);
  text-decoration: none;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.condition-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #efe6da;
  color: var(--accent);
  font-weight: 800;
}

.condition-card h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.15;
}

.condition-card p {
  margin: 0;
  color: #50605c;
}

.testimonials-section {
  position: relative;
}

.testimonials-section::before {
  position: absolute;
  inset: 36px 24px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(139, 94, 75, .12), transparent 68%);
  content: "";
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 16px;
}

.testimonial-card {
  position: relative;
  padding: 26px;
}

.quote-mark {
  color: rgba(139, 94, 75, .24);
  font-size: 74px;
  line-height: .7;
}

.testimonial-card p {
  margin: 10px 0 20px;
  color: #40504c;
}

.testimonial-card strong {
  color: var(--accent);
}

.mentor-section {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.mentor-media {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 52% 45%, rgba(18, 63, 60, .14), transparent 46%),
    #efe6da;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.mentor-media img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 84%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 24px 34px rgba(42, 52, 47, .2));
  animation: centered-float 7s ease-in-out infinite;
}

.mentor-copy h2,
.reflection-section h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
}

.mentor-copy .lead {
  color: var(--accent-2);
  font-size: 20px;
  font-weight: 750;
}

.mentor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.mentor-stats span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.reflection-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(18, 63, 60, .96), rgba(24, 84, 78, .88)),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,.18), transparent 36%);
  color: white;
  box-shadow: var(--shadow-strong);
}

.reflection-section p {
  max-width: 760px;
  color: rgba(255, 255, 255, .8);
  font-size: 18px;
}

.reveal {
  animation: float-in 720ms cubic-bezier(.2, .8, .2, 1) both;
}

.area-card,
.condition-card,
.testimonial-card {
  animation: float-in 680ms cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: var(--delay, 0ms);
}

.content-shell,
.product-band > * {
  max-width: var(--container);
  margin: 0 auto;
}

.wp-content {
  color: #273532;
}

.home-content .wp-content > h1:first-of-type,
.home-content .wp-content > h1:first-of-type + p {
  display: none;
}

.wp-content h1,
.wp-content h2,
.wp-content h3,
.wp-content h4 {
  color: var(--text);
  line-height: 1.12;
  letter-spacing: 0;
}

.wp-content h2 {
  margin: 0 0 22px;
  font-size: clamp(30px, 4.4vw, 52px);
}

.wp-content h3 {
  margin: 28px 0 12px;
  font-size: clamp(22px, 2.6vw, 30px);
}

.wp-content p,
.wp-content li {
  max-width: 900px;
  color: #40504c;
  font-size: 17px;
}

.wp-content a {
  color: var(--accent);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.wp-content .enhanced-section {
  margin: 30px 0;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(226, 216, 203, .85);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .72);
}

.wp-content .enhanced-section:nth-child(even) {
  background: var(--surface-strong);
}

.wp-content .link-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.wp-content .link-card-grid h2,
.wp-content .link-card-grid > p:not(:has(a)) {
  grid-column: 1 / -1;
}

.wp-content .mini-card {
  display: flex;
  align-items: center;
  min-height: 88px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 10px 28px rgba(31, 39, 36, .05);
  text-decoration: none;
}

.wp-content blockquote,
.wp-content .elementor-testimonial-content {
  margin: 20px 0;
  padding: 24px;
  border-left: 4px solid var(--accent-2);
  border-radius: var(--radius);
  background: #f8f0e6;
  color: #394743;
}

.wp-content img {
  border-radius: var(--radius);
}

.wp-content figure {
  margin: 24px 0;
}

.product-band {
  background: #efe6da;
}

.shop-catalog {
  background: transparent;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
}

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

.product-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--text);
  text-decoration: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 6px;
  background: #f7f0e8;
}

.product-card strong {
  font-size: 15px;
  line-height: 1.35;
}

.product-card span {
  color: var(--accent);
  font-weight: 800;
}

.product-hero {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 74px 24px 52px;
}

.product-image {
  display: grid;
  place-items: center;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .82);
  box-shadow: var(--shadow-strong);
}

.product-image img {
  max-height: 360px;
  object-fit: contain;
}

.product-summary h1 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
}

.product-price {
  color: var(--accent);
  font-size: 24px;
  font-weight: 850;
}

.product-short {
  margin-bottom: 26px;
}

.site-footer {
  background: var(--accent);
  color: white;
}

.footer-cta,
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 50px 24px;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.footer-cta h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr .85fr;
  gap: 42px;
}

.footer-brand {
  color: white;
}

.footer-brand img {
  background: rgba(255, 255, 255, .14);
}

.site-footer p {
  max-width: 520px;
  color: rgba(255, 255, 255, .75);
}

.site-footer h5 {
  margin: 0 0 16px;
  font-size: 15px;
  text-transform: none;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, .78);
}

.site-footer a:hover {
  color: white;
}

@media (max-width: 1040px) {
  .desktop-nav,
  .shop-link {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-visual {
    min-height: 420px;
  }

  .audience-band,
  .product-grid,
  .area-grid,
  .condition-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid,
  .mentor-section,
  .product-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: 68px;
    padding: 0 16px;
  }

  .brand span {
    font-size: 15px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .button-small {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 13px;
  }

  .hero,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 330px;
    font-size: 24px;
    line-height: 1.08;
    word-break: break-word;
  }

  .hero-copy,
  .hero-copy p {
    max-width: 330px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-actions,
  .page-hero,
  .footer-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 330px;
  }

  .audience-band,
  .wp-content .link-card-grid,
  .area-grid,
  .condition-grid,
  .testimonial-grid,
  .mentor-stats,
  .product-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .reflection-section {
    align-items: stretch;
    flex-direction: column;
  }

  .audience-band {
    margin-top: 0;
    padding: 0 16px;
  }

  .content-band,
  .product-band,
  .home-section,
  .reflection-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .area-card {
    min-height: 118px;
  }

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

  .mentor-media {
    min-height: 300px;
  }

  .product-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .product-image {
    min-height: 300px;
  }

  .wp-content .enhanced-section {
    padding: 24px 18px;
  }

  .footer-cta,
  .footer-grid {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes body-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes centered-float {
  0%, 100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, calc(-50% - 10px));
  }
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(139, 94, 75, .34);
  }
  72%, 100% {
    box-shadow: 0 0 0 24px rgba(139, 94, 75, 0);
  }
}

@media (max-width: 370px) {
  .brand span {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 23px;
  }
}
