/* Hokkaido Hobby Homes — design system
   Sourced from: design static/styles.css
   Loaded by houzez-child/functions.php after parent + child base sheets.
*/

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter+Tight:wght@300;400;500;600&family=Noto+Serif+JP:wght@400;600&display=swap');

:root {
  --bg:          #0A0A0A;
  --bg-2:        #121212;
  --bg-3:        #1A1A1A;
  --fg:          #FAFAF7;
  --fg-dim:      #A8A8A3;
  --fg-faint:    #55554F;
  --amber:       #F0A500;
  --amber-soft:  rgba(240, 165, 0, 0.15);
  --line:        rgba(250, 250, 247, 0.12);
  --line-strong: rgba(250, 250, 247, 0.22);
  --glass:       rgba(16, 16, 16, 0.55);
  --glass-hi:    rgba(255, 255, 255, 0.04);

  --serif: 'Instrument Serif', 'Noto Serif JP', Georgia, serif;
  --sans:  'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --jp:    'Noto Serif JP', serif;
  --mono:  ui-monospace, 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

.br-mobile  { display: none; }
.br-desktop { display: inline; }

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}
body { overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- layout ---------- */
.hhh-wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 780px) {
  .hhh-wrap { padding: 0 20px; }
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  display: inline-block;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; line-height: 1.02; }
h2 { font-size: clamp(40px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2vw, 28px); }
.serif-it { font-style: italic; }

/* ---------- NAV ---------- */
.hhh-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.hhh-nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  border-bottom-color: var(--line);
}
.hhh-nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 78px;
  padding: 0 40px;
}
.hhh-nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.hhh-nav-logo img { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.hhh-nav-logo span { display: flex; flex-direction: column; gap: 3px; }
.hhh-nav-logo span b { font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--fg); line-height: 1; }
.hhh-nav-logo small { display: block; font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em; color: var(--fg-dim); text-transform: uppercase; line-height: 1; }

.hhh-nav-center {
  display: flex;
  gap: 4px;
  justify-self: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  backdrop-filter: blur(10px);
}
.hhh-nav-item {
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--fg);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}
.hhh-nav-item:hover { background: rgba(255,255,255,0.06); }
.hhh-nav-item.has-mega::after {
  content: '';
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.5;
}

