@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap");

:root {
  --ink: #2b1f1a;
  --ink-soft: #4b3a31;
  --stone: #f4efe9;
  --bone: #fffdf9;
  --accent: #a8b845;
  --line: #d8cec3;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% -10%, #fff6df 0%, transparent 45%),
    linear-gradient(180deg, #f8f4ef 0%, #f3ece4 100%);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(250, 246, 239, 0.86);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-links .nav-auth-item {
  margin-left: auto;
  list-style: none;
}

.nav-links .nav-auth-item #navbar-auth-button {
  margin: 0;
  background: #e8d8c8;
  border-color: #7a5a42;
  color: #4b3a31;
}

.nav-links .nav-auth-item #navbar-auth-button:hover {
  background: #e1cfbc;
}

.nav-links a {
  font-size: 0.96rem;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 2px;
  border-bottom: 0;
  transition: color 0.2s ease;
}

.nav-links a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: #5a3e2b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: #4b3a31;
  border-bottom: 0;
  background: transparent;
}

.nav-links a.active::before,
.nav-links a:hover::before {
  transform: scaleX(1);
}

.nav .btn {
  margin-top: 0;
  font-size: 0.9rem;
  padding: 8px 16px;
}

.nav .btn.is-active {
  background: #2b1f1a;
  color: #fff;
  border-color: #2b1f1a;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.nav-dropdown > a::after {
  content: "\25BE";
  font-size: 0.85rem;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
  margin-top: 1px;
}

.dropdown-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  margin: 0;
  padding: 8px 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdf9;
  box-shadow: 0 10px 24px rgba(43, 31, 26, 0.12);
  z-index: 30;
  display: none;
}

.dropdown-menu a {
  display: block;
  padding: 8px 14px;
  font-size: 0.92rem;
}

