/* ============================================
   CULINARY STRATEGY — Production CSS v4
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --bg:          #F7F4F0;
  --bg-warm:     #F0EBE3;
  --bg-panel:    #EDE8E1;
  --text:        #1A1A18;
  --text-mid:    #4A4742;
  --text-light:  #8A8782;
  --accent:      #8B6B3D;
  --accent-deep: #6B4F28;
  --olive:       #5C6650;
  --slate:       #5C6272;
  --rule:        #D8D2C8;
  --white:       #FDFCFA;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'DM Sans', system-ui, sans-serif;
  --max:         1160px;
  --pad:         clamp(1.25rem, 4vw, 3rem);
  --section:     clamp(4rem, 8vw, 7rem);
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --t:           0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --r-sm: 4px; --r-md: 8px; --r-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); font-size: 1rem; font-weight: 300; line-height: 1.75; color: var(--text); background: var(--bg); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--sans); }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.25rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.15rem; }
em { font-style: italic; }
p  { font-family: var(--sans); font-size: 1.0625rem; line-height: 1.8; color: var(--text-mid); max-width: 660px; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
section { padding: var(--section) 0; }

/* Kickers */
.kicker {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light);
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem;
}
.kicker::after { content: ''; display: block; width: 28px; height: 1px; background: var(--rule); }
.eyebrow { font-family: var(--sans); font-size: 0.72rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 1rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--sans); font-size: 0.875rem; font-weight: 400; letter-spacing: 0.04em; padding: 0.8rem 1.75rem; border-radius: var(--r-sm); transition: all var(--t); border: none; white-space: nowrap; text-decoration: none; line-height: 1; }
.btn-primary { background: var(--text); color: var(--white); }
.btn-primary:hover { background: var(--accent-deep); color: var(--white); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--rule); }
.btn-outline:hover { border-color: var(--text); background: var(--text); color: var(--white); }
.btn-ghost { background: transparent; color: var(--accent); padding-left: 0; padding-right: 0; }
.btn-ghost .arrow { transition: transform var(--t); }
.btn-ghost:hover .arrow { transform: translateX(4px); }
.btn-light { background: rgba(255,255,255,0.09); color: var(--white); border: 1px solid rgba(255,255,255,0.14); }
.btn-light:hover { background: rgba(255,255,255,0.16); }