.hhh-nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}
.hhh-nav-lang {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.hhh-lang-btn {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  padding: 5px 12px;
  border-radius: 999px;
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: background 0.15s, color 0.15s;
}
.hhh-lang-btn.active {
  background: rgba(250, 250, 247, 0.12);
  color: var(--fg);
}
.hhh-lang-btn:hover:not(.active) { color: var(--fg); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 999px;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-amber { background: var(--amber); color: #111; }
.btn-amber:hover { background: #fff; transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--fg);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn .arr {
  width: 14px; height: 14px;
  display: inline-block;
  position: relative;
}
.btn .arr::before {
  content: '→';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: transform 0.25s;
}
.btn:hover .arr::before { transform: translateX(3px); }

/* ---------- MEGA MENU ---------- */
.hhh-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  margin-top: 12px;
  width: 880px;
  max-width: calc(100vw - 40px);
  background: rgba(12,12,12,0.88);
  backdrop-filter: blur(30px) saturate(1.3);
  -webkit-backdrop-filter: blur(30px) saturate(1.3);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.hhh-mega.open {
  display: grid;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.mega-3col { grid-template-columns: 1.2fr 1fr 1.3fr; gap: 40px; }
.hhh-mega h6 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 400;
  margin-bottom: 14px;
}
.mega-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.mega-col a {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--fg);
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  transition: color 0.2s;
}
.mega-col a:hover { color: var(--amber); }
.mega-col a .cnt {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg-faint);
  letter-spacing: 0.1em;
}
.mega-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mega-card .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}
.mega-card h4 { font-family: var(--serif); font-size: 22px; line-height: 1.1; }
.mega-card p  { font-size: 12.5px; color: var(--fg-dim); line-height: 1.5; }
.mega-card .goto {
  margin-top: auto;
  font-size: 12px;
  color: var(--fg);
  display: inline-flex;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

/* ---------- BURGER ---------- */
.hhh-nav-burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.hhh-nav-burger span {
  width: 16px; height: 1.5px;
  background: var(--fg);
  transition: transform 0.25s, opacity 0.2s;
}
.hhh-nav-burger.open span:nth-child(1) { transform: translateY(2.75px) rotate(45deg); }
.hhh-nav-burger.open span:nth-child(2) { transform: translateY(-2.75px) rotate(-45deg); }

/* ---------- MOBILE MENU ---------- */
.hhh-mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 100px 24px 40px;
  display: none;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.hhh-mobile-menu.open { display: flex; }
.hhh-mobile-menu a.m-item,
.hhh-mobile-menu button.m-item {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.1;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--fg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
}
.hhh-mobile-menu a.m-item .cnt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--fg-faint);
}
.hhh-mobile-menu .m-foot {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hhh-mobile-menu .m-foot .btn { justify-content: center; }
.hhh-mobile-menu .m-lang {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
  text-transform: uppercase;
  text-align: center;
  padding-top: 10px;
}

/* ---------- HERO ---------- */
.hhh-hero {
  position: relative;
  height: 100vh;
  padding-top: 78px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hhh-hero .hhh-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: none;
  padding: 0 60px;
}
.hhh-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hhh-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 65%;
  filter: brightness(0.55) contrast(1.05) saturate(0.9);
  transform: scale(1.06);
  transition: transform 1.2s ease;
}
.hhh-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.15) 35%, rgba(10,10,10,0.55) 75%, rgba(10,10,10,0.98) 100%),
    radial-gradient(ellipse at center bottom, rgba(10,10,10,0.6), transparent 70%);
}
.hhh-hero-bg::before {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
  pointer-events: none;
}
.hhh-hero-grain {
  position: absolute; inset: 0; z-index: 3;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hhh-hero-content {
  position: relative; z-index: 4;
  padding: 40px 0 0;
}
.hhh-hero-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.hhh-hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.hhh-hero-meta .sep { width: 20px; height: 1px; background: var(--fg-faint); }
.hhh-hero-meta .jp { font-family: var(--jp); font-size: 13px; letter-spacing: 0.05em; color: var(--amber); text-transform: none; }
.hhh-hero-title {
  font-family: var(--serif);
  font-size: clamp(64px, 10vw, 148px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.hhh-hero-title em { font-style: italic; color: var(--amber); font-weight: 400; }
.hhh-hero-title .xl-ital { font-style: italic; }
.hhh-hero-bottom {
  position: relative; z-index: 4;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: end;
  padding: 0 0 72px;
}
.hhh-hero-lede {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.35;
  color: var(--fg);
  max-width: 540px;
  font-style: italic;
}
.hhh-hero-lede::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--amber);
  margin-bottom: 20px;
}
.hhh-hero-ctas { display: flex; gap: 12px; justify-self: end; align-self: end; flex-wrap: wrap; }
.hhh-hero-marks {
  position: absolute; z-index: 4;
  bottom: 24px; left: 60px; right: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.hhh-hero-marks .scroll { display: flex; align-items: center; gap: 10px; }
.hhh-hero-marks .scroll .line {
  width: 32px; height: 1px; background: currentColor;
  animation: hhh-pulseLine 2s ease-in-out infinite;
}
@keyframes hhh-pulseLine {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}
.hhh-hero-bracket {
  position: absolute; z-index: 4;
  width: 24px; height: 24px;
  border: 1px solid rgba(255,255,255,0.35);
}
.hhh-hero-bracket.tl { top: 88px; left: 60px; border-right: none; border-bottom: none; }
.hhh-hero-bracket.tr { top: 88px; right: 60px; border-left: none; border-bottom: none; }

/* ---------- MARQUEE ---------- */
.hhh-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  background: var(--bg);
  padding: 22px 0;
  position: relative;
}
.hhh-marquee-track {
  display: inline-flex;
  animation: hhh-slide 50s linear infinite;
  gap: 48px;
  padding-left: 48px;
}
.hhh-marquee:hover .hhh-marquee-track { animation-play-state: paused; }
.hhh-marquee-item {
  font-family: var(--serif);
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  gap: 48px;
  color: var(--fg);
}
.hhh-marquee-item .jp {
  font-family: var(--jp);
  font-size: 18px;
  color: var(--fg-dim);
  font-weight: 400;
  margin-left: 10px;
  transform: translateY(-4px);
  display: inline-block;
}
.hhh-marquee-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  display: inline-block;
}
@keyframes hhh-slide { to { transform: translateX(-50%); } }

