/* ============================================================
   Cohn Construction — Custom Stylesheet
   Brand: Black #000000 | Cool Gray #EEEDEB | Gold #FFC826
   Font: Inter (Google Fonts, loaded in front-page.php)
   ============================================================ */

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }

.cohn-page {
  font-family: 'Inter', Arial, sans-serif;
  background: #fff;
  color: #000;
  overflow-x: hidden;
}

/* GeneratePress overrides — suppress default header/nav/footer on front-page */
.cohn-page ~ #site-header,
body.page-template-front-page #site-header,
body.home.page #site-header { display: none !important; }

/* ---------- ANIMATIONS ---------- */
@keyframes scrollPulse {
  0%   { transform: translateY(-100%); }
  50%  { transform: translateY(200%); }
  100% { transform: translateY(-100%); }
}
@keyframes pinPulse {
  0%   { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(2.5); opacity: 0; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroScale {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

/* ---------- FIXED HEADER ---------- */
.cohn-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: background 0.4s cubic-bezier(0.4,0,0.2,1),
              padding 0.4s cubic-bezier(0.4,0,0.2,1),
              backdrop-filter 0.4s ease;
}
.cohn-header.scrolled {
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  padding: 16px 60px;
}
.cohn-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-decoration: none;
}
.cohn-header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.cohn-header__nav a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1.5px;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.3s ease;
  animation: fadeInUp 0.4s ease both;
}
.cohn-header__nav a:hover { color: #FFC826; }
.cohn-header__nav .nav-cta {
  background: #FFC826;
  color: #000;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.cohn-header__nav .nav-cta:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* ---------- HERO ---------- */
.cohn-hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cohn-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroScale 1.5s cubic-bezier(0.4,0,0.2,1) forwards;
}
.cohn-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
}
.cohn-hero__geo {
  position: absolute;
  border: 1px solid rgba(255,200,38,0.2);
  transform: rotate(45deg);
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}
.cohn-hero__geo--large { right: -10%; top: 20%; width: 600px; height: 600px; }
.cohn-hero__geo--small { right: -5%; top: 25%; width: 500px; height: 500px; border-color: rgba(255,200,38,0.1); animation-delay: 0.7s; }
.cohn-hero__content {
  position: relative;
  z-index: 10;
  padding: 0 60px;
  max-width: 900px;
}
.cohn-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.2s forwards;
}
.cohn-hero__eyebrow-line { width: 60px; height: 1px; background: #FFC826; flex-shrink: 0; }
.cohn-hero__eyebrow-text { color: #FFC826; font-size: 12px; letter-spacing: 4px; font-weight: 600; }
.cohn-hero__headline {
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 32px;
  letter-spacing: -2px;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.3s forwards;
}
.cohn-hero__headline span { color: #FFC826; }
.cohn-hero__subhead {
  color: rgba(255,255,255,0.8);
  font-size: 20px;
  line-height: 1.7;
  margin: 0 0 48px;
  max-width: 540px;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.4s forwards;
}
.cohn-hero__btns {
  display: flex;
  gap: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.5s forwards;
}
.cohn-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FFC826;
  color: #000;
  border: none;
  padding: 18px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.cohn-btn-primary:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(255,200,38,0.3);
}
.cohn-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 18px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.cohn-btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.cohn-hero__scroll {
  position: absolute;
  bottom: 40px; left: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1s forwards;
}
.cohn-hero__scroll-line {
  width: 1px; height: 60px;
  background: #FFC826;
  position: relative;
  overflow: hidden;
}
.cohn-hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 30px;
  background: #fff;
  animation: scrollPulse 2s ease-in-out infinite;
}
.cohn-hero__scroll-label {
  color: #fff;
  font-size: 11px;
  letter-spacing: 3px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.cohn-hero__locations {
  position: absolute;
  bottom: 40px; right: 60px;
  display: flex;
  gap: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}
.cohn-hero__loc {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 1px;
}
.cohn-hero__loc-dot {
  width: 6px; height: 6px;
  background: #FFC826;
  border-radius: 50%;
}

/* ---------- SECTION LABEL ---------- */
.cohn-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.cohn-label--center { justify-content: center; }
.cohn-label__line { width: 40px; height: 1px; background: #FFC826; flex-shrink: 0; }
.cohn-label__text { color: #FFC826; font-size: 12px; letter-spacing: 3px; font-weight: 600; }

/* ---------- STATS BAR ---------- */
.cohn-stats {
  background: #000;
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.cohn-stats__item {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.cohn-stats__item:last-child { border-right: none; }
.cohn-stats__value {
  color: #FFC826;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 8px;
  line-height: 1;
}
.cohn-stats__label {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ---------- FEATURED PROJECTS ---------- */
.cohn-projects {
  padding: 120px 60px;
  background: #fff;
}
.cohn-projects__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.cohn-projects__title {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0;
}
.cohn-projects__viewall {
  color: #000;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 2px solid #000;
  transition: color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.cohn-projects__viewall:hover { color: #FFC826; border-color: #FFC826; }
.cohn-projects__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}
.cohn-projects__stack { display: flex; flex-direction: column; gap: 24px; }

.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.project-card--large { height: 600px; }
.project-card--small { height: 288px; }
.project-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.project-card:hover .project-card__bg { transform: scale(1.05); }
.project-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 60%);
}
.project-card--small .project-card__gradient {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 70%);
}
.project-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.project-card--small .project-card__info { padding: 32px; }
.project-card:hover .project-card__info { transform: translateY(0); }
.project-card__type {
  display: inline-block;
  background: #FFC826;
  color: #000;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.project-card--small .project-card__type { padding: 4px 10px; font-size: 10px; margin-bottom: 12px; }
.project-card__name {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.project-card--small .project-card__name { font-size: 22px; margin-bottom: 8px; }
.project-card__meta {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  display: flex;
  gap: 12px;
}
.project-card--small .project-card__meta { color: rgba(255,255,255,0.6); font-size: 13px; }

/* ---------- MAP SECTION ---------- */
.cohn-map-section {
  padding: 120px 60px;
  background: #0a0a0a;
}
.cohn-map-section__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
.cohn-map-section__h2 {
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin: 0 0 24px;
}
.cohn-map-section__desc {
  color: rgba(255,255,255,0.6);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.cohn-map-section__regions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cohn-map-section__region {
  border-left: 2px solid #FFC826;
  padding-left: 20px;
}
.cohn-map-section__region-name { color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.cohn-map-section__region-count { color: rgba(255,255,255,0.5); font-size: 14px; }

/* Map canvas */
.cohn-map {
  position: relative;
  height: 500px;
  background: #111;
  border-radius: 4px;
  overflow: hidden;
}
.cohn-map__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: 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='%23FFC826' fill-opacity='1'%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");
}
.cohn-map__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Map pins */
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 1;
}
.map-pin:hover { z-index: 10; }
.map-pin__dot {
  width: 12px;
  height: 12px;
  background: #FFC826;
  border-radius: 50%;
  border: 3px solid #000;
  transition: width 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}
.map-pin:hover .map-pin__dot {
  width: 16px;
  height: 16px;
  box-shadow: 0 0 20px rgba(255,200,38,0.5);
}
.map-pin__pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,200,38,0.4);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}
.map-pin:hover .map-pin__pulse {
  opacity: 1;
  animation: pinPulse 1.5s ease-out infinite;
}
.map-pin__tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 12px 16px;
  min-width: 140px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.map-pin:hover .map-pin__tooltip { opacity: 1; }
.map-pin__tooltip-name { font-weight: 700; font-size: 14px; color: #000; margin-bottom: 4px; }
.map-pin__tooltip-count { font-size: 12px; color: #666; }
.map-pin__tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: #fff;
}

/* ---------- INDUSTRIES GRID ---------- */
.cohn-industries { padding: 120px 60px; background: #fff; }
.cohn-industries__header { text-align: center; margin-bottom: 80px; }
.cohn-industries__title { font-size: 52px; font-weight: 700; letter-spacing: -1px; margin: 0; }
.cohn-industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #EEEDEB;
}
.industry-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
}
.industry-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.industry-card:hover .industry-card__bg { opacity: 1; transform: scale(1); }
.industry-card__overlay {
  position: absolute;
  inset: 0;
  background: #fff;
  transition: background 0.4s ease;
}
.industry-card:hover .industry-card__overlay { background: rgba(0,0,0,0.7); }
.industry-card__content {
  position: absolute;
  inset: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.industry-card__line {
  width: 48px; height: 2px;
  background: #FFC826;
  margin-bottom: 20px;
  transform-origin: left;
  transition: transform 0.4s ease;
}
.industry-card:hover .industry-card__line { transform: scaleX(1.5); }
.industry-card__name {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin: 0 0 12px;
  transition: color 0.4s ease;
}
.industry-card:hover .industry-card__name { color: #fff; }
.industry-card__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 20px;
  transition: color 0.4s ease;
}
.industry-card:hover .industry-card__desc { color: rgba(255,255,255,0.7); }
.industry-card__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFC826;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.industry-card:hover .industry-card__cta { opacity: 1; transform: translateY(0); }

/* ---------- TESTIMONIALS ---------- */
.cohn-testimonials {
  padding: 140px 60px;
  background: #000;
  position: relative;
  overflow: hidden;
}
.cohn-testimonials__quote-mark {
  position: absolute;
  top: 60px; left: 60px;
  font-size: 300px;
  font-family: Georgia, serif;
  color: rgba(255,200,38,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.cohn-testimonials__inner { max-width: 900px; margin: 0 auto; position: relative; text-align: center; }
.cohn-testimonial { display: none; }
.cohn-testimonial.is-active { display: block; }
.cohn-testimonial__quote {
  color: #fff;
  font-size: 28px;
  line-height: 1.65;
  font-weight: 300;
  font-style: italic;
  margin: 0 0 48px;
}
.cohn-testimonial__name {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.cohn-testimonial__role { color: rgba(255,255,255,0.5); font-size: 14px; }
.cohn-testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.cohn-testimonials__dot {
  height: 4px;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: width 0.4s ease, background 0.4s ease;
  width: 12px;
  padding: 0;
}
.cohn-testimonials__dot.is-active { width: 48px; background: #FFC826; }

/* ---------- CLIENT LOGOS ---------- */
.cohn-logos { padding: 80px 60px; background: #EEEDEB; }
.cohn-logos__label {
  text-align: center;
  color: #666;
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 48px;
  font-weight: 600;
}
.cohn-logos__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
  opacity: 0.6;
}
.cohn-logos__item {
  width: 140px; height: 50px;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
}
.cohn-logos__item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
}

/* ---------- WHY COHN ---------- */
.cohn-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.cohn-why__image {
  background-size: cover;
  background-position: center;
}
.cohn-why__content {
  background: #fff;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cohn-why__h2 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin: 0 0 32px;
}
.cohn-why__desc { color: #666; font-size: 17px; line-height: 1.8; margin-bottom: 40px; }
.cohn-why__list { list-style: none; margin: 0 0 48px; padding: 0; }
.cohn-why__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #EEEDEB;
  font-size: 16px;
  font-weight: 500;
}
.cohn-why__check {
  width: 24px; height: 24px;
  background: #FFC826;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cohn-why__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #000;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 2px solid #000;
  align-self: flex-start;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.cohn-why__link:hover { color: #FFC826; border-color: #FFC826; }

/* ---------- CTA SECTION ---------- */
.cohn-cta {
  padding: 140px 60px;
  background: #FFC826;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cohn-cta__geo {
  position: absolute;
  border: 1px solid rgba(0,0,0,0.1);
  transform: rotate(45deg);
}
.cohn-cta__geo--1 { top: -20%; right: -10%; width: 500px; height: 500px; }
.cohn-cta__geo--2 { bottom: -20%; left: -5%; width: 400px; height: 400px; }
.cohn-cta__inner { position: relative; max-width: 700px; margin: 0 auto; }
.cohn-cta__h2 { font-size: 56px; font-weight: 700; letter-spacing: -1px; margin: 0 0 24px; line-height: 1.1; }
.cohn-cta__desc { font-size: 18px; margin-bottom: 48px; color: rgba(0,0,0,0.7); line-height: 1.7; }
.cohn-cta__btns { display: flex; gap: 16px; justify-content: center; }
.cohn-btn-dark {
  display: inline-flex;
  align-items: center;
  background: #000;
  color: #fff;
  border: none;
  padding: 20px 48px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cohn-btn-dark:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(0,0,0,0.3); color: #fff; }
.cohn-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #000;
  border: 2px solid rgba(0,0,0,0.3);
  padding: 20px 48px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.3s ease;
}
.cohn-btn-outline-dark:hover { border-color: #000; color: #000; }

/* ---------- FOOTER ---------- */
.cohn-footer {
  background: #000;
  padding: 80px 60px 40px;
  color: #fff;
}
.cohn-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.cohn-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
}
.cohn-footer__desc {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 32px;
}
.cohn-footer__socials { display: flex; gap: 16px; }
.cohn-footer__social {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.cohn-footer__social:hover { border-color: #FFC826; background: #FFC826; color: #000; }
.cohn-footer__col-label {
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 24px;
  letter-spacing: 2px;
  color: #FFC826;
}
.cohn-footer__col a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.cohn-footer__col a:hover { color: #fff; }
.cohn-footer__contact {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.8;
}
.cohn-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cohn-footer__bottom p { color: rgba(255,255,255,0.4); font-size: 13px; margin: 0; }

/* ---------- SUPPRESS GP ELEMENTS ON HOMEPAGE ---------- */
body.home .site-header,
body.home #site-header,
body.home .site-footer,
body.home #site-footer,
body.home .navigation-bar { display: none !important; }
