/* ============================================
   CES Electrical — Design System
   Monochrome (black / white / grey), sleek, minimal
   ============================================ */

:root {
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --grey-900: #2b2b2b;
  --grey-600: #6b6b6b;
  --grey-300: #d4d4d4;
  --grey-100: #f2f2f2;
  --white: #ffffff;

  --font-display: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1240px;
  --section-pad: 6rem;
  --section-pad-mobile: 3.5rem;

  --transition: 200ms ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: var(--section-pad) 0; }

@media (max-width: 768px) {
  section { padding: var(--section-pad-mobile) 0; }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { color: var(--grey-600); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-600);
  display: block;
  margin-bottom: 0.75rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-primary:hover { background: var(--grey-900); border-color: var(--grey-900); }

.btn-secondary {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-secondary:hover { background: var(--black); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover { background: transparent; color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  gap: 2.5rem;
}

.logo { flex-shrink: 0; }
.logo img { height: 38px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  margin-left: 2.5rem;
  flex: 1;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--grey-300);
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }

.nav-item.has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.1);
  min-width: 170px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 50;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  color: var(--grey-300);
  white-space: nowrap;
}
.nav-dropdown a:hover { color: var(--white); background: rgba(255,255,255,0.05); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.header-phone {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-right: 1.75rem;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.header-instagram {
  display: flex;
  align-items: center;
  color: var(--white);
  transition: var(--transition);
}
.header-instagram svg { width: 20px; height: 20px; }
.header-instagram:hover { color: var(--grey-300); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

@media (max-width: 1100px) {
  .main-nav { gap: 1.5rem; margin-left: 1.5rem; }
}

@media (max-width: 560px) {
  .header-instagram { display: none; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-phone span.label { display: none; }
  .header-phone { border-right: none; padding-right: 0; }
  .nav-toggle { display: block; }
  .header-cta .btn-white { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
}

/* Tighten header further on narrow phones so the menu icon
   never gets pushed past the edge of the screen */
@media (max-width: 480px) {
  .site-header .container { padding: 0 1rem; }
  .header-inner { gap: 0.85rem; }
  .logo img { height: 30px; }
  .header-cta { gap: 0.65rem; }
  .header-cta .btn-white { padding: 0.5rem 0.75rem; font-size: 0.75rem; }
  .nav-toggle svg { width: 22px; height: 22px; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}
.mobile-menu nav a.submenu-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--grey-300);
  padding-left: 1rem;
  margin-top: -0.5rem;
}
.mobile-menu-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-instagram {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 0;
}
.mobile-instagram svg { width: 24px; height: 24px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 5rem;
  width: 100%;
}

.hero-content .eyebrow { color: rgba(255,255,255,0.75); }

.hero-content .hero-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  color: rgba(255,255,255,0.92);
  max-width: 960px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Service Categories ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

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

.service-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--black);
  border: 1px solid var(--black);
  padding: 2.5rem 2.25rem 2.25rem;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--grey-600);
  box-shadow: 0 24px 48px -24px rgba(0,0,0,0.45);
  transform: translateY(-4px);
}

.service-card .card-mark {
  position: relative;
  z-index: 1;
  height: 22px;
  width: auto;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.service-card h3 { position: relative; z-index: 1; margin-bottom: 0.75rem; color: var(--white); }

.service-card p { position: relative; z-index: 1; margin-bottom: 1.5rem; font-size: 0.95rem; color: rgba(255,255,255,0.65); }

.service-card ul {
  position: relative;
  z-index: 1;
  list-style: none;
  margin-bottom: 1.75rem;
}
.service-card ul li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  padding: 0.4rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.service-card ul li:first-child { border-top: none; }

.service-card .card-link {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1.5px solid var(--white);
  padding-bottom: 2px;
}

/* ---------- Section header ---------- */
.section-head {
  max-width: 640px;
  margin-bottom: 1rem;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 700px) {
  .section-top-row { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

/* ---------- Why us ---------- */
.why-us {
  background: var(--black);
  color: var(--white);
}
.why-us .eyebrow { color: rgba(255,255,255,0.6); }
.why-us p { color: rgba(255,255,255,0.7); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
}

.why-item .why-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
  display: block;
}
.why-item h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}
.why-item p { font-size: 0.9rem; }

/* ---------- Our Work gallery ---------- */
.work-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
}
.work-gallery figure {
  overflow: hidden;
  position: relative;
}
.work-gallery img, .work-gallery video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.work-gallery figure:hover img,
.work-gallery figure:hover video { transform: scale(1.05); }

.work-gallery .span-2 { grid-column: span 2; }
.work-gallery .span-2-row { grid-row: span 2; }
.work-gallery .span-4 { grid-column: span 4; }

@media (max-width: 900px) {
  .work-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .work-gallery .span-2 { grid-column: span 2; }
  .work-gallery .span-4 { grid-column: span 2; }
}
@media (max-width: 560px) {
  .work-gallery { grid-template-columns: 1fr; }
  .work-gallery .span-2 { grid-column: span 1; }
  .work-gallery .span-2-row { grid-row: span 1; }
  .work-gallery .span-4 { grid-column: span 1; }
}

/* ---------- Testimonials ---------- */
.rating-line {
  font-size: 0.95rem;
  color: var(--black);
  letter-spacing: 0.02em;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 700px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

.testimonial-card {
  border: 1px solid var(--grey-300);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--black); }
.testimonial-card .card-mark {
  height: 20px;
  width: auto;
  margin: 0 auto 1.25rem;
  opacity: 0.85;
  display: block;
}
.testimonial-card .stars {
  color: var(--black);
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  text-align: center;
}
.testimonial-card .quote {
  font-size: 0.95rem;
  color: var(--grey-900);
  margin-bottom: 1.25rem;
  line-height: 1.65;
  text-align: left;
}
.testimonial-card .author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--black);
  margin-bottom: 0;
  text-align: center;
}
.testimonial-card .author span {
  font-weight: 400;
  color: var(--grey-600);
}

