/* ============================================================
   FOCUS Headwear — site styles
   Built on tokens.css. Prefix: .fh-*
   ============================================================ */

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper-cream);
  color: var(--ink);
  font-family: var(--font-body);
}

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

a { color: inherit; }

/* container */
.fh-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 720px) {
  .fh-wrap { padding: 0 20px; }
}

/* ------------ Buttons ------------ */
.fh-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  padding: 14px 24px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur-base) var(--ease-standard),
              color var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard),
              transform var(--dur-fast) var(--ease-standard);
}
.fh-btn:active { transform: translateY(1px); }
.fh-btn--primary { background: var(--focus-green); color: #fff; }
.fh-btn--primary:hover { background: var(--focus-green-700); }
.fh-btn--leaf { background: var(--leaf-green); color: #fff; }
.fh-btn--leaf:hover { background: var(--leaf-green-600); }
.fh-btn--ghost-dark { background: transparent; color: var(--focus-green); border-color: var(--hairline-strong); }
.fh-btn--ghost-dark:hover { background: var(--paper-warm); border-color: var(--focus-green); }
.fh-btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.fh-btn--ghost-light:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.85); }
.fh-btn--lg { padding: 16px 28px; font-size: 15px; }

/* ------------ Eyebrow ------------ */
.fh-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--focus-green);
}
.fh-eyebrow--light { color: var(--leaf-green); }
.fh-eyebrow--ink { color: var(--ink-2); }

/* ------------ NAV ------------ */
.fh-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.fh-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.fh-brand {
  display: flex; align-items: baseline; gap: 10px;
  text-decoration: none;
}
.fh-brand img { height: 24px; }
.fh-brand-sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-left: 1px solid var(--hairline-strong);
  padding-left: 10px;
}
.fh-nav-links {
  display: flex; gap: 30px; align-items: center;
}
.fh-nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-standard);
}
.fh-nav-links a:hover { color: var(--focus-green); }
@media (max-width: 920px) {
  .fh-nav-links { display: none; }
}

/* ------------ HERO ------------ */
.fh-hero {
  background: var(--focus-green);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.fh-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 110% -10%, rgba(57,181,74,0.22), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(31,74,58,0.55), transparent 60%);
  pointer-events: none;
}
.fh-hero-inner {
  position: relative;
  padding: 100px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.fh-hero-copy { max-width: 640px; }
.fh-hero-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 18px 0 22px;
}
.fh-hero-h1 .accent { color: var(--leaf-green); }
.fh-hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.86);
  margin: 0 0 32px;
  max-width: 580px;
}
.fh-hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.fh-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 56px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.fh-hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  color: #fff;
  line-height: 1;
}
.fh-hero-meta strong .unit {
  font-size: 18px;
  font-weight: 600;
  color: var(--leaf-green);
  margin-left: 2px;
}
.fh-hero-meta span {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  margin-top: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero hat showcase tile */
.fh-hero-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--paper-cream);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}
.fh-hero-photo-stack {
  position: absolute; inset: 0;
}
.fh-hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms var(--ease-standard);
}
.fh-hero-photo.is-active { opacity: 1; }
.fh-hero-tile svg { width: 78%; height: auto; }
.fh-hero-tile-badge {
  position: absolute; top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.92);
  color: var(--focus-green);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}
.fh-hero-tile-badge .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--leaf-green); }
.fh-hero-tile-caption {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  display: flex; justify-content: space-between; align-items: flex-end;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(20, 36, 29, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.fh-hero-tile-caption .style { font-size: 18px; color: #fff; }
.fh-hero-tile-caption .meta { font-size: 11px; color: rgba(255,255,255,0.75); letter-spacing: 0.06em; text-transform: uppercase; }

@media (max-width: 920px) {
  .fh-hero-inner { grid-template-columns: 1fr; padding: 64px 0 56px; }
  .fh-hero-meta { gap: 32px; margin-top: 36px; }
  .fh-hero-meta strong { font-size: 28px; }
  .fh-hero-tile { max-width: 420px; margin: 0 auto; width: 100%; }
}

/* ------------ TRUST BAR ------------ */
.fh-trust {
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
}
.fh-trust-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  padding: 28px 0;
  align-items: center;
}
.fh-trust-item {
  display: flex; align-items: center; gap: 12px;
}
.fh-trust-item .icon {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--leaf-green-100);
  color: var(--focus-green);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.fh-trust-item .icon svg { width: 18px; height: 18px; }
.fh-trust-item .label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.3;
}
.fh-trust-item .label small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0;
  margin-top: 2px;
}
@media (max-width: 920px) {
  .fh-trust-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 20px 0; }
}

