/* =============================================
   CULTIVATE CAPABILITIES – MAIN STYLESHEET
   Brand Colours:
     Teal/Primary:   #00c2a8
     Dark Green:     #035159
     Light BG:       #f5fcfc
     White:          #ffffff
     Dark Text:      #1a1a1a
   ============================================= */

/* --- Polly Rounded – Self-hosted @font-face --- */
@font-face {
  font-family: 'Polly Rounded';
  src: url('../fonts/PollyRounded-Thin.otf')  format('opentype'),
       url('../fonts/PollyRounded-Thin.ttf')  format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Polly Rounded';
  src: url('../fonts/PollyRounded-Light.otf') format('opentype'),
       url('../fonts/PollyRounded-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Polly Rounded';
  src: url('../fonts/PollyRounded-Regular.otf') format('opentype'),
       url('../fonts/PollyRounded-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Polly Rounded';
  src: url('../fonts/PollyRounded-Bold.otf') format('opentype'),
       url('../fonts/PollyRounded-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Variables --- */
:root {
  --cc-teal:        #00c2a8;
  --cc-teal-dark:   #00a892;
  --cc-green:       #035159;
  --cc-green-light: #064d58;
  --cc-bg:          #f5fcfc;
  --cc-white:       #ffffff;
  --cc-dark:        #1a2e2e;
  --cc-text:        #2d3838;
  --cc-muted:       #607070;
  --cc-border:      #d0eaea;

  --font-heading:  'Polly Rounded', sans-serif;
  --font-body:     'Polly Rounded', Arial, sans-serif;

  --shadow-sm:  0 2px 8px rgba(3,81,89,0.10);
  --shadow-md:  0 4px 20px rgba(3,81,89,0.15);
  --shadow-lg:  0 8px 40px rgba(3,81,89,0.20);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --container-max: 1200px;
  --container-pad: 1.5rem;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--cc-text);
  background: var(--cc-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cc-teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--cc-green); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--cc-green);
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; font-weight: 700; }

p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

/* --- Container --- */
.cc-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* --- Buttons --- */
.cc-btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
  line-height: 1;
}
.cc-btn-primary {
  background: var(--cc-teal);
  color: var(--cc-white);
  border-color: var(--cc-teal);
}
.cc-btn-primary:hover {
  background: var(--cc-teal-dark);
  border-color: var(--cc-teal-dark);
  color: var(--cc-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.cc-btn-outline {
  background: transparent;
  color: var(--cc-white);
  border-color: var(--cc-white);
}
.cc-btn-outline:hover {
  background: var(--cc-white);
  color: var(--cc-green);
}
.cc-btn-green {
  background: var(--cc-green);
  color: #ffffff;
  border-color: var(--cc-green);
}
.cc-btn-green:hover {
  background: transparent;
  border-color: var(--cc-green);
  color: var(--cc-green);
  transform: translateY(-2px);
}

/* --- Section Utility --- */
.cc-section { padding: 5rem 0; }
.cc-section-sm { padding: 3rem 0; }
.cc-section-bg { background: var(--cc-bg); }
.cc-section-dark {
  background: var(--cc-green);
  color: var(--cc-white);
}
.cc-section-dark h1,
.cc-section-dark h2,
.cc-section-dark h3,
.cc-section-dark h4 { color: var(--cc-white); }

.cc-section-title {
  text-align: center;
  margin-bottom: .75rem;
}
.cc-section-subtitle {
  text-align: center;
  color: var(--cc-muted);
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}
.cc-overline {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cc-teal);
  margin-bottom: .6rem;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cc-white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.site-logo img { height: 55px; width: auto; }
.site-logo .logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--cc-green);
  line-height: 1.1;
}
.site-logo .logo-tagline {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cc-teal);
}

/* Nav */
.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav > ul { display: flex; align-items: center; gap: .1rem; }
.site-nav a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .04em;
  color: var(--cc-dark);
  padding: .5rem .8rem;
  border-radius: var(--radius-sm);
  transition: all .2s;
}
.site-nav a:hover { color: var(--cc-teal); background: rgba(0,194,168,.08); }
.site-nav .current-menu-item > a,
.site-nav .current-menu-ancestor > a { color: var(--cc-teal); }