.dropdown-menu a.active,
.dropdown-menu a:hover {
  border-bottom: 0;
  color: #4b3a31;
  background: #e8d8c8;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

.nav-dropdown.is-open .dropdown-menu {
  display: block;
}

.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after {
  transform: rotate(180deg);
}

.nav-dropdown.is-open > a::after {
  transform: rotate(180deg);
}

/* ── Burger button (hidden on desktop, visible on mobile) ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  -webkit-tap-highlight-color: transparent;
  order: 2;
}

.burger .line1,
.burger .line2,
.burger .line3 {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink-soft);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.toggle .line1 {
  transform: translateY(7px) rotate(45deg);
}

.burger.toggle .line2 {
  opacity: 0;
  transform: scaleX(0);
}

.burger.toggle .line3 {
  transform: translateY(-7px) rotate(-45deg);
}

@keyframes navLinkFade {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero {
  padding: 92px 0 64px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  background-color: #f7f2ea;
  background-image: radial-gradient(120% 90% at 8% 12%, rgba(185, 168, 76, 0.24) 0%, rgba(185, 168, 76, 0.14) 26%, transparent 58%),
    radial-gradient(95% 80% at 92% 18%, rgba(185, 168, 76, 0.18) 0%, rgba(185, 168, 76, 0.1) 24%, transparent 55%),
    radial-gradient(110% 85% at 50% 100%, rgba(185, 168, 76, 0.16) 0%, rgba(185, 168, 76, 0.08) 30%, transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(247, 242, 234, 0.45) 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
}

.about-hero::before,
.about-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-hero::before {
  width: 420px;
  height: 420px;
  right: -170px;
  top: -130px;
  border: 1px solid rgba(168, 184, 69, 0.34);
  box-shadow: -70px 85px 0 0 rgba(168, 184, 69, 0.12), -130px 170px 0 0 rgba(168, 184, 69, 0.08);
}

.about-hero::after {
  width: 340px;
  height: 340px;
  left: -140px;
  bottom: -170px;
  border: 1px solid rgba(168, 184, 69, 0.3);
  box-shadow: 95px -35px 0 0 rgba(168, 184, 69, 0.1);
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.services-page {
  background:
    radial-gradient(140% 95% at 8% -10%, rgba(185, 168, 76, 0.22) 0%, rgba(185, 168, 76, 0.09) 28%, transparent 60%),
    radial-gradient(110% 90% at 90% 6%, rgba(185, 168, 76, 0.14) 0%, rgba(185, 168, 76, 0.06) 24%, transparent 56%),
    radial-gradient(130% 92% at 52% 112%, rgba(116, 101, 86, 0.1) 0%, rgba(116, 101, 86, 0.04) 32%, transparent 62%),
    linear-gradient(180deg, #fbf6ef 0%, #f3ece4 100%);
}

.services-hero {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(120% 90% at 8% 12%, rgba(185, 168, 76, 0.22) 0%, rgba(185, 168, 76, 0.12) 30%, transparent 58%),
    radial-gradient(95% 82% at 92% 18%, rgba(185, 168, 76, 0.15) 0%, rgba(185, 168, 76, 0.08) 24%, transparent 55%),
    radial-gradient(120% 88% at 48% 102%, rgba(120, 105, 88, 0.1) 0%, rgba(120, 105, 88, 0.05) 30%, transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.54) 0%, rgba(247, 242, 234, 0.56) 100%);
}

.services-hero::before,
.services-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.services-hero::before {
  width: 130%;
  height: 220px;
  left: -14%;
  top: -92px;
  border-radius: 0 0 58% 42% / 0 0 70% 52%;
  background:
    repeating-radial-gradient(ellipse at 50% 120%, rgba(168, 184, 69, 0.12) 0 12px, transparent 12px 34px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, transparent 100%);
  opacity: 0.8;
}

.services-hero::after {
  width: 124%;
  height: 200px;
  right: -12%;
  bottom: -98px;
  border-radius: 48% 52% 0 0 / 58% 62% 0 0;
  background:
    repeating-radial-gradient(ellipse at 50% -20%, rgba(120, 105, 88, 0.11) 0 11px, transparent 11px 33px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.14) 0%, transparent 100%);
  opacity: 0.72;
}

.services-hero .container {
  position: relative;
  z-index: 1;
}

.services-page .service-card .service-icon {
  margin-left: auto;
  margin-right: auto;
}

.contact-page {
  background:
    radial-gradient(135% 95% at 12% -10%, rgba(185, 168, 76, 0.2) 0%, rgba(185, 168, 76, 0.08) 30%, transparent 60%),
    radial-gradient(118% 88% at 88% 6%, rgba(157, 140, 118, 0.14) 0%, rgba(157, 140, 118, 0.05) 24%, transparent 56%),
    radial-gradient(130% 90% at 50% 112%, rgba(107, 92, 76, 0.1) 0%, rgba(107, 92, 76, 0.04) 32%, transparent 62%),
    linear-gradient(180deg, #faf5ed 0%, #f2ebe2 100%);
}

.contact-hero {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(118% 88% at 10% 12%, rgba(185, 168, 76, 0.2) 0%, rgba(185, 168, 76, 0.1) 30%, transparent 58%),
    radial-gradient(92% 80% at 92% 18%, rgba(157, 140, 118, 0.14) 0%, rgba(157, 140, 118, 0.06) 24%, transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.56) 0%, rgba(247, 242, 234, 0.54) 100%);
}

.contact-hero::before,
.contact-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.contact-hero::before {
  width: 132%;
  height: 240px;
  left: -16%;
  top: -110px;
  border-radius: 0 0 60% 40% / 0 0 68% 48%;
  background:
    repeating-radial-gradient(ellipse at 50% 120%, rgba(185, 168, 76, 0.11) 0 10px, transparent 10px 30px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, transparent 100%);
  opacity: 0.82;
}

.contact-hero::after {
  width: 128%;
  height: 220px;
  right: -14%;
  bottom: -110px;
  border-radius: 46% 54% 0 0 / 60% 64% 0 0;
  background:
    repeating-radial-gradient(ellipse at 50% -24%, rgba(107, 92, 76, 0.11) 0 10px, transparent 10px 31px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.13) 0%, transparent 100%);
  opacity: 0.74;
}

.contact-hero .container {
  position: relative;
  z-index: 1;
}

.leadership-page {
  background:
    radial-gradient(130% 92% at -4% 12%, rgba(168, 184, 69, 0.22) 0%, rgba(168, 184, 69, 0.09) 32%, transparent 62%),
    radial-gradient(118% 88% at 106% 18%, rgba(88, 78, 67, 0.14) 0%, rgba(88, 78, 67, 0.05) 24%, transparent 56%),
    linear-gradient(160deg, #fbf6ef 0%, #f4eee5 52%, #f0e8de 100%);
}

.leadership-hero {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(128% 96% at 6% 10%, rgba(168, 184, 69, 0.2) 0%, rgba(168, 184, 69, 0.1) 32%, transparent 60%),
    radial-gradient(100% 84% at 96% 14%, rgba(97, 83, 69, 0.13) 0%, rgba(97, 83, 69, 0.05) 24%, transparent 56%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.58) 0%, rgba(247, 242, 234, 0.5) 52%, rgba(241, 233, 221, 0.56) 100%);
}

.leadership-hero::before,
.leadership-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.leadership-hero::before {
  width: 138%;
  height: 250px;
  left: -20%;
  top: -118px;
  border-radius: 0 0 66% 34% / 0 0 72% 50%;
  background:
    repeating-linear-gradient(165deg, rgba(168, 184, 69, 0.12) 0 2px, transparent 2px 22px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, transparent 100%);
  opacity: 0.72;
  transform: rotate(-2deg);
}

.leadership-hero::after {
  width: 134%;
  height: 228px;
  right: -18%;
  bottom: -120px;
  border-radius: 54% 46% 0 0 / 62% 64% 0 0;
  background:
    repeating-linear-gradient(-165deg, rgba(97, 83, 69, 0.1) 0 2px, transparent 2px 24px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
  opacity: 0.64;
  transform: rotate(2deg);
}

.leadership-hero .container {
  position: relative;
  z-index: 1;
}

.hero-home {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
}

.hero-home::before,
.hero-home::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-home::before {
  width: 420px;
  height: 420px;
  right: -180px;
  top: -120px;
  border: 1px solid rgba(168, 184, 69, 0.28);
  box-shadow: -65px 80px 0 0 rgba(168, 184, 69, 0.08), -120px 160px 0 0 rgba(168, 184, 69, 0.06);
}

.hero-home::after {
  width: 340px;
  height: 340px;
  right: -110px;
  bottom: -160px;
  border: 1px solid rgba(168, 184, 69, 0.24);
  box-shadow: -100px -40px 0 0 rgba(168, 184, 69, 0.08);
}

.hero-center {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
}

.hero-logo {
  width: min(140px, 36vw);
  display: block;
  margin: 0 auto 12px;
}

.hero-company {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  letter-spacing: 0.11em;
  font-weight: 600;
  font-size: clamp(3.2rem, 5.4vw, 4.1rem);
  line-height: 1;
  white-space: nowrap;
  color: #4b3a31;
}

.hero-company-sub {
  margin: 6px 0 34px;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  letter-spacing: 0.22em;
  font-size: clamp(0.62rem, 0.92vw, 0.82rem);
  line-height: 1;
  color: #9a8f85;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-company-sub::before,
.hero-company-sub::after {
  content: "";
  width: 38px;
  height: 1px;
  background: #c4b5a8;
  flex-shrink: 0;
}

.hero.hero-home h1 {
  font-size: clamp(2.45rem, 4vw, 3rem);
  font-weight: 500;
  color: #4e3a2f;
  margin-bottom: 15px;
  line-height: 1.26;
}

.hero.hero-home p {
  color: #6d6763;
  font-size: 1.05rem;
  margin: 0 auto;
  max-width: 720px;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  border-radius: 999px;
  min-width: 170px;
  text-align: center;
  padding: 11px 20px;
}

.hero-home .btn.secondary {
  background: transparent;
  border-color: #d7cb91;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.kicker {
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(2.45rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 62ch;
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(250, 244, 236, 0.94));
  box-shadow: 0 15px 35px rgba(43, 31, 26, 0.08);
  animation: riseIn 0.7s ease-out;
}

.executive-hero,
.org-advisory-hero,
.team-hero,
.speaking-hero,
.result-hero,
.error-hero {
  position: relative;
  overflow: hidden;
}

.executive-hero,
.org-advisory-hero,
.team-hero,
.speaking-hero,
.result-hero,
.error-hero {
  isolation: isolate;
}

.executive-hero::before,
.executive-hero::after,
.org-advisory-hero::before,
.org-advisory-hero::after,
.team-hero::before,
.team-hero::after,
.speaking-hero::before,
.speaking-hero::after,
.result-hero::before,
.result-hero::after,
.error-hero::before,
.error-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.executive-hero {
  background:
    radial-gradient(120% 95% at 12% 12%, rgba(142, 123, 88, 0.28) 0%, rgba(142, 123, 88, 0.12) 34%, transparent 62%),
    radial-gradient(90% 80% at 88% 16%, rgba(92, 123, 131, 0.22) 0%, rgba(92, 123, 131, 0.09) 24%, transparent 58%),
    linear-gradient(135deg, #f6efe4 0%, #efe6db 52%, #f7f4ee 100%);
}

.executive-hero::before {
  inset: auto -8% 12% auto;
  width: 320px;
  height: 320px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(92, 123, 131, 0.2), rgba(92, 123, 131, 0.02));
  transform: rotate(18deg);
}

.executive-hero::after {
  left: -6%;
  top: 18%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(142, 123, 88, 0.3);
  box-shadow: 68px 54px 0 0 rgba(142, 123, 88, 0.12);
}

.org-advisory-hero {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.08) 100%),
    radial-gradient(110% 92% at 10% 16%, rgba(112, 133, 108, 0.26) 0%, rgba(112, 133, 108, 0.12) 28%, transparent 60%),
    linear-gradient(135deg, #eef1ea 0%, #f4efe6 48%, #ece7dd 100%);
}

.org-advisory-hero::before {
  left: -12%;
  top: -18%;
  width: 68%;
  height: 58%;
  border-radius: 50% 50% 44% 56% / 58% 42% 58% 42%;
  background: rgba(112, 133, 108, 0.12);
}

.org-advisory-hero::after {
  right: -8%;
  bottom: -12%;
  width: 44%;
  height: 52%;
  background: repeating-linear-gradient(135deg, rgba(148, 130, 105, 0.16) 0 16px, rgba(148, 130, 105, 0.02) 16px 34px);
  border-radius: 28px;
  transform: rotate(-10deg);
}

.team-hero {
  background:
    radial-gradient(100% 88% at 15% 15%, rgba(170, 142, 107, 0.24) 0%, rgba(170, 142, 107, 0.11) 28%, transparent 58%),
    radial-gradient(88% 76% at 85% 18%, rgba(88, 123, 114, 0.22) 0%, rgba(88, 123, 114, 0.08) 24%, transparent 56%),
    linear-gradient(135deg, #f7f2ea 0%, #efe5d9 50%, #f5f0e8 100%);
}

.team-hero::before {
  inset: auto auto -12% -6%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 123, 114, 0.18) 0%, rgba(88, 123, 114, 0.05) 48%, transparent 68%);
}

.team-hero::after {
  right: 5%;
  top: 16%;
  width: 180px;
  height: 180px;
  border-radius: 26px;
  border: 1px solid rgba(170, 142, 107, 0.28);
  box-shadow: -34px 34px 0 0 rgba(170, 142, 107, 0.12), -68px 68px 0 0 rgba(170, 142, 107, 0.07);
  transform: rotate(14deg);
}

.speaking-hero {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.1) 100%),
    radial-gradient(115% 92% at 10% 20%, rgba(136, 104, 83, 0.24) 0%, rgba(136, 104, 83, 0.1) 26%, transparent 58%),
    linear-gradient(135deg, #f4ece3 0%, #efe5da 44%, #f7f3ed 100%);
}

.speaking-hero::before {
  left: -10%;
  bottom: -18%;
  width: 72%;
  height: 54%;
  border-radius: 60% 40% 0 0 / 66% 50% 0 0;
  background: repeating-radial-gradient(circle at 50% 100%, rgba(136, 104, 83, 0.12) 0 10px, transparent 10px 28px);
}

.speaking-hero::after {
  right: 8%;
  top: 12%;
  width: 220px;
  height: 220px;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  background: linear-gradient(135deg, rgba(193, 166, 112, 0.22), rgba(193, 166, 112, 0.04));
}

.result-hero {
  background:
    radial-gradient(110% 92% at 14% 14%, rgba(115, 148, 104, 0.28) 0%, rgba(115, 148, 104, 0.12) 30%, transparent 60%),
    linear-gradient(135deg, #edf5ea 0%, #f5efe4 48%, #f8f5ef 100%);
}

.result-hero::before {
  right: -6%;
  top: -12%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115, 148, 104, 0.22) 0%, rgba(115, 148, 104, 0.06) 52%, transparent 70%);
}

.result-hero::after {
  left: 8%;
  bottom: 14%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(115, 148, 104, 0.28);
  border-radius: 24px;
  transform: rotate(-12deg);
}

.error-hero {
  background:
    radial-gradient(112% 94% at 12% 12%, rgba(168, 104, 90, 0.24) 0%, rgba(168, 104, 90, 0.1) 28%, transparent 58%),
    radial-gradient(96% 80% at 88% 18%, rgba(117, 99, 129, 0.18) 0%, rgba(117, 99, 129, 0.08) 24%, transparent 56%),
    linear-gradient(135deg, #f7efeb 0%, #f2e8e3 46%, #f8f4ef 100%);
}

.error-hero::before {
  right: 3%;
  bottom: -8%;
  width: 240px;
  height: 240px;
  border-radius: 28px;
  background: repeating-linear-gradient(135deg, rgba(168, 104, 90, 0.14) 0 14px, rgba(168, 104, 90, 0.03) 14px 30px);
  transform: rotate(10deg);
}

.error-hero::after {
  left: -4%;
  top: 18%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(117, 99, 129, 0.24);
  box-shadow: 56px -34px 0 0 rgba(117, 99, 129, 0.09);
}

.executive-hero .container,
.org-advisory-hero .container,
.team-hero .container,
.speaking-hero .container,
.result-hero .container,
.error-hero .container {
  position: relative;
  z-index: 1;
}

section {
  padding: 68px 0;
}

.panel {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 22px rgba(45, 32, 25, 0.05);
}

.core-strength-card .core-strength-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, #fbf5ec, #f2e8dd);
  border: 1px solid #d9cab8;
  color: #8e7a2d;
}

.core-strength-card .core-strength-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f5eee4, #fdf9f2);
  border: 1px solid #ded2c5;
  color: #6a5648;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #5a4538;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.service-link .arrow {
  width: 16px;
  height: 10px;
  position: relative;
  display: inline-block;
  transition: transform 0.22s ease;
}

.service-link .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  border-top: 1.8px solid #7a6655;
  transform: translateY(-50%);
}

.service-link .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1.8px solid #7a6655;
  border-right: 1.8px solid #7a6655;
  transform: translateY(-50%) rotate(45deg);
}

.service-link:hover {
  border-color: #c5b28f;
}

.service-link:hover .arrow {
  transform: translateX(4px);
}

.methodology-panel {
  padding-top: 30px;
}

.model-title {
  margin-bottom: 10px;
}

.model-flow {
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #7c695b;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.model-flow span {
  position: relative;
  padding-right: 18px;
}

.model-flow span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  border-top: 1.5px solid #b9a892;
  transform: translateY(-50%) rotate(28deg);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.model-step {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(249, 243, 236, 0.78));
  border: 1px solid #e0d5c9;
  border-radius: 14px;
  padding: 18px;
}

.step-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-weight: 700;
  color: #5e4a3d;
  background: #f2e9de;
  border: 1px solid #d9cab8;
}

.model-step h3 {
  margin-bottom: 8px;
}

.model-step p {
  margin: 0;
}

/* Transformation Model Section */
.transformation-model-section {
  padding-top: 48px;
  padding-bottom: 48px;
  background: linear-gradient(180deg, #fafaf7 0%, #f8f4ef 100%);
}

.transformation-model-wrap {
  max-width: 1200px;
}

/* Services Overview Section */
.services-overview-section {
  background: var(--cream, #fdf9f2);
}

/* Sectors Section */
.sectors-section {
  background-color: #f5efe6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0 40 L40 0 L80 40 L40 80 Z' fill='none' stroke='%23c8b89a' stroke-width='0.5' opacity='0.35'/%3E%3Ccircle cx='40' cy='40' r='18' fill='none' stroke='%23c8b89a' stroke-width='0.5' opacity='0.25'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  position: relative;
}

.sectors-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.8rem;
  font-size: 1.75rem;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.sector-tile {
  background: #ffffff;
  border: 1px solid #e8ddd3;
  border-radius: 14px;
  padding: 48px 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: center;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  box-shadow: 0 4px 14px rgba(45, 32, 25, 0.05);
  min-height: 200px;
}

.sector-tile-featured {
  grid-column: 1 / -1;
  align-items: flex-start;
  text-align: left;
  min-height: 0;
  padding: 34px 30px;
}

.sector-tile:hover {
  box-shadow: 0 8px 28px rgba(45, 32, 25, 0.1);
  transform: translateY(-3px);
}

.sector-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b9a84c;
}

.sector-icon svg {
  width: 54px;
  height: 54px;
  fill: currentColor;
}

.sector-label {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink, #2b1f1a);
  line-height: 1.3;
  width: 100%;
}

.sector-tile-featured .sector-icon {
  margin-bottom: 2px;
}

.sector-tile-featured .sector-label {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.sector-detail {
  width: 100%;
  color: #4f3f35;
  text-align: left;
}

.sector-detail p {
  margin: 0 0 12px;
  line-height: 1.65;
}

.sector-detail h4 {
  margin: 16px 0 8px;
  font-size: 1.25rem;
  color: #2b1f1a;
}

.sector-list {
  margin: 0 0 6px;
  padding-left: 18px;
}

.sector-list li {
  margin: 0 0 8px;
  line-height: 1.6;
}

.sector-link {
  margin-top: auto;
  display: inline-block;
  color: #b9a84c;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.2s ease, letter-spacing 0.2s ease;
}

.sector-tile-featured .sector-link {
  margin-top: 12px;
}

.sector-link:hover {
  color: #8b7355;
  letter-spacing: 0.04em;
}

.sectors-facilitator {
  text-align: center;
  max-width: 900px;
  margin: 2.8rem auto 0;
  font-size: 1.3rem;
  color: #5c493e;
  line-height: 1.7;
}

.founder-section {
  background: linear-gradient(180deg, #fbf8f3 0%, #f4ede4 100%);
}

.about-infographic-section {
  background: #ffffff;
  padding: 18px 0 30px;
}

.about-infographic-wrap {
  display: flex;
  justify-content: center;
}

.about-infographic-image {
  width: min(980px, 100%);
  height: auto;
  display: block;
}

.founder-section-title {
  text-align: center;
  font-size: clamp(2rem, 3.1vw, 2.6rem);
  margin: 0 0 2rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: stretch;
}

.founder-portrait,
.founder-card {
  margin: 0;
}

.founder-portrait {
  position: relative;
  padding: 12px;
  overflow: hidden;
  background: linear-gradient(160deg, #fffdf9, #f2e8dd);
}

.founder-portrait--ribbon {
  overflow: visible;
}

.founder-portrait--ribbon::before {
  content: "THE FOUNDER";
  position: absolute;
  left: 0;
  transform: translateX(-50%) rotate(180deg);
  top: 28px;
  bottom: 28px;
  width: 56px;
  background: #b3261e;
  color: #ffffff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 1.5px 1.5px 0 rgba(47, 12, 12, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  box-shadow: 0 4px 10px rgba(33, 10, 10, 0.24);
  z-index: 2;
}

.founder-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
}

.founder-card {
  padding: 44px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-card h2 {
  font-size: clamp(2.25rem, 3.4vw, 3rem);
  margin-bottom: 8px;
}

.founder-role {
  margin: 0 0 20px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #6a574b;
}

.founder-card p:not(.kicker):not(.founder-role) {
  max-width: 58ch;
  margin: 0 0 16px;
  color: #5c493e;
  font-size: 1.05rem;
  line-height: 1.72;
}

.founder-cta {
  margin-top: 10px;
  width: fit-content;
}

.roadmap-section {
  background: linear-gradient(180deg, #f8f3ec 0%, #f5eee4 100%);
}

.roadmap-wrap h2 {
  text-align: center;
  margin-bottom: 2.8rem;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
}

.roadmap-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  padding-top: 54px;
}

.roadmap-grid::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 20px;
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 185, 119, 0.25) 0%, rgba(201, 185, 119, 0.9) 18%, rgba(201, 185, 119, 0.9) 82%, rgba(201, 185, 119, 0.25) 100%);
}

.roadmap-card {
  position: relative;
  background: #fffdf9;
  border: 1px solid #e1d7ca;
  border-bottom: 3px solid #cdb667;
  border-radius: 10px;
  padding: 18px 0 18px;
  min-height: 306px;
  box-shadow: 0 4px 14px rgba(45, 32, 25, 0.04);
}

.roadmap-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -42px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fffdf9;
  border: 4px solid #c1ae62;
  transform: translateX(-50%);
  box-shadow: 0 0 0 6px rgba(245, 238, 228, 0.95);
  z-index: 2;
}

.roadmap-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -24px;
  width: 2px;
  height: 24px;
  background: #c1ae62;
  transform: translateX(-50%);
}