/* ── NAV ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--bg); border-bottom: 1px solid transparent; transition: border-color 0.3s, background 0.3s, box-shadow 0.3s; }
.nav.scrolled { border-bottom-color: var(--rule); background: rgba(247,244,240,0.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(26,26,24,0.04); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; padding-right: 1rem; }
.nav__logo img { height: 30px; width: auto; display: block; }
.nav__links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav__links > li > a { font-size: 0.8125rem; font-weight: 400; letter-spacing: 0.04em; color: var(--text-mid); transition: color var(--t); display: flex; align-items: center; gap: 0.3rem; }
.nav__links > li > a:hover { color: var(--text); }
.nav__links > li > a .chevron { font-size: 0.55rem; opacity: 0.45; transition: transform var(--t); display: inline-block; }
.nav__item:hover > a .chevron { transform: rotate(180deg); }
.nav__item { position: relative; }
.nav__item { position: relative; }
.nav__item > a { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.7rem 0; }
.nav__dropdown { position: absolute; top: calc(100% - 0.15rem); left: 50%; transform: translateX(-50%) translateY(-4px); background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-md); padding: 0.5rem; min-width: 256px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease; box-shadow: 0 8px 32px rgba(26,26,24,0.09); }
.nav__item::after { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 14px; }
.nav__item.open .nav__dropdown, .nav__item:hover .nav__dropdown, .nav__item:focus-within .nav__dropdown { opacity: 1; visibility: visible; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav__dropdown a { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.6rem 0.75rem; border-radius: var(--r-sm); transition: background var(--t); font-size: 0.8125rem; color: var(--text-mid); }
.nav__dropdown a:hover { background: var(--bg-warm); color: var(--text); }
.nav__dropdown-icon { width: 26px; height: 26px; background: var(--bg-panel); border-radius: 3px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.65rem; color: var(--accent); margin-top: 2px; }
.nav__dropdown a strong { display: block; font-weight: 500; color: var(--text); font-size: 0.8125rem; margin-bottom: 0.1rem; }
.nav__dropdown a span { font-size: 0.72rem; color: var(--text-light); line-height: 1.4; }
.btn-nav { font-size: 0.8125rem; font-weight: 400; letter-spacing: 0.04em; color: var(--white) !important; background: var(--text); padding: 0.55rem 1.2rem; border-radius: var(--r-sm); transition: background var(--t); white-space: nowrap; }
.btn-nav:hover { background: var(--accent-deep); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav__toggle span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: transform 0.3s, opacity 0.3s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav__mobile { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--rule); padding: 1.25rem var(--pad) 1.75rem; }
.nav__mobile.open { display: flex; }
.nav__mobile a { font-size: 0.9375rem; color: var(--text-mid); padding: 0.85rem 0; border-bottom: 1px solid var(--rule); transition: color var(--t); }
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--text); }
.nav__mobile .btn-nav-mobile { margin-top: 1.25rem; text-align: center; background: var(--text); color: var(--white) !important; padding: 0.875rem; border-radius: var(--r-sm); letter-spacing: 0.04em; font-size: 0.875rem; border-bottom: none !important; }

/* ── HERO ── */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 90vh; }
.hero__text { display: flex; flex-direction: column; justify-content: center; padding: calc(68px + clamp(4rem,8vw,7rem)) var(--pad) clamp(4rem,7vw,6rem) clamp(1.25rem,5vw,5rem); background: var(--bg); }
.hero__text h1 em { color: var(--accent); }
.hero__lead { font-size: clamp(1.0625rem,1.4vw,1.15rem); line-height: 1.8; color: var(--text-mid); max-width: 520px; margin: 1.5rem 0 2.25rem; }
.hero__actions { display: flex; gap: 0.875rem; flex-wrap: wrap; align-items: center; }
.hero__region { margin-top: 3.5rem; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); display: flex; align-items: center; gap: 0.5rem; }
.hero__region::before { content: ''; display: block; width: 16px; height: 1px; background: var(--rule); }
.hero__image { position: relative; overflow: hidden; }
.hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; filter: saturate(0.92) contrast(1.01); }
.hero__image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--bg) 0%, transparent 10%), linear-gradient(to top, rgba(26,26,24,0.28) 0%, transparent 45%); pointer-events: none; }

/* ── STATS ── */
.stats { background: var(--text); padding: clamp(3rem,5vw,4.5rem) 0; }
.stats__grid { display: grid; grid-template-columns: repeat(3,1fr); }
.stats__item { padding: 0 clamp(1.5rem,3vw,3rem); border-right: 1px solid rgba(255,255,255,0.08); text-align: center; }
.stats__item:first-child { padding-left: 0; text-align: left; }
.stats__item:last-child { border-right: none; padding-right: 0; }
.stats__number { font-family: var(--serif); font-size: clamp(2.5rem,5vw,3.75rem); font-weight: 300; color: #FDFCFA; line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.stats__number span { color: var(--accent); font-style: italic; }
.stats__label { font-size: 0.78rem; font-weight: 300; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(253,252,250,0.42); }
.stats__desc { font-size: 0.75rem; color: rgba(253,252,250,0.26); margin-top: 0.35rem; line-height: 1.5; }

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: clamp(2.5rem,5vw,3.75rem); }
.section-header h2 em { color: var(--accent); }
.section-header p { margin-top: 1rem; }

/* ── SERVICES ── */
.services__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5px; background: var(--rule); border: 1.5px solid var(--rule); border-radius: var(--r-md); overflow: hidden; }
.service-card { background: var(--white); padding: clamp(1.75rem,3.5vw,2.75rem); display: flex; flex-direction: column; gap: 1.1rem; transition: background var(--t); text-decoration: none; }
.service-card:hover { background: var(--bg-warm); }
.service-card__tag { font-size: 0.7rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); display: flex; align-items: center; gap: 0.5rem; }
.service-card__tag::before { content: ''; display: inline-block; width: 5px; height: 5px; border: 1px solid var(--accent); border-radius: 1px; }
.service-card h3 { font-size: clamp(1.2rem,1.8vw,1.5rem); }
.service-card p { font-size: 0.9375rem; color: var(--text-mid); max-width: none; flex: 1; }
.service-card__link { font-size: 0.78rem; font-weight: 400; letter-spacing: 0.07em; text-transform: uppercase; color: var(--accent); display: flex; align-items: center; gap: 0.5rem; transition: gap var(--t); }
.service-card:hover .service-card__link { gap: 0.75rem; }