/* Dropdown */
.site-nav .menu-item-has-children { position: relative; }
.site-nav .sub-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 200px;
  background: var(--cc-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: .5rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all .25s ease;
  z-index: 100;
  border-top: 3px solid var(--cc-teal);
}
.site-nav .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.site-nav .sub-menu li a {
  display: block;
  padding: .5rem 1.2rem;
  border-radius: 0;
  font-size: .85rem;
  color: var(--cc-text);
}
.site-nav .sub-menu li a:hover {
  background: var(--cc-bg);
  color: var(--cc-teal);
}

/* Nav CTA */
.nav-cta .cc-btn { padding: .6rem 1.4rem; font-size: .8rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cc-dark);
  border-radius: 2px;
  transition: all .3s;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cc-green) 0%, #064d58 50%, #02363d 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(0,194,168,.15) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300c2a8' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}
.hero-content {}
.hero-content .cc-overline { color: var(--cc-teal); font-size: .85rem; }
.hero-content h1 {
  color: var(--cc-white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 1rem 0;
  line-height: 1.1;
}
.hero-content h1 span { color: var(--cc-teal); }
.hero-content .hero-tagline {
  color: rgba(255,255,255,.85);
  font-size: 1.15rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.5rem;
}
.hero-content p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-lg);
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}
.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--cc-white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 130px;
}
.hero-badge .badge-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  color: var(--cc-teal);
  line-height: 1;
}
.hero-badge .badge-text {
  font-size: .75rem;
  font-weight: 600;
  color: var(--cc-text);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   INTRO / QUOTE BAND
   ============================================= */
.intro-band {
  background: var(--cc-teal);
  padding: 3rem 0;
}
.intro-band blockquote {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--cc-white);
  line-height: 1.5;
}
.intro-band cite {
  display: block;
  margin-top: 1rem;
  font-size: .85rem;
  font-weight: 400;
  color: rgba(255,255,255,.75);
  font-style: normal;
}

/* =============================================
   SERVICES CARDS
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--cc-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card__image {
  aspect-ratio: 16/10;
  background: var(--cc-bg);
  overflow: hidden;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .service-card__image img { transform: scale(1.05); }
.service-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(0,194,168,.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-card__icon svg { width: 26px; height: 26px; color: var(--cc-teal); fill: none; stroke: currentColor; stroke-width: 2; }
.service-card h3 { font-size: 1.4rem; margin-bottom: .75rem; }
.service-card p { color: var(--cc-muted); flex: 1; margin-bottom: 1.5rem; }
.service-card .cc-btn { align-self: flex-start; }

/* =============================================
   ABOUT SECTION (2-col)
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image { position: relative; }
.about-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-md);
}
.about-image::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  background: var(--cc-teal);
  opacity: .12;
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-content .cc-overline { margin-bottom: 1rem; }
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { color: var(--cc-muted); margin-bottom: 1rem; }

/* =============================================
   FOUNDER SECTION
   ============================================= */
.founder-section {
  background: linear-gradient(135deg, var(--cc-green) 0%, #064d58 100%);
  padding: 5rem 0;
}
.founder-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}
.founder-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--cc-teal);
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-content h2 { color: var(--cc-white); margin-bottom: .5rem; }
.founder-content .founder-title {
  color: var(--cc-teal);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.founder-content p { color: rgba(255,255,255,.85); margin-bottom: 1.25rem; }
.founder-strengths {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}

/* Base pill — white bg, solid coloured border + text */
.founder-strength-tag {
  border-radius: 50px;
  padding: .3rem .9rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  border: 1.5px solid;
  display: inline-block;
  background: #ffffff;
}

/* ── Gallup official domain colours ─────────────
   Strategic Thinking  #007DC5  blue
   Executing           #7B2D8B  purple
   Influencing         #E87722  orange
   Relationship Build  #0099A0  teal
   ─────────────────────────────────────────────── */
.founder-strength-tag--thinking {
  color: #007DC5;
  border-color: #007DC5;
}
.founder-strength-tag--executing {
  color: #7B2D8B;
  border-color: #7B2D8B;
}
.founder-strength-tag--influencing {
  color: #E87722;
  border-color: #E87722;
}
.founder-strength-tag--relationship {
  color: #0099A0;
  border-color: #0099A0;
}

/* Cert logos */
.founder-certs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.founder-cert-badge {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: linear-gradient(135deg, var(--cc-teal) 0%, #00a892 100%);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--cc-white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--cc-bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--cc-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  border-top: 4px solid var(--cc-teal);
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--cc-teal);
  opacity: .2;
  position: absolute;
  top: .5rem;
  left: 1.25rem;
  line-height: 1;
}
.testimonial-text {
  color: var(--cc-text);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cc-bg);
}
.testimonial-author-info strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .9rem;
  color: var(--cc-dark);
}
.testimonial-author-info span {
  font-size: .8rem;
  color: var(--cc-muted);
}

