/* Hunter Digital Media — site styles (v3, modern refresh)
   Brand locked: orange #FF8800, black, white, Jost.
   Jost is loaded via <link> in each page head (faster than @import). */

:root {
  --black: #000000;
  --white: #ffffff;
  --orange: #FF8800;
  --grey-input: #f7f7f7;
  --grey-text: #6b6b6b;
  --ink: #1a1a1a;
  --line: #e8e8e8;
  --max-width: 1160px;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 4px 14px rgba(0,0,0,.05);
  --shadow-md: 0 2px 6px rgba(0,0,0,.07), 0 12px 28px rgba(0,0,0,.09);
  --section-pad: clamp(56px, 8vw, 96px);
  --ease: cubic-bezier(.25,.6,.3,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 2px;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / Nav */
header.site-header {
  background: var(--black);
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(255,136,0,.25), 0 6px 24px rgba(0,0,0,.35);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

nav.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 26px;
  font-size: 17px;
  font-weight: 500;
  max-width: 460px;
}

nav.main-nav a {
  color: var(--orange);
  padding: 2px 0;
  position: relative;
}

nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--orange);
  transition: right .25s var(--ease);
}

nav.main-nav a:hover::after,
nav.main-nav a.active::after { right: 0; }

nav.main-nav a.active { text-decoration: none; }

.logo img {
  height: 62px;
  width: auto;
  margin: 0 auto;
  transition: transform .25s var(--ease);
}

.logo:hover img { transform: scale(1.04); }

.social-link {
  color: var(--orange);
  font-size: 22px;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}

.social-link:hover { opacity: .85; transform: translateY(-1px); }

.social-link svg { fill: var(--orange); width: 22px; height: 22px; }

/* Hamburger (mobile only) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--orange);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero — white (homepage) */
.hero-white {
  background: var(--white);
  padding: clamp(48px, 7vw, 88px) 40px 40px;
}

.hero-white .hero-flex {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-white .hero-logo img { width: 280px; border-radius: var(--radius); }

.hero-white h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  flex: 1;
  min-width: 260px;
  text-align: center;
}

.hero-white .hero-copy {
  max-width: 760px;
  margin: 40px auto 0;
  color: var(--ink);
  font-size: 18px;
  text-align: center;
}

.hero-white hr {
  max-width: var(--max-width);
  margin: 48px auto 0;
  border: none;
  border-top: 1px solid var(--line);
}

/* Hero — black (interior pages) */
.hero-black {
  background: var(--black);
  color: var(--white);
  padding: clamp(64px, 9vw, 110px) 40px;
  text-align: center;
}

.hero-black h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 auto 24px;
  max-width: 780px;
}

.hero-black p {
  max-width: 640px;
  margin: 0 auto 18px;
  font-size: 17px;
  color: rgba(255,255,255,.92);
}

.hero-black .btn { margin-top: 12px; }

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

section.tight { padding: 40px 0; }

h1.section-title,
h2.section-title {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}

h1.section-title.center,
h2.section-title.center { text-align: center; }

h2.eyebrow,
h3.eyebrow {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 14px;
}

h2.eyebrow.center,
h3.eyebrow.center { text-align: center; }

p.lede { max-width: 700px; font-size: 17px; color: var(--ink); margin: 0 0 16px; }

p.lede.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Feature rows */
.feature-row {
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  flex-wrap: wrap;
}

.feature-row.reverse { flex-direction: row-reverse; }

.feature-row .col { flex: 1 1 400px; min-width: 280px; }

.feature-row h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
}

.feature-row p { color: var(--ink); margin: 0 0 24px; }

.feature-row img,
.feature-row iframe {
  border-radius: var(--radius);
}

.feature-row .col img {
  box-shadow: var(--shadow-md);
}

.feature-row .col > div[style*="aspect-ratio"] {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 32px;
  background: var(--orange);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255,136,0,.35);
}

.btn:active { transform: translateY(0); box-shadow: none; }

.center { text-align: center; }

/* Black band */
.band-black {
  background: var(--black);
  color: var(--white);
  padding: var(--section-pad) 0;
}