.roadmap-quarter {
  margin: 0 18px 16px;
  padding: 8px 14px;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #6a574b;
  border: 1px solid #e5ddd1;
  border-radius: 999px;
  background: #fbf8f2;
}

.roadmap-card h3 {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.35;
  min-height: 74px;
  margin: 18px 18px 14px;
  color: #5b4639;
}

.roadmap-list {
  margin: 0;
  padding: 0 22px;
  list-style: none;
}

.roadmap-list li {
  position: relative;
  padding: 3px 0 3px 12px;
  color: #6a574b;
  font-size: 0.98rem;
  line-height: 1.45;
}

.roadmap-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c1ae62;
  font-weight: 700;
}

.blog-section {
  background-color: #fbf8f4;
  background-image: radial-gradient(circle at 20px 20px, rgba(201, 185, 119, 0.11) 1.2px, transparent 1.3px),
    radial-gradient(circle at 0 0, rgba(201, 185, 119, 0.06) 1px, transparent 1.1px);
  background-size: 36px 36px, 36px 36px;
}

.blog-wrap {
  text-align: center;
}

.blog-wrap h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 3vw, 2.5rem);
}

.blog-intro {
  margin: 0 auto 2.2rem;
  max-width: 680px;
  color: #8a7a70;
  font-size: 1.02rem;
}