/* =============================================
   CLIENTS / LOGOS
   ============================================= */
.clients-section { background: var(--cc-white); padding: 4rem 0; }
.clients-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
  margin-top: 2.5rem;
}
.clients-logos img {
  max-height: 60px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .55;
  transition: all .3s;
}
.clients-logos img:hover { filter: grayscale(0); opacity: 1; }

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-section {
  background: var(--cc-green);
  padding: 4rem 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.newsletter-content h2 { color: var(--cc-white); margin-bottom: 1rem; }
.newsletter-content p { color: rgba(255,255,255,.8); }
.newsletter-form { display: flex; flex-direction: column; gap: .75rem; }
.newsletter-form input[type="email"] {
  padding: .9rem 1.25rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: var(--cc-white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color .2s;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input[type="email"]:focus { border-color: var(--cc-teal); }
.newsletter-form button {
  align-self: flex-start;
  padding: .85rem 2rem;
}

/* =============================================
   FOOTER
   ============================================= */
/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background-color: var(--cc-dark);
  color: rgba(255,255,255,.75);
}

.footer-body {
  padding: 5rem 0 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

/* Brand column */
.footer-brand-col {
  position: relative;
}

.footer-logo {
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

/* Bundled asset logo in footer */
.footer-logo-link { display: inline-block; }
.footer-logo-img {
  width: 200px;
  height: auto;
  display: block;
}

.footer-brand-col .footer-tagline,
.footer-brand-col .footer-desc,
.footer-brand-col .footer-social {
  position: relative;
  z-index: 1;
}

.footer-brand-col .logo-text {
  color: var(--cc-white);
  font-size: 1.3rem;
}
.footer-brand-col .logo-tagline {
  color: var(--cc-teal);
  font-size: .8rem;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cc-teal);
  margin-bottom: .75rem;
}

.footer-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all .2s;
}
.footer-social a:hover {
  border-color: var(--cc-teal);
  color: var(--cc-teal);
  background: rgba(0,194,168,.1);
}
.footer-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* Nav columns */
.footer-nav-col {}

.footer-col-heading {
  color: var(--cc-white);
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  list-style: none;
}

.footer-nav-col ul li a {
  color: rgba(255,255,255,.55);
  font-size: .875rem;
  text-decoration: none;
  transition: color .2s, padding-left .2s;
  display: block;
}

.footer-nav-col ul li a:hover {
  color: var(--cc-teal);
  padding-left: 4px;
}

/* CTA button in footer */
.footer-cta-btn {
  display: inline-block;
  margin-top: 1.75rem;
  background: var(--cc-teal);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .6rem 1.25rem;
  border-radius: 50px;
  transition: background .2s, transform .2s;
}
.footer-cta-btn:hover {
  background: #00a593;
  transform: translateY(-2px);
}

/* Bottom bar */
.footer-bottom-bar {
  background: rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-copyright strong { color: rgba(255,255,255,.5); }
.footer-copyright a {
  color: var(--cc-teal);
  text-decoration: none;
  opacity: .8;
}
.footer-copyright a:hover { opacity: 1; }

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer-legal-links a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .2s;
}
.footer-legal-links a:hover { color: var(--cc-teal); }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-body { padding: 3rem 0 2.5rem; }
  .footer-logo-img { width: 160px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: .5rem; }
}

/* =============================================
   PAGE HERO (Interior pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--cc-green) 0%, #064d58 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,194,168,.2) 0%, transparent 70%);
}
.page-hero h1 { color: var(--cc-white); position: relative; z-index: 1; }
.page-hero .breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  position: relative;
  z-index: 1;
}
.page-hero .breadcrumbs a { color: var(--cc-teal); }
.page-hero .breadcrumbs span { color: rgba(255,255,255,.4); }

/* =============================================
   CONTENT / ENTRY
   ============================================= */
.entry-content {
  max-width: 820px;
  margin: 0 auto;
}
.entry-content h2,
.entry-content h3 { margin: 2rem 0 1rem; }
.entry-content p { margin-bottom: 1.25rem; color: var(--cc-text); }
.entry-content ul, .entry-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: .5rem; }

