/* ------------------------------------------------------------------
   Hyphen Partners — brand layer over the Binox "consultant-agency" layout.
   Loaded after master-agency.css; only overrides colour, type and the
   few Hyphen-specific blocks (hy-*). Template markup/classes are reused.
------------------------------------------------------------------- */

:root {
  --hy-navy: #14243A;
  --hy-navy-2: #1D3350;
  --hy-navy-3: #0B1422;
  --hy-gold: #C8992E;
  --hy-gold-soft: #D9B45F;
  --hy-paper: #FFFFFF;
  --hy-paper-2: #F5F6F8;
  --hy-body: #4A5769;
  --hy-rule: #DDE2E8;
  --hy-muted: #9FB0C2;
  --hy-on-dark: #C9D3DE;
  --hy-blank: #9A6C12;

  --font_hkgrotesk: "Cormorant Garamond", Georgia, serif;
  --font_primary: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font_secondary: "Inter", "Helvetica Neue", Arial, sans-serif;
}

/* Template colour variables, re-pointed at the brand */
.body-wrapper.consultant-agency,
.hyphen {
  --primary: var(--hy-navy);
  --secondary: var(--hy-body);
  --black: var(--hy-navy);
  --action-color: var(--hy-gold);
  --hover-color: var(--hy-gold);
}

body.hyphen {
  background-color: var(--hy-paper-2);
  color: var(--hy-body);
  -webkit-font-smoothing: antialiased;
}

/* Typography: serif display headings, Inter for everything else */
.hyphen h1, .hyphen h2, .hyphen h3 {
  font-family: var(--font_hkgrotesk);
  font-weight: 500;
  line-height: 1.1;
}
.hyphen h4, .hyphen h5, .hyphen h6 {
  font-family: var(--font_primary);
  font-weight: 600;
  line-height: 1.3;
}
.hyphen .section-title-wrapper.style-1 .section-title { font-size: 52px; }
@media (max-width: 991px) { .hyphen .section-title-wrapper.style-1 .section-title { font-size: 40px; } }
@media (max-width: 767px) { .hyphen .section-title-wrapper.style-1 .section-title { font-size: 34px; } }
.hyphen .section-title-wrapper.style-1 .section-subtitle {
  color: var(--hy-gold);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .2em;
}
.hyphen .cf_text .text,
.hyphen .cf_text p { line-height: 1.65; }
.hyphen .cf_text p.text + p.text { margin-top: 16px; }