.blog-grid-home {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card-home {
  background: #fffdf9;
  border: 1px solid #e6ddd1;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  box-shadow: 0 4px 12px rgba(45, 32, 25, 0.035);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.blog-card-home:hover {
  box-shadow: 0 8px 24px rgba(45, 32, 25, 0.08);
  transform: translateY(-2px);
}

.blog-post-image {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.blog-card-content {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-post-category {
  display: inline-block;
  width: fit-content;
  padding: 4px 10px;
  background: #fef9f0;
  border: 1px solid #e5daca;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #8b7355;
  text-transform: capitalize;
}

.blog-card-home h3 {
  font-size: 1.15rem;
  line-height: 1.3;
  margin: 0;
  color: #2b1f1a;
  text-align: left;
}

.blog-post-meta {
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
  color: #9a8a7a;
  text-align: left;
  margin-bottom: 2px;
}

.meta-author,
.meta-date {
  display: inline;
}

.meta-author::after {
  content: " • ";
  margin: 0 4px;
}

.meta-date::after {
  content: "";
}

.blog-post-excerpt {
  margin: 0;
  color: #6f6158;
  font-size: 0.96rem;
  line-height: 1.5;
  text-align: left;
}

.blog-post-link {
  margin-top: auto;
  align-self: flex-start;
  color: #b9a84c;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s ease, letter-spacing 0.2s ease;
  text-decoration: none;
}

.blog-post-link:hover {
  color: #8b7355;
  letter-spacing: 0.03em;
}

.insights-page {
  background:
    radial-gradient(126% 90% at 8% -8%, rgba(185, 168, 76, 0.18) 0%, rgba(185, 168, 76, 0.07) 28%, transparent 58%),
    linear-gradient(180deg, #faf5ee 0%, #f3ece4 100%);
}

.insights-page.insights-articles-page {
  background: #ffffff;
}

.insights-page.insights-admin-page {
  background: #ffffff;
}

.insights-page.insights-post-page {
  background: #ffffff;
}

.insights-hero {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(118% 90% at 8% 12%, rgba(185, 168, 76, 0.18) 0%, rgba(185, 168, 76, 0.09) 30%, transparent 58%),
    radial-gradient(94% 82% at 92% 16%, rgba(130, 112, 96, 0.12) 0%, rgba(130, 112, 96, 0.05) 24%, transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0%, rgba(247, 242, 234, 0.5) 100%);
}

.insights-hero::before,
.insights-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.insights-hero::before {
  width: 130%;
  height: 180px;
  left: -14%;
  top: -84px;
  border-radius: 0 0 58% 42% / 0 0 68% 48%;
  background:
    repeating-radial-gradient(ellipse at 50% 120%, rgba(185, 168, 76, 0.09) 0 8px, transparent 8px 26px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, transparent 100%);
}

.insights-hero::after {
  width: 124%;
  height: 160px;
  right: -12%;
  bottom: -82px;
  border-radius: 48% 52% 0 0 / 58% 62% 0 0;
  background:
    repeating-radial-gradient(ellipse at 50% -20%, rgba(130, 112, 96, 0.1) 0 8px, transparent 8px 27px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.13) 0%, transparent 100%);
}

.insights-hero:not(.article-hero)::before,
.insights-hero:not(.article-hero)::after {
  display: block;
}

.insights-hero.article-hero::before,
.insights-hero.article-hero::after {
  display: none;
}

.insights-hero .container {
  position: relative;
  z-index: 1;
}

.insights-toolbar {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.admin-subnav {
  position: sticky;
  top: 74px;
  z-index: 900;
  background: linear-gradient(180deg, #f6efe4 0%, #efe3d2 100%);
  border-top: 1px solid rgba(137, 116, 96, 0.18);
  border-bottom: 1px solid rgba(137, 116, 96, 0.18);
}

.admin-subnav-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.admin-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(137, 116, 96, 0.2);
  color: #4d3c2f;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  font-size: 0.92rem;
}

.admin-nav-link.is-active {
  background: #6f5b49;
  border-color: #6f5b49;
  color: #fff;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid #eadfcf;
  color: #5c493e;
}

.admin-table th {
  color: #3e3028;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.admin-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.admin-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #8c6f53;
}

.admin-action-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-action-edit {
  color: #6f5b49;
}

.admin-action-disable {
  color: #b07e15;
}

.admin-action-send {
  color: #2f6f92;
}

.admin-action-send.is-sent {
  color: #1f7b63;
}

.admin-action-delete {
  color: #b14a3c;
}

.admin-action-btn:hover {
  opacity: 0.82;
}

/* Idle timeout warning overlay */
#idle-warning-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.idle-warning-box {
  background: #fff;
  border-radius: 10px;
  padding: 2rem 2.5rem;
  max-width: 380px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.idle-warning-msg {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #333;
  line-height: 1.5;
}

#idle-countdown {
  font-weight: 700;
  color: #c0392b;
}

.admin-action-btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.toast-root {
  position: fixed;
  top: 96px;
  right: 22px;
  z-index: 2200;
  display: grid;
  gap: 10px;
  max-width: min(380px, calc(100vw - 24px));
}

.toast {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #dfd1be;
  background: #fffdf9;
  color: #433126;
  box-shadow: 0 10px 24px rgba(32, 21, 16, 0.14);
  font-size: 0.92rem;
  line-height: 1.35;
  animation: toast-in 0.22s ease-out;
}

.toast-success {
  border-left: 4px solid #5c8a43;
}

.toast-error {
  border-left: 4px solid #b14a3c;
}

.toast-info {
  border-left: 4px solid #8a6c50;
}

.toast.is-leaving {
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateX(14px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ui-dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(31, 22, 18, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ui-dialog {
  width: min(460px, 100%);
  background: #fffdf9;
  border: 1px solid #dbcbb8;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(24, 16, 12, 0.22);
  padding: 20px;
}

.ui-dialog h3 {
  margin: 0 0 8px;
}

.ui-dialog p {
  margin: 0 0 14px;
  color: #5c493e;
}

.ui-dialog-form {
  display: grid;
  gap: 8px;
}

.ui-dialog-form label {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #5c493e;
}

.ui-dialog-form input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d8cec3;
  border-radius: 8px;
  font: inherit;
}

.ui-dialog-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.ui-dialog-actions .btn.btn-danger {
  background: #6f1f1f;
  border-color: #6f1f1f;
  color: #fff;
}

.ui-dialog-actions .btn.btn-danger:hover {
  background: #5a1818;
  border-color: #5a1818;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.dashboard-card {
  text-align: left;
}

.dashboard-card h3 {
  margin: 0;
  font-size: 1.9rem;
}

.dashboard-panel {
  margin-bottom: 20px;
}

.dashboard-focus-list {
  margin: 14px 0 0;
  padding-left: 20px;
}

.dashboard-focus-list li {
  margin-bottom: 8px;
  color: #5c493e;
}

.dashboard-demographics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.dashboard-demographics-grid h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #3e2d25;
}

.insights-empty {
  text-align: center;
}

.article-header {
  position: relative;
  z-index: 1;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.article-header h1 {
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.article-header .kicker {
  color: rgba(255, 255, 255, 0.95);
}

.article-header > p {
  color: rgba(255, 255, 255, 0.95);
}

.article-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.article-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 0;
}

.article-hero .container {
  position: relative;
  z-index: 1;
}

.article-shell {
  max-width: 860px;
}

.insight-post-page .container {
  width: min(1320px, 92vw);
}

.article-shell.article-shell-page {
  max-width: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
}

.article-main {
  min-width: 0;
}

.article-side {
  border-left: 1px solid #e4ddd2;
  padding-left: 16px;
}

.article-side h3 {
  margin: 0 0 16px;
  font-size: 1.3rem;
}

.article-side-list {
  display: grid;
  gap: 16px;
}

.article-side-item {
  padding-bottom: 14px;
  border-bottom: 1px solid #eee6da;
}

.article-side-item h4 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.article-side-meta {
  margin: 0 0 8px;
  color: #8a7a70;
  font-size: 0.88rem;
}

.article-side-snippet {
  margin: 0 0 8px;
  color: #5c493e;
  font-size: 0.95rem;
  line-height: 1.55;
}

.article-side-link {
  color: #8b7355;
  font-weight: 600;
  text-decoration: none;
}

.article-side-link:hover {
  color: #6e5a43;
}

.article-side-empty {
  color: #8a7a70;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
  color: #8a7a70;
  font-size: 0.95rem;
}

.article-engagement {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  position: relative;
}

.article-share-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 200;
  background: #fff;
  border: 1px solid #e4ddd5;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
  padding: 6px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.share-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 7px;
  text-decoration: none;
  color: #3d2f25;
  font-size: 0.92rem;
  font-weight: 500;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: background 0.15s;
}

.share-menu-item:hover {
  background: #f5ede4;
  color: #2c2416;
}

.share-menu-divider {
  height: 1px;
  background: #ece5dc;
  margin: 4px 0;
}

  /* Bottom article share banner */
  .article-share-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px 32px;
    background: linear-gradient(135deg, #f5ede4 0%, #ede0d3 100%);
    border: 1px solid rgba(90, 62, 43, 0.14);
    border-radius: 14px;
    padding: 36px 40px;
    margin: 48px 0 0;
  }

  .article-share-cta-text {
    flex-shrink: 0;
  }

  .article-share-cta-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: #3a2212;
    margin: 0 0 4px;
  }

  .article-share-cta-sub {
    font-size: 0.97rem;
    color: #7a5a42;
    margin: 0;
  }

  .article-share-cta-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .share-platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.12s;
    white-space: nowrap;
    line-height: 1;
  }

  .share-platform-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
  }

  .share-platform-btn.facebook  { background: #1877f2; color: #fff; }
  .share-platform-btn.linkedin  { background: #0a66c2; color: #fff; }
  .share-platform-btn.x-twitter { background: #000;    color: #fff; }
  .share-platform-btn.instagram { background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #515bd4 100%); color: #fff; }

  @media (max-width: 640px) {
    .article-share-cta {
      flex-direction: column;
      align-items: flex-start;
      padding: 28px 24px;
    }
    .article-share-cta-buttons {
      width: 100%;
    }
    .share-platform-btn {
      flex: 1;
      justify-content: center;
    }
  }

  .article-content {
  color: #5c493e;
}

.article-content p {
  margin: 0 0 18px;
  color: #5c493e;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  margin: 28px 0 12px;
  color: #2c2416;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}

.article-content h1 {
  font-size: 2rem;
}

.article-content h2 {
  font-size: 1.7rem;
}

.article-content h3 {
  font-size: 1.4rem;
}

.article-content h4 {
  font-size: 1.2rem;
}

.article-content ul,
.article-content ol {
  margin: 18px 0;
  padding-left: 32px;
  color: #5c493e;
}

.article-content li {
  margin: 8px 0;
  line-height: 1.8;
  font-size: 1.05rem;
}

.article-content blockquote {
  margin: 24px 0;
  padding: 18px 24px;
  border-left: 4px solid #b9a84c;
  background: rgba(185, 168, 76, 0.08);
  font-style: italic;
  color: #6b5d50;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-content a {
  color: #b9a84c;
  text-decoration: none;
  border-bottom: 1px solid rgba(185, 168, 76, 0.3);
  transition: all 0.2s ease;
}

.article-content a:hover {
  color: #a99540;
  border-bottom-color: #b9a84c;
}

.article-content img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
  border-radius: 8px;
  display: block;
}

.article-content strong {
  font-weight: 700;
  color: #2c2416;
}

.article-content em {
  font-style: italic;
}

@media (max-width: 1180px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .article-side {
    border-left: 0;
    border-top: 1px solid #e4ddd2;
    padding-left: 0;
    padding-top: 22px;
  }
}

.admin-shell {
  max-width: 920px;
}

.admin-shell-page {
  max-width: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.admin-toolbar {
  margin-bottom: 28px;
}

.insights-login-page .insights-hero {
  min-height: 85vh;
}

@media (max-width: 900px) {
  .admin-subnav {
    top: 64px;
  }

  .admin-subnav-inner {
    flex-wrap: wrap;
  }

}

.login-shell-wrap {
  max-width: 720px;
}

.login-shell {
  display: grid;
  gap: 28px;
}

.login-shell h2 {
  margin-bottom: 10px;
}

.profile-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
  color: #5c493e;
  font-size: 0.95rem;
}

.profile-checkbox input[type="checkbox"] {
  width: auto;
}

.form-help {
  margin: 6px 0 0;
  color: #8a7a70;
  font-size: 0.9rem;
}

  .form-forgot {
    margin: 4px 0 0;
    font-size: 0.9rem;
    text-align: center;
  }

  .form-forgot a {
    color: #8a7a70;
    text-decoration: underline;
  }

  .form-forgot a:hover {
    color: #2b1f1a;
  }

.form input[type="file"] {
  padding: 8px;
  border: 1px solid #d8cec3;
  border-radius: 6px;
  cursor: pointer;
}

#imagePreview {
  margin-top: 12px;
  padding: 12px;
  background: #fbf8f4;
  border-radius: 8px;
  display: flex;
  justify-content: center;
}

#previewImg {
  max-width: 100%;
  max-height: 300px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(43, 31, 26, 0.1);
}

/* Quill Editor Styles */
.ql-toolbar {
  border: 1px solid #d8cec3 !important;
  border-bottom: none !important;
  border-radius: 8px 8px 0 0 !important;
  background: #fbf8f4 !important;
  padding: 12px !important;
}

.ql-container {
  border: 1px solid #d8cec3 !important;
  border-radius: 0 0 8px 8px !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.05rem !important;
}

.ql-editor {
  color: #5c493e;
  min-height: 380px;
  padding: 16px !important;
}

.ql-editor.ql-blank::before {
  color: #a8a090;
  font-style: italic;
}

.ql-editor h1,
.ql-editor h2,
.ql-editor h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 16px 0 12px;
  color: #2b1f1a;
}

.ql-editor ol,
.ql-editor ul {
  margin: 12px 0 12px 24px;
  padding: 0;
}

.ql-editor li {
  margin-bottom: 6px;
  line-height: 1.8;
}

.ql-editor blockquote {
  border-left: 4px solid #a8b845;
  padding-left: 12px;
  margin: 12px 0;
  color: #8a7a70;
  font-style: italic;
}

.ql-editor a {
  color: #a8b845;
  text-decoration: underline;
}

.ql-editor img {
  max-width: 100%;
  height: auto;
  margin: 12px 0;
  border-radius: 8px;
}

.article-content h1,
.article-content h2,
.article-content h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 20px 0 12px;
  color: #2b1f1a;
  line-height: 1.3;
}

.article-content ol,
.article-content ul {
  margin: 12px 0 12px 24px;
  padding: 0;
}

.article-content li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.article-content blockquote {
  border-left: 4px solid #a8b845;
  padding-left: 12px;
  margin: 12px 0;
  color: #8a7a70;
  font-style: italic;
}

.article-content a {
  color: #a8b845;
  text-decoration: underline;
}

.article-content img {
  max-width: 100%;
  height: auto;
  margin: 16px 0;
  border-radius: 8px;
}

.article-subscribe {
  margin-top: 24px;
  border-top: 1px solid #e4ddd2;
  padding-top: 22px;
}

.article-subscribe h4 {
  margin-bottom: 8px;
}

.article-subscribe p {
  margin: 0 0 10px;
  color: #6d5d53;
}

.article-subscribe .btn {
  margin-top: 0;
}

.article-content ul li ::marker {
  color: #a8b845;
}

.article-content ol li ::marker {
  color: #a8b845;
}

.form-status {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.form-status.is-success {
  background: #eef4e6;
  border: 1px solid #cbdab2;
  color: #55663a;
}

.form-status.is-error {
  background: #f8eae7;
  border: 1px solid #e2c2bb;
  color: #8b3f33;
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(180deg, #fbf9f4 0%, #f8f4ef 100%);
}

.testimonials-wrap {
  text-align: center;
}

.testimonials-wrap h2 {
  margin-bottom: 2.8rem;
  font-size: clamp(2rem, 3vw, 2.5rem);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #fffdf9;
  border: 1px solid #e8ddd3;
  border-radius: 10px;
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  box-shadow: 0 4px 14px rgba(45, 32, 25, 0.05);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(45, 32, 25, 0.1);
  transform: translateY(-2px);
}

.quotation-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.5rem;
  color: #c1ae62;
  line-height: 1;
  margin-bottom: 12px;
  text-align: center;
}

.testimonial-quote {
  margin: 0 0 20px;
  text-align: center;
}

.testimonial-quote p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #5c493e;
  line-height: 1.7;
  margin: 0;
}

.testimonial-author {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #e8ddd3;
  text-align: center;
}

.author-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #2b1f1a;
  margin: 0 0 4px;
  line-height: 1;
}