/* =============================================
   BLOG / CARDS
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.post-card {
  background: var(--cc-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--cc-bg);
}
.post-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.post-card:hover .post-card__thumb img { transform: scale(1.05); }
.post-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.post-card__meta { font-size: .8rem; color: var(--cc-muted); margin-bottom: .75rem; }
.post-card h3 { font-size: 1.2rem; margin-bottom: .75rem; }
.post-card h3 a { color: var(--cc-dark); }
.post-card h3 a:hover { color: var(--cc-teal); }
.post-card p { color: var(--cc-muted); font-size: .9rem; flex: 1; }
.post-card__footer { margin-top: 1.25rem; }

/* =============================================
   PRICING
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--cc-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--cc-border);
  transition: all .3s;
  position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-md); border-color: var(--cc-teal); }
.pricing-card.featured {
  background: var(--cc-green);
  border-color: var(--cc-green);
  color: var(--cc-white);
}
.pricing-card.featured h3 { color: var(--cc-white); }
.pricing-card.featured p { color: rgba(255,255,255,.8); }
.pricing-card .featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cc-teal);
  color: var(--cc-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .9rem;
  border-radius: 50px;
}
.pricing-price {
  margin: 1rem 0;
}
.pricing-price .amount {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--cc-teal);
  line-height: 1;
}
.pricing-price .period { font-size: .85rem; color: var(--cc-muted); }
.pricing-features {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
}
.pricing-features li::before {
  content: '✓';
  color: var(--cc-teal);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: .05rem;
}

/* =============================================
   GALLUP / STRENGTHS DOMAINS
   ============================================= */
.domains-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.domain-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
}
.domain-card h3 { font-size: 1rem; margin: 1rem 0 .5rem; }
.domain-card p { font-size: .85rem; }
.domain-executing { background: rgba(0,194,168,.1); }
.domain-influencing { background: rgba(3,81,89,.1); }
.domain-relationship { background: rgba(255,165,0,.1); }
.domain-thinking { background: rgba(70,130,180,.1); }

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  border: 1px solid var(--cc-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--cc-dark);
  text-align: left;
  transition: background .2s;
}
.faq-question:hover { background: var(--cc-bg); }
.faq-question.active { color: var(--cc-teal); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cc-teal);
  color: var(--cc-white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform .3s;
}
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer-inner { padding: 0 1.5rem 1.25rem; color: var(--cc-muted); line-height: 1.8; }

/* =============================================
   STATS ROW
   ============================================= */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 3.5rem 0;
}
.stat-item .stat-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3rem;
  color: var(--cc-teal);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--cc-muted);
  margin-top: .5rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  margin-top: 3rem;
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,194,168,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--cc-teal); fill: none; stroke-width: 2; }
.contact-form-wrap { background: var(--cc-bg); border-radius: var(--radius-lg); padding: 2.5rem; }
.cc-form { display: flex; flex-direction: column; gap: 1.25rem; }
.cc-form label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  color: var(--cc-dark);
  margin-bottom: .35rem;
  display: block;
}
.cc-form input,
.cc-form textarea,
.cc-form select {
  width: 100%;
  padding: .85rem 1rem;
  border: 2px solid var(--cc-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cc-text);
  background: var(--cc-white);
  outline: none;
  transition: border-color .2s;
}
.cc-form input:focus,
.cc-form textarea:focus,
.cc-form select:focus { border-color: var(--cc-teal); }
.cc-form textarea { min-height: 140px; resize: vertical; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-content p { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-image { max-width: 500px; margin: 0 auto; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -1rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 500px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .domains-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .founder-inner { grid-template-columns: 1fr; text-align: center; }
  .founder-photo { margin: 0 auto; }
  .founder-strengths { justify-content: center; }
}

@media (max-width: 768px) {
  :root { --container-pad: 1.25rem; }
  .cc-section { padding: 3.5rem 0; }

  .nav-toggle { display: flex; }
  .site-nav > ul {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--cc-white);
    flex-direction: column;
    padding: 1rem 0 1.5rem;
    box-shadow: var(--shadow-md);
    border-top: 2px solid var(--cc-border);
  }
  .site-nav > ul.open { display: flex; }
  .site-nav > ul > li { width: 100%; }
  .site-nav a { padding: .75rem 1.5rem; border-radius: 0; width: 100%; }
  .site-nav .sub-menu {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--cc-teal);
    padding: 0;
    margin-left: 1.5rem;
    display: none;
  }
  .site-nav .sub-menu.open { display: block; }
  .nav-cta { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .domains-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }

  .hero { min-height: auto; }
  .hero-inner { padding: 3rem 0; }
}