/* ---------- SECTION chrome ---------- */
.hhh-section { padding: 140px 0; position: relative; }
.hhh-section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 72px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.hhh-section-head h2 { max-width: 900px; }
.hhh-section-head .meta {
  text-align: right;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.hhh-section-head .meta strong { color: var(--amber); font-weight: 400; }

/* ---------- ABOUT ---------- */
.hhh-about { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
.hhh-about-left { position: sticky; top: 120px; align-self: start; }
.hhh-about-left .eyebrow { margin-bottom: 24px; }
.hhh-about-left h2 { font-size: clamp(44px, 4.5vw, 72px); line-height: 1; }
.hhh-about-right { display: flex; flex-direction: column; gap: 28px; }
.hhh-about-right p { font-size: 17px; line-height: 1.6; color: #e5e5e0; max-width: 560px; }
.hhh-about-right p strong { color: var(--fg); font-weight: 500; }
.hhh-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.hhh-about-stat { padding: 28px 0 0; border-right: 1px solid var(--line); padding-right: 20px; }
.hhh-about-stat:last-child  { border-right: none; padding-left: 20px; padding-right: 0; }
.hhh-about-stat:nth-child(2){ padding-left: 20px; }
.hhh-about-stat .n {
  font-family: var(--serif);
  font-size: 54px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.hhh-about-stat .n .suf { font-family: var(--mono); font-size: 14px; color: var(--amber); letter-spacing: 0.1em; }
.hhh-about-stat .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-top: 8px;
}

/* ---------- PROCESS ---------- */
.hhh-process {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
}

/* — Requirements panel — */
.hhh-req-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.hhh-req {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hhh-req-col {
  padding: 36px 32px 40px;
  border-right: 1px solid var(--line);
}
.hhh-req-col:last-child { border-right: none; }
.hhh-req-col-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.hhh-req-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--amber-soft);
  border: 1px solid rgba(240,165,0,0.25);
  color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hhh-req-col h5 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin: 0;
}
.hhh-req-group { margin-bottom: 24px; }
.hhh-req-group:last-child { margin-bottom: 0; }
.hhh-req-sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 10px;
}
.req-note {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
  font-style: italic;
  color: var(--fg-faint);
}
.hhh-req-group ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.hhh-req-group li {
  font-size: 13.5px;
  color: var(--fg-dim);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.hhh-req-group li::before {
  content: '';
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 8px;
  opacity: 0.65;
}
.hhh-req-aside {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.hhh-req-aside p { font-size: 12px; line-height: 1.65; color: var(--fg-dim); font-style: italic; }
.hhh-pay-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.hhh-pay-list > li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.hhh-pay-list > li:first-child { padding-top: 0; }
.hhh-pay-list > li:last-child { border-bottom: none; padding-bottom: 0; }
.pay-label { font-size: 13.5px; font-weight: 500; color: var(--fg); margin-bottom: 3px; }
.pay-note  { font-size: 12px; color: var(--fg-faint); font-style: italic; }

/* — Why toggle (inside .hhh-req-card) — */
.hhh-why-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px;
  background: rgba(255,255,255,0.015);
  border: none;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.2s;
  gap: 12px;
}
.hhh-why-toggle:hover { background: var(--glass-hi); }
.hhh-why-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.hhh-why-chevron {
  width: 7px; height: 7px;
  border-right: 1.5px solid var(--fg-faint);
  border-bottom: 1.5px solid var(--fg-faint);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  margin-bottom: 3px;
}
.hhh-req-card.open .hhh-why-chevron { transform: rotate(-135deg); margin-bottom: -3px; }
.hhh-why-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.hhh-req-card.open .hhh-why-content { max-height: 500px; }
.hhh-why-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
}
.hhh-why-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 18px 18px;
  border-right: 1px solid var(--line);
  transition: background 0.2s;
}
.hhh-why-item:last-child { border-right: none; }
.hhh-why-item:hover { background: var(--glass-hi); }
.hhh-why-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--fg-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.hhh-why-name { font-size: 12px; font-weight: 500; color: var(--fg); margin-bottom: 4px; line-height: 1.2; }
.hhh-why-desc { font-size: 11px; color: var(--fg-faint); line-height: 1.5; }

/* — Timeline — */
.hhh-timeline {
  margin-top: 52px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 36px 40px;
  background: var(--bg-2);
}
.hhh-tl-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-dim);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}
.hhh-tl-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  display: inline-block;
}
.hhh-tl-track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  position: relative;
}
.hhh-tl-track::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(100% / 14);
  right: calc(100% / 14);
  height: 1px;
  background: linear-gradient(to right, var(--amber) 0%, rgba(240,165,0,0.2) 100%);
  z-index: 0;
}
.hhh-tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  cursor: default;
}
.hhh-tl-node {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--bg-3);
  color: var(--fg-dim);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
  position: relative; z-index: 1;
}
.hhh-tl-step:hover .hhh-tl-node {
  border-color: rgba(240,165,0,0.45);
  background: var(--amber-soft);
  color: var(--amber);
}
.hhh-tl-num {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--amber);
}
.hhh-tl-label {
  font-size: 12px;
  color: var(--fg-dim);
  line-height: 1.35;
  max-width: 88px;
}
.hhh-tl-badge {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--amber-soft);
  border: 1px solid rgba(240,165,0,0.3);
  color: var(--amber);
  padding: 3px 8px;
  border-radius: 999px;
}