/* ------------ SECTIONS ------------ */
.fh-section { padding: 112px 0; }
.fh-section--tight { padding: 80px 0; }
.fh-section--green {
  background: var(--focus-green);
  color: #fff;
}
.fh-section--cream {
  background: var(--paper-cream);
}
.fh-section--paper {
  background: var(--paper);
}
.fh-section-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.fh-section-head--center { margin: 0 auto 56px; text-align: center; }
.fh-section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 14px 0 18px;
}
.fh-section-head--light h2 { color: #fff; }
.fh-section-head p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}
.fh-section-head--light p { color: rgba(255,255,255,0.82); }

@media (max-width: 720px) {
  .fh-section { padding: 80px 0; }
}

/* ------------ STYLES GRID ------------ */
.fh-styles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.fh-style-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 18px;
  position: relative;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: transform var(--dur-base) var(--ease-standard),
              box-shadow var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard);
}
.fh-style-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--focus-green-300);
}
.fh-style-art {
  aspect-ratio: 4 / 3;
  background: var(--paper-warm);
  border-radius: 12px;
  display: grid; place-items: center;
  overflow: hidden;
  position: relative;
}
.fh-style-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease-standard);
}
.fh-style-card:hover .fh-style-art img { transform: scale(1.04); }
.fh-style-art svg { width: 72%; height: auto; }
.fh-style-art--leaf { background: var(--leaf-green-100); }
.fh-style-num {
  position: absolute;
  top: 10px; right: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
}
.fh-style-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin: 0;
}
.fh-style-card p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}
.fh-styles-footnote {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  background: var(--paper);
  border: 1px dashed var(--hairline-strong);
  border-radius: 16px;
}
.fh-styles-footnote p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink-2);
  max-width: 720px;
}
@media (max-width: 920px) {
  .fh-styles-grid { grid-template-columns: repeat(2, 1fr); }
  .fh-styles-footnote { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .fh-styles-grid { grid-template-columns: 1fr; }
}

/* ------------ CAPABILITIES ------------ */
.fh-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.fh-cap-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 14px;
}
.fh-cap-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--focus-green);
  color: #fff;
  display: grid; place-items: center;
}
.fh-cap-card .icon svg { width: 22px; height: 22px; }
.fh-cap-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  margin: 0;
}
.fh-cap-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fh-cap-card li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  padding: 8px 0;
  border-top: 1px solid var(--hairline);
  display: flex; align-items: flex-start; gap: 10px;
}
.fh-cap-card li::before {
  content: ""; flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--leaf-green);
  margin-top: 8px;
}
.fh-cap-card li:first-child { border-top: 0; }

@media (max-width: 920px) {
  .fh-cap-grid { grid-template-columns: 1fr; }
}

/* ------------ WHY VIETNAM ------------ */
.fh-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: center;
}
.fh-why-visual {
  background: var(--leaf-green-100);
  border-radius: 24px;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(20, 36, 29, 0.18);
}
.fh-why-visual svg { width: 100%; height: auto; }
.fh-why-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.fh-why-flag {
  position: absolute;
  bottom: 20px; left: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  box-shadow: var(--shadow-sm);
}
.fh-why-flag .flag {
  width: 22px; height: 16px; border-radius: 2px;
  background: #DA251D; position: relative;
}
.fh-why-flag .flag::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, #FFCD00 22%, transparent 23%);
  background-size: 100% 100%;
  background-position: center;
}
.fh-why-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 28px;
}
.fh-why-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
}
.fh-why-list .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--leaf-green);
  line-height: 1;
  padding-top: 4px;
}
.fh-why-list h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 6px;
  color: var(--ink);
}
.fh-why-list p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}
@media (max-width: 920px) {
  .fh-why-grid { grid-template-columns: 1fr; gap: 48px; }
  .fh-why-visual { aspect-ratio: 16/10; }
  .fh-why-photo { object-position: center 30%; }
}

