/* =============================================
   HALENQIX HUB - MAIN STYLESHEET
   Prefix: hd-
   Design: Editorial Modern
   ============================================= */


:root {
  --hd-cream: #f7f4ef;
  --hd-cream-dark: #ede9e2;
  --hd-ink: #1c1a17;
  --hd-ink-soft: #3a3630;
  --hd-ink-muted: #6b6560;
  --hd-accent: #b5602a;
  --hd-accent-hover: #963f10;
  --hd-accent-light: #f0e4d8;
  --hd-warm-mid: #8c7b6e;
  --hd-white-off: #fdfcfa;
  --hd-dark-bg: #1c1a17;
  --hd-dark-surface: #252220;

  --hd-radius-sm: 4px;
  --hd-radius-md: 10px;
  --hd-radius-lg: 20px;
  --hd-radius-xl: 32px;
  --hd-radius-full: 9999px;

  --hd-shadow-sm: 0 1px 3px rgba(28,26,23,0.08), 0 1px 2px rgba(28,26,23,0.05);
  --hd-shadow-md: 0 4px 12px rgba(28,26,23,0.10), 0 2px 4px rgba(28,26,23,0.06);
  --hd-shadow-lg: 0 12px 32px rgba(28,26,23,0.12), 0 4px 8px rgba(28,26,23,0.08);
  --hd-shadow-xl: 0 24px 64px rgba(28,26,23,0.15), 0 8px 16px rgba(28,26,23,0.08);

  --hd-space-xs: 0.5rem;
  --hd-space-sm: 1rem;
  --hd-space-md: 2rem;
  --hd-space-lg: 4rem;
  --hd-space-xl: 7rem;

  --hd-nav-h: 72px;
  --hd-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}


*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Onest', sans-serif;
  background-color: var(--hd-cream);
  color: var(--hd-ink);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  line-height: 1.7;
}


header, nav, main, footer, section, article, aside { all: unset; display: block; }
a { color: var(--hd-accent); text-decoration: none; transition: color var(--hd-transition); }
a:hover { color: var(--hd-accent-hover); }
p { margin: 0 0 1.1em; color: var(--hd-ink-soft); font-size: 1.05rem; line-height: 1.75; }
h1,h2,h3,h4,h5,h6 { font-family: 'Onest', sans-serif; margin: 0 0 0.6em; line-height: 1.2; color: var(--hd-ink); }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
iframe { display: block; }


.pace .pace-progress { background: var(--hd-accent) !important; }

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.hd-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--hd-cream);
  height: var(--hd-nav-h);
  display: flex;
  flex-direction: column;
}

.hd-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--hd-space-md);
  height: var(--hd-nav-h);
  width: 100%;
}

.hd-header-border {
  height: 2px;
  background: var(--hd-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.hd-header.hd-scrolled .hd-header-border {
  transform: scaleX(1);
}

.hd-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.hd-logo-img {
  width: 36px;
  height: 36px;
}

.hd-logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--hd-ink);
  letter-spacing: -0.02em;
}

.hd-logo-text strong {
  color: var(--hd-accent);
  font-weight: 800;
}

.hd-logo-light .hd-logo-text { color: var(--hd-cream); }
.hd-logo-light .hd-logo-text strong { color: var(--hd-accent); }

.hd-nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hd-nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--hd-ink-soft);
  padding: 0.5rem 0.85rem;
  border-radius: var(--hd-radius-sm);
  transition: color var(--hd-transition), background var(--hd-transition);
  text-decoration: none;
}

.hd-nav-link:hover, .hd-nav-link.hd-active {
  color: var(--hd-accent);
  background: var(--hd-accent-light);
}

.hd-nav-cta {
  background: var(--hd-accent);
  color: var(--hd-white-off) !important;
  border-radius: var(--hd-radius-sm);
  padding: 0.5rem 1.1rem;
  font-weight: 600;
  box-shadow: var(--hd-shadow-sm);
  transition: background var(--hd-transition), box-shadow var(--hd-transition), transform var(--hd-transition);
}