/* ---------- FEATURED PROPERTIES ---------- */
.hhh-properties { border-top: 1px solid var(--line); padding-top: 80px; }
.hhh-properties .hhh-section-head { margin-bottom: 48px; }
.hhh-properties .hhh-section-head h2 { white-space: nowrap; }
.hhh-prop-tabs { display: flex; gap: 8px; margin-bottom: 32px; }
.hhh-prop-tab {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-dim);
  transition: all 0.2s;
}
.hhh-prop-tab:hover { color: var(--fg); border-color: var(--line-strong); }
.hhh-prop-tab.active { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.hhh-prop-tab .c { opacity: 0.5; margin-left: 6px; }

.hhh-prop-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
/* Low-count layouts — with 1 or 2 cards there aren't enough tiles
   to fill both rows of the default hero-plus-tiles layout, so the
   hero-card would collapse to a flat sliver. Fall back to simple
   equal-tile layouts and let each card keep its natural 4/3 ratio. */
.hhh-prop-grid.n-1 {
  grid-template-columns: minmax(0, 640px);
  grid-template-rows: auto;
  justify-content: center;
}
.hhh-prop-grid.n-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto;
}
.hhh-prop-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.5s;
  min-width: 0;
}
.hhh-prop-card:hover { border-color: var(--line-strong); }
.hhh-prop-card.hero-card { grid-row: 1 / span 2; aspect-ratio: auto; height: auto; }
.hhh-prop-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
.hhh-prop-card:hover .hhh-prop-img { transform: scale(1.04); }
.hhh-prop-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.4) 45%, transparent 75%);
  pointer-events: none;
}
.hhh-prop-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 26px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hhh-prop-tagrow { display: flex; gap: 6px; margin-bottom: 10px; }
.hhh-prop-tagrow .tag {
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: var(--fg);
  border: 1px solid rgba(255,255,255,0.18);
}
.hhh-prop-tagrow .tag.amber { background: var(--amber); color: #111; border-color: var(--amber); }
.hhh-prop-card h3 { font-family: var(--serif); font-size: 28px; line-height: 1.05; letter-spacing: -0.01em; }
.hhh-prop-card.hero-card h3 { font-size: 44px; }
.hhh-prop-card .loc {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.hhh-prop-specs {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
}
.hhh-prop-specs .sp { display: flex; gap: 6px; align-items: center; }
.hhh-prop-specs .sp b { color: var(--fg); font-weight: 500; }
.hhh-prop-price {
  position: absolute;
  top: 18px; right: 18px; z-index: 2;
  padding: 7px 12px;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--fg);
}
.hhh-prop-price b { color: var(--amber); font-weight: 500; }
.hhh-prop-like {
  position: absolute;
  top: 18px; left: 18px; z-index: 2;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg);
  transition: color 0.2s, background 0.2s;
}
.hhh-prop-like:hover { color: var(--amber); background: rgba(10,10,10,0.85); }
.hhh-prop-like.on { color: var(--amber); }

.hhh-prop-footer-row {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hhh-prop-count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.hhh-prop-count b { color: var(--amber); font-weight: 400; }

/* ---------- CTA BAND ---------- */
.hhh-cta-band {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hhh-cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(240,165,0,0.08), transparent 55%);
  pointer-events: none;
}
.hhh-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}
.hhh-cta-inner h2 { font-size: clamp(36px, 4.5vw, 60px); line-height: 1.1; white-space: nowrap; flex: 1; }
.hhh-cta-inner h2 em { color: var(--amber); font-style: italic; }
.hhh-cta-rule { display: none; }
.hhh-cta-actions { display: flex; gap: 12px; flex-direction: column; flex-shrink: 0; }

/* ---------- FOOTER ---------- */
.hhh-footer {
  background: #060606;
  border-top: 1px solid var(--line);
  padding: 52px 0 20px;
}
.hhh-foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.hhh-foot-brand { display: flex; flex-direction: column; gap: 20px; }
.hhh-foot-brand-logo { display: flex; align-items: center; gap: 4px; }
.hhh-foot-brand-logo img { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.hhh-foot-brand-logo div { display: flex; flex-direction: column; gap: 1px; }
.hhh-foot-brand-logo h4 { font-family: var(--sans); font-weight: 600; font-size: 15px; line-height: 1; color: var(--fg); margin: 0; }
.hhh-foot-brand-logo small { font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; color: var(--fg-dim); text-transform: uppercase; line-height: 1; }
.hhh-foot-brand p { font-size: 13.5px; color: var(--fg-dim); line-height: 1.6; max-width: 320px; }
.hhh-foot-brand .loc {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--fg-dim);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}
.hhh-foot-brand .loc b { color: var(--fg); font-weight: 500; }