.band-black h2 {
  text-align: center;
  font-weight: 600;
  letter-spacing: -0.015em;
  font-size: clamp(26px, 3.4vw, 40px);
  margin: 0 0 40px;
}

/* Showcase */
.showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.showcase figure { margin: 0; }

.showcase figure img,
.showcase figure > div {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.showcase figcaption {
  font-weight: 600;
  margin-top: 12px;
  font-size: 15px;
}

/* Conferencing "This includes" list items */
.showcase > div:not([class]) {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}

.pricing-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-images img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* FAQ */
h2.faq-title {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}

.faq-intro { font-weight: 600; color: var(--grey-text); margin-bottom: 32px; }

.faq-item {
  max-width: 800px;
  margin: 0 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.faq-item:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); }

.faq-item h3,
.faq-item h4 { margin: 0 0 8px; font-size: 16px; font-weight: 700; }

.faq-item p { margin: 0; color: var(--ink); }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 5vw, 64px);
}

.contact-grid .info h1,
.contact-grid .info h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.contact-grid .info p { margin: 0 0 6px; }

.contact-grid .info a:hover { color: var(--orange); }

.band-black .contact-grid .info a:hover { color: var(--orange); }

.contact-grid .info .social-link { display: inline-block; margin-top: 16px; }

form.hdm-form label { display: block; font-weight: 500; margin-bottom: 6px; }

form.hdm-form .group-label { font-weight: 500; margin: 0 0 6px; }

form.hdm-form .req { color: var(--grey-text); font-weight: 400; font-style: italic; font-size: 14px; }

form.hdm-form .hint { color: var(--grey-text); font-size: 14px; margin: 0 0 8px; }

form.hdm-form .field-row { display: flex; gap: 16px; margin-bottom: 20px; }

form.hdm-form .field-row > div { flex: 1; }

form.hdm-form .field { margin-bottom: 24px; }

form.hdm-form input[type="text"],
form.hdm-form input[type="email"],
form.hdm-form input[type="date"],
form.hdm-form textarea {
  width: 100%;
  background: var(--grey-input);
  border: 1px solid #d9d9d9;
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}

form.hdm-form input:focus,
form.hdm-form textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,136,0,.18);
}

form.hdm-form textarea { min-height: 120px; resize: vertical; }

/* Black band form adjustments (homepage contact) */
.band-black form.hdm-form label,
.band-black form.hdm-form .group-label { color: var(--white); }

.band-black form.hdm-form .req,
.band-black form.hdm-form .hint { color: rgba(255,255,255,.65); }

/* Footer */
footer.site-footer {
  background: var(--orange);
  color: var(--black);
  padding: clamp(48px, 6vw, 72px) 24px;
  text-align: center;
}

footer.site-footer strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

footer.site-footer p { margin: 5px 0; }

footer.site-footer a { border-bottom: 1px solid transparent; transition: border-color .2s var(--ease); }

footer.site-footer a:hover { border-bottom-color: var(--black); }

footer.site-footer .social { margin-top: 18px; }

footer.site-footer .social-link svg { fill: var(--black); }

/* Motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Mobile */
@media (max-width: 860px) {
  header.site-header { padding: 14px 20px; }

  .nav-inner { flex-wrap: wrap; gap: 12px; }

  .logo { order: 1; }
  .logo img { height: 52px; margin: 0; }
  .social-link { order: 2; margin-left: auto; }
  .nav-toggle { display: flex; order: 3; }

  nav.main-nav {
    order: 4;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    max-width: 100%;
    padding: 12px 0 8px;
    border-top: 1px solid rgba(255,136,0,.3);
  }

  nav.main-nav.open { display: flex; }

  nav.main-nav a { padding: 10px 0; width: 100%; font-size: 18px; }

  .hero-white { padding: 40px 24px 32px; }
  .hero-black { padding: 56px 24px; }

  .contact-grid { grid-template-columns: 1fr; }
  .feature-row, .feature-row.reverse { flex-direction: column; }
  form.hdm-form .field-row { flex-direction: column; gap: 0; }
  form.hdm-form .field-row > div { margin-bottom: 20px; }
}