.author-title {
  font-size: 0.9rem;
  color: #8a7a70;
  margin: 0 0 12px;
  line-height: 1.4;
}

.cta-panel {
  text-align: center;
  background: #fffdf9;
  border: 1px solid #e8ddd3;
  border-radius: 10px;
  padding: 48px 44px;
  max-width: 720px;
}

.cta-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 2.8vw, 2.2rem);
}

.cta-panel p {
  color: #6a5a50;
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 22px;
}

.services-overview-section h2 {
  text-align: center;
  margin-bottom: 2.4rem;
}

.services-overview-section .kicker {
  text-align: center;
}

.services-overview-grid {
  gap: 24px;
}

.service-card-centered {
  align-items: center;
  text-align: center;
  padding: 40px 32px 32px;
  background: #ffffff;
  gap: 10px;
}

.service-icon-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b9a84c;
  margin-bottom: 6px;
}

.service-icon-lg svg {
  width: 56px;
  height: 40px;
  fill: currentColor;
}

.service-card-centered h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink, #2d1c12);
  margin: 0;
}

.service-card-centered p {
  color: #5c493e;
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0;
}

.service-link-centered {
  margin-top: 8px;
  display: inline-block;
  color: #b9a84c;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, letter-spacing 0.2s ease;
  text-decoration: none;
}