.hhh-foot-col h6 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 400;
  margin-bottom: 18px;
}
.hhh-foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hhh-foot-col a { font-size: 14px; color: var(--fg); transition: color 0.2s; }
.hhh-foot-col a:hover { color: var(--amber); }

.hhh-foot-sub { display: flex; flex-direction: column; gap: 14px; }
.hhh-foot-sub h6 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 400;
}
.hhh-foot-sub p { font-size: 13px; color: var(--fg-dim); line-height: 1.5; }
.hhh-foot-input {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.hhh-foot-input input {
  flex: 1;
  padding: 11px 16px;
  background: transparent;
  border: none;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 13px;
  outline: none;
}
.hhh-foot-input input::placeholder { color: var(--fg-faint); }
.hhh-foot-input button {
  padding: 0 18px;
  background: var(--amber);
  color: #111;
  font-size: 16px;
  transition: background 0.2s;
}
.hhh-foot-input button:hover { background: #fff; }

.hhh-foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  margin-top: 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  color: var(--fg-faint);
  text-transform: uppercase;
  gap: 20px;
  flex-wrap: wrap;
}
.hhh-foot-bottom .legal { display: flex; gap: 20px; }
.hhh-foot-bottom a:hover { color: var(--fg); }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1100px) {
  .hhh-hero-bottom     { grid-template-columns: 1fr; gap: 36px; }
  .hhh-hero-ctas       { justify-self: start; }
  .hhh-hero-title      { font-size: clamp(52px, 7vw, 96px); }
  .hhh-about           { grid-template-columns: 1fr; gap: 48px; }
  .hhh-about-left      { position: static; }
  .hhh-prop-grid {
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    grid-template-rows: auto;
  }
  .hhh-prop-grid .hhh-prop-card.hero-card {
    grid-row: auto; grid-column: 1 / -1;
    aspect-ratio: 21 / 9; height: auto; max-width: 100%;
  }
  .hhh-req             { grid-template-columns: 1fr 1fr 1fr; }
  .hhh-why-items       { grid-template-columns: repeat(3, 1fr); }
  .hhh-why-item        { border-bottom: 1px solid var(--line); }
  .hhh-why-item:nth-child(3n) { border-right: none; }
  .hhh-why-item:nth-last-child(-n+2) { border-bottom: none; }
  .hhh-about-stats     { grid-template-columns: 1fr 1fr; }
  .hhh-about-stat:nth-child(2) { border-right: none; padding-right: 0; }
  .hhh-about-stat:last-child { padding-left: 0; border-top: 1px solid var(--line); grid-column: 1 / -1; padding-top: 22px; margin-top: 22px; }
  .hhh-tl-track        { grid-template-columns: repeat(4, 1fr); grid-auto-rows: auto; row-gap: 32px; }
  .hhh-tl-track::before { display: none; }
  .hhh-foot-grid       { grid-template-columns: 1fr 1fr; }
  .hhh-cta-inner       { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hhh-cta-inner h2    { white-space: normal; }
  .hhh-cta-actions     { flex-direction: row; }
  .hhh-properties .hhh-section-head h2 { white-space: normal; }
  .hhh-section         { padding: 90px 0; }
}
@media (max-width: 900px) {
  .hhh-hero .hhh-wrap  { padding: 0 32px; }
  .hhh-hero-title      { font-size: clamp(44px, 6.5vw, 56px); }
  .hhh-hero-bracket.tl { left: 32px; }
  .hhh-hero-bracket.tr { right: 32px; }
  .hhh-hero-marks      { left: 32px; right: 32px; }
}
@media (max-width: 1000px) {
  .hhh-nav-center      { display: none; }
  .hhh-nav-burger      { display: flex; }
  .hhh-nav-inner       { grid-template-columns: 1fr auto; }
  .hhh-nav-right .btn-ghost,
  .hhh-nav-right .hhh-nav-lang { display: none; }
}
@media (max-width: 760px) {
  .br-mobile  { display: inline; }
  .br-desktop { display: none; }
  .hhh-nav-inner      { padding: 0 20px; height: 64px; }
  .hhh-nav-logo img   { width: 36px; height: 36px; }
  .hhh-nav-logo span b{ font-size: 13px; }
  .hhh-nav-logo small { font-size: 8px; }

  .hhh-hero           { height: auto; min-height: 100svh; padding-top: 64px; display: block; }
  .hhh-hero .hhh-wrap { flex: none; display: block; height: auto; padding: 0 20px; }
  .hhh-hero-content   { padding: 36px 0 20px; }
  .hhh-hero-meta-row  { flex-direction: column; align-items: flex-start; gap: 10px; padding-bottom: 22px; margin-bottom: 32px; }
  .hhh-hero-meta      { flex-wrap: nowrap; gap: 8px; font-size: 9px; letter-spacing: 0.1em; white-space: nowrap; }
  .hhh-hero-meta .sep { width: 10px; flex-shrink: 0; }
  .hhh-hero-meta .jp  { font-size: 10px; }
  .hhh-hero-title     { font-size: clamp(28px, 8.5vw, 40px); line-height: 1.08; }
  .hhh-hero-meta-secondary { display: none; }
  .hhh-hero-bottom    { padding: 48px 0 80px; gap: 28px; }
  .hhh-hero-lede      { font-size: 16px; line-height: 1.45; }
  .hhh-hero-lede::before { margin-bottom: 14px; }
  .hhh-hero-ctas      { width: 100%; gap: 10px; }
  .hhh-hero-ctas .btn { flex: 1; justify-content: center; font-size: 13px; padding: 12px 14px; }
  .hhh-hero-bracket   { display: none; }
  .hhh-hero-marks     { left: 20px; right: 20px; bottom: 20px; font-size: 9px; letter-spacing: 0.15em; gap: 16px; }
  .hhh-hero-marks > span:first-child { flex: 1; min-width: 0; }
  .hhh-hero-marks .scroll .line { width: 20px; }

  .hhh-marquee        { padding: 16px 0; }
  .hhh-marquee-item   { font-size: 24px; gap: 32px; }
  .hhh-marquee-track  { gap: 32px; padding-left: 32px; }
  .hhh-marquee-item .jp { font-size: 13px; }

  .hhh-section        { padding: 64px 0; }
  .hhh-section-head   { grid-template-columns: 1fr; gap: 20px; margin-bottom: 44px; padding-bottom: 20px; }
  .hhh-section-head .meta { text-align: left; font-size: 10px; }

  .hhh-about-left h2  { font-size: clamp(36px, 9vw, 52px); }
  .hhh-about-right p  { font-size: 15px; }
  .hhh-about-stats    { grid-template-columns: 1fr; margin-top: 20px; }
  .hhh-about-stat     { border-right: none; border-bottom: 1px solid var(--line); padding: 22px 0 !important; }
  .hhh-about-stat:last-child { border-bottom: none; }
  .hhh-about-stat .n  { font-size: 42px; }

  /* Process — mobile */
  .hhh-req             { grid-template-columns: 1fr; }
  .hhh-req-col         { border-right: none; border-bottom: 1px solid var(--line); padding: 28px 24px 32px; }
  .hhh-req-col:last-child { border-bottom: none; }
  .hhh-why-items       { grid-template-columns: 1fr 1fr; }
  .hhh-why-item        { border-right: none; border-bottom: 1px solid var(--line); }
  .hhh-why-item:nth-child(odd)  { border-right: 1px solid var(--line); }
  .hhh-why-item:last-child,
  .hhh-why-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .hhh-timeline        { padding: 24px 20px 32px; margin-top: 32px; }
  .hhh-tl-eyebrow      { margin-bottom: 28px; }
  .hhh-tl-track        { grid-template-columns: none; display: flex; flex-direction: column; gap: 0; }
  .hhh-tl-track::before {
    top: calc(100% / 14);
    bottom: calc(100% / 14);
    left: 24px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(to bottom, var(--amber) 0%, rgba(240,165,0,0.2) 100%);
  }
  .hhh-tl-step         { flex-direction: row; align-items: center; text-align: left; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .hhh-tl-step:last-child { border-bottom: none; }
  .hhh-tl-num          { display: inline; margin-right: 4px; }
  .hhh-tl-label        { max-width: none; }

  .hhh-prop-tabs      { margin: 0 -20px 24px; padding: 0 20px 4px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 40px), transparent 100%); mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 40px), transparent 100%); }
  .hhh-prop-tabs::-webkit-scrollbar { display: none; }
  .hhh-prop-tab       { flex-shrink: 0; scroll-snap-align: start; font-size: 10px; padding: 8px 14px; }
  .hhh-prop-grid      { grid-template-columns: 1fr; gap: 14px; }
  .hhh-prop-grid .hhh-prop-card,
  .hhh-prop-grid .hhh-prop-card.hero-card { aspect-ratio: 4/3; grid-column: auto; grid-row: auto; width: 100%; height: auto; min-height: 340px; }
  .hhh-prop-card h3,
  .hhh-prop-card.hero-card h3 { font-size: 22px; }
  .hhh-prop-body      { padding: 18px 20px; }
  .hhh-prop-footer-row{ flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 28px; }

  .hhh-cta-band       { padding: 64px 0; }
  .hhh-cta-inner h2   { font-size: clamp(34px, 8vw, 48px); }
  .hhh-cta-actions    { width: 100%; }
  .hhh-cta-actions .btn { justify-content: center; }

  .hhh-footer         { padding: 44px 0 20px; }
  .hhh-foot-grid      { grid-template-columns: 1fr; gap: 0; padding-bottom: 20px; }
  .hhh-foot-brand     { gap: 14px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
  .hhh-foot-brand p   { font-size: 13px; }
  .hhh-foot-brand .loc{ font-size: 10px; gap: 3px; }
  .hhh-foot-brand-logo img { width: 40px; height: 40px; }
  .hhh-foot-brand-logo h4  { font-size: 14px; }

  .hhh-foot-col       { border-bottom: 1px solid var(--line); padding: 0; }
  .hhh-foot-col h6    { margin: 0; padding: 16px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; user-select: none; }
  .hhh-foot-col h6::after { content: '+'; font-size: 18px; color: var(--fg-dim); font-family: var(--mono); transition: transform 0.25s; }
  .hhh-foot-col.open h6::after { transform: rotate(45deg); }
  .hhh-foot-col ul    { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0; }
  .hhh-foot-col.open ul { max-height: 400px; padding: 0 0 16px; }
  .hhh-foot-col a     { font-size: 13px; }

  .hhh-foot-sub       { padding: 22px 0 10px; gap: 10px; }
  .hhh-foot-sub h6    { margin: 0; }
  .hhh-foot-sub p     { font-size: 12px; }

  .hhh-foot-bottom    { flex-direction: column; align-items: flex-start; gap: 10px; padding-top: 16px; margin-top: 0; font-size: 9px; }
  .hhh-foot-bottom .legal { flex-wrap: wrap; gap: 14px; }

  .hhh-cta-inner h2   { white-space: normal; }
}