/* ── TOOLS SECTION (homepage) ── */
.tools-section { background: var(--bg-warm); }
.tools-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.tool-card { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-md); padding: clamp(1.5rem,3vw,2.25rem); display: flex; flex-direction: column; gap: 0.875rem; transition: border-color var(--t), box-shadow var(--t); text-decoration: none; }
.tool-card:hover { border-color: var(--accent); box-shadow: 0 4px 24px rgba(139,107,61,0.08); }
.tool-card__header { display: flex; justify-content: space-between; align-items: flex-start; }
.tool-card__icon { width: 38px; height: 38px; background: var(--bg-panel); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--accent); font-family: var(--serif); font-size: 1rem; }
.tool-card__badge { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive); font-weight: 400; }
.tool-card h4 { font-size: 1.1rem; font-family: var(--serif); font-weight: 500; }
.tool-card p { font-size: 0.9rem; color: var(--text-mid); max-width: none; flex: 1; }
.tool-card__tags { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.tag { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); background: var(--bg-panel); padding: 0.25rem 0.6rem; border-radius: 2px; }
.tool-card__cta { font-size: 0.8125rem; color: var(--accent); display: flex; align-items: center; gap: 0.375rem; transition: gap var(--t); }
.tool-card:hover .tool-card__cta { gap: 0.625rem; }

/* ── INSIGHTS (homepage cards) ── */
.insights-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.insight-card { display: flex; flex-direction: column; gap: 0.875rem; text-decoration: none; }
.insight-card__img-wrap { overflow: hidden; border-radius: var(--r-sm); aspect-ratio: 16/9; }
.insight-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); filter: saturate(0.92) contrast(1.01); }
.insight-card:hover .insight-card__img-wrap img { transform: scale(1.03); }
.insight-card__cat { font-size: 0.7rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--olive); }
.insight-card h3 { font-size: clamp(1.05rem,1.5vw,1.2rem); line-height: 1.3; color: var(--text); }
.insight-card p  { font-size: 0.9rem; color: var(--text-mid); max-width: none; flex: 1; }
.insight-card__meta { font-size: 0.72rem; color: var(--text-light); }

/* ── AUDIENCE ── */
.audience-section { background: var(--bg-panel); padding: clamp(4rem,7vw,6rem) 0; }
.audience__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,6vw,6rem); align-items: start; }
.audience__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.audience__list li { padding: 1rem 0; border-bottom: 1px solid var(--rule); font-size: 0.9375rem; color: var(--text-mid); display: flex; align-items: center; gap: 0.75rem; }
.audience__list li::before { content: ''; display: block; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.audience__geo { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--rule); font-size: 0.8rem; color: var(--text-light); letter-spacing: 0.04em; line-height: 1.8; }
.audience__geo strong { color: var(--text-mid); font-weight: 400; }

/* ── CTA SECTION ── */
.cta-section { background: var(--text); padding: clamp(5rem,9vw,8rem) 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -60%; right: -10%; width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.04); pointer-events: none; }
.cta-section .kicker { color: rgba(253,252,250,0.32); }
.cta-section .kicker::after { background: rgba(253,252,250,0.1); }
.cta-section h2 { color: var(--white); margin-top: 1rem; max-width: 640px; }
.cta-section h2 em { color: rgba(139,107,61,0.8); }
.cta-section > .container > p { color: rgba(253,252,250,0.48); margin-top: 1rem; max-width: 520px; }
.cta__channels { display: flex; flex-direction: column; gap: 1px; background: rgba(255,255,255,0.06); border-radius: var(--r-md); overflow: hidden; margin-top: 3rem; max-width: 520px; }
.cta__channel { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; background: rgba(255,255,255,0.03); transition: background var(--t); text-decoration: none; }
.cta__channel:hover { background: rgba(255,255,255,0.07); }
.cta__ch-left { display: flex; align-items: center; gap: 1rem; }
.cta__ch-icon { width: 34px; height: 34px; border-radius: var(--r-sm); background: rgba(139,107,61,0.14); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 0.85rem; }
.cta__ch-title { font-size: 0.9375rem; font-weight: 400; color: var(--white); }
.cta__ch-sub { font-size: 0.78rem; color: rgba(253,252,250,0.36); }
.cta__ch-arrow { color: rgba(253,252,250,0.2); transition: transform var(--t), color var(--t); }
.cta__channel:hover .cta__ch-arrow { transform: translateX(4px); color: rgba(253,252,250,0.55); }