.hd-nav-cta:hover {
  background: var(--hd-accent-hover) !important;
  color: var(--hd-white-off) !important;
  box-shadow: var(--hd-shadow-md);
  transform: translateY(-1px);
}

.hd-nav-cta.hd-active {
  background: var(--hd-accent-hover) !important;
  color: var(--hd-white-off) !important;
}

.hd-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--hd-radius-sm);
  transition: background var(--hd-transition);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hd-hamburger:hover { background: var(--hd-accent-light); }

.hd-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--hd-ink);
  border-radius: 2px;
  transition: all var(--hd-transition);
}

/* =============================================
   MOBILE MENU - FLIP CARD
   ============================================= */
.hd-mobile-menu-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  perspective: 1200px;
}

.hd-mobile-menu-card {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  height: var(--hd-nav-h);
}

.hd-mobile-menu-card.hd-flipped {
  transform: rotateX(-180deg);
  height: 100vh;
}

.hd-mobile-front,
.hd-mobile-back {
  position: absolute;
  top: 0; left: 0; right: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hd-mobile-front {
  background: var(--hd-cream);
  border-bottom: 1px solid var(--hd-cream-dark);
  height: var(--hd-nav-h);
  display: flex;
  align-items: center;
}

.hd-mobile-back {
  background: var(--hd-dark-bg);
  transform: rotateX(180deg);
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: var(--hd-space-lg) var(--hd-space-md);
}

.hd-mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: var(--hd-cream);
  font-size: 1.4rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--hd-radius-sm);
  transition: background var(--hd-transition);
}

.hd-mobile-close:hover { background: rgba(255,255,255,0.1); }

.hd-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.hd-mobile-link {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--hd-cream);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--hd-transition), padding-left var(--hd-transition);
  text-decoration: none;
}

.hd-mobile-link:hover {
  color: var(--hd-accent);
  padding-left: 0.75rem;
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.hd-main {
  flex: 1;
  padding-top: 0;
}

/* =============================================
   BUTTONS
   ============================================= */
.hd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--hd-radius-sm);
  font-family: 'Onest', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--hd-transition), color var(--hd-transition), box-shadow var(--hd-transition), transform var(--hd-transition);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}

.hd-btn-primary {
  background: var(--hd-accent);
  color: var(--hd-white-off);
  box-shadow: var(--hd-shadow-sm);
}

.hd-btn-primary:hover {
  background: var(--hd-accent-hover);
  color: var(--hd-white-off);
  box-shadow: var(--hd-shadow-md);
  transform: translateY(-2px);
}

.hd-btn-ghost {
  background: transparent;
  color: var(--hd-ink);
  border-color: var(--hd-ink);
}

.hd-btn-ghost:hover {
  background: var(--hd-ink);
  color: var(--hd-cream);
  box-shadow: var(--hd-shadow-md);
  transform: translateY(-2px);
}

.hd-btn-white {
  background: var(--hd-white-off);
  color: var(--hd-accent);
  box-shadow: var(--hd-shadow-md);
}

.hd-btn-white:hover {
  background: var(--hd-cream-dark);
  color: var(--hd-accent-hover);
  box-shadow: var(--hd-shadow-lg);
  transform: translateY(-2px);
}

.hd-btn-outline {
  background: transparent;
  color: var(--hd-ink);
  border-color: var(--hd-ink-muted);
}

.hd-btn-outline:hover {
  border-color: var(--hd-accent);
  color: var(--hd-accent);
  box-shadow: var(--hd-shadow-sm);
  transform: translateY(-2px);
}

.hd-btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

/* =============================================
   LABELS & TAGS
   ============================================= */
.hd-label-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hd-accent);
  margin-bottom: 0.75rem;
}

.hd-label-light { color: rgba(253,252,250,0.7); }

.hd-section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--hd-ink);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hd-hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--hd-space-lg);
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--hd-space-xl) var(--hd-space-md);
  overflow: hidden;
}