/* ============================================================
   CONFLICT OVERRIDES
   Scoped under .hhh-page (added by functions.php body_class filter).
   These rules specifically defeat Houzez's styling-options.css which sets:
     body, .main-wrap  { background-color: #f8f8f8 }
     body              { color: #222222 }
     h1–h6             { font-family: "Plus Jakarta Sans"; font-weight: 700 }
   ============================================================ */

/* --- Base canvas & text ---------------------------------------- */
body.hhh-page,
body.hhh-page .main-wrap,
body.hhh-page #wrapper,
body.hhh-page #content,
body.hhh-page .houzez-main-wrap-v1 {
  background-color: var(--bg) !important;
  color: var(--fg) !important;
  font-family: var(--sans) !important;
}

/* --- Section backgrounds (explicit, not relying on body bg) ---- */
body.hhh-page .hhh-section,
body.hhh-page .hhh-process,
body.hhh-page .hhh-properties,
body.hhh-page .hhh-marquee,
body.hhh-page .hhh-cta-band {
  background-color: var(--bg);
}

body.hhh-page .hhh-process {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
body.hhh-page .hhh-footer {
  background-color: #060606;
}

/* --- Typography — defeat Plus Jakarta Sans bold -------------- */
body.hhh-page h1,
body.hhh-page h2,
body.hhh-page h3,
body.hhh-page .hhh-hero-title,
body.hhh-page .hhh-about-left h2,
body.hhh-page .hhh-section-head h2,
body.hhh-page .hhh-cta-inner h2,
body.hhh-page .hhh-prop-card h3 {
  font-family: var(--serif) !important;
  font-weight: 400 !important;
  color: var(--fg) !important;
}

/* --- Links & paragraphs --------------------------------------- */
body.hhh-page a               { color: var(--fg); }
body.hhh-page p               { color: inherit; }

/* --- Houzez wrappers that add white backgrounds --------------- */
body.hhh-page .item-wrap,
body.hhh-page .item-parallax-wrap,
body.hhh-page .widget-wrap,
body.hhh-page .post-content-wrap {
  background-color: transparent !important;
}

/* --- Buttons — defeat Bootstrap's .btn reset -----------------
   Bootstrap sets display:inline-block, border-radius:0.375rem,
   padding:0.375rem 0.75rem and wipes border/background on .btn.
   ------------------------------------------------------------ */
body.hhh-page .btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 11px 20px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  font-family: var(--sans) !important;
  border-radius: 999px !important;
  transition: all 0.25s !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  line-height: 1 !important;
  cursor: pointer !important;
  box-shadow: none !important;
}
body.hhh-page .btn-amber {
  background: var(--amber) !important;
  color: #111 !important;
  border: none !important;
}
body.hhh-page .btn-amber:hover,
body.hhh-page .btn-amber:focus {
  background: #fff !important;
  color: #111 !important;
  transform: translateY(-1px) !important;
  box-shadow: none !important;
}
body.hhh-page .btn-ghost {
  border: 1px solid var(--line-strong) !important;
  color: var(--fg) !important;
  background: rgba(255,255,255,0.02) !important;
  backdrop-filter: blur(10px) !important;
}
body.hhh-page .btn-ghost:hover,
body.hhh-page .btn-ghost:focus {
  background: rgba(255,255,255,0.08) !important;
  color: var(--fg) !important;
  box-shadow: none !important;
}
body.hhh-page .btn .arr {
  width: 14px !important;
  height: 14px !important;
  display: inline-block !important;
  position: relative !important;
  flex-shrink: 0 !important;
}
body.hhh-page .btn .arr::before {
  content: '→' !important;
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 15px !important;
  transition: transform 0.25s !important;
}
body.hhh-page .btn:hover .arr::before { transform: translateX(3px) !important; }