/* ── FOOTER ── */
.footer { background: #111110; padding: clamp(3.5rem,6vw,5rem) 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: clamp(2rem,4vw,4rem); padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer__brand img { height: 26px; width: auto; display: block; margin-bottom: 1.25rem; }
.footer__brand p { font-size: 0.875rem; color: rgba(253,252,250,0.3); max-width: 240px; margin: 0; line-height: 1.7; }
.footer__brand-link { display: inline-block; margin-top: 1.25rem; font-size: 0.8rem; color: rgba(139,107,61,0.55); letter-spacing: 0.04em; transition: color var(--t); }
.footer__brand-link:hover { color: var(--accent); }
.footer__col h5 { font-size: 0.68rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(253,252,250,0.2); margin-bottom: 1.25rem; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer__col ul a { font-size: 0.875rem; color: rgba(253,252,250,0.4); transition: color var(--t); }
.footer__col ul a:hover { color: rgba(253,252,250,0.75); }
.footer__nl p { font-size: 0.875rem; color: rgba(253,252,250,0.3); max-width: none; margin-bottom: 1rem; line-height: 1.6; }
.footer__nl-form { display: flex; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-sm); overflow: hidden; }
.footer__nl-form input { flex: 1; background: transparent; border: none; padding: 0.7rem 1rem; font-family: var(--sans); font-size: 0.875rem; font-weight: 300; color: var(--white); outline: none; }
.footer__nl-form input::placeholder { color: rgba(253,252,250,0.2); }
.footer__nl-form button { background: var(--accent); border: none; padding: 0.7rem 1.1rem; color: var(--white); font-size: 0.8rem; transition: background var(--t); }
.footer__nl-form button:hover { background: var(--accent-deep); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer__copy { font-size: 0.78rem; color: rgba(253,252,250,0.17); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: 0.78rem; color: rgba(253,252,250,0.17); transition: color var(--t); }
.footer__legal a:hover { color: rgba(253,252,250,0.5); }

/* ── PAGE HEADER ── */
.page-header { padding-top: calc(68px + clamp(3.5rem,7vw,5.5rem)); padding-bottom: clamp(3rem,6vw,4.5rem); border-bottom: 1px solid var(--rule); }
.page-header h1 em { color: var(--accent); }
.page-header h1 { max-width: 720px; }
.page-header > .container > p { margin-top: 1.25rem; }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(280px,.8fr); gap: clamp(2rem,4vw,4rem); align-items: start; }

/* ── SURFACE CARD ── */
.surface-card { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: clamp(1.5rem,3vw,2.25rem); box-shadow: 0 8px 32px rgba(26,26,24,0.04); }

/* ── LISTS ── */
.check-list { list-style: none; display: grid; gap: 0.75rem; padding: 0; }
.check-list li { position: relative; padding-left: 1.25rem; color: var(--text-mid); font-size: 0.9375rem; }
.check-list li::before { content: ''; position: absolute; left: 0; top: 0.72rem; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.article-body ul { list-style: none; display: grid; gap: 0.7rem; padding: 0; }
.article-body li { position: relative; padding-left: 1.25rem; color: var(--text-mid); }
.article-body li::before { content: ''; position: absolute; left: 0; top: 0.72rem; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* ── ABOUT ── */
.about-intro { display: grid; grid-template-columns: 300px 1fr; gap: clamp(3rem,5vw,5rem); align-items: start; }
.about-photo-wrap { position: relative; }
.about-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center; border-radius: var(--r-md); display: block; }
.about-photo-badge { position: absolute; bottom: -0.75rem; left: 50%; transform: translateX(-50%); background: var(--white); border: 1px solid var(--rule); border-radius: 999px; padding: 0.4rem 1rem; font-size: 0.75rem; color: var(--text-mid); white-space: nowrap; box-shadow: 0 2px 12px rgba(26,26,24,0.06); }
.about-bio p + p { margin-top: 1.2rem; }
.about-bio p { max-width: none; }
.cred-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.cred-pill { border: 1px solid var(--rule); border-radius: 999px; padding: 0.4rem 0.875rem; background: var(--white); color: var(--text-mid); font-size: 0.85rem; font-weight: 300; }
.pull-quote { border-left: 2px solid var(--accent); padding: 1.1rem 1.6rem; margin: 2rem 0; background: var(--bg-warm); border-radius: 0 var(--r-sm) var(--r-sm) 0; }
.pull-quote p { font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--text); max-width: none; line-height: 1.55; }
.pull-quote cite { display: block; margin-top: 0.65rem; font-style: normal; font-size: 0.76rem; color: var(--text-light); letter-spacing: 0.07em; text-transform: uppercase; }
.timeline { margin-top: 1.5rem; }
.timeline__item { display: grid; grid-template-columns: 88px 1fr; gap: 1.25rem; padding: 0.875rem 0; border-top: 1px solid var(--rule); align-items: start; }
.timeline__item:last-child { border-bottom: 1px solid var(--rule); }
.timeline__year { font-size: 0.78rem; color: var(--text-light); letter-spacing: 0.04em; padding-top: 0.1rem; }
.timeline__role { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.6; }
.timeline__role strong { display: block; font-weight: 400; color: var(--text); margin-bottom: 0.2rem; }

/* ── INSIGHTS HUB ── */
.insights-featured { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-md); overflow: hidden; margin-bottom: 3.5rem; text-decoration: none; transition: box-shadow var(--t); }
.insights-featured:hover { box-shadow: 0 8px 40px rgba(26,26,24,0.08); }
.insights-featured__img-wrap { overflow: hidden; }
.insights-featured__img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; filter: saturate(0.92) contrast(1.01); transition: transform 0.5s var(--ease); }
.insights-featured:hover .insights-featured__img { transform: scale(1.02); }
.insights-featured__body { padding: clamp(2rem,4vw,3.5rem); display: flex; flex-direction: column; justify-content: center; gap: 0.875rem; }
.insights-featured__body h2 { font-size: clamp(1.4rem,2.5vw,1.9rem); line-height: 1.2; }
.insights-featured__body p { font-size: 1rem; max-width: none; }
.insights-featured__read { font-size: 0.8rem; color: var(--accent); display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; transition: gap var(--t); }
.insights-featured:hover .insights-featured__read { gap: 0.75rem; }
.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn { font-size: 0.72rem; font-weight: 400; letter-spacing: 0.09em; text-transform: uppercase; padding: 0.5rem 1.1rem; border-radius: 2px; border: 1px solid var(--rule); background: transparent; color: var(--text-mid); transition: all var(--t); }
.filter-btn:hover, .filter-btn.active { background: var(--text); border-color: var(--text); color: var(--white); }
.insights-list { display: grid; gap: 0; }
.insight-row { display: grid; grid-template-columns: 120px 1fr auto; gap: 2rem; align-items: start; padding: 1.75rem 0; border-bottom: 1px solid var(--rule); text-decoration: none; transition: background var(--t); }
.insight-row:first-child { border-top: 1px solid var(--rule); }
.insight-row:hover { background: var(--bg-warm); margin: 0 -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; }
.insight-row__cat { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--olive); padding-top: 0.2rem; }
.insight-row h3 { font-size: 1.2rem; color: var(--text); line-height: 1.25; margin-bottom: 0.5rem; }
.insight-row p { font-size: 0.875rem; max-width: none; color: var(--text-mid); }
.insight-row__time { font-size: 0.72rem; color: var(--text-light); white-space: nowrap; padding-top: 0.2rem; }