/* Buttons */
.hyphen .wc-btn-primary {
  background-color: var(--hy-gold);
  border-color: var(--hy-gold);
  color: var(--hy-navy);
  font-family: var(--font_primary);
  font-weight: 600;
}
.hyphen .wc-btn-primary:hover { background-color: var(--hy-navy); border-color: var(--hy-navy); color: #fff; }
.hyphen .wc-btn-underline { font-family: var(--font_primary); font-weight: 600; }
/* Keep copy casing exactly as written ("Start a Conversation") */
.hyphen .wc-btn-primary,
.hyphen .wc-btn-underline,
.hyphen .btn-text-flip span,
.hyphen .btn-text-flip span::before { text-transform: none !important; }

/* Cursor / progress accents */
.hyphen .cursor1 { border-color: var(--hy-gold); }
.hyphen .progress-wrap svg.progress-circle path { stroke: var(--hy-gold); }

/* ---------- Header ---------- */
.hyphen .header-area .header__logo img { max-width: 170px; height: auto; }
.hyphen .header-area.sticky { background-color: var(--hy-navy); }
.hyphen .header-area.sticky .header__logo img { max-width: 130px; }
.hyphen .header-area .wc-btn-primary,
.hyphen .header-area.sticky .wc-btn-primary {
  background-color: var(--hy-gold);
  border-color: var(--hy-gold);
  color: var(--hy-navy);
  font-size: 14px;
}
.hyphen .main-menu li a { font-family: var(--font_primary); font-weight: 500; text-transform: none; }
.hyphen .main-menu li a:hover { color: var(--hy-gold-soft) !important; }
.hyphen .offcanvas-3__area { background-color: var(--hy-navy); }

/* ---------- Banner / Hero ---------- */
.hyphen .banner-1 .banner-area-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.hyphen .banner-1 .banner-area-bg:after {
  /* darkest behind the centred headline, easing off towards the edges */
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(11, 20, 34, .82) 0%, rgba(11, 20, 34, .62) 60%, rgba(11, 20, 34, .5) 100%);
}
/* Hero slideshow: slow zoom on each image, cross-fading to the next (cycled by the inline script in index.html) */
.hyphen .hy-hero-slides { overflow: hidden; }
.hyphen .hy-hero-slides img { position: absolute; inset: 0; opacity: 0; transition: opacity 1.8s ease-in-out; }
.hyphen .hy-hero-slides img.is-active { opacity: 1; z-index: 1; }
.hyphen .hy-hero-slides img.is-leaving { opacity: 1; }
.hyphen .hy-hero-slides img.is-active,
.hyphen .hy-hero-slides img.is-leaving { animation: hy-hero-zoom 8s linear forwards; }
@keyframes hy-hero-zoom { from { transform: scale(1); } to { transform: scale(1.1); } }
@media (prefers-reduced-motion: reduce) {
  .hyphen .hy-hero-slides img.is-active,
  .hyphen .hy-hero-slides img.is-leaving { animation: none; }
}
.hyphen .hy-hero-slides:after { z-index: 2; }
/* Rotating headlines: stacked in one grid cell so the tallest sets the height and nothing jumps;
   the old one fades out, then the new one fades in */
.hyphen .hy-hero-titles { display: grid; }
.hyphen .hy-hero-titles > span { grid-area: 1 / 1; align-self: center; opacity: 0; transition: opacity .6s ease; }
.hyphen .hy-hero-titles > span.is-active { opacity: 1; transition: opacity .9s ease .6s; }.hyphen .banner-1 .banner-content { max-width: 900px; margin-inline: auto; text-align: center; }
.hyphen .banner-1 .banner-content::before {
  content: ""; display: block; width: 62px; height: 3px; background: var(--hy-gold); margin: 0 auto 28px;
}
/* Tablet/desktop: the hero fills the screen and the headline sits in the middle of the space
   between the header (80px) and the navy vision box pinned to the bottom right */
@media (min-width: 768px) {
  .hyphen .banner-1.banner-area { height: 100vh; min-height: 640px; }
  .hyphen .banner-1 .swiper,
  .hyphen .banner-1 .swiper-wrapper,
  .hyphen .banner-1 .swiper-slide { height: 100%; }
  .hyphen .banner-1.banner-area .swiper-slide-item {
    height: 100%; display: flex; align-items: center; padding: 80px 0 200px;
  }
}
@media (min-width: 1200px) { .hyphen .banner-1.banner-area .swiper-slide-item { padding-bottom: 250px; } }
/* short laptop screens: keep the headline clear of the navy box */
@media (min-width: 1200px) and (max-height: 780px) {
  .hyphen .banner-1.banner-area .swiper-slide-item { padding-bottom: 330px; }
  .hyphen .banner-1 .title.hy-hero-titles { font-size: 84px; }
}
.hyphen .banner-1 .title { font-size: 96px; font-weight: 500; line-height: 1.02; margin-top: 0; }
@media (max-width: 1199px) { .hyphen .banner-1 .title { font-size: 72px; } .hyphen .banner-1 .banner-content { max-width: 680px; } }
@media (max-width: 767px) { .hyphen .banner-1 .title { font-size: 50px; } .hyphen .banner-1.banner-area .swiper-slide-item { padding-top: 180px; padding-bottom: 120px; } }
.hyphen .banner-area-vision { background: var(--hy-navy); }
.hyphen .banner-area-vision .text-wrapper { padding-top: 0; position: relative; z-index: 1; }
.hyphen .banner-area-vision .text { font-size: 19px; font-weight: 400; line-height: 1.5; color: var(--hy-on-dark); }
.hyphen .banner-area-vision .btn-wrapper { margin-top: 28px; position: relative; z-index: 1; }
.hyphen .banner-area-vision .wc-btn-underline { color: var(--hy-gold-soft); }
.hyphen .banner-area-vision .shape-x { width: 220px; top: 40px; opacity: .08; }