.service-link-centered:hover {
  color: #8b7355;
  letter-spacing: 0.04em;
}

.transformation-model-wrap h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.model-orbit {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  min-height: 520px;
}

.model-diagram-centered {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  overflow: visible;
}

.donut-chart {
  width: 300px;
  height: 300px;
  position: relative;
  margin: 0 auto;
  overflow: visible;
}

.donut-svg {
  position: absolute;
  left: -20px;
  top: -20px;
  width: 340px;
  height: 340px;
  overflow: visible;
}

.donut-slice-group {
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  transform-box: view-box;
  transform-origin: 160px 160px;
}

.seg-right-g:hover {
  transform: translate(10px, -8px);
  filter: brightness(1.08);
}

.seg-bottom-g:hover {
  transform: translateY(12px);
  filter: brightness(1.08);
}

.seg-left-g:hover {
  transform: translate(-10px, -8px);
  filter: brightness(1.08);
}

.model-note {
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #5c493e;
  max-width: 680px;
  margin: 2.5rem auto 0;
  line-height: 1.7;
}

.model-note {
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #5c493e;
  max-width: 680px;
  margin: 2.5rem auto 0;
  line-height: 1.7;
}

.orbit-node {
  position: absolute;
  width: 220px;
  text-align: left;
  transition: transform 0.28s ease;
}