@media (max-width: 480px) {
  .domains-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .cc-btn { text-align: center; }
}

/* =============================================
   ACCESSIBILITY & FOCUS
   ============================================= */
:focus-visible {
  outline: 3px solid var(--cc-teal);
  outline-offset: 3px;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* =============================================
   SKIP LINK
   ============================================= */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--cc-teal);
  color: var(--cc-white);
  padding: .5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999;
  font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* =============================================
   WP ALIGNMENT HELPERS
   ============================================= */
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; text-align: center; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .85rem; color: var(--cc-muted); margin-top: .5rem; text-align: center; }

/* =============================================
   LEGAL PAGES (Terms & Conditions / Privacy Policy)
   ============================================= */
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.legal-intro {
  background: var(--cc-bg);
  border-left: 4px solid var(--cc-teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
}

.legal-updated {
  font-size: .8rem;
  color: var(--cc-muted);
  font-family: var(--font-heading);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.legal-section {
  border-bottom: 1px solid var(--cc-border);
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-heading {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--cc-dark);
  margin-bottom: 1.25rem;
}

.legal-num {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--cc-teal);
  background: rgba(0,194,168,.1);
  padding: .2rem .6rem;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.legal-section h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--cc-dark);
  margin: 1.5rem 0 .6rem;
}

.legal-section h3:first-of-type {
  margin-top: 0;
}

.legal-section p {
  color: var(--cc-text);
  line-height: 1.75;
  margin-bottom: .85rem;
}

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1rem;
}

.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--cc-text);
  line-height: 1.65;
  font-size: .95rem;
}

.legal-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cc-teal);
  flex-shrink: 0;
  margin-top: .55rem;
}

.legal-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--cc-teal);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.legal-link:hover { border-bottom-color: var(--cc-teal); }

.legal-section--contact {
  background: var(--cc-bg);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  border: none;
  margin-top: 1rem;
}

.legal-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.25rem 0 1.5rem;
}

.legal-contact-grid div {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.legal-contact-grid strong {
  font-family: var(--font-heading);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--cc-muted);
}

.legal-contact-grid a,
.legal-contact-grid span {
  color: var(--cc-text);
  font-size: .95rem;
}

.legal-contact-grid a { color: var(--cc-teal); }

.legal-acknowledgement {
  background: var(--cc-dark);
  color: rgba(255,255,255,.85) !important;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-size: .9rem !important;
  font-style: italic;
  margin-bottom: 0 !important;
}

@media (max-width: 640px) {
  .legal-contact-grid { grid-template-columns: 1fr; }
  .legal-section--contact { padding: 1.5rem; }
  .legal-heading { font-size: 1.15rem; }
}

/* Footer legal links row */
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.footer-legal-links a {
  color: var(--cc-muted);
  font-size: .8rem;
  text-decoration: none;
  transition: color .2s;
}
.footer-legal-links a:hover { color: var(--cc-teal); }

/* =============================================
   SINGLE BLOG POST — full width, no sidebar
   ============================================= */
.single-post-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.single-post-thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.single-post-meta {
  display: none;
}

.single-post-author {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--cc-dark);
}

.single-post-sep { opacity: .4; }