/* ---------- Feature style 1 (practice areas / why Hyphen) ---------- */
@media (min-width: 1200px) { .hyphen .feature-area.style-1::before { background-color: var(--hy-paper-2); } }
.hyphen .wcf_iconbox.style-1 .thumb { margin-bottom: 24px; }
.hyphen .hy-num {
  font-family: var(--font_hkgrotesk); font-size: 46px; color: var(--hy-gold); line-height: 1; display: block;
}
.hyphen .wcf_iconbox.style-1 .title { font-family: var(--font_hkgrotesk); font-size: 26px; font-weight: 600; line-height: 1.15; }
.hyphen .wcf_iconbox.style-1 .text { color: var(--hy-body); font-size: 15.5px; line-height: 1.6; }
.hyphen .feature-wrapper.style-1 .hy-span3 { grid-column: 1 / -1; }
.hyphen .feature-wrapper.style-1 .hy-span3 img { width: 100%; height: 260px; object-fit: cover; }
@media (min-width: 1200px) { .hyphen .hy-why.feature-area.style-1::before { background-color: var(--hy-paper); } }
.hyphen .hy-why { border-top: 1px solid var(--hy-rule); }
.hyphen .feature-wrapper.hy-grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 767px) { .hyphen .feature-wrapper.hy-grid-4 { grid-template-columns: 1fr; } }
.hyphen .hy-grid-4 .wcf_iconbox.style-1 { border-top: 2px solid var(--hy-gold); padding-top: 26px; }