.orbit-left {
  left: 112px;
  top: 128px;
}

.orbit-right {
  right: 50px;
  top: 128px;
}

.orbit-bottom {
  left: 50%;
  bottom: -6px;
  width: auto;
  transform: translateX(-50%);
  text-align: center;
}

.orbit-subline {
  margin: 2px 0 0;
  color: #5c493e;
  font-size: 0.98rem;
  line-height: 1.35;
  max-width: 580px;
}

.orbit-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.05rem;
  line-height: 1.1;
  margin: 0 0 10px;
  color: #5a4638;
}

.orbit-heading {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
}

.orbit-heading > span:last-child span {
  display: block;
}

.orbit-icon {
  width: 34px;
  height: 34px;
  color: #b9a84c;
  flex: 0 0 34px;
  margin-top: 2px;
}

.orbit-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.orbit-accent {
  color: #b9a84c;
}

.orbit-bottom-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.model-orbit:has(.seg-left-g:hover) .orbit-left {
  transform: translate(-8px, -6px);
}

.model-orbit:has(.seg-right-g:hover) .orbit-right {
  transform: translate(8px, -6px);
}

.model-orbit:has(.seg-bottom-g:hover) .orbit-bottom {
  transform: translateX(-50%) translateY(10px);
}

.orbit-list {
  margin: 0;
  padding: 0 0 0 16px;
  list-style: none;
}

.orbit-list li {
  padding: 2px 0;
  position: relative;
  color: #5c493e;
  font-size: 1.06rem;
  line-height: 1.45;
}

.orbit-list li::before {
  content: "•";
  position: absolute;
  left: -14px;
  color: #c9b977;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 900px) {
  .model-orbit {
    min-height: 0;
    display: grid;
    gap: 18px;
  }

  .founder-grid,
  .sectors-grid,
  .roadmap-grid,
  .blog-grid-home,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: 0;
    padding: 34px 28px;
  }

  .roadmap-grid {
    padding-top: 0;
    padding-left: 34px;
    gap: 18px;
  }

  .roadmap-grid::before {
    left: 16px;
    right: auto;
    top: 12px;
    bottom: 12px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(201, 185, 119, 0.25) 0%, rgba(201, 185, 119, 0.9) 18%, rgba(201, 185, 119, 0.9) 82%, rgba(201, 185, 119, 0.25) 100%);
  }

  .roadmap-card {
    min-height: 0;
    padding-top: 16px;
  }

  .roadmap-card::before {
    left: -27px;
    top: 22px;
    transform: none;
  }

  .roadmap-card::after {
    left: -17px;
    top: 22px;
    width: 17px;
    height: 2px;
    transform: none;
  }

  .roadmap-card h3 {
    min-height: 0;
    text-align: left;
  }

  .roadmap-quarter {
    margin-right: 22px;
    margin-left: 18px;
    width: fit-content;
  }

  .founder-card {
    padding: 34px 28px;
  }

  .founder-portrait img {
    min-height: 420px;
  }

  .orbit-node,
  .model-diagram-centered {
    position: static;
    transform: none;
    width: 100%;
    text-align: center;
  }

  .orbit-list {
    width: max-content;
    margin: 0 auto;
    text-align: left;
  }

  .orbit-heading,
  .orbit-bottom-title {
    justify-content: center;
  }

  .donut-chart {
    --hole-size: 154px;
    --logo-size: 68px;
    width: 230px;
    height: 230px;
  }

  .transformation-model-wrap h2 {
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .transformation-model-section {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .founder-card {
    padding: 28px 22px;
  }

  .founder-portrait--ribbon::before {
    left: 12px;
    right: 12px;
    top: 18px;
    bottom: auto;
    width: auto;
    height: 40px;
    writing-mode: horizontal-tb;
    transform: none;
    box-shadow: 0 3px 8px rgba(33, 10, 10, 0.2);
  }

  .founder-role {
    font-size: 0.94rem;
  }

  .founder-card p:not(.kicker):not(.founder-role) {
    font-size: 1rem;
  }

  .donut-chart {
    --hole-size: 120px;
    --logo-size: 54px;
    width: 180px;
    height: 180px;
  }

  .transformation-model-wrap h2 {
    margin-bottom: 32px;
    font-size: 1.8rem;
  }

  .orbit-title {
    font-size: 1.75rem;
  }

  .orbit-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .orbit-list li {
    font-size: 0.98rem;
  }

  .orbit-subline {
    font-size: 0.92rem;
  }
}

.problem-section {
  padding-top: 10px;
}

.problem-wrap {
  text-align: center;
  width: min(1240px, 95vw);
}

.problem-wrap h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.2vw, 2.5rem);
}