/* ── FAQ ── */
.faq-section { background: var(--bg-warm); padding: clamp(4rem,7vw,6rem) 0; }
.faq__list { max-width: 740px; margin-top: 3rem; }
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__question { width: 100%; text-align: left; background: none; border: none; padding: 1.4rem 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--text); line-height: 1.4; }
.faq__icon { width: 20px; height: 20px; border: 1px solid var(--rule); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--text-mid); font-size: 1rem; transition: transform var(--t), border-color var(--t), color var(--t); margin-top: 3px; }
.faq__item.open .faq__icon { transform: rotate(45deg); border-color: var(--accent); color: var(--accent); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__answer-inner { padding-bottom: 1.5rem; }
.faq__answer p { font-size: 0.9375rem; max-width: 640px; }

/* ── TOOLS PAGE ── */
.tools-full { padding: clamp(3rem,6vw,5rem) 0; background: var(--bg); }
.tool-full-card { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-md); padding: clamp(1.75rem,3vw,2.5rem); display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: start; transition: border-color var(--t), box-shadow var(--t); margin-bottom: 1.25rem; }
.tool-full-card:hover { border-color: var(--accent); box-shadow: 0 2px 20px rgba(139,107,61,0.06); }
.tool-full-card.coming { opacity: 0.55; }
.tool-full-card__body { display: flex; flex-direction: column; gap: 0.875rem; }
.tool-full-card__top { display: flex; align-items: center; gap: 1rem; }
.tool-full-card__icon { width: 42px; height: 42px; background: var(--bg-panel); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.1rem; color: var(--accent); flex-shrink: 0; }
.tool-full-card__format { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive); }
.tool-full-card h3 { font-size: 1.35rem; }
.tool-full-card p { font-size: 0.9375rem; max-width: 560px; color: var(--text-mid); }
.tool-full-card__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.tool-full-card__side { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end; flex-shrink: 0; }
.badge-free { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive); background: rgba(92,102,80,0.09); padding: 0.3rem 0.75rem; border-radius: 2px; }
.badge-soon { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); background: rgba(92,98,114,0.09); padding: 0.3rem 0.75rem; border-radius: 2px; }

