@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;700;800;900&display=swap");
/*
Theme Name: HD Concrete
Theme URI: https://hdreadymix.ca/
Author: HD Concrete Ltd
Author URI: https://hdreadymix.ca/
Description: Custom WordPress theme for HD Concrete Ltd — third-generation ready-mix and mobile batch plant specialists in British Columbia. Faithfully reproduces the HD Concrete brand site (cream/navy/bronze palette, Inter + Barlow Condensed).
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hd-concrete
*/

/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  --hd-navy-dark: #030736;
  --hd-navy: #273768;
  --hd-bronze: #C9A26A;
  --hd-bronze-dark: #A67C3D;
  --hd-rust: #6B3A2A;
  --hd-cream: #FAF5EB;
  --hd-cream-light: #F3EBDD;
  --hd-cream-card: #FEFCF8;
  --hd-footer-bg: #F0F1F3;
  --hd-text: #111111;
  --hd-yellow: #FFE64A;
  --hd-white: #FFFFFF;
  --hd-max: 1200px;
}



/* ==========================================================================
   Reset / base
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0; 
  font-family: Barlow,sans-serif;	
  color: var(--hd-text);
  background: var(--hd-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

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

h1, h2, h3, h4, h5, h6 { margin: 0; line-height: 1.05; }
h1, h2, h3, h4, h5, h6 {
  font-family: Barlow Condensed,sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
}

p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

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

.hd-uppercase { text-transform: uppercase; }
.hd-label {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--hd-rust);
  font-weight: 640;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.hd-section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--hd-navy-dark);
  line-height: 1.05;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .hd-section-title { font-size: 1.75rem; }
}


/* ==========================================================================
   Header / Nav
   ========================================================================== */
.hd-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e5e7eb;
}
.hd-header-inner {
  max-width: var(--hd-max);
  margin: 0 auto;
  padding: 0 0.5rem 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hd-logo { display: flex; align-items: center; }
.hd-logo img { height: 1.95rem; width: auto; }
.hd-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--hd-navy-dark);
  text-transform: uppercase;
}
.hd-nav { display: none; align-items: center; gap: 2rem; }
.hd-nav a {
  font-size: 0.864rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hd-navy-dark);
  transition: color 0.2s;
}
.hd-nav a:hover,
.hd-nav a.current-menu-item,
.hd-nav .current-menu-item > a,
.hd-nav .current_page_item > a { color: var(--hd-yellow); }