.problem-intro {
  width: min(860px, 92%);
  margin: 0 auto 30px;
  color: #6a5a50;
  font-size: 1rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.problem-card {
  background: #fbf9f6;
  border: 1px solid #ddd4ca;
  border-radius: 6px;
  padding: 26px 24px 0;
  min-height: 246px;
  box-shadow: 0 3px 10px rgba(43, 31, 26, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.problem-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b4a347;
}

.problem-icon svg {
  width: 50px;
  height: 50px;
  fill: currentColor;
}

.problem-card h3 {
  font-size: clamp(1.55rem, 1.9vw, 1.95rem);
  line-height: 1.03;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 14px;
}

.problem-card h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 56px;
  border-top: 1px solid #c9b977;
  transform: translateX(-50%);
}

.problem-card > p {
  margin: 0 auto;
  max-width: 40ch;
  color: #59493f;
  font-size: 0.9rem;
  line-height: 1.45;
}

.problem-card-note {
  margin-top: auto;
  width: 100%;
  padding: 12px 0px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
  color: #5c493e;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.35;
  max-width: none;
  text-align: left;
}

.problem-card-note span:last-child {
  max-width: 40ch;
}

.problem-card-note::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 56px;
  border-top: 1px solid #c9b977;
  transform: translateX(-50%);
}

.note-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b7a64a;
  flex: 0 0 8px;
  margin-top: 0.45em;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.btn {
  display: inline-block;
  margin-top: 12px;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn.primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn.primary:hover {
  background: #18110e;
}

.btn.secondary:hover {
  background: #eee5dc;
}

.btn.with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.btn-icon-google {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: block;
}

ul.clean {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

ul.clean li {
  padding: 8px 0;
  border-bottom: 1px solid #ede3d8;
}

ul.clean li:last-child {
  border-bottom: 0;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  margin-bottom: 18px;
}

/* Detailed footer */
.footer-main {
  background: #f5ede4;
  color: #5a3e2b;
  padding: 64px 0 48px;
  font-size: 0.95rem;
}

.footer-main .container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px 32px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #3a2212;
  text-decoration: none;
  line-height: 1.2;
}

.footer-brand-name:hover {
  color: #7a4a2a;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #7a5a42;
  line-height: 1.6;
  max-width: 260px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-list a {
  color: #5a3e2b;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-contact-list a:hover {
  color: #3a2212;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(90, 62, 43, 0.12);
  color: #5a3e2b;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.footer-social-link:hover {
  background: rgba(90, 62, 43, 0.22);
  color: #3a2212;
}

.footer-col-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #3a2212;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}

.footer-col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-links a {
  color: #7a5a42;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.15s;
}

.footer-col-links a:hover {
  color: #3a2212;
}

.footer-subscribe-panel {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(90, 62, 43, 0.14);
}

.footer-subscribe-title {
  margin: 0 0 10px;
  color: #3a2212;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.5;
}

.footer-subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-subscribe-input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(90, 62, 43, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  color: #3a2212;
  padding: 0 14px;
  font: inherit;
}

.footer-subscribe-input::placeholder {
  color: #8b7360;
}

.footer-subscribe-input:focus {
  outline: none;
  border-color: rgba(90, 62, 43, 0.32);
  box-shadow: 0 0 0 3px rgba(90, 62, 43, 0.08);
}

.footer-subscribe-button {
  width: 100%;
  justify-content: center;
}

.footer-subscribe-status {
  margin-top: 12px;
}

@media (max-width: 960px) {
  .footer-main .container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .footer-main .container {
    grid-template-columns: 1fr;
  }

  .footer-col-heading {
    text-align: center;
  }

  .footer-col-links,
  .footer-contact-list {
    align-items: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer .container {
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 10px;
  }
}

/* Copyright footer */
.footer {
  background: #e8d8c8;
  border-top: 1px solid rgba(90, 62, 43, 0.15);
  padding: 20px 0 28px;
  color: #7a5a42;
  font-size: 0.88rem;
}

.footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer a {
  color: #5a3e2b;
  text-decoration: none;
}

.footer a:hover {
  color: #3a2212;
}

.form {
  display: grid;
  gap: 12px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid #c9baad;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  background: #fff;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.subtle {
  color: #665148;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .model-grid,
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-home {
    min-height: 85vh;
  }

  .hero.hero-home h1 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .hero.hero-home p {
    font-size: 0.98rem;
  }

  .hero-company {
    font-size: 3.25rem;
    white-space: normal;
  }

  .hero-company-sub {
    font-size: clamp(0.5rem, 2.4vw, 0.62rem);
    letter-spacing: 0.17em;
    gap: 8px;
  }

  .hero-company-sub::before,
  .hero-company-sub::after {
    width: 24px;
  }

  /* ── Responsive nav ── */
  .nav {
    flex-wrap: nowrap;
    align-items: center;
    padding: 0;
    gap: 0;
    min-height: 64px;
  }

  .brand {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 1rem;
  }

  .burger {
    display: flex;
    flex-shrink: 0;
    position: relative;
    z-index: 31;
  }

  .burger.toggle {
    position: fixed;
    top: 14px;
    right: 14px;
  }

  /* Legacy-style full-page overlay menu */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    background: #f5ede4;
    border-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    margin: 0;
    padding: 74px 24px 22px;
    overflow-y: auto;
    transform: translateX(100%);
    pointer-events: none;
    transition: all 0.5s ease;
  }

  .nav-links.nav-active {
    transform: translateX(0);
    pointer-events: auto;
    display: flex;
  }

  .nav-links > li {
    width: 100%;
    border-bottom: 0;
    text-align: center;
    margin-bottom: 6px;
  }

  .nav-links .nav-auth-item {
    margin-left: 0;
    border-bottom: 0;
    padding-top: 8px;
    margin-bottom: 0;
  }

  .nav-links .nav-auth-item #navbar-auth-button {
    width: auto;
    min-width: 124px;
    text-align: center;
  }

  .nav-links > li > a {
    display: block;
    opacity: 0;
    padding: 9px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #5a3e2b;
    background: #e8d8c8;
    border-radius: 8px;
  }

  .nav-links > li > a::before {
    display: none;
  }

  .nav-links > li > a.active,
  .nav-links > li > a:hover {
    color: #3a2212;
    background: #e2cdb8;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
    width: 100%;
  }

  .nav-dropdown > a::after {
    content: "\25BE";
    font-size: 0.95rem;
    line-height: 1;
    transform: rotate(0deg);
    margin-top: 1px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 2px 0 8px;
  }

  /* In mobile view, ignore hover/focus opening and only allow click toggling (.is-open). */
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    display: none;
  }

  .nav-dropdown:hover > a::after,
  .nav-dropdown:focus-within > a::after {
    transform: rotate(0deg);
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: block;
  }

  .nav-dropdown.is-open > a::after {
    transform: rotate(180deg);
  }

  .dropdown-menu a {
    opacity: 0;
    padding: 8px 0;
    font-size: 0.95rem;
  }

}