/* ── ARTICLE ── */
.article-hero { padding-top: calc(68px + 4.5rem); padding-bottom: 2rem; }
.article-hero__meta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.article-hero__meta span { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); }
.article-hero-img { width: 100%; max-height: 400px; object-fit: cover; border-radius: var(--r-md); display: block; margin-bottom: 2.5rem; filter: saturate(0.92) contrast(1.01); }
.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: clamp(2rem,4vw,4rem); }
.article-body { display: grid; gap: 1.35rem; }
.article-body h2 { font-size: clamp(1.55rem,3vw,2.1rem); margin-top: 1.5rem; }
.article-body h3 { font-size: clamp(1.15rem,2vw,1.45rem); margin-top: 1rem; }
.article-body p { max-width: none; }
.article-aside { position: sticky; top: 88px; align-self: start; display: grid; gap: 1rem; }
.article-aside p { font-size: 0.9375rem; line-height: 1.7; }
.related-list { display: grid; gap: 0; }
.related-list a { padding: 0.875rem 0; border-top: 1px solid var(--rule); display: block; text-decoration: none; transition: color var(--t); }
.related-list a:first-child { border-top: none; padding-top: 0; }
.related-list a:hover strong { color: var(--accent); }
.related-list strong { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; color: var(--text); transition: color var(--t); }
.related-list span { color: var(--text-light); font-size: 0.83rem; }