.hd-hero-bg-num {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(12rem, 22vw, 22rem);
  font-weight: 900;
  color: var(--hd-cream-dark);
  opacity: 0.6;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
  z-index: 0;
}

.hd-hero-content {
  position: relative;
  z-index: 1;
}

.hd-hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hd-accent);
  margin-bottom: 1rem;
}

.hd-hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--hd-ink);
  margin-bottom: 1.25rem;
}

.hd-hero-title em {
  font-style: italic;
  color: var(--hd-accent);
  font-weight: 800;
}

.hd-hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--hd-ink-soft);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hd-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hd-hero-image-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--hd-radius-lg);
  overflow: hidden;
  box-shadow: var(--hd-shadow-xl);
  aspect-ratio: 4/3;
}

.hd-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hd-hero-image-wrap:hover .hd-hero-img {
  transform: scale(1.03);
}


.hd-page-hero {
  position: relative;
  background: var(--hd-dark-bg);
  padding: var(--hd-space-xl) var(--hd-space-md);
  overflow: hidden;
}

.hd-page-hero .hd-hero-bg-num {
  color: rgba(255,255,255,0.04);
  opacity: 1;
}

.hd-page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hd-page-hero .hd-hero-label {
  color: var(--hd-accent);
}

.hd-page-hero .hd-hero-title {
  color: var(--hd-cream);
}

.hd-page-hero .hd-hero-lead {
  color: rgba(247,244,239,0.75);
  margin: 0 auto;
}

/* =============================================
   INTRO FLOAT SECTION
   ============================================= */
.hd-intro-float {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hd-space-lg);
  align-items: center;
  max-width: 1280px;
  margin: var(--hd-space-xl) auto;
  padding: 0 var(--hd-space-md);
}

.hd-intro-text { }

.hd-intro-text h2 { margin-bottom: 1.25rem; }

.hd-intro-image {
  border-radius: var(--hd-radius-lg);
  overflow: hidden;
  box-shadow: var(--hd-shadow-lg);
  aspect-ratio: 4/3;
}

.hd-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.hd-why {
  background: var(--hd-white-off);
  padding: var(--hd-space-xl) var(--hd-space-md);
}

.hd-why-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--hd-space-lg);
}

.hd-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.hd-why-card {
  background: var(--hd-cream);
  border-radius: var(--hd-radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--hd-shadow-sm);
  transition: transform var(--hd-transition), box-shadow var(--hd-transition);
  border: 1px solid var(--hd-cream-dark);
}

.hd-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hd-shadow-lg);
}

.hd-why-card--featured {
  background: var(--hd-accent);
  border-color: var(--hd-accent);
  grid-row: span 1;
}

.hd-why-card--featured h3 { color: var(--hd-white-off); }
.hd-why-card--featured p { color: rgba(253,252,250,0.85); }
.hd-why-card--featured .hd-why-icon { color: var(--hd-white-off); }

.hd-why-icon {
  font-size: 1.75rem;
  color: var(--hd-accent);
  margin-bottom: 1rem;
}

.hd-why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--hd-ink);
}

.hd-why-card p {
  font-size: 0.92rem;
  color: var(--hd-ink-muted);
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   ARTICLES GRID
   ============================================= */
.hd-articles {
  max-width: 1280px;
  margin: var(--hd-space-xl) auto;
  padding: 0 var(--hd-space-md);
}

.hd-articles-header {
  margin-bottom: var(--hd-space-lg);
}

.hd-articles-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.hd-article-card {
  background: var(--hd-white-off);
  border-radius: var(--hd-radius-md);
  overflow: hidden;
  box-shadow: var(--hd-shadow-sm);
  transition: transform var(--hd-transition), box-shadow var(--hd-transition);
  border: 1px solid var(--hd-cream-dark);
  display: flex;
  flex-direction: column;
}

.hd-article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hd-shadow-lg);
}

.hd-article-card--large {
  grid-row: span 2;
  grid-column: 1;
}