/* ------------ MATERIALS (tabs) ------------ */
.fh-mat {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 48px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 40px;
}
.fh-mat-tabs {
  display: flex; flex-direction: column; gap: 4px;
}
.fh-mat-tab {
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 14px 16px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
  display: flex; align-items: center; gap: 12px;
  transition: background var(--dur-base) var(--ease-standard), color var(--dur-base) var(--ease-standard);
}
.fh-mat-tab:hover { background: var(--paper-warm); color: var(--ink); }
.fh-mat-tab.is-active {
  background: var(--focus-green);
  color: #fff;
}
.fh-mat-tab .num {
  font-size: 11px; letter-spacing: 0.08em;
  color: inherit;
  opacity: 0.7;
}
.fh-mat-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-content: start;
}
.fh-mat-panel h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.fh-mat-panel > p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  max-width: 640px;
}
.fh-mat-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.fh-mat-item {
  background: var(--paper-cream);
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid var(--hairline);
}
.fh-mat-item h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  margin: 0 0 6px;
  display: flex; align-items: center; gap: 8px;
}
.fh-mat-item h4 .chip {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--leaf-green-100);
  color: var(--focus-green);
}
.fh-mat-item p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
@media (max-width: 920px) {
  .fh-mat { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
  .fh-mat-tabs { flex-direction: row; overflow-x: auto; gap: 8px; }
  .fh-mat-tab { flex-shrink: 0; }
  .fh-mat-items { grid-template-columns: 1fr; }
}

/* ------------ PROCESS ------------ */
.fh-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  position: relative;
}
.fh-step {
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 32px;
  border-top: 2px solid rgba(255,255,255,0.18);
  position: relative;
}
.fh-step::before {
  content: "";
  position: absolute;
  top: -7px; left: 0;
  width: 12px; height: 12px;
  background: var(--leaf-green);
  border-radius: 999px;
}
.fh-step .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--leaf-green);
}
.fh-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}
.fh-step p {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin: 0;
}
.fh-step .timing {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
@media (max-width: 920px) {
  .fh-process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .fh-process { grid-template-columns: 1fr; }
}

/* ------------ CERTIFICATIONS ------------ */
.fh-cert-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.fh-cert {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.fh-cert-badge {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--focus-green);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.fh-cert h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--ink);
}
.fh-cert p {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.fh-cert-strip {
  background: var(--focus-green-800);
  color: #fff;
  border-radius: 20px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}
.fh-cert-strip > div strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  color: #fff;
  line-height: 1;
}
.fh-cert-strip > div strong .unit {
  font-size: 16px;
  color: var(--leaf-green);
  font-weight: 600;
  margin-left: 2px;
}
.fh-cert-strip > div span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 920px) {
  .fh-cert-row { grid-template-columns: 1fr; }
  .fh-cert-strip { grid-template-columns: repeat(2, 1fr); padding: 24px; }
}

/* ------------ FAQ ------------ */
.fh-faq {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.fh-faq-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--hairline);
}
.fh-faq-item {
  border-bottom: 1px solid var(--hairline);
  padding: 20px 0;
}
.fh-faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 0;
  letter-spacing: -0.005em;
}
.fh-faq-q .plus {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--paper-warm);
  color: var(--focus-green);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 600;
  transition: background var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard);
}
.fh-faq-item.is-open .fh-faq-q .plus {
  background: var(--focus-green);
  color: #fff;
  transform: rotate(45deg);
}
.fh-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-standard);
}
.fh-faq-item.is-open .fh-faq-a { max-height: 400px; }
.fh-faq-a p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 12px 0 4px;
  max-width: 680px;
}
@media (max-width: 920px) {
  .fh-faq { grid-template-columns: 1fr; gap: 32px; }
}