.hd-header-right { display: none; align-items: center; gap: 1.5rem; }
.hd-phone {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1.15rem; font-weight: 630; color: var(--hd-navy);
  transition: opacity 0.2s;
}
.hd-phone:hover { opacity: 0.7; }
.hd-btn-quote {
  padding: 0.523rem 1.307rem;
  background: var(--hd-yellow);
  color: var(--hd-navy);
  font-size: 0.748rem;
  font-weight: 808;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.hd-btn-quote:hover { background: var(--hd-white); }

.hd-mobile-toggle {
  display: inline-flex;
  background: none; border: none; cursor: pointer;
  padding: 0.5rem; color: var(--hd-navy);
}
.hd-mobile-menu { display: none; background: #fff; border-top: 1px solid #e5e7eb; padding: 1rem 1.5rem; }
.hd-mobile-menu.open { display: block; }
.hd-mobile-menu a {
  display: block; padding: 0.75rem 0;
  font-size: 1.031rem; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--hd-navy-dark);
  border-bottom: 1px solid #e5e7eb;
}
.hd-mobile-menu .hd-btn-quote {
  display: block; text-align: center; margin-top: 1rem;
  padding: 0.75rem 1.25rem; border-bottom: none;
}

body.admin-bar .hd-header{
	top:33px;
}

@media (min-width: 768px) {
  .hd-nav { display: flex; }
  .hd-header-right { display: flex; }
  .hd-mobile-toggle { display: none; }
  .hd-mobile-menu { display: none !important; }
}

/* Push content below fixed header where needed (interior heroes) */
.hd-page-offset { padding-top: 4rem; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.hd-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-transform: uppercase; letter-spacing: 0.15em;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.hd-btn-yellow {
  background: var(--hd-yellow); color: var(--hd-navy);
  padding: 0.9rem 2.1rem; font-weight: 882; font-size: 0.9rem;
}
.hd-btn-yellow:hover { background: var(--hd-white); }
.hd-btn-navy {
  background: var(--hd-navy-dark); color: #fff;
  padding: 0.85rem 2rem; font-weight: 840; font-size: 0.8rem;
}
.hd-btn-navy:hover { background: #0a1050; }
.hd-btn-outline {
  border: 2px solid var(--hd-yellow); color: var(--hd-yellow);
  padding: 0.85rem 1.75rem; font-weight: 770; font-size: 0.8rem;
}
.hd-btn-outline:hover { background: var(--hd-yellow); color: #000; }
.hd-link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 690; color: var(--hd-rust);
  text-transform: uppercase; letter-spacing: 0.1em;
  transition: color 0.2s;
}
.hd-link-arrow:hover { color: var(--hd-bronze); }

/* ==========================================================================
   Hero sections
   ========================================================================== */
.hd-hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
}
.hd-hero-bg { position: absolute; inset: 0; }
.hd-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hd-hero-overlay {
  position: absolute; inset: 0;
  /*background: linear-gradient(to right, rgba(0,0,0,0.55), rgba(0,0,0,0.3), transparent);*/
}
.hd-hero-inner {
  position: relative; z-index: 10;
  max-width: var(--hd-max); margin: 0 auto;
  padding: 0 1.5rem; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
}
.hd-hero h1 {
  font-size: 1.875rem;
  font-weight: 620;
  color: #fff;
  line-height: 0.95;
  max-width: 42rem;
  background: rgba(0,0,0,0.3);
  width: fit-content;
  padding: 1rem 1.25rem;
margin-top: 16px;  
}
.hd-hero-sub {
  margin-top: 1.5rem;
  background: rgba(0,0,0,0.5);
  padding: 1.25rem 1.5rem;
  max-width: 32rem;
  width: fit-content;
}
.hd-hero-sub p {
  color: #d1d5db;
  font-size: 1.35rem;
  font-weight: 443;
  line-height: 1.6;
  margin: 0;
}
.hd-hero-actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

@media (min-width: 768px) { .hd-hero h1 { font-size: 2.813rem; } }
@media (min-width: 1024px) { .hd-hero h1 { font-size: 3.75rem; } }

/* Interior page heroes (shorter) */
.hd-hero-interior {
  position: relative;
  height: 40vh; min-height: 300px;
  overflow: hidden;
}
.hd-hero-interior .hd-hero-overlay {
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4), transparent);
}
.hd-hero-interior .hd-hero-inner { justify-content: flex-end; padding-bottom: 3rem; }
.hd-hero-interior h1 {
  font-size: 2.04rem; font-weight: 684; color: #fff; line-height: 0.95;
}
@media (min-width: 768px) { .hd-hero-interior h1 { font-size: 3.06rem; } }

.hd-hero-about { height: auto; aspect-ratio: 2560 / 900; min-height: 256px; }
.hd-hero-about .hd-hero-bg { border-bottom: 3px solid var(--hd-rust); }
.hd-hero-about .hd-hero-bg img { object-position: 50% 41%; }
.hd-hero-about .hd-hero-inner { justify-content: center; padding-top: 18vh; }
.hd-hero-about h1 {
  width: fit-content; background: rgba(0,0,0,0.4);
  padding: 0.9rem 1.125rem; font-size: 1.651rem; font-weight: 684; color: #fff;
}
@media (min-width: 768px) { .hd-hero-about h1 { font-size: 2.477rem; } }

/* Text-only hero (careers) */
.hd-hero-text {
  padding: 60px 0; background: #fff; border-bottom: 1px solid var(--hd-navy-dark);
  margin-top: 4rem;
}
.hd-hero-text h1 {
  font-size: 1.56rem; font-weight: 684; color: var(--hd-navy-dark);
  line-height: 0.95; margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .hd-hero-text h1 { font-size: 2.34rem; } }
.hd-hero-text p {
  font-size: 1.32rem; font-weight: 480; color: var(--hd-navy-dark);
  max-width: 42rem; line-height: 1.6;
}

/* ==========================================================================
   Sections / generic
   ========================================================================== */