.hd-article-img-wrap {
  overflow: hidden;
  aspect-ratio: 16/9;
  flex-shrink: 0;
}

.hd-article-card--large .hd-article-img-wrap {
  aspect-ratio: 4/3;
  flex: 1;
}

.hd-article-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hd-article-card:hover .hd-article-img-wrap img {
  transform: scale(1.04);
}

.hd-article-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.hd-article-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hd-accent);
  margin-bottom: 0.6rem;
}

.hd-article-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hd-ink);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.hd-article-card--large .hd-article-body h3 {
  font-size: 1.4rem;
}

.hd-article-body p {
  font-size: 0.92rem;
  color: var(--hd-ink-muted);
  margin-bottom: 1rem;
  flex: 1;
}

.hd-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--hd-accent);
  transition: gap var(--hd-transition), color var(--hd-transition);
  text-decoration: none;
}

.hd-link-arrow:hover {
  gap: 0.7rem;
  color: var(--hd-accent-hover);
}

/* =============================================
   PULL QUOTE
   ============================================= */
.hd-pullquote {
  background: var(--hd-dark-bg);
  padding: var(--hd-space-xl) var(--hd-space-md);
}

.hd-pullquote-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.hd-pullquote-mark {
  font-size: 8rem;
  line-height: 0.5;
  color: var(--hd-accent);
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.hd-pullquote-text {
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--hd-cream);
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin: 0;
}

/* =============================================
   TOPICS SECTION
   ============================================= */
.hd-topics {
  max-width: 1280px;
  margin: var(--hd-space-xl) auto;
  padding: 0 var(--hd-space-md);
}

.hd-topics-header {
  margin-bottom: var(--hd-space-lg);
}

.hd-topics-list {
  display: flex;
  flex-direction: column;
  gap: var(--hd-space-lg);
}

.hd-topic-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hd-space-lg);
  align-items: center;
}

.hd-topic-item--reverse {
  direction: rtl;
}

.hd-topic-item--reverse > * {
  direction: ltr;
}

.hd-topic-item img {
  width: 100%;
  border-radius: var(--hd-radius-lg);
  box-shadow: var(--hd-shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hd-topic-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--hd-ink);
}

/* =============================================
   DUAL CTA
   ============================================= */
.hd-dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
}

.hd-dual-cta-primary {
  background: var(--hd-accent);
  padding: var(--hd-space-xl) var(--hd-space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hd-dual-cta-primary h2 {
  color: var(--hd-white-off);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.hd-dual-cta-primary p {
  color: rgba(253,252,250,0.85);
  margin-bottom: 1.75rem;
}

.hd-dual-cta-secondary {
  background: var(--hd-cream-dark);
  padding: var(--hd-space-xl) var(--hd-space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hd-dual-cta-secondary h2 {
  color: var(--hd-ink);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.hd-dual-cta-secondary p { margin-bottom: 1.75rem; }

/* =============================================
   ABOUT PAGE SECTIONS
   ============================================= */
.hd-about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hd-space-lg);
  align-items: center;
  max-width: 1280px;
  margin: var(--hd-space-xl) auto;
  padding: 0 var(--hd-space-md);
}

.hd-about-image {
  border-radius: var(--hd-radius-lg);
  overflow: hidden;
  box-shadow: var(--hd-shadow-lg);
  aspect-ratio: 4/3;
}

.hd-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-about-values {
  background: var(--hd-white-off);
  padding: var(--hd-space-xl) var(--hd-space-md);
}

.hd-about-values-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--hd-space-lg);
}

.hd-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.hd-value-block {
  padding: 2rem;
  border-left: 3px solid var(--hd-accent);
  background: var(--hd-cream);
  border-radius: 0 var(--hd-radius-md) var(--hd-radius-md) 0;
  box-shadow: var(--hd-shadow-sm);
  transition: transform var(--hd-transition), box-shadow var(--hd-transition);
}

.hd-value-block:hover {
  transform: translateX(4px);
  box-shadow: var(--hd-shadow-md);
}

.hd-value-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--hd-accent);
  margin-bottom: 0.5rem;
}