/* ---------- Service areas ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
.areas-col h4 {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--grey-600);
}
.areas-col ul { list-style: none; }
.areas-col li {
  font-size: 0.92rem;
  padding: 0.3rem 0;
}

/* ---------- Community / sponsorship band ---------- */
.community-band {
  background: var(--black);
}
.community-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 3rem;
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.community-card::before {
  content: "";
  position: absolute;
  top: 0; left: 3rem;
  width: 46px;
  height: 2px;
  background: var(--white);
}
.community-video {
  flex-shrink: 0;
  width: 160px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.community-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.community-badge {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.community-badge a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.community-badge img { height: 100%; width: 100%; object-fit: contain; }
.community-text { flex: 1; min-width: 220px; }
.community-text .eyebrow { color: rgba(255,255,255,0.5); }
.community-text h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.5rem; }
.community-text p { margin-bottom: 1.5rem; font-size: 0.95rem; color: rgba(255,255,255,0.7); max-width: 480px; }

@media (max-width: 700px) {
  .community-card { padding: 2rem; flex-direction: column; align-items: flex-start; }
  .community-card::before { left: 2rem; }
  .community-video { width: 130px; }
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.final-cta h2 { color: var(--white); margin-bottom: 0.75rem; }
.final-cta p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.final-cta .phone-large {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 2rem;
  display: block;
}
.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
.footer-col img { height: 22px; margin-bottom: 1rem; }
.footer-col img.footer-logo { height: 44px; }
.footer-col img.ewrb-logo { height: 44px; margin-top: 1.5rem; opacity: 0.85; }
.footer-instagram {
  display: inline-flex;
  margin-top: 1.25rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-instagram svg { width: 24px; height: 24px; }
.footer-instagram:hover { color: var(--white); }
.footer-col h5 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 0.3rem 0; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-cta-bar .container { padding: 0; max-width: 100%; }
.mobile-cta-bar-inner {
  display: flex;
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 1rem 0;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white);
}
.mobile-cta-bar a.call { background: var(--white); color: var(--black); }
.mobile-cta-bar a.quote { border-left: 1px solid rgba(255,255,255,0.1); }

@media (max-width: 768px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 56px; }
}

/* Utility */
.text-center { text-align: center; }
.mt-lg { margin-top: 3rem; }

.icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================
   Inner Page Components
   ============================================ */

.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 160px 0 4rem;
  min-height: 460px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.page-hero .container { width: 100%; }
.page-hero .eyebrow { color: rgba(255,255,255,0.6); }
.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 1050px;
  font-size: 2.75rem;
  line-height: 1.1;
}
.page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; font-size: 1.05rem; }
.page-hero .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }

@media (max-width: 700px) {
  .page-hero { min-height: 360px; padding: 140px 0 3rem; }
  .page-hero h1 { font-size: 2rem; }
}

/* Detail grid (service sub-items) */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 900px) { .detail-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-item h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.detail-item p { font-size: 0.92rem; }

.dark-strip { background: var(--grey-100); }

/* Projects gallery (masonry-style grid) */
.projects-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 0.75rem;
}
.projects-gallery figure { overflow: hidden; position: relative; }
.projects-gallery img, .projects-gallery video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms ease;
}
.projects-gallery figure:hover img,
.projects-gallery figure:hover video { transform: scale(1.05); }
.projects-gallery figure.tall { grid-row: span 2; }
@media (max-width: 900px) {
  .projects-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 560px) {
  .projects-gallery { grid-template-columns: 1fr; }
  .projects-gallery figure.tall { grid-row: span 1; }
}

/* About page */
.about-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 900px) { .about-content { grid-template-columns: 1fr; } }
.about-text h2 { font-size: 1.4rem; margin: 2rem 0 0.75rem; }
.about-text h2:first-child { margin-top: 0; }
.about-text p { margin-bottom: 0.5rem; font-size: 0.98rem; }
.about-text a { text-decoration: underline; color: var(--black); }
.about-media img { width: 100%; height: 100%; object-fit: cover; max-height: 520px; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.contact-info h3.contact-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 1rem;
}
.contact-info p { margin-bottom: 0.4rem; }
.contact-info a { color: var(--black); }

.contact-form-wrap h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1.5rem; }
.contact-form-wrap form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row label {
  display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--black);
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--grey-300);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--black);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--black);
}
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 560px) { .form-row-split { grid-template-columns: 1fr; } }
.hidden-field { position: absolute; left: -9999px; }
.contact-form-wrap button[type="submit"] { align-self: flex-start; margin-top: 0.5rem; }

/* Howick Golf Club page */
.hgc-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 900px) { .hgc-content { grid-template-columns: 1fr; } }
.hgc-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid var(--grey-300);
}
.hgc-video video { width: 100%; height: 100%; object-fit: cover; }
.hgc-badge-link { display: inline-block; margin-bottom: 1.5rem; }
.hgc-text h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.hgc-text p { margin-bottom: 1rem; }