.hd-section { padding: 4.5rem 0; }
.hd-section-sm { padding: 4rem 0; }
.bg-cream { background: var(--hd-cream); }
.bg-cream-light { background: var(--hd-cream-light); }
.bg-white { background: #fff; }
.hd-grid-2 { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 768px) { .hd-grid-2 { grid-template-columns: 1fr 1fr; } }

.hd-bordered-img {
  position: relative; overflow: hidden;
  border: 3px solid var(--hd-rust);
}
.hd-bordered-img.bronze { border: 2px solid var(--hd-bronze); }
.hd-bordered-img img { width: 100%; height: 100%; object-fit: cover; }
.hd-ratio-43 { aspect-ratio: 4 / 3; }
.hd-ratio-1610 { aspect-ratio: 16 / 10; }
.hd-ratio-169 { aspect-ratio: 16 / 9; }
.hd-ratio-21 { aspect-ratio: 2 / 1; }
.pt-16 {   padding-top: 4rem;}
/* ==========================================================================
   Stats strip
   ========================================================================== */
.hd-stats { padding: 2.9rem 0; background: #fff; }
.hd-stats-grid {
  max-width: var(--hd-max); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
@media (min-width: 768px) { .hd-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.hd-stat { text-align: center; }
.hd-stat-value {
  display: flex; align-items: baseline; justify-content: center; gap: 0.25rem;
}
.hd-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.924rem; font-weight: 810; color: var(--hd-navy-dark);
}
@media (min-width: 768px) { .hd-stat-num { font-size: 2.565rem; } }
.hd-stat-suffix { font-size: 1.18rem; font-weight: 475; color: var(--hd-rust); }
@media (min-width: 768px) { .hd-stat-suffix { font-size: 1.3125rem; } }
.hd-stat-label {
  font-size: 14.5px; letter-spacing: 0.2em; color: #000;
  font-weight: 761; margin-top: 0.5rem; text-transform: uppercase;
}
.hd-stat-seal { display: flex; justify-content: center; margin-bottom: 0.5rem; }
.hd-stat-seal img { width: 64px; height: 64px; object-fit: contain; }

/* ==========================================================================
   About snippet (home)
   ========================================================================== */
.hd-about-copy p {
  font-size: 1.26rem; color: var(--hd-text); font-weight: 528; line-height: 1.6;
}
.hd-about-copy .hd-section-title { margin-bottom: 1.5rem; }

/* ==========================================================================
   Services cards (home)
   ========================================================================== */
.hd-services-head {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem;
  flex-wrap: wrap; gap: 1rem;
}
.hd-cards-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .hd-cards-3 { grid-template-columns: repeat(3, 1fr); } }
.hd-service-card .hd-bordered-img { margin-bottom: 1rem; }
.hd-service-card h3 {
  font-size: 1.6875rem; font-weight: 900; color: var(--hd-navy-dark); margin-bottom: 0.5rem;
}
.hd-service-card p { font-size: 1.1rem; color: var(--hd-text); font-weight: 528; line-height: 1.6; }

/* ==========================================================================
   Featured projects (home)
   ========================================================================== */
.hd-proj-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .hd-proj-grid { grid-template-columns: repeat(3, 1fr); } }
.hd-proj-tile {
  position: relative; overflow: hidden; border: 2px solid var(--hd-bronze);
}
.hd-proj-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.hd-proj-tile:hover img { transform: scale(1.05); }
.hd-proj-tile .hd-proj-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.hd-proj-caption { position: absolute; bottom: 1.5rem; left: 1.5rem; }
.hd-proj-tag {
  font-size: 18px; font-weight: 552; letter-spacing: 0.2em; color: var(--hd-bronze);
  display: block;
}
.hd-proj-caption h3 { font-size: 1.4rem; font-weight: 729; color: #fff; }
.hd-proj-caption p { font-size: 1.05rem; color: #d1d5db; font-weight: 576; margin: 0.25rem 0 0; }
.hd-proj-large { min-height: 400px; }
@media (min-width: 768px) {
  .hd-proj-large { grid-row: span 2; }
  .hd-proj-wide { grid-column: span 2; }
}
.hd-proj-tile.hd-proj-large { height: 100%; }

/* ==========================================================================
   COR strip
   ========================================================================== */
.hd-cor {
  padding: 2.04rem 0; background: #fff;
  border-top: 1px solid var(--hd-navy-dark); border-bottom: 1px solid var(--hd-navy-dark);
}
.hd-cor-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.275rem;
  padding: 1.594rem; text-align: center;
}
@media (min-width: 768px) { .hd-cor-inner { flex-direction: row; text-align: left; } }
.hd-cor-inner img { width: 88px; height: 88px; object-fit: contain; flex-shrink: 0; }
.hd-cor-inner h3 { font-size: 1.5rem; font-weight: 900; color: var(--hd-navy-dark); margin-bottom: 0.5rem; }
.hd-cor-inner p { font-size: 1.26rem; color: var(--hd-text); font-weight: 528; line-height: 1.6; margin: 0; }
.hd-cor-inner .hd-btn-yellow { flex-shrink: 0; }

/* ==========================================================================
   Values (about)
   ========================================================================== */
.hd-values-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .hd-values-grid { grid-template-columns: repeat(2, 1fr); } }
.hd-value-card {
  padding: 2rem; background: var(--hd-cream-card);
  transition: box-shadow 0.3s; display: flex; gap: 1rem; align-items: flex-start;
}
.hd-value-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.hd-value-icon {
  flex-shrink: 0; width: 3rem; height: 3rem;
  background: rgba(201,162,106,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--hd-bronze); font-weight: 900; font-size: 1.1rem;
}
.hd-value-num { font-size: 0.75rem; color: var(--hd-bronze); font-weight: 700; }
.hd-value-card h3 { font-size: 25px; font-weight: 900; color: var(--hd-navy-dark); margin-bottom: 0.5rem; }
.hd-value-card p { font-size: 1.15rem; color: var(--hd-text); font-weight: 550; line-height: 1.6; margin: 0; }

/* Leadership */
.hd-leader-title { font-size: 1.463rem; font-weight: 655; color: var(--hd-navy-dark); margin-bottom: 2rem; }
@media (min-width: 768px) { .hd-leader-title { font-size: 1.951rem; } }
.hd-leader-role { font-size: 23.8px; font-weight: 506; color: #000; margin-bottom: 1rem; }
.hd-leader-bio { max-width: 42rem; }
.hd-leader-bio p { font-size: 1.2075rem; color: var(--hd-text); font-weight: 506; line-height: 1.6; }

/* Story */
.hd-story-copy p { font-size: 1.26rem; color: var(--hd-text); font-weight: 528; line-height: 1.6; }
.hd-story-imgs { display: flex; flex-direction: column; gap: 1.5rem; max-width: 80%; margin: 0 auto; }

/* Center CTA strip */
.hd-cta-center {
  padding: 51px 0; background: #fff; text-align: center;
  border-top: 1px solid var(--hd-navy-dark); border-bottom: 1px solid var(--hd-navy-dark);
}
.hd-cta-center h2 { font-size: 25.5px; font-weight: 855; color: var(--hd-navy-dark); margin-bottom: 1rem; }
@media (min-width: 768px) { .hd-cta-center h2 { font-size: 30.6px; } }
.hd-cta-center p {
  font-size: 1.26rem; color: var(--hd-navy-dark); font-weight: 528;
  margin: 0 auto 2rem; max-width: 32rem;
}

/* ==========================================================================
   Services page blocks
   ========================================================================== */
.hd-service-blocks { display: flex; flex-direction: column; gap: 5rem; }
.hd-service-block { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 768px) {
  .hd-service-block { grid-template-columns: 1fr 1fr; }
  .hd-service-block.reverse .hd-service-media { order: 2; }
}
.hd-service-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.hd-service-meta .hd-value-icon { width: 2.5rem; height: 2.5rem; }
.hd-service-meta .hd-value-num { letter-spacing: 0.2em; }
.hd-service-block h2 { font-size: 28.5px; font-weight: 855; color: var(--hd-navy-dark); margin-bottom: 1rem; }
.hd-service-block > div > p { font-size: 1.2075rem; color: var(--hd-text); font-weight: 506; line-height: 1.6; margin-bottom: 1.5rem; }
.hd-stats-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.hd-bullet { display: flex; align-items: center; gap: 0.5rem; }
.hd-bullet .dot { width: 6px; height: 6px; background: var(--hd-bronze); border-radius: 50%; flex-shrink: 0; }
.hd-bullet span { font-size: 18.885px; font-weight: 575; color: #000; }
.hd-intro p { font-size: 1.3584rem; color: var(--hd-text); font-weight: 506; line-height: 1.6; max-width: 48rem; }

/* ==========================================================================
   Projects page
   ========================================================================== */
.hd-project-list { display: flex; flex-direction: column; gap: 5rem; }
.hd-project-row { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) {
  .hd-project-row { grid-template-columns: 1fr 1fr; }
  .hd-project-row.reverse .hd-project-media { order: 2; }
}
.hd-project-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; }
.hd-project-meta span { display: flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; color: #000; }
.hd-project-row h2 { font-size: 28.5px; font-weight: 855; color: var(--hd-navy-dark); margin-bottom: 1rem; }
@media (min-width: 768px) { .hd-project-row h2 { font-size: 34.2px; } }
.hd-project-row > div > p { font-size: 1.2075rem; color: var(--hd-text); font-weight: 506; line-height: 1.6; margin-bottom: 1.5rem; }
.hd-bullets { display: flex; flex-direction: column; gap: 0.5rem; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.hd-contact-wrap { max-width: 42rem; margin: 0 auto; text-align: left; }
.hd-contact-divider { width: 3rem; height: 2.3px; background: var(--hd-bronze-dark); margin-bottom: 1rem; }
.hd-contact-label {
  font-size: 19.8px; font-weight: 760; letter-spacing: 0.3em;
  color: var(--hd-bronze-dark); text-transform: uppercase; margin-bottom: 0.75rem;
}
.hd-contact-wrap h2 { font-size: 35.19px; font-weight: 900; color: var(--hd-navy-dark); line-height: 1.05; margin-bottom: 1rem; }
.hd-contact-intro { font-size: 1.2075rem; color: var(--hd-text); font-weight: 484; line-height: 1.6; margin-bottom: 2.5rem; }
.hd-contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.hd-contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.hd-contact-item .hd-ic {
  width: 55px; height: 55px; background: rgba(201,162,106,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--hd-bronze-dark);
}
.hd-contact-item .hd-k {
  font-weight: 900; letter-spacing: 0.15em; color: var(--hd-navy-dark);
  text-transform: uppercase; margin-bottom: 0.25rem; font-size: 1rem;
}
.hd-contact-item .hd-v { font-size: 19.32px; font-weight: 480; color: #000; margin: 0; }
.hd-contact-item .hd-v-sm { font-size: 16.56px; font-weight: 480; color: #000; margin: 0.25rem 0 0; }
.hd-contact-form-wrap { margin-top: 2.5rem; }
.hd-contact-form-wrap h3 {
  font-size: 1.1rem; font-weight: 840; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--hd-navy-dark); margin-bottom: 1rem;
}
.hd-social { margin-top: 2.5rem; }
.hd-social-label { font-size: 13.8px; font-weight: 528; letter-spacing: 0.3em; color: var(--hd-navy-dark); text-transform: uppercase; margin-bottom: 0.75rem; }
.hd-social-links { display: flex; align-items: center; gap: 1rem; }
.hd-social-links a { display: flex; align-items: center; gap: 0.5rem; font-size: 16.8px; font-weight: 480; color: #000; transition: color 0.2s; }
.hd-social-links a:hover { color: var(--hd-bronze); }

/* Contact Form 7 basic styling */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%; padding: 0.75rem 1rem; margin-bottom: 1rem;
  background: #fff; border: 1px solid var(--hd-bronze);
  font-family: inherit; font-size: 1rem; color: var(--hd-text);
}
.wpcf7 textarea { min-height: 140px; resize: vertical; }
.wpcf7 input[type="submit"] {
  background: var(--hd-yellow); color: var(--hd-navy);
  padding: 0.9rem 2.1rem; border: none; cursor: pointer;
  font-weight: 882; letter-spacing: 0.15em; text-transform: uppercase;
  transition: background 0.2s;
}
.wpcf7 input[type="submit"]:hover { background: var(--hd-navy-dark); color: #fff; }

/* ==========================================================================
   Careers page
   ========================================================================== */
.hd-benefits-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .hd-benefits-grid { grid-template-columns: repeat(2, 1fr); } }
.hd-benefit { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; background: var(--hd-cream-light); }
.hd-benefit .ic { color: var(--hd-bronze); flex-shrink: 0; display: flex; }
.hd-benefit span { font-size: 18.5px; font-weight: 575; color: #000; }
.hd-jobs { display: flex; flex-direction: column; gap: 1.5rem; }
.hd-job-card { background: var(--hd-cream-card); padding: 2rem; transition: box-shadow 0.3s; }
.hd-job-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.hd-job-inner { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) { .hd-job-inner { flex-direction: row; align-items: flex-start; } }
.hd-job-icon { width: 3.5rem; height: 3.5rem; background: rgba(201,162,106,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--hd-bronze); }
.hd-job-card h3 { font-size: 1.5rem; font-weight: 900; color: var(--hd-navy-dark); margin-bottom: 0.5rem; }
.hd-job-tags { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
.hd-job-tags span { display: flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; color: #000; }
.hd-req-grid { display: grid; grid-template-columns: 1fr; gap: 0.5rem; }
@media (min-width: 768px) { .hd-req-grid { grid-template-columns: repeat(2, 1fr); } }
.hd-req { display: flex; align-items: flex-start; gap: 0.5rem; }
.hd-req .dot { width: 6px; height: 6px; background: var(--hd-bronze); border-radius: 50%; margin-top: 0.4rem; flex-shrink: 0; }
.hd-req span { font-size: 18.5px; font-weight: 460; color: #000; }
.hd-careers-cta { padding: 43px 0; background: #fff; text-align: center; border-top: 1px solid var(--hd-navy-dark); border-bottom: 1px solid var(--hd-navy-dark); }
.hd-careers-cta h2 { font-size: 1.875rem; font-weight: 900; color: var(--hd-navy-dark); margin-bottom: 1rem; }
.hd-careers-cta p { font-size: 1.388rem; color: var(--hd-text); font-weight: 506; margin: 0 auto 1.5rem; max-width: 32rem; }
.hd-careers-cta .hd-email { font-size: 1.388rem; color: var(--hd-navy-dark); font-weight: 506; }

/* ==========================================================================
   Footer
   ========================================================================== */
.hd-footer { background: var(--hd-footer-bg); border-top: 1px solid #e5e7eb; }
.hd-footer-inner { max-width: var(--hd-max); margin: 0 auto; padding: 4rem 1.5rem; }
.hd-footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .hd-footer-grid { grid-template-columns: repeat(4, 1fr); } }
.hd-footer-logo img { height: 29px; width: auto; object-fit: contain; margin-bottom: 1rem; }
.hd-footer-logo .hd-logo-text { font-size: 1.4rem; margin-bottom: 1rem; display: inline-block; }
.hd-footer-brand p { font-size: 15.4px; font-weight: 550; color: #000; line-height: 1.6; margin-bottom: 1.5rem; }
.hd-footer-social { display: flex; gap: 0.75rem; }
.hd-footer-social a { color: #000; transition: color 0.2s; }
.hd-footer-social a:hover { color: var(--hd-bronze); }
.hd-footer h4 { font-size: 13.2px; font-weight: 770; letter-spacing: 0.2em; color: #000; margin-bottom: 1.5rem; text-transform: uppercase; }
.hd-footer-nav li { margin-bottom: 0.75rem; }
.hd-footer-nav a { font-size: 14.7px; font-weight: 550; color: var(--hd-navy-dark); transition: color 0.2s; }
.hd-footer-nav a:hover { color: var(--hd-bronze); }
.hd-footer-services li { font-size: 15.4px; font-weight: 550; color: var(--hd-text); margin-bottom: 0.75rem; }
.hd-footer-contact { display: flex; flex-direction: column; gap: 0.75rem; font-size: 18.48px; font-weight: 550; color: var(--hd-text); }
.hd-footer-contact a { transition: color 0.2s; }
.hd-footer-contact a:hover { color: var(--hd-bronze); }
.hd-footer-bottom { border-top: 1px solid #e5e7eb; }
.hd-footer-bottom-inner {
  max-width: var(--hd-max); margin: 0 auto; padding: 1.5rem;
  display: flex; flex-direction: column; align-items: center;
  font-size: 10px; letter-spacing: 0.15em; color: #000; text-transform: uppercase;
}
@media (min-width: 768px) { .hd-footer-bottom-inner { flex-direction: row; justify-content: space-between; } }
.hd-footer-bottom-inner span:last-child { margin-top: 0.5rem; }
@media (min-width: 768px) { .hd-footer-bottom-inner span:last-child { margin-top: 0; } }

/* Utility */
.hd-mt-2 { margin-top: 2rem; }
.hd-hide-mobile { display: none; }
@media (min-width: 768px) { .hd-hide-mobile { display: inline-flex; } .hd-show-mobile { display: none; } }