.hd-value-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.hd-value-block p {
  font-size: 0.92rem;
  color: var(--hd-ink-muted);
  margin: 0;
}

.hd-about-commitment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hd-space-lg);
  align-items: center;
  max-width: 1280px;
  margin: var(--hd-space-xl) auto;
  padding: 0 var(--hd-space-md);
}

.hd-commitment-list {
  list-style: none;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hd-commitment-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: var(--hd-ink-soft);
}

.hd-commitment-list .fa-xmark {
  color: var(--hd-accent);
  margin-top: 0.25rem;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.hd-commitment-image {
  border-radius: var(--hd-radius-lg);
  overflow: hidden;
  box-shadow: var(--hd-shadow-lg);
  aspect-ratio: 4/3;
}

.hd-commitment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================
   TIPS / SFATURI PAGE
   ============================================= */
.hd-tips-section {
  max-width: 1280px;
  margin: var(--hd-space-xl) auto;
  padding: 0 var(--hd-space-md);
  display: flex;
  flex-direction: column;
  gap: var(--hd-space-xl);
}

.hd-tips-category { }

.hd-tips-cat-header {
  margin-bottom: var(--hd-space-md);
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--hd-cream-dark);
}

.hd-tips-content {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--hd-space-lg);
  align-items: start;
}

.hd-tips-content--reverse {
  grid-template-columns: 1fr 1.6fr;
}

.hd-tips-content--reverse .hd-tip-main {
  order: 2;
}

.hd-tips-content--reverse .hd-tip-aside {
  order: 1;
}

.hd-tip-main h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--hd-ink);
}

.hd-tip-card {
  background: var(--hd-accent-light);
  border-radius: var(--hd-radius-md);
  padding: 1.5rem;
  border-left: 4px solid var(--hd-accent);
}

.hd-tip-card i {
  font-size: 1.5rem;
  color: var(--hd-accent);
  margin-bottom: 0.75rem;
  display: block;
}

.hd-tip-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--hd-ink);
}

.hd-tip-card p {
  font-size: 0.9rem;
  color: var(--hd-ink-soft);
  margin: 0;
}

.hd-tip-img {
  width: 100%;
  border-radius: var(--hd-radius-md);
  box-shadow: var(--hd-shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* =============================================
   GUIDE PAGE
   ============================================= */
.hd-guide-prep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hd-space-lg);
  align-items: center;
  max-width: 1280px;
  margin: var(--hd-space-xl) auto;
  padding: 0 var(--hd-space-md);
}

.hd-guide-prep-img {
  border-radius: var(--hd-radius-lg);
  overflow: hidden;
  box-shadow: var(--hd-shadow-lg);
  aspect-ratio: 4/3;
}

.hd-guide-prep-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-timeline {
  background: var(--hd-white-off);
  padding: var(--hd-space-xl) var(--hd-space-md);
}

.hd-timeline-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--hd-space-lg);
}

.hd-timeline-steps {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.hd-timeline-steps::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--hd-cream-dark);
}

.hd-timeline-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.hd-timeline-step::before {
  content: '';
  position: absolute;
  left: 94px;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hd-accent);
  border: 3px solid var(--hd-white-off);
  box-shadow: 0 0 0 2px var(--hd-accent);
  z-index: 1;
}

.hd-timeline-time {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--hd-accent);
  letter-spacing: 0.04em;
  padding-top: 0.2rem;
  text-align: right;
  padding-right: 1.5rem;
}

.hd-timeline-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--hd-ink);
}

.hd-timeline-content p {
  font-size: 0.93rem;
  color: var(--hd-ink-muted);
  margin: 0;
}

.hd-guide-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hd-space-lg);
  align-items: center;
  max-width: 1280px;
  margin: var(--hd-space-xl) auto;
  padding: 0 var(--hd-space-md);
}

.hd-guide-after-img {
  border-radius: var(--hd-radius-lg);
  overflow: hidden;
  box-shadow: var(--hd-shadow-lg);
  aspect-ratio: 4/3;
}