/* ── CONTACT / FORMS ── */
.contact-panel form { display: grid; gap: 0.875rem; margin-top: 1rem; }
.contact-panel input, .contact-panel select, .contact-panel textarea,
.tool-form input, .tool-form select, .tool-form textarea {
  width: 100%; padding: 0.85rem 1rem; background: var(--bg); border: 1px solid var(--rule); border-radius: var(--r-sm); font-family: var(--sans); font-size: 0.9375rem; color: var(--text); outline: none; font-weight: 300; transition: border-color var(--t);
}
.contact-panel input:focus, .contact-panel select:focus, .contact-panel textarea:focus,
.tool-form input:focus, .tool-form select:focus { border-color: var(--accent); }
.contact-panel textarea, .tool-form textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 0.5rem; }
.form-status { margin-top: 0.75rem; font-size: 0.875rem; color: var(--olive); display: none; }
.form-status.show { display: block; }
.form-status.error { color: #a05050; }

/* ── MODAL ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(26,26,24,0.72); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity 0.28s ease; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box { background: var(--white); border-radius: var(--r-lg); padding: clamp(2rem,4vw,3rem); max-width: 460px; width: 100%; position: relative; transform: translateY(16px); transition: transform 0.28s var(--ease); }
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close { position: absolute; top: 1.25rem; right: 1.25rem; background: var(--bg-panel); border: none; width: 30px; height: 30px; border-radius: 50%; font-size: 1.1rem; color: var(--text-mid); display: flex; align-items: center; justify-content: center; transition: background var(--t); }
.modal-close:hover { background: var(--rule); }
.modal-box h4 { font-size: 1.45rem; margin-bottom: 0.5rem; }
.modal-box > .modal-desc { font-size: 0.9rem; color: var(--text-mid); max-width: none; margin-bottom: 1.5rem; }
.input-row { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.75rem; }
.input-row label { font-size: 0.72rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-light); }
.success-message { display: none; text-align: center; padding: 2rem 0; }
.success-message.show { display: block; }
.success-icon { width: 46px; height: 46px; background: rgba(92,102,80,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--olive); font-size: 1.2rem; margin: 0 auto 1.25rem; }
.success-message h4 { margin-bottom: 0.5rem; }
.success-message p { font-size: 0.9rem; color: var(--text-mid); max-width: none; }

/* ── SERVICE PAGES ── */
.service-hero { padding-top: calc(68px + 5rem); padding-bottom: 3rem; }
.service-hero__grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(280px,.95fr); gap: clamp(2rem,4vw,5rem); align-items: end; }
.service-step { display: grid; grid-template-columns: 56px 1fr; gap: 1.25rem; padding: 1.25rem 0; border-top: 1px solid var(--rule); }
.service-step:first-child { border-top: none; }
.metric-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.metric-card { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-md); padding: 1.25rem; }
.metric-card strong { display: block; font-family: var(--serif); font-size: 1.8rem; color: var(--text); line-height: 1; margin-bottom: 0.5rem; }

/* ── SITEMAP / MISC ── */
.sitemap-list { columns: 2; column-gap: 2rem; list-style: none; }
.sitemap-list li { break-inside: avoid; margin-bottom: 0.8rem; }

/* ── SCROLL ANIMATION ── */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .insights-grid { grid-template-columns: repeat(2,1fr); }
  .audience__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__text { padding: calc(68px + 3rem) var(--pad) 3rem; }
  .hero__image { order: -1; min-height: 55vw; max-height: 420px; }
  .hero__image::after { background: linear-gradient(to bottom, rgba(26,26,24,0.12) 0%, transparent 40%), linear-gradient(to top, var(--bg) 0%, transparent 25%); }
  .insights-featured { grid-template-columns: 1fr; }
  .insights-featured__img-wrap { max-height: 260px; overflow: hidden; }
  .insights-featured__img { min-height: unset; max-height: 260px; }
  .about-intro { grid-template-columns: 1fr; }
  .two-col, .service-hero__grid, .article-layout, .metric-grid { grid-template-columns: 1fr; }
  .article-aside { position: static; }
}
@media (max-width: 768px) {
  .nav__links, .btn-nav { display: none; }
  .nav__toggle { display: flex; }
  .stats__grid { grid-template-columns: 1fr; }
  .stats__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 1.5rem 0; text-align: left; }
  .stats__item:last-child { border-bottom: none; }
  .services__grid, .tools-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .audience__list { grid-template-columns: 1fr; }
  .tool-full-card { grid-template-columns: 1fr; }
  .tool-full-card__side { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .insight-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .insight-row__time { display: none; }
  .insight-row:hover { margin: 0; padding-left: 0; padding-right: 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta__channels { max-width: 100%; }
  .sitemap-list { columns: 1; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.2rem; } h2 { font-size: 1.75rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