/* ------------ CONTACT ------------ */
.fh-contact {
  background: var(--focus-green);
  color: #fff;
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}
.fh-contact::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 600px at 0% 0%, rgba(57,181,74,0.18), transparent 60%);
  pointer-events: none;
}
.fh-contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: start;
}
.fh-contact-left h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 14px 0 20px;
}
.fh-contact-left p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0 0 28px;
  max-width: 520px;
}
.fh-contact-bullets {
  list-style: none; margin: 0 0 32px; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.fh-contact-bullets li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.92);
}
.fh-contact-bullets li svg {
  width: 18px; height: 18px;
  color: var(--leaf-green);
  flex-shrink: 0;
}
.fh-contact-channels {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 8px;
}
.fh-channel {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 12px 16px;
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  text-decoration: none;
  transition: background var(--dur-base) var(--ease-standard);
}
.fh-channel:hover { background: rgba(255,255,255,0.15); }
.fh-channel--qr { gap: 14px; padding: 10px 16px 10px 10px; align-items: center; }
.fh-channel--qr:hover { background: rgba(255,255,255,0.08); cursor: default; }
.fh-qr { width: 56px; height: 56px; background: #fff; border-radius: 8px; padding: 4px; display: block; flex-shrink: 0; }
.fh-channel .qr-sub { display: block; font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.fh-channel .label { color: rgba(255,255,255,0.6); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; display: block; }
.fh-channel .val { font-weight: 600; color: #fff; }

.fh-form {
  background: var(--paper);
  border-radius: 24px;
  padding: 36px;
  color: var(--ink);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}
.fh-form h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.fh-form .sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-3);
  margin: 0 0 24px;
}
.fh-field {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 16px;
}
.fh-field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.fh-field input,
.fh-field select,
.fh-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--hairline-strong);
  border-radius: 10px;
  padding: 12px 14px;
  outline: 0;
  transition: border-color var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard);
}
.fh-field input:focus,
.fh-field select:focus,
.fh-field textarea:focus {
  border-color: var(--focus-green);
  box-shadow: 0 0 0 3px rgba(52,113,91,0.15);
}
.fh-field textarea { min-height: 110px; resize: vertical; }
.fh-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fh-checks {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 16px;
}
.fh-check {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: var(--paper-cream);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-standard);
}
.fh-check input { display: none; }
.fh-check.is-on {
  background: var(--leaf-green-100);
  border-color: var(--focus-green);
  color: var(--focus-green);
  font-weight: 600;
}
.fh-form-foot {
  display: flex; align-items: center; gap: 14px;
  margin-top: 20px;
}
.fh-form-foot .fine {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-3);
  margin: 0;
}
@media (max-width: 920px) {
  .fh-contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .fh-form { padding: 24px; }
  .fh-row-2 { grid-template-columns: 1fr; }
}

/* Button with leading icon (e.g. WhatsApp send) */
.fh-btn .fh-btn { /* noop guard */ }
.fh-btn svg { width: 20px; height: 20px; flex: 0 0 20px; }
.fh-btn--lg { display: inline-flex; align-items: center; gap: 10px; }

/* Sent confirmation panel — replaces the form in place */
.fh-form--sent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 520px;
  gap: 6px;
}
.fh-form--sent h3 { margin-top: 6px; }
.fh-form--sent .sub { max-width: 38ch; }
.fh-sent-badge {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--focus-green, #1f6b4a);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.fh-sent-badge svg { width: 28px; height: 28px; }
.fh-btn--ghost {
  background: transparent;
  color: var(--focus-green, #1f6b4a);
  border: 1px solid currentColor;
}
.fh-btn--ghost:hover { background: rgba(31,107,74,0.06); }

/* ------------ FOOTER ------------ */
.fh-footer {
  background: #14241D;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
}
.fh-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}
.fh-footer-brand img { height: 28px; margin-bottom: 16px; }
.fh-footer-brand p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin: 0 0 18px;
  max-width: 320px;
}
.fh-footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
}
.fh-footer-col ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.fh-footer-col a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-standard);
}
.fh-footer-col a:hover { color: #fff; }
.fh-footer-fine {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
}
.fh-footer-tag {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
}
@media (max-width: 920px) {
  .fh-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .fh-footer-grid { grid-template-columns: 1fr; }
}

/* ------------ PRODUCTION VIDEO ------------ */
.fh-video {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(20, 36, 29, 0.25);
  background: var(--focus-green-800);
}
.fh-video-el {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.fh-video-play {
  position: absolute;
  top: 20px; right: 20px;
  width: 48px; height: 48px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.92);
  color: var(--focus-green);
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard);
}
.fh-video-play:hover { background: #fff; transform: scale(1.06); }
.fh-video-play svg { width: 18px; height: 18px; }
.fh-video-strip {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  background: rgba(20, 36, 29, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 16px;
  padding: 20px 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}
.fh-video-strip > div strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: #fff;
  line-height: 1;
}
.fh-video-strip > div strong .unit {
  font-size: 14px;
  color: var(--leaf-green);
  font-weight: 600;
  margin-left: 2px;
}
.fh-video-strip > div span {
  display: block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
@media (max-width: 720px) {
  .fh-video-strip {
    position: static;
    margin: 0;
    background: var(--focus-green-800);
    border-radius: 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .fh-video-strip > div strong { font-size: 22px; }
}

/* ------------ TOAST ------------ */
.fh-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--focus-green-800);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-body); font-size: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  animation: fh-pop 220ms var(--ease-standard);
}
@keyframes fh-pop {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