.hd-guide-after-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.hd-contact-section {
  max-width: 1280px;
  margin: var(--hd-space-xl) auto;
  padding: 0 var(--hd-space-md);
}

.hd-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--hd-space-lg);
  align-items: start;
}

.hd-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hd-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hd-form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hd-ink-soft);
}

.hd-form-group input,
.hd-form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--hd-cream-dark);
  border-radius: var(--hd-radius-sm);
  background: var(--hd-white-off);
  color: var(--hd-ink);
  font-size: 0.95rem;
  transition: border-color var(--hd-transition), box-shadow var(--hd-transition);
  width: 100%;
}

.hd-form-group input:focus,
.hd-form-group textarea:focus {
  outline: none;
  border-color: var(--hd-accent);
  box-shadow: 0 0 0 3px rgba(181,96,42,0.12);
}

.hd-form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.hd-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.hd-privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--hd-ink-muted);
  cursor: pointer;
}

.hd-privacy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--hd-accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.hd-privacy-check a { color: var(--hd-accent); }

.hd-contact-info { }

.hd-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--hd-white-off);
  border-radius: var(--hd-radius-md);
  box-shadow: var(--hd-shadow-sm);
  border: 1px solid var(--hd-cream-dark);
}

.hd-contact-detail i {
  font-size: 1.1rem;
  color: var(--hd-accent);
  margin-top: 0.2rem;
  width: 20px;
  flex-shrink: 0;
}

.hd-contact-detail strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hd-ink-muted);
  margin-bottom: 0.3rem;
}

.hd-contact-detail p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--hd-ink-soft);
}

.hd-response-note {
  background: var(--hd-accent-light);
  border-radius: var(--hd-radius-md);
  padding: 1.5rem;
  border-left: 4px solid var(--hd-accent);
  margin-top: 1.5rem;
}

.hd-response-note h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--hd-ink);
}

.hd-response-note p {
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  color: var(--hd-ink-soft);
}

.hd-response-note p:last-child { margin: 0; }

.hd-map-section {
  max-width: 1280px;
  margin: var(--hd-space-xl) auto;
  padding: 0 var(--hd-space-md);
}

.hd-map-wrap {
  border-radius: var(--hd-radius-lg);
  overflow: hidden;
  box-shadow: var(--hd-shadow-lg);
  margin-top: 1.5rem;
  border: 1px solid var(--hd-cream-dark);
}

/* =============================================
   THANKS PAGE
   ============================================= */
.hd-thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.hd-thanks-section {
  text-align: center;
  padding: var(--hd-space-xl) var(--hd-space-md);
  max-width: 600px;
  margin: 0 auto;
}

.hd-thanks-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.hd-thanks-sub {
  font-size: 1.1rem;
  color: var(--hd-ink-muted);
  margin-bottom: 2rem;
}

.hd-journey-timeline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-top: 3rem;
  text-align: left;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.hd-journey-step {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0;
}

.hd-journey-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 2px solid var(--hd-cream-dark);
  background: var(--hd-cream-dark);
  color: var(--hd-ink-muted);
  transition: all var(--hd-transition);
}

.hd-journey-done .hd-journey-icon {
  background: var(--hd-cream-dark);
  border-color: var(--hd-ink-muted);
  color: var(--hd-ink-muted);
}

.hd-journey-active .hd-journey-icon {
  background: var(--hd-accent);
  border-color: var(--hd-accent);
  color: var(--hd-white-off);
  box-shadow: var(--hd-shadow-md);
}

.hd-journey-upcoming .hd-journey-icon {
  background: transparent;
  border-color: var(--hd-cream-dark);
  color: var(--hd-cream-dark);
}

.hd-journey-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hd-ink);
}

.hd-journey-active .hd-journey-text strong {
  color: var(--hd-accent);
}

.hd-journey-upcoming .hd-journey-text strong {
  color: var(--hd-ink-muted);
}