/* ---------- Specialization (questions / leadership) ---------- */
.hyphen .specialization-area.style-1 { background-color: var(--hy-navy); }
.hyphen .specialization-area.style-1 .section-subtitle { color: var(--hy-gold-soft); }
.hyphen .specialization-area.style-1 .text { color: var(--hy-on-dark); }
.hyphen .hy-questions { margin-top: 36px !important; border-top: 1px solid rgba(255, 255, 255, .14); }
.hyphen .specialization-area.style-1 .hy-questions li {
  font-family: var(--font_hkgrotesk); font-size: 27px; line-height: 1.3; color: #fff;
  padding: 22px 0 22px 34px; margin: 0; border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.hyphen .specialization-area.style-1 .hy-questions li::before { color: var(--hy-gold); top: 32px !important; }

.hyphen .specialization-area.style-1 .specialization-content { min-width: 0; padding-inline-end: 50px; }
.hyphen .hy-leader .specialization-thumb { flex: 0.9; }
.hyphen .hy-leader .specialization-thumb img { width: 100%; object-position: center 15%; }
/* Desktop: a contained portrait aligned with the heading, not stretched to the bio's full height */
@media (min-width: 768px) {
  .hyphen .hy-leader .specialization-thumb { flex: 0 0 34%; max-width: 460px; padding: 80px 20px 80px 50px; }
  .hyphen .hy-leader .specialization-thumb img { height: auto; aspect-ratio: 4 / 5; object-position: center 20%; }
  .hyphen .hy-leader .specialization-content { padding-inline-start: 40px; }
}
@media (min-width: 992px) { .hyphen .hy-leader .specialization-thumb { padding-top: 100px; } }
@media (min-width: 1920px) { .hyphen .hy-leader .specialization-thumb { padding-top: 130px; } }
.hyphen .hy-leader .section-title-wrapper { max-width: 680px; }
@media (max-width: 767px) {
  .hyphen .specialization-area.style-1 .specialization-content { padding-inline-end: 15px; }
  .hyphen .specialization-area.style-1 .specialization-thumb { flex: 0 0 100%; }
  .hyphen .hy-leader .specialization-thumb img { height: 420px; }
  .hyphen .specialization-area.style-1 .specialization-thumb img { width: 100%; }
  .hyphen .hy-stats { grid-template-columns: 1fr; }
}
.hyphen .hy-role { color: #fff; font-size: 20px; font-weight: 600; margin-top: 12px; }
.hyphen .hy-credline {
  color: var(--hy-gold-soft); font-size: 14px; line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, .14); border-bottom: 1px solid rgba(255, 255, 255, .14);
  padding: 14px 0; margin: 18px 0 0;
}
.hyphen .hy-leader .cf_text { margin-top: 24px; }
.hyphen .hy-leader .cf_text .text { font-size: 16px; }
.hyphen .hy-subhead { font-size: 15.5px; margin: 28px 0 10px; color: inherit; }
.hyphen .hy-leader .hy-subhead { color: #fff; }
.hyphen .hy-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.hyphen .hy-stats li {
  background: var(--hy-navy-2); border: 1px solid rgba(255, 255, 255, .12); padding: 18px 20px;
  color: var(--hy-on-dark); font-size: 14px; line-height: 1.4;
}
.hyphen .hy-stats span {
  display: block; font-family: var(--font_hkgrotesk); font-size: 38px; color: var(--hy-gold); line-height: 1; margin-bottom: 6px;
}
.hyphen .hy-leader .btn-wrapper { margin-top: 32px; }
.hyphen .hy-leader .wc-btn-underline { color: var(--hy-gold-soft); }

/* ---------- About more (connect the dots / what we do) ---------- */
.hyphen .about-more.style-1 { max-width: 920px; }
.hyphen .about-more.style-1 .subtitle-wrapper { margin-bottom: 26px; }
.hyphen .about-more .section-subtitle {
  font-size: 11.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--hy-gold); border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.hyphen .about-more.style-1 .about-more-content p {
  font-family: var(--font_hkgrotesk); font-size: 46px; line-height: 1.15; color: var(--hy-navy);
}
.hyphen .about-more.style-1 .about-more-content p.hy-lede {
  font-family: var(--font_primary); font-size: 18px; line-height: 1.65; color: var(--hy-body); margin-top: 24px;
}
@media (max-width: 767px) { .hyphen .about-more.style-1 .about-more-content p { font-size: 32px; } }
.hyphen .hy-chips-wrap { margin-top: 48px; }
.hyphen .hy-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 20px; }
.hyphen .hy-chips li {
  border: 1px solid var(--hy-rule); border-radius: 999px; padding: 9px 18px; font-size: 14px; color: var(--hy-body); background: var(--hy-paper);
  transition: .3s;
}
.hyphen .hy-chips li:hover { border-color: var(--hy-gold); color: var(--hy-navy); }
.hyphen .about-more.style-1 .about-more-content .wcf_logo { margin-top: 70px; }
.hyphen .about-more.style-1 .about-more-content .wcf_logo img { width: 150px; margin: 0 auto; }
.hyphen .video-area.style-1 .video-thumb img { width: 100%; height: 520px; object-fit: cover; }
@media (max-width: 767px) { .hyphen .video-area.style-1 .video-thumb img { height: 260px; } }
.hyphen .hy-wwd { padding-bottom: 60px; }

/* ---------- Service tabs (outcomes) ---------- */
.hyphen .service-area.style-1 { background-color: var(--hy-paper-2); }
.hyphen .service-area.style-1 .triangle { background-color: var(--hy-gold); }
.hyphen .service-area.style-1 .service-list li { border-color: var(--hy-rule); cursor: pointer; }
.hyphen .service-area.style-1 .service-list li .title { font-size: 26px; max-width: 200px; }
.hyphen .service-area.style-1 .service-list li.active .title,
.hyphen .service-area.style-1 .service-list li.active span { color: var(--hy-navy); }
.hyphen .service-area.style-1 .service-list li.active span { color: var(--hy-gold); }
.hyphen .service-area.style-1 .service-text .section-title { font-size: 44px; color: var(--hy-navy); }
.hyphen .service-area.style-1 .text-wrapper p { font-size: 17px; line-height: 1.6; }

/* ---------- Case study (testimonial slot) ---------- */
.hyphen .hy-case { background: var(--hy-paper); }
.hyphen .hy-case .section-heading { margin-bottom: 48px; text-align: center; }
.hyphen .hy-case .section-title-wrapper .cf_text { max-width: 620px; margin-left: auto; margin-right: auto; }
.hyphen .hy-panel {
  background: var(--hy-paper-2); border: 1px solid var(--hy-rule); padding: 36px 34px; height: 100%;
}
.hyphen .hy-panel p { font-size: 15.5px; line-height: 1.65; margin-bottom: 12px; }
.hyphen .hy-panel strong { color: var(--hy-navy); }
.hyphen .hy-panel h3 { font-size: 30px; color: var(--hy-navy); margin: 0 0 8px; }
.hyphen .hy-panel h3:not(:first-child) { margin-top: 26px; }
.hyphen .hy-kicker {
  color: var(--hy-gold) !important; font-size: 12.5px !important; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 18px !important;
}
.hyphen .hy-blank { color: var(--hy-blank); font-weight: 600; }
.hyphen .hy-clients { display: flex; gap: 14px; flex-wrap: wrap; margin: 6px 0 22px; }
.hyphen .hy-clients div {
  flex: 1; min-width: 130px; background: #fff; border: 1px solid var(--hy-rule);
  display: flex; align-items: center; justify-content: center; padding: 14px 18px;
}
.hyphen .hy-clients img { max-height: 74px; width: auto; }

/* ---------- Pinned practice panels (about style 1) ---------- */
.hyphen .about-area.style-1::before { background-color: var(--hy-paper-2); }
.hyphen .about-area.style-1 .about-inner { background-color: var(--hy-paper-2); border-top: 1px solid var(--hy-rule); }
.hyphen .about-area.style-1 .about-inner .subtitle-wrapper { margin-bottom: 48px; }
.hyphen .about-area.style-1 .about-inner .title-wrapper { max-width: 520px; }
.hyphen .about-area.style-1 .about-inner .section-title { font-size: 42px; }
.hyphen .about-area.style-1 .about-inner .cf_text { max-width: 560px; margin-bottom: 22px; }
.hyphen .about-area.style-1 .about-text-wrapper { border-color: var(--hy-rule); margin-bottom: 40px; }
.hyphen .about-area.style-1 .about-inner .btn-wrapper { margin-top: 26px; }
.hyphen .about-area.style-1 .about-inner .btn-wrapper .wc-btn-primary { border-color: var(--hy-navy); color: var(--hy-navy); font-size: 14px; }
.hyphen .about-area.style-1 .about-thumb { flex: 0 0 38%; }
.hyphen .about-area.style-1 .about-thumb img { width: 100%; max-width: none; }
.hyphen .hy-services { max-width: 620px; }
.hyphen .hy-services li { border-top: 1px solid var(--hy-rule); padding: 12px 0; }
.hyphen .hy-services h4 { font-size: 15px; color: var(--hy-navy); margin: 0 0 4px; }
.hyphen .hy-services p { font-size: 13.5px; line-height: 1.55; margin: 0; color: var(--hy-body); }
@media (max-width: 1199px) { .hyphen .about-area.style-1 .about-inner { height: auto; padding-bottom: 40px; } }

/* ---------- About ---------- */
.hyphen .hy-about { background: var(--hy-paper); }
.hyphen .hy-about .cf_text .text { font-size: 17px; }
.hyphen .hy-strong { color: var(--hy-navy); font-weight: 600; }
.hyphen .hy-about-cards { margin-top: 56px; }
.hyphen .hy-panel-dark { background: var(--hy-navy); border-color: var(--hy-navy); }
.hyphen .hy-panel-dark h3 { color: #fff; }
.hyphen .hy-panel-dark p { color: var(--hy-on-dark); }
.hyphen .hy-promise { font-family: var(--font_hkgrotesk); font-size: 24px !important; color: var(--hy-gold-soft) !important; }

/* ---------- Sectors ---------- */
.hyphen .hy-sectors { background: var(--hy-paper-2); }
.hyphen .blog-area.style-1 .section-heading .cf_text { max-width: 520px; }
.hyphen .hy-sector-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  border-top: 1px solid var(--hy-rule); border-left: 1px solid var(--hy-rule);
}
.hyphen .hy-sector-grid article {
  padding: 34px 30px 36px; border-right: 1px solid var(--hy-rule); border-bottom: 1px solid var(--hy-rule);
  background: var(--hy-paper); transition: background-color .3s;
}
.hyphen .hy-sector-grid article:hover { background: var(--hy-navy); }
.hyphen .hy-sector-grid article:hover h3 { color: #fff; }
.hyphen .hy-sector-grid article:hover p { color: var(--hy-on-dark); }
.hyphen .hy-sector-grid span { font-size: 13px; font-weight: 600; color: var(--hy-gold); letter-spacing: .08em; }
.hyphen .hy-sector-grid h3 { font-size: 25px; color: var(--hy-navy); margin: 14px 0 12px; transition: color .3s; }
.hyphen .hy-sector-grid p { font-size: 15px; line-height: 1.6; margin: 0; transition: color .3s; }

/* ---------- In Practice ---------- */
.hyphen .hy-practice { background: var(--hy-paper); }
.hyphen .hy-cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 56px; }
.hyphen .hy-cat-grid > div { border-top: 2px solid var(--hy-gold); padding-top: 20px; }
.hyphen .hy-cat-grid h3 { font-size: 24px; color: var(--hy-navy); margin-bottom: 10px; }
.hyphen .hy-cat-grid p { font-size: 15px; line-height: 1.6; }
.hyphen .hy-story { margin-top: 80px; padding-top: 56px; border-top: 1px solid var(--hy-rule); }
.hyphen .hy-story-head .section-subtitle {
  font-size: 11.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--hy-gold);
}
.hyphen .hy-story-head h3 { font-size: 40px; color: var(--hy-navy); margin: 14px 0 10px; max-width: 900px; }
.hyphen .hy-meta { font-size: 14px; font-weight: 600; color: var(--hy-gold); letter-spacing: .03em; }
.hyphen .hy-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 28px 0 36px; }
.hyphen .hy-gallery img { width: 100%; height: 250px; object-fit: cover; }
@media (max-width: 767px) { .hyphen .hy-gallery { grid-template-columns: 1fr; } }
.hyphen .hy-practice .cf_text .text,
.hyphen .hy-story .text { font-size: 16.5px; line-height: 1.7; }
.hyphen .hy-story .text + .text { margin-top: 16px; }
.hyphen .hy-quote {
  background: var(--hy-navy); color: #fff; padding: 30px 32px; margin: 0 0 8px;
  font-family: var(--font_hkgrotesk); font-size: 25px; line-height: 1.35; border-left: 3px solid var(--hy-gold);
}
.hyphen .hy-story .hy-subhead { color: var(--hy-navy); }