/* --- Any injected Houzez admin bars / notices above our nav --- */
body.hhh-page.admin-bar .hhh-nav { top: 32px; }
@media (max-width: 782px) {
  body.hhh-page.admin-bar .hhh-nav { top: 46px; }
}

/* ============================================================
   CONTACT MODAL — global, not scoped to hhh-page
   ============================================================ */
.hhh-contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.hhh-contact-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.hhh-contact-modal {
  position: relative;
  background: var(--bg-2, #121212);
  border: 1px solid var(--line, rgba(250,250,247,0.12));
  border-radius: 16px;
  padding: 40px;
  width: min(480px, 100%);
  transform: translateY(14px);
  transition: transform 0.22s ease;
}
.hhh-contact-overlay.open .hhh-contact-modal {
  transform: translateY(0);
}
.hhh-contact-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 18px;
  line-height: 1;
  padding: 6px;
  color: var(--fg-dim, #A8A8A3);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}
.hhh-contact-close:hover { color: var(--fg, #FAFAF7); }
.hhh-contact-eyebrow {
  font-family: var(--mono, monospace);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim, #A8A8A3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.hhh-contact-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber, #F0A500);
  border-radius: 50%;
  flex-shrink: 0;
}
.hhh-contact-title {
  font-family: var(--serif, serif) !important;
  font-size: clamp(26px, 4vw, 38px) !important;
  font-weight: 400 !important;
  font-style: italic !important;
  color: var(--fg, #FAFAF7) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.01em !important;
  margin: 0 0 20px !important;
}
.hhh-contact-divider {
  height: 1px;
  background: var(--line, rgba(250,250,247,0.12));
  margin-bottom: 28px;
}
.hhh-contact-field { margin-bottom: 20px; }
.hhh-contact-label {
  display: block;
  font-family: var(--mono, monospace);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim, #A8A8A3);
  margin-bottom: 8px;
}
.hhh-contact-input {
  display: block;
  width: 100%;
  background: var(--bg-3, #1A1A1A);
  border: 1px solid var(--line, rgba(250,250,247,0.12));
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--sans, sans-serif);
  font-size: 14px;
  color: var(--fg, #FAFAF7);
  outline: none;
  transition: border-color 0.15s;
}
.hhh-contact-input::placeholder { color: var(--fg-faint, #55554F); }
.hhh-contact-input:focus { border-color: var(--line-strong, rgba(250,250,247,0.22)); }
.hhh-contact-textarea {
  resize: vertical;
  min-height: 110px;
}
.hhh-contact-send {
  display: block;
  width: 100%;
  background: var(--amber, #F0A500);
  color: #000;
  font-family: var(--mono, monospace);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.15s;
}
.hhh-contact-send:hover { opacity: 0.88; }
.hhh-contact-send:disabled { opacity: 0.5; cursor: default; }

.hhh-contact-alt {
  display: block;
  text-align: center;
  margin-top: 18px;
  font-family: var(--mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim, #A8A8A3);
  text-decoration: none;
  transition: color 0.15s;
}
.hhh-contact-alt:hover { color: var(--amber, #F0A500); }

.hhh-contact-success {
  font-family: var(--sans, sans-serif);
  font-size: 15px;
  color: var(--fg, #FAFAF7);
  text-align: center;
  padding: 40px 0 20px;
}

@media (max-width: 480px) {
  .hhh-contact-overlay { padding: 12px; }
  .hhh-contact-modal   { padding: 28px 22px; border-radius: 14px; }
  .hhh-contact-title   { font-size: 26px; }
  .hhh-contact-close   { top: 12px; right: 14px; }
}