.hd-journey-text span {
  font-size: 0.82rem;
  color: var(--hd-ink-muted);
}

.hd-journey-connector {
  width: 2px;
  height: 32px;
  background: var(--hd-cream-dark);
  margin-left: 23px;
}

.hd-journey-connector--done {
  background: var(--hd-ink-muted);
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.hd-legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: var(--hd-space-xl) var(--hd-space-md);
}

.hd-legal-header {
  margin-bottom: var(--hd-space-lg);
  padding-bottom: var(--hd-space-md);
  border-bottom: 2px solid var(--hd-cream-dark);
}

.hd-legal-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.hd-legal-date {
  font-size: 0.85rem;
  color: var(--hd-ink-muted);
  margin-bottom: 1.25rem;
}

.hd-legal-intro {
  font-size: 1rem;
  color: var(--hd-ink-soft);
  line-height: 1.75;
}

.hd-legal-body {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hd-faq-item { }

.hd-faq-item h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--hd-ink);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--hd-cream-dark);
}

.hd-faq-item p {
  font-size: 0.96rem;
  color: var(--hd-ink-soft);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.hd-faq-item p:last-child { margin: 0; }

.hd-faq-item code {
  background: var(--hd-cream-dark);
  padding: 0.15em 0.4em;
  border-radius: 3px;
  font-size: 0.88em;
  font-family: monospace;
  color: var(--hd-ink);
}

/* =============================================
   FOOTER
   ============================================= */
.hd-footer {
  background: var(--hd-dark-bg);
  color: var(--hd-cream);
  position: relative;
  margin-top: auto;
}

.hd-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--hd-space-lg);
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--hd-space-xl) var(--hd-space-md) var(--hd-space-lg);
}

.hd-footer-tagline {
  font-size: 0.9rem;
  color: rgba(247,244,239,0.6);
  line-height: 1.6;
  margin: 1rem 0 1.5rem;
}

.hd-footer-address {
  font-size: 0.88rem;
  color: rgba(247,244,239,0.55);
  line-height: 2;
}

.hd-footer-address i {
  color: var(--hd-accent);
  margin-right: 0.4rem;
  width: 16px;
}

.hd-footer-address a {
  color: rgba(247,244,239,0.55);
  text-decoration: none;
  transition: color var(--hd-transition);
}

.hd-footer-address a:hover { color: var(--hd-accent); }

.hd-footer-nav h4,
.hd-footer-legal h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hd-accent);
  margin-bottom: 1.25rem;
}

.hd-footer-nav ul,
.hd-footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hd-footer-nav a,
.hd-footer-legal a {
  font-size: 0.9rem;
  color: rgba(247,244,239,0.6);
  text-decoration: none;
  transition: color var(--hd-transition), padding-left var(--hd-transition);
}

.hd-footer-nav a:hover,
.hd-footer-legal a:hover {
  color: var(--hd-cream);
  padding-left: 4px;
}

.hd-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem var(--hd-space-md);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hd-footer-bottom p {
  font-size: 0.82rem;
  color: rgba(247,244,239,0.35);
  margin: 0;
}

.hd-back-top {
  position: absolute;
  bottom: 3rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--hd-accent);
  color: var(--hd-white-off);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--hd-shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--hd-transition), transform var(--hd-transition), box-shadow var(--hd-transition);
  cursor: pointer;
}

.hd-back-top.hd-visible {
  opacity: 1;
  pointer-events: auto;
}

.hd-back-top:hover {
  background: var(--hd-accent-hover);
  transform: translateY(-3px);
  box-shadow: var(--hd-shadow-lg);
}

/* =============================================
   COOKIE CONSENT - SPLIT BANNER
   ============================================= */
.hd-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--hd-dark-bg);
  border-top: 3px solid var(--hd-accent);
  box-shadow: 0 -8px 32px rgba(28,26,23,0.3);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}

.hd-cookie-banner.hd-visible {
  transform: translateY(0);
}

.hd-cookie-left {
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.hd-cookie-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hd-cream);
  margin-bottom: 0.5rem;
}