/* ---------- Insights (blog style 1) ---------- */
.hyphen .hy-insights { background: var(--hy-paper-2); }
.hyphen .hy-insights-banner { margin-bottom: 56px; }
.hyphen .hy-insights-banner img { width: 100%; height: 280px; object-fit: cover; }
.hyphen .blog-area.style-1 .blog { border-color: var(--hy-rule); }
.hyphen .hy-insights .blog.style-1 .title {
  font-size: 30px; font-weight: 500; color: var(--hy-navy); border-top: 2px solid var(--hy-gold); padding-top: 16px;
}
.hyphen .hy-insights .blog.style-1 .text { font-size: 15px; }
.hyphen .hy-articles { margin-top: 18px; }
.hyphen .hy-articles li {
  border-bottom: 1px solid var(--hy-rule); padding: 14px 0; font-size: 16px; line-height: 1.45; color: var(--hy-navy);
}
.hyphen .hy-articles li:last-child { border-bottom: 0; }
.hyphen .hy-articles .date {
  display: block; color: var(--hy-gold); font-size: 12.5px; font-weight: 600; line-height: 1.4; margin-bottom: 4px;
}

/* ---------- Contact ---------- */
.hyphen .hy-contact { position: relative; overflow: hidden; background: var(--hy-navy-3); }
.hyphen .hy-contact-bg { position: absolute; inset: 0; z-index: 0; }
.hyphen .hy-contact-bg img { width: 100%; height: 100%; object-fit: cover; }
.hyphen .hy-contact-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11, 20, 34, .96) 0%, rgba(11, 20, 34, .88) 55%, rgba(11, 20, 34, .74) 100%);
}
.hyphen .hy-contact .container { position: relative; z-index: 1; }
.hyphen .hy-contact .section-subtitle { color: var(--hy-gold-soft) !important; }
.hyphen .hy-contact .section-title { color: #fff; }
.hyphen .hy-contact .text { color: var(--hy-on-dark); font-size: 17px; }
.hyphen .hy-address { color: var(--hy-on-dark); font-size: 15.5px; line-height: 1.95; margin-top: 40px; }
.hyphen .hy-address strong { color: #fff; }
.hyphen .hy-address a { color: var(--hy-gold-soft); }
.hyphen .hy-form label { display: block; margin-bottom: 20px; }
.hyphen .hy-form label span { display: block; font-size: 13px; color: var(--hy-muted); margin-bottom: 6px; letter-spacing: .02em; }
.hyphen .hy-form input,
.hyphen .hy-form textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .25);
  color: #fff; padding: 10px 0; font-size: 16px; outline: none; transition: border-color .3s;
}
.hyphen .hy-form input:focus,
.hyphen .hy-form textarea:focus { border-color: var(--hy-gold); }
.hyphen .hy-form button { margin-top: 12px; }
.hyphen .hy-form button:hover { background-color: #fff; border-color: #fff; color: var(--hy-navy); }

/* ---------- CTA strip + footer ---------- */
.hyphen .cta-area.style-1:before { background-color: var(--hy-navy-2); }
.hyphen .cta-area.style-1 .cta-left { background-color: var(--hy-gold); }
.hyphen .cta-area.style-1 .cta-right { background-color: var(--hy-navy-2); }
.hyphen .cta-area.style-1 .cta-info li .title,
.hyphen .cta-area.style-1 .cta-info li span { color: var(--hy-navy); }
.hyphen .footer-area.style-1 { background-color: var(--hy-navy); }
.hyphen .footer-area.style-1 .logo-wrapper img { max-width: 190px; }
.hyphen .hy-tag { font-family: var(--font_hkgrotesk); font-size: 20px; color: var(--hy-gold-soft); margin-top: 18px; line-height: 1.3; max-width: 240px; }
.hyphen .footer-area.style-1 .links-wrapper,
.hyphen .footer-area.style-1 .footer-copyright { border-color: rgba(255, 255, 255, .1); }
.hyphen .footer-area.style-1 .footer-menu-item .title { font-family: var(--font_primary); font-size: 15px; font-weight: 600; }
.hyphen .footer-area.style-1 .footer-menu-item li,
.hyphen .footer-menu-item li a { color: var(--hy-muted); font-size: 14.5px; line-height: 1.9; }
.hyphen .footer-area.style-1 .footer-menu-item li a:hover { color: var(--hy-gold-soft); }
.hyphen .footer-area.style-1 .text-copy { color: var(--hy-muted); font-size: 13px; }