.entry-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--cc-text);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: var(--font-heading);
  color: var(--cc-dark);
  margin: 2rem 0 .75rem;
}

.entry-content h2 { font-size: 1.6rem; }
.entry-content h3 { font-size: 1.25rem; }

.entry-content p { margin-bottom: 1.25rem; }

.entry-content ul,
.entry-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.entry-content a {
  color: var(--cc-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content blockquote {
  border-left: 4px solid var(--cc-teal);
  margin: 2rem 0;
  padding: 1.25rem 1.75rem;
  background: var(--cc-bg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--cc-dark);
  font-size: 1.05rem;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1rem 0;
}

.entry-content figure { margin: 1.5rem 0; }
.entry-content figcaption {
  font-size: .82rem;
  color: var(--cc-muted);
  text-align: center;
  margin-top: .5rem;
}

.single-post-nav {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cc-border);
}

.single-post-nav .post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.single-post-nav .nav-label {
  font-size: .78rem;
  color: var(--cc-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.single-post-nav a { color: var(--cc-dark); text-decoration: none; }
.single-post-nav a:hover { color: var(--cc-teal); }

@media (max-width: 640px) {
  .single-post-nav .post-navigation { grid-template-columns: 1fr; }
}

/* =============================================
   CASE STUDY CARDS
   ============================================= */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.cs-card {
  background: var(--cc-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cc-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}

.cs-card:hover {
  box-shadow: 0 8px 32px rgba(3,81,89,.1);
  transform: translateY(-3px);
}

.cs-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cc-bg);
}

.cs-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.cs-card:hover .cs-card__image img {
  transform: scale(1.04);
}

.cs-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}

.cs-card__tag {
  display: inline-block;
  background: rgba(0,194,168,.12);
  color: var(--cc-teal);
  border-radius: 50px;
  padding: .25rem .85rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  width: fit-content;
}

.cs-card__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--cc-dark);
  margin: 0;
}

.cs-card__name a {
  color: inherit;
  text-decoration: none;
}

.cs-card__name a:hover { color: var(--cc-teal); }

.cs-card__role {
  font-size: .875rem;
  color: var(--cc-muted);
  margin: 0;
}

.cs-card__result {
  font-size: .82rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--cc-dark);
  background: var(--cc-bg);
  border-left: 3px solid var(--cc-teal);
  padding: .4rem .75rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 0;
}

.cs-card__excerpt {
  font-size: .9rem;
  color: var(--cc-text);
  line-height: 1.65;
  flex: 1;
}

.cs-card__excerpt p { margin: 0; }

.cs-card__btn {
  margin-top: auto;
  align-self: flex-start;
}

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

/* =============================================
   CASE STUDY — SINGLE PAGE LAYOUT
   ============================================= */
.cs-single-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.cs-single-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cc-border);
}

.cs-single-header__left {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  flex: 1;
}

.cs-single-avatar {
  flex-shrink: 0;
}

.cs-single-avatar__img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--cc-teal);
  display: block;
}

.cs-single-header__info {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.cs-single-company {
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--cc-teal);
  margin: 0;
}

.cs-single-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--cc-dark);
  margin: 0;
}

.cs-single-role,
.cs-single-result {
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--cc-muted);
  margin: 0;
}

.cs-single-content {
  font-size: 1.0625rem;
  line-height: 1.8;
}

/* Media block */
.cs-single-media {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--cc-border);
}

.cs-single-media__heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--cc-dark);
  margin-bottom: 1.25rem;
}

.cs-single-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 landscape */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cc-dark);
}

/* YouTube Shorts — 9:16 portrait, centred and capped width */
.cs-single-embed--shorts {
  padding-bottom: 0;
  height: auto;
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
}

.cs-single-embed--shorts iframe {
  position: static;
  width: 100%;
  height: 100%;
  display: block;
}

.cs-single-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Back link */
.cs-single-back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cc-border);
}

.cs-single-back__link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  color: var(--cc-teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .2s;
}

.cs-single-back__link:hover { gap: .6rem; }

@media (max-width: 600px) {
  .cs-single-header__left { flex-direction: column; gap: 1rem; }
  .cs-single-avatar__img  { width: 80px; height: 80px; }
}