.hd-cookie-left p {
  font-size: 0.85rem;
  color: rgba(247,244,239,0.65);
  margin: 0;
  line-height: 1.6;
}

.hd-cookie-left a { color: var(--hd-accent); }

.hd-cookie-right {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.hd-cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hd-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.hd-toggle-row span:first-child {
  font-size: 0.85rem;
  color: rgba(247,244,239,0.8);
  font-weight: 500;
}

.hd-toggle-input {
  display: none;
}

.hd-toggle-slider {
  width: 40px;
  height: 22px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--hd-radius-full);
  position: relative;
  transition: background var(--hd-transition);
  flex-shrink: 0;
  cursor: pointer;
}

.hd-toggle-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--hd-cream);
  transition: transform var(--hd-transition);
}

.hd-toggle-input:checked + .hd-toggle-slider {
  background: var(--hd-accent);
}

.hd-toggle-input:checked + .hd-toggle-slider::after {
  transform: translateX(18px);
}

.hd-toggle-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hd-toggle-input:checked + .hd-toggle-disabled {
  background: var(--hd-warm-mid);
}

.hd-cookie-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.hd-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.hd-reveal.hd-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hd-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hd-articles-grid {
    grid-template-columns: 1fr;
  }

  .hd-article-card--large {
    grid-row: auto;
    grid-column: auto;
  }

  .hd-dual-cta {
    grid-template-columns: 1fr;
  }

  .hd-dual-cta-primary,
  .hd-dual-cta-secondary {
    padding: var(--hd-space-lg) var(--hd-space-md);
  }
}

@media (max-width: 768px) {
  :root {
    --hd-space-xl: 4rem;
    --hd-space-lg: 2.5rem;
  }

  .hd-nav-desktop { display: none; }
  .hd-hamburger { display: flex; }
  .hd-mobile-menu-wrap { display: block; }

  .hd-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 3rem var(--hd-space-sm);
    gap: 2rem;
  }

  .hd-hero-bg-num {
    font-size: 35vw;
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
    opacity: 0.35;
  }

  .hd-hero-image-wrap {
    aspect-ratio: 16/9;
  }

  .hd-intro-float,
  .hd-about-story,
  .hd-about-commitment,
  .hd-guide-prep,
  .hd-guide-after {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hd-topic-item,
  .hd-topic-item--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .hd-why-grid {
    grid-template-columns: 1fr;
  }

  .hd-values-grid {
    grid-template-columns: 1fr;
  }

  .hd-contact-grid {
    grid-template-columns: 1fr;
  }

  .hd-form-row {
    grid-template-columns: 1fr;
  }

  .hd-footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: var(--hd-space-lg) var(--hd-space-sm);
  }

  .hd-tips-content,
  .hd-tips-content--reverse {
    grid-template-columns: 1fr;
  }

  .hd-tips-content--reverse .hd-tip-main,
  .hd-tips-content--reverse .hd-tip-aside {
    order: unset;
  }

  .hd-cookie-banner {
    grid-template-columns: 1fr;
  }

  .hd-cookie-left {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem;
  }

  .hd-cookie-right {
    padding: 1.25rem;
  }

  .hd-timeline-steps::before {
    left: 70px;
  }

  .hd-timeline-step {
    grid-template-columns: 70px 1fr;
    gap: 1.25rem;
  }

  .hd-timeline-step::before {
    left: 65px;
  }

  .hd-back-top {
    bottom: 1.5rem;
    right: 1rem;
  }

  .hd-page-hero {
    padding: 3rem var(--hd-space-sm);
  }

  .hd-legal-page {
    padding: 3rem var(--hd-space-sm);
  }
}

@media (max-width: 480px) {
  .hd-hero-actions {
    flex-direction: column;
  }

  .hd-btn { width: 100%; justify-content: center; }

  .hd-hero-actions .hd-btn { width: auto; }

  .hd-form-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hd-form-footer .hd-btn { width: 100%; justify-content: center; }
}