@import "tailwindcss";

:root {
  --ink: #123747;
  --ink-soft: #345665;
  --teal: #15928e;
  --teal-dark: #0c7775;
  --cream: #f7f4ed;
  --paper: #fffdf8;
  --gold: #cda95f;
  --mint: #dcefe9;
  --teal-pale: #eef7f4;
  --gold-pale: #f3ead8;
  --line: #d9e2de;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 75%, transparent);
}
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: .06em; }
.brand img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; box-shadow: 0 8px 24px rgba(18,55,71,.12); }
.brand span { font-size: 15px; }
.brand span strong { color: var(--teal); }
.main-nav { display: flex; gap: 26px; align-items: center; font-size: 14px; font-weight: 750; }
.main-nav a:hover { color: var(--teal-dark); }
.nav-cta { border: 1px solid var(--teal); color: var(--teal-dark); border-radius: 999px; padding: 10px 16px; }

.home-carousel {
  position: relative;
  height: clamp(570px, 74vh, 760px);
  min-height: 570px;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.home-carousel-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .7s ease; }
.home-carousel-slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
.home-carousel-image { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.015); }
.home-carousel-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(9,37,48,.94) 0%, rgba(9,37,48,.82) 37%, rgba(9,37,48,.35) 66%, rgba(9,37,48,.18) 100%);
}
.home-carousel-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; padding-block: 60px 100px; }
.home-carousel-copy { width: min(690px, 66%); color: white; }
.home-carousel-eyebrow { color: #8ce2d8; text-transform: uppercase; letter-spacing: .17em; font-size: 12px; font-weight: 900; }
.home-carousel-copy h1 { margin: 16px 0 22px; max-width: 760px; font-size: clamp(48px, 6vw, 78px); line-height: .98; letter-spacing: -.045em; font-weight: 920; text-wrap: balance; }
.home-carousel-copy p { max-width: 650px; margin: 0; color: #e6f0ee; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.7; }
.home-carousel-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.carousel-button { display: inline-flex; min-height: 49px; align-items: center; justify-content: center; padding: 0 22px; border-radius: 999px; font-weight: 850; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.carousel-button-primary { background: white; color: var(--ink); border: 1px solid white; }
.carousel-button-primary:hover { background: #8ce2d8; border-color: #8ce2d8; }
.carousel-button-secondary { border: 1px solid rgba(255,255,255,.58); color: white; background: rgba(255,255,255,.07); backdrop-filter: blur(7px); }
.carousel-button-secondary:hover { background: rgba(255,255,255,.18); border-color: white; }
.carousel-arrow { position: absolute; z-index: 4; top: 50%; width: 48px; height: 48px; margin-top: -24px; border-radius: 50%; border: 1px solid rgba(255,255,255,.48); background: rgba(9,37,48,.32); color: white; display: grid; place-items: center; backdrop-filter: blur(8px); font-size: 22px; transition: background .2s ease; }
.carousel-arrow:hover { background: rgba(9,37,48,.7); }
.carousel-arrow-prev { left: 22px; }
.carousel-arrow-next { right: 22px; }
.carousel-dots { position: absolute; z-index: 4; left: 50%; bottom: 30px; transform: translateX(-50%); display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 999px; background: rgba(9,37,48,.28); backdrop-filter: blur(8px); }
.carousel-dot { width: 10px; height: 10px; border: 1px solid rgba(255,255,255,.78); border-radius: 50%; padding: 0; background: transparent; }
.carousel-dot.is-active { width: 28px; border-radius: 999px; background: white; }

.hero { min-height: 650px; display: grid; grid-template-columns: 1.12fr .88fr; gap: 64px; align-items: center; padding-block: 72px 90px; }
.hero-copy h1, .section-heading h2, .listen-section h2, .page-hero h1 {
  margin: 14px 0 20px; letter-spacing: -.04em; line-height: .98; font-weight: 900;
}
.hero-copy h1 { font-size: clamp(52px, 7vw, 88px); max-width: 800px; }
.section-heading h2, .listen-section h2, .page-hero h1 { font-size: clamp(38px, 5vw, 58px); }
.eyebrow { color: var(--teal-dark); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 900; }
.lead { color: var(--ink-soft); font-size: 19px; line-height: 1.75; max-width: 720px; }
.lead.small { font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 0 22px; border-radius: 999px; font-weight: 850; border: 1px solid transparent; }
.button.primary { background: var(--ink); color: var(--white); }
.button.primary:hover { background: var(--teal-dark); }
.button.secondary { border-color: var(--line); background: var(--white); }
.button.light { background: var(--white); color: var(--ink); }
.button.danger { background: #8e3131; color: #fff; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.tag-row span { background: #eef7f4; color: var(--teal-dark); border-radius: 999px; padding: 8px 13px; font-size: 13px; font-weight: 800; }
.hero-brand-card { border: 1px solid var(--line); border-radius: 42px; overflow: hidden; background: var(--cream); box-shadow: 0 30px 80px rgba(18,55,71,.12); transform: rotate(1.5deg); }

.section { padding-block: 92px; }
.section-tint { background: #eef5f2; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.split-heading { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.text-link { color: var(--teal-dark); font-weight: 900; white-space: nowrap; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pillar-card { position: relative; min-height: 190px; border: 1px solid var(--line); border-radius: 26px; padding: 26px; background: var(--white); transition: transform .2s ease, box-shadow .2s ease; }
.pillar-card:hover { transform: translateY(-3px); box-shadow: 0 18px 46px rgba(18,55,71,.09); }
.pillar-card:nth-child(1) { background: var(--mint); border-color: transparent; }
.pillar-card:nth-child(2) { background: var(--gold-pale); border-color: transparent; }
.pillar-card:nth-child(3) { background: var(--white); }
.pillar-card:nth-child(4) { background: #e9f5f1; border-color: transparent; }
.pillar-card:nth-child(5) { background: #f8f0e2; border-color: transparent; }
.pillar-card:nth-child(6) { background: var(--ink); border-color: var(--ink); color: white; }
.pillar-card:nth-child(6) p { color: #c5d8d4; }
.pillar-card:nth-child(6) .pillar-number { color: #8bd5cc; }
.pillar-card h3 { font-size: 22px; margin: 28px 0 8px; }
.pillar-card p { margin: 0; color: var(--ink-soft); line-height: 1.6; }
.pillar-number { position: absolute; top: 22px; right: 24px; color: var(--gold); font-weight: 900; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card { background: var(--white); border: 1px solid var(--line); border-radius: 28px; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 22px 54px rgba(18,55,71,.1); }
.post-cover { aspect-ratio: 4/5; object-fit: cover; width: 100%; background: var(--cream); }
.post-card-body { padding: 24px; }
.category { color: var(--teal-dark); text-transform: uppercase; letter-spacing: .13em; font-size: 11px; font-weight: 900; }
.post-card h3 { font-size: 22px; line-height: 1.15; margin: 10px 0; }
.post-card p { color: var(--ink-soft); line-height: 1.6; margin: 0; }
.listen-section { display: grid; grid-template-columns: 1fr 320px; gap: 70px; align-items: center; }
.listen-badge { width: 280px; aspect-ratio: 1; border-radius: 50%; margin-inline: auto; color: white; background: var(--ink); display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: inset 0 0 0 12px rgba(255,255,255,.08); }
.listen-badge span { color: #6ad1c8; font-size: 86px; line-height: .9; font-weight: 950; }
.listen-badge strong { font-size: 25px; text-transform: uppercase; }
.listen-badge small { color: #dce8e5; margin-top: 5px; }

.home-listen-section { background: linear-gradient(135deg, var(--gold-pale) 0%, var(--paper) 52%, var(--mint) 100%); }
.home-listen-card { min-height: 500px; display: grid; grid-template-columns: .92fr 1.08fr; border-radius: 38px; overflow: hidden; background: var(--ink); box-shadow: 0 28px 75px rgba(18,55,71,.16); }
.home-listen-image { position: relative; min-height: 500px; }
.home-listen-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,39,49,.72)); }
.home-listen-image img { width: 100%; height: 100%; object-fit: cover; }
.home-listen-image > span { position: absolute; z-index: 2; left: 26px; bottom: 24px; border-radius: 999px; padding: 9px 14px; background: #8bd5cc; color: var(--ink); text-transform: uppercase; font-size: 11px; font-weight: 950; letter-spacing: .14em; }
.home-listen-copy { padding: clamp(36px, 5vw, 70px); display: flex; flex-direction: column; justify-content: center; color: white; }
.home-listen-copy .eyebrow { color: #8bd5cc; }
.home-listen-copy h2 { margin: 14px 0 20px; font-size: clamp(40px, 4.7vw, 60px); line-height: .98; letter-spacing: -.04em; }
.home-listen-copy p { color: #d5e5e1; font-size: 17px; line-height: 1.72; }
.home-listen-trust { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 26px; }
.home-listen-trust span { border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 8px 11px; color: #e6f1ef; background: rgba(255,255,255,.07); font-size: 12px; font-weight: 800; }
.home-listen-copy .button { align-self: flex-start; }

.page-hero { padding-block: 76px 48px; max-width: 860px; }
.page-hero p { max-width: 760px; }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.story-copy { position: sticky; top: 120px; }
.story-copy h2 { font-size: 44px; line-height: 1.03; margin: 12px 0 20px; letter-spacing: -.03em; }
.story-copy p { color: var(--ink-soft); font-size: 17px; line-height: 1.8; }
.carousel-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.carousel-gallery img { border-radius: 22px; border: 1px solid var(--line); }
.carousel-gallery img:first-child { grid-column: 1 / -1; width: 68%; justify-self: center; }
.company-section { border-top: 1px solid var(--line); }
.company-audience { border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.company-audience h2, .company-listen h2 { margin: 12px 0 18px; font-size: clamp(36px, 4.5vw, 56px); line-height: 1; letter-spacing: -.04em; }
.company-audience p, .company-listen p { color: var(--ink-soft); font-size: 17px; line-height: 1.8; }
.company-audience-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.company-audience-tags span { padding: 13px 17px; border-radius: 999px; border: 1px solid var(--line); background: #eef7f4; color: var(--teal-dark); font-weight: 850; }
.company-listen { border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 340px; gap: 70px; align-items: center; }
.company-principles { min-height: 330px; border-radius: 30px; background: var(--ink); color: white; padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.company-principles .eyebrow { color: #8ce2d8; margin-bottom: 20px; }
.company-principles strong { font-size: 34px; line-height: 1.15; }
.company-principles small { color: #b8d0ca; margin-top: 24px; line-height: 1.6; }

.company-page { overflow: hidden; }
.company-hero { position: relative; padding: 76px 0 82px; background: linear-gradient(135deg, var(--gold-pale) 0%, var(--paper) 47%, var(--mint) 100%); }
.company-hero::before { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; top: -180px; right: 14%; background: rgba(21,146,142,.11); }
.company-hero-grid { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; gap: 66px; align-items: center; }
.company-hero-copy h1 { margin: 14px 0 24px; font-size: clamp(48px, 6vw, 74px); line-height: .98; letter-spacing: -.045em; }
.company-hero-copy > p { color: var(--ink-soft); max-width: 640px; font-size: 18px; line-height: 1.75; }
.company-hero-visual { position: relative; margin: 0; padding: 0 0 22px 22px; }
.company-hero-visual::before { content: ""; position: absolute; inset: 42px 24px 0 0; border-radius: 38px; background: var(--teal); transform: rotate(-2.2deg); }
.company-hero-visual img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 38px; box-shadow: 0 28px 70px rgba(18,55,71,.18); }
.company-hero-visual figcaption { position: absolute; z-index: 2; right: -16px; bottom: 0; max-width: 260px; padding: 14px 18px; border-radius: 16px; background: var(--ink); color: white; font-size: 13px; font-weight: 850; box-shadow: 0 14px 34px rgba(18,55,71,.18); }
.company-area-band { background: var(--ink); padding: 26px 0; }
.company-area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.company-area-card { min-height: 190px; border-radius: 22px; padding: 23px; color: var(--ink); }
.company-area-card span { display: block; font-weight: 950; opacity: .58; }
.company-area-card h2 { margin: 26px 0 8px; font-size: 22px; }
.company-area-card p { margin: 0; font-size: 14px; line-height: 1.55; }
.company-area-card.area-1 { background: #8bd5cc; }
.company-area-card.area-2 { background: #f1d89f; }
.company-area-card.area-3 { background: #f7f4ed; }
.company-area-card.area-4 { background: #bfded5; }
.company-story-rich { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: center; }
.company-story-copy h2, .company-audience-rich h2, .company-listen-rich h2 { margin: 13px 0 20px; font-size: clamp(38px, 4.7vw, 58px); line-height: 1; letter-spacing: -.04em; }
.company-story-copy p, .company-audience-rich p, .company-listen-rich p { color: var(--ink-soft); font-size: 17px; line-height: 1.82; }
.company-purpose-card { min-height: 430px; border-radius: 34px; padding: 42px; color: white; background: linear-gradient(155deg, var(--teal-dark), var(--ink)); display: flex; flex-direction: column; justify-content: center; box-shadow: 0 28px 70px rgba(18,55,71,.14); }
.company-purpose-card .eyebrow { color: #9de5dc; margin-bottom: 22px; }
.company-purpose-card strong { font-size: clamp(38px, 4vw, 54px); line-height: 1.02; }
.company-purpose-card p { color: #d6e7e3; line-height: 1.7; margin: 24px 0 0; }
.company-values-section { padding: 88px 0; background: var(--teal-dark); color: white; }
.company-heading-light .eyebrow { color: #a9e8df; }
.company-heading-light h2 { color: white; }
.company-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.company-values-grid article { min-height: 250px; border: 1px solid rgba(255,255,255,.2); border-radius: 28px; padding: 30px; background: rgba(255,255,255,.08); }
.company-values-grid article:nth-child(2) { background: #f3ead8; color: var(--ink); }
.company-values-grid article:nth-child(3) { background: #bfe1d9; color: var(--ink); }
.company-values-grid span { font-size: 12px; font-weight: 950; letter-spacing: .14em; opacity: .7; }
.company-values-grid h3 { margin: 54px 0 12px; font-size: 25px; line-height: 1.08; }
.company-values-grid p { margin: 0; line-height: 1.65; opacity: .88; }
.company-audience-rich { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.company-audience-stack { display: flex; flex-wrap: wrap; gap: 10px; }
.company-audience-stack span { padding: 13px 17px; border-radius: 999px; font-weight: 850; }
.company-audience-stack span:nth-child(4n+1) { background: var(--mint); color: var(--teal-dark); }
.company-audience-stack span:nth-child(4n+2) { background: var(--gold-pale); color: #6e5726; }
.company-audience-stack span:nth-child(4n+3) { background: var(--ink); color: white; }
.company-audience-stack span:nth-child(4n) { background: var(--teal); color: white; }
.company-locations-section { padding: 90px 0; background: var(--cream); border-block: 1px solid var(--line); }
.company-location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.location-card { min-height: 270px; border-radius: 30px; padding: 34px; display: flex; flex-direction: column; justify-content: end; }
.location-card h3 { margin: 12px 0 16px; font-size: 30px; letter-spacing: -.03em; }
.location-card address { font-style: normal; line-height: 1.7; font-size: 16px; }
.location-city { align-self: flex-start; border-radius: 999px; padding: 8px 12px; font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .1em; }
.location-uberaba { background: var(--ink); color: white; }
.location-uberaba .location-city { background: #8bd5cc; color: var(--ink); }
.location-uberlandia { background: #f1d89f; color: var(--ink); }
.location-uberlandia .location-city { background: var(--ink); color: white; }
.company-listen-rich { display: grid; grid-template-columns: 1fr 330px; gap: 70px; align-items: center; }
.company-data-note { padding: 15px 18px; border-left: 4px solid var(--gold); background: var(--gold-pale); border-radius: 0 12px 12px 0; font-size: 14px !important; }
.company-listen-cta { aspect-ratio: 1; border-radius: 50%; padding: 32px; background: var(--teal); color: white; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: inset 0 0 0 12px rgba(255,255,255,.1); text-align: center; }
.company-listen-cta > span { font-size: 82px; line-height: .85; font-weight: 950; color: #dff6f1; }
.company-listen-cta strong { font-size: 25px; text-transform: uppercase; }
.company-listen-cta small { margin: 5px 0 20px; color: #e4f4f1; }
.company-listen-cta .button { min-height: 44px; }

.article-wrap { max-width: 820px; padding-block: 70px 100px; }
.article-wrap h1 { font-size: clamp(40px, 6vw, 64px); line-height: 1; letter-spacing: -.04em; margin: 14px 0 20px; }
.article-cover { border-radius: 30px; width: min(520px, 100%); margin: 34px auto; }
.article-body { color: var(--ink-soft); font-size: 18px; line-height: 1.85; white-space: pre-line; }

.survey-page { overflow: hidden; }
.survey-hero { position: relative; padding: 72px 0 78px; color: white; background: radial-gradient(circle at 12% 10%, rgba(139,213,204,.2), transparent 32%), linear-gradient(145deg, var(--teal-dark), var(--ink) 70%); }
.survey-hero::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; right: -100px; bottom: -150px; border: 44px solid rgba(205,169,95,.14); }
.survey-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .95fr 1.05fr; gap: 66px; align-items: center; }
.survey-hero-copy .eyebrow { color: #a9e8df; }
.survey-hero-copy h1 { margin: 14px 0 22px; font-size: clamp(50px, 6vw, 74px); line-height: .97; letter-spacing: -.045em; }
.survey-hero-copy > p { color: #d8e8e5; font-size: 18px; line-height: 1.72; max-width: 650px; }
.survey-trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 28px; }
.survey-trust-row span { min-width: 116px; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; padding: 11px 13px; background: rgba(255,255,255,.07); color: #dbeae7; font-size: 12px; }
.survey-trust-row strong { display: block; color: #8bd5cc; font-size: 22px; line-height: 1; margin-bottom: 5px; }
.survey-hero-button { min-width: 180px; }
.survey-hero-visual { position: relative; margin: 0; padding: 0 0 20px 20px; }
.survey-hero-visual::before { content: ""; position: absolute; inset: 36px 20px 0 0; border-radius: 34px; background: var(--gold); transform: rotate(-2deg); }
.survey-hero-visual img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 34px; box-shadow: 0 28px 70px rgba(0,0,0,.2); }
.survey-hero-visual figcaption { position: absolute; z-index: 2; right: -12px; bottom: 0; border-radius: 15px; padding: 13px 16px; background: #f1d89f; color: var(--ink); font-size: 13px; font-weight: 900; }
.survey-value-band { padding: 26px 0; background: var(--gold-pale); border-bottom: 1px solid #e5d8bf; }
.survey-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.survey-value-grid article { min-height: 160px; border-radius: 22px; padding: 23px; background: var(--white); border: 1px solid rgba(205,169,95,.26); }
.survey-value-grid article:nth-child(2) { background: var(--mint); border-color: transparent; }
.survey-value-grid article:nth-child(3) { background: var(--ink); color: white; border-color: transparent; }
.survey-value-grid span { display: block; color: var(--gold); font-size: 11px; font-weight: 950; letter-spacing: .14em; }
.survey-value-grid strong { display: block; margin: 20px 0 8px; font-size: 21px; }
.survey-value-grid p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }
.survey-value-grid article:nth-child(3) p { color: #cfe0dc; }
.survey-form-section { max-width: 920px; scroll-margin-top: 96px; }
.survey-form-heading { max-width: 780px; margin: 0 auto 38px; text-align: center; }
.survey-form-heading h2 { margin: 12px 0 16px; font-size: clamp(40px, 5vw, 58px); line-height: 1; letter-spacing: -.04em; }
.survey-form-heading > p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.survey-progress { display: flex; align-items: center; justify-content: center; gap: 0; margin-top: 26px; }
.survey-progress span { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--teal); color: white; font-weight: 950; box-shadow: 0 0 0 5px var(--paper); }
.survey-progress span + span { margin-left: 24px; position: relative; }
.survey-progress span + span::before { content: ""; position: absolute; width: 28px; height: 2px; right: 40px; background: #b9d8d1; }
.survey-form { display: grid; gap: 18px; counter-reset: radar-question; }
.question-card { position: relative; border: 1px solid var(--line); border-radius: 26px; background: var(--white); padding: 30px; box-shadow: 0 15px 40px rgba(18,55,71,.055); transition: transform .2s ease, border-color .2s ease; }
.question-card:hover { transform: translateY(-2px); border-color: #a8cbc4; }
.question-card:nth-of-type(2) { border-left: 5px solid #8bd5cc; }
.question-card:nth-of-type(3) { border-left: 5px solid var(--gold); }
.question-card:nth-of-type(4) { border-left: 5px solid var(--teal); }
.question-card:nth-of-type(5) { border-left: 5px solid var(--ink); }
.question-card legend { font-weight: 900; font-size: 20px; line-height: 1.35; padding: 0 10px 0 4px; max-width: 95%; }
.question-card label { display: grid; gap: 8px; color: var(--ink-soft); font-size: 14px; font-weight: 700; margin-top: 14px; }
.question-card select, .question-card textarea, .question-card input, .cms-form input, .cms-form textarea, .cms-form select {
  width: 100%; border: 1px solid #cbd7d3; border-radius: 13px; background: #fff; color: var(--ink); padding: 13px 14px; outline: none;
}
.question-card select:focus, .question-card textarea:focus, .question-card input:focus, .cms-form input:focus, .cms-form textarea:focus, .cms-form select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(21,146,142,.12); }
.question-card textarea { min-height: 130px; resize: vertical; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { color: var(--ink-soft); font-size: 13px; line-height: 1.6; }
.survey-final-note { margin-top: 4px; border-radius: 20px; padding: 20px 22px; background: linear-gradient(135deg, var(--mint), var(--gold-pale)); }
.survey-final-note strong { color: var(--teal-dark); font-size: 17px; }
.survey-final-note p { margin: 6px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.6; }
.survey-submit { width: 100%; min-height: 54px; font-size: 16px; }
.form-message { border-radius: 14px; padding: 14px 16px; font-weight: 750; }
.form-message.success { background: #e5f5ee; color: #146948; }
.form-message.error { background: #fde9e9; color: #8e3131; }

.admin-wrap { padding-block: 58px 100px; }
.admin-top { display: flex; justify-content: space-between; align-items: start; gap: 24px; margin-bottom: 34px; }
.admin-top h1 { font-size: 44px; margin: 8px 0; }
.admin-layout { display: grid; grid-template-columns: 420px 1fr; gap: 28px; align-items: start; }
.admin-panel { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 24px; }
.admin-panel h2 { margin-top: 0; }
.cms-form { display: grid; gap: 13px; }
.cms-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 800; }
.check-row { display: flex !important; grid-template-columns: none !important; flex-direction: row; align-items: center; gap: 8px !important; }
.check-row input { width: auto; }
.admin-post { padding: 17px 0; border-top: 1px solid var(--line); }
.admin-post:first-of-type { border-top: 0; }
.admin-post h3 { margin: 4px 0; }
.admin-actions { display: flex; gap: 8px; margin-top: 10px; }
.mini-button { border: 1px solid var(--line); background: var(--white); border-radius: 999px; padding: 8px 12px; font-size: 12px; font-weight: 850; }
.mini-button.delete { color: #8e3131; }
.survey-table-wrap { overflow-x: auto; }
.survey-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.survey-table th, .survey-table td { padding: 12px 10px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; min-width: 120px; }
.survey-table th { color: var(--teal-dark); }

.site-footer { background: var(--ink); color: #e7f1ef; padding: 58px 0 26px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.15fr .7fr 1.15fr 1.05fr; gap: 36px; }
.site-footer h3 { color: white; margin: 0 0 10px; }
.site-footer p, .site-footer a, .site-footer address { color: #b8d0ca; line-height: 1.65; font-size: 13px; font-style: normal; }
.site-footer address strong { color: white; }
.footer-purpose { color: #8bd5cc !important; font-weight: 850; }
.footer-links { display: grid; gap: 8px; align-content: start; }
.footer-label { color: #75c9c0 !important; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: 11px !important; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #829e98; font-size: 12px; }
.footer-bottom a { font-size: 12px; }

@media (max-width: 900px) {
  .main-nav { gap: 14px; font-size: 12px; }
  .home-carousel-copy { width: min(720px, 82%); }
  .home-carousel-shade { background: linear-gradient(90deg, rgba(9,37,48,.94) 0%, rgba(9,37,48,.7) 64%, rgba(9,37,48,.32) 100%); }
  .hero { grid-template-columns: 1fr; padding-top: 52px; }
  .hero-brand-card { max-width: 560px; justify-self: center; }
  .pillar-grid, .post-grid { grid-template-columns: 1fr 1fr; }
  .listen-section, .story-grid, .admin-layout, .company-audience, .company-listen { grid-template-columns: 1fr; }
  .company-hero-grid, .company-story-rich, .company-audience-rich, .company-listen-rich { grid-template-columns: 1fr; }
  .company-area-grid { grid-template-columns: 1fr 1fr; }
  .company-values-grid { grid-template-columns: 1fr; }
  .company-hero-visual { max-width: 720px; }
  .company-listen-cta { width: 300px; justify-self: center; }
  .home-listen-card, .survey-hero-grid { grid-template-columns: 1fr; }
  .home-listen-image { min-height: 420px; }
  .survey-hero-visual { max-width: 720px; }
  .story-copy { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 72px; }
  .brand span { display: none; }
  .brand img { width: 50px; height: 50px; }
  .main-nav { gap: 8px; font-size: 11px; }
  .main-nav .nav-cta { padding: 8px 10px; }
  .home-carousel { height: 620px; min-height: 620px; }
  .home-carousel-image { background-position: 58% center; }
  .home-carousel-shade { background: linear-gradient(180deg, rgba(9,37,48,.38) 0%, rgba(9,37,48,.86) 45%, rgba(9,37,48,.97) 100%); }
  .home-carousel-content { align-items: flex-end; padding-bottom: 94px; }
  .home-carousel-copy { width: 100%; }
  .home-carousel-copy h1 { font-size: clamp(38px, 11.5vw, 50px); }
  .home-carousel-copy p { font-size: 16px; line-height: 1.55; }
  .home-carousel-actions { margin-top: 22px; }
  .carousel-button { min-height: 45px; padding: 0 17px; font-size: 14px; }
  .carousel-arrow { top: 34%; width: 42px; height: 42px; }
  .carousel-arrow-prev { left: 12px; }
  .carousel-arrow-next { right: 12px; }
  .carousel-dots { bottom: 22px; }
  .hero { gap: 38px; padding-block: 44px 70px; }
  .hero-copy h1 { font-size: 48px; }
  .section { padding-block: 68px; }
  .pillar-grid, .post-grid, .field-grid, .carousel-gallery { grid-template-columns: 1fr; }
  .carousel-gallery img:first-child { grid-column: auto; width: 100%; }
  .split-heading { display: block; }
  .split-heading .text-link { display: inline-block; margin-top: 8px; }
  .listen-badge { width: 230px; }
  .home-listen-card { border-radius: 28px; }
  .home-listen-image { min-height: 300px; }
  .home-listen-copy { padding: 32px 24px 38px; }
  .home-listen-copy h2 { font-size: 40px; }
  .survey-hero { padding: 54px 0 62px; }
  .survey-hero-grid { gap: 42px; }
  .survey-hero-copy h1 { font-size: 44px; }
  .survey-hero-visual { padding: 0 0 16px 12px; }
  .survey-hero-visual figcaption { right: -2px; }
  .survey-value-grid { grid-template-columns: 1fr; }
  .survey-value-grid article { min-height: 135px; }
  .survey-progress span { width: 36px; height: 36px; }
  .survey-progress span + span { margin-left: 18px; }
  .survey-progress span + span::before { width: 22px; right: 34px; }
  .question-card { padding: 24px 20px; }
  .company-hero { padding: 54px 0 62px; }
  .company-hero-grid { gap: 42px; }
  .company-hero-copy h1 { font-size: 44px; }
  .company-hero-visual { padding: 0 0 16px 12px; }
  .company-hero-visual figcaption { right: -2px; }
  .company-area-grid, .company-location-grid { grid-template-columns: 1fr; }
  .company-area-card { min-height: 165px; }
  .company-story-rich, .company-audience-rich, .company-listen-rich { gap: 42px; }
  .company-purpose-card { min-height: 360px; padding: 30px; }
  .company-values-section, .company-locations-section { padding: 66px 0; }
  .company-listen-cta { width: 240px; padding: 25px; }
  .company-listen-cta > span { font-size: 66px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .admin-top { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  .home-carousel-slide { transition: none; }
}
