/* ============================================================
   HH&T Management — Midnight Slate
   Dark, geometric, corporate-modern property management
   ============================================================ */

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

:root {
  /* Palette */
  --slate-950: #020617;
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;
  --white:     #FFFFFF;
  --blue-500:  #3B82F6;
  --blue-600:  #2563EB;
  --blue-400:  #60A5FA;
  --blue-100:  #DBEAFE;
  --amber-500: #F59E0B;
  --amber-400: #FBBF24;
  --amber-100: #FEF3C7;
  --green-500: #22C55E;
  --green-100: #DCFCE7;
  --red-500:   #EF4444;

  /* Functional */
  --bg-dark:      var(--slate-900);
  --bg-darker:    var(--slate-950);
  --bg-surface:   var(--slate-800);
  --bg-light:     var(--slate-50);
  --bg-white:     var(--white);
  --text-bright:  var(--slate-50);
  --text-light:   var(--slate-300);
  --text-muted:   var(--slate-400);
  --text-dark:    var(--slate-900);
  --text-body:    var(--slate-600);
  --accent:       var(--blue-500);
  --accent-hover: var(--blue-600);
  --accent-warm:  var(--amber-500);
  --border-dark:  rgba(255,255,255,0.06);
  --border-light: rgba(15,23,42,0.08);

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  3.5rem;
  --text-hero: clamp(2.75rem, 6vw, 4.5rem);

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width:  1200px;
  --nav-height: 72px;
  --radius:     8px;
  --radius-lg:  12px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur:  0.5s;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: var(--text-base); line-height: 1.7; color: var(--text-body); background: var(--bg-white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 600; }
h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
p { max-width: 65ch; }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-lg); }
.section { padding: var(--space-3xl) 0; }
.section--dark { background: var(--bg-dark); color: var(--text-bright); }
.section--darker { background: var(--bg-darker); color: var(--text-bright); }
.section--light { background: var(--bg-light); }

/* Label */
.label { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.label--amber { color: var(--accent-warm); }
.label--light { color: var(--blue-400); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ============================================================
   NAV
   ============================================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-height); display: flex; align-items: center; transition: background .3s, backdrop-filter .3s, box-shadow .3s; }
.nav--scrolled { background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--border-dark); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-lg); }

.nav__logo { display: flex; align-items: center; gap: 0.6rem; }
.nav__logo img, .nav__logo svg { height: 36px; width: auto; }
.nav__logo-text { font-weight: 700; font-size: var(--text-lg); color: var(--white); letter-spacing: -0.01em; }
.nav__logo-text small { display: block; font-size: var(--text-xs); font-weight: 400; color: var(--slate-400); letter-spacing: 0.06em; text-transform: uppercase; }

.nav__links { display: flex; align-items: center; gap: var(--space-lg); list-style: none; }
.nav__links a { font-size: var(--text-sm); font-weight: 500; color: var(--slate-300); transition: color .2s; }
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__cta { background: var(--accent) !important; color: var(--white) !important; padding: 0.5rem 1.2rem; border-radius: var(--radius); font-weight: 600 !important; font-size: var(--text-sm) !important; transition: background .2s, transform .2s; }
.nav__cta:hover { background: var(--accent-hover) !important; transform: translateY(-1px); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle { display: flex; align-items: center; gap: 4px; }
.nav__dropdown-toggle svg { width: 12px; height: 12px; transition: transform .2s; }
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown-menu { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(6px); background: var(--slate-800); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 0.4rem; min-width: 200px; opacity: 0; visibility: hidden; transition: all .2s; list-style: none; box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.nav__dropdown:hover .nav__dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__dropdown-menu a { display: block; padding: 0.5rem 0.75rem; border-radius: 6px; font-size: var(--text-sm); color: var(--slate-300) !important; }
.nav__dropdown-menu a:hover { background: var(--slate-700); color: var(--white) !important; }
.nav__dropdown-menu .submenu-label { padding: 0.4rem 0.75rem 0.2rem; font-size: var(--text-xs); font-weight: 600; color: var(--slate-500); letter-spacing: 0.08em; text-transform: uppercase; }

/* Mobile */
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; border-radius: var(--radius); font-size: var(--text-sm); font-weight: 600; transition: all .2s var(--ease); white-space: nowrap; }
.btn svg { width: 16px; height: 16px; transition: transform .2s; }
.btn:hover svg { transform: translateX(3px); }

.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(59,130,246,0.3); }
.btn--white { background: var(--white); color: var(--text-dark); }
.btn--white:hover { background: var(--slate-100); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.btn--outline { background: transparent; color: var(--text-bright); border: 1.5px solid var(--slate-600); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--outline-dark { background: transparent; color: var(--text-dark); border: 1.5px solid var(--slate-200); }
.btn--outline-dark:hover { border-color: var(--accent); color: var(--accent); }
.btn--amber { background: var(--accent-warm); color: var(--slate-900); }
.btn--amber:hover { background: var(--amber-400); transform: translateY(-2px); }

/* ============================================================
   HERO (dark, grid background)
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--bg-dark); color: var(--text-bright); padding-top: var(--nav-height); overflow: hidden; }
.hero__grid { position: absolute; inset: 0; background-image:
  linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
  linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(120px); opacity: 0.12; }
.hero__glow--1 { background: var(--accent); top: -20%; right: -10%; }
.hero__glow--2 { background: var(--accent-warm); bottom: -20%; left: -10%; }

.hero__content { position: relative; z-index: 1; max-width: 640px; }
.hero__title { font-family: var(--font-display); font-size: var(--text-hero); font-weight: 400; margin-bottom: var(--space-md); line-height: 1.1; }
.hero__title em { font-style: italic; color: var(--accent); }
.hero__sub { font-size: var(--text-lg); color: var(--slate-400); margin-bottom: var(--space-xl); line-height: 1.8; }
.hero__actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

.hero__stats { position: absolute; right: var(--space-lg); bottom: var(--space-xl); display: flex; gap: 1px; background: var(--border-dark); border-radius: var(--radius); overflow: hidden; z-index: 1; border: 1px solid var(--border-dark); }
.hero__stat { background: var(--bg-surface); padding: var(--space-md) var(--space-lg); text-align: center; }
.hero__stat-num { font-size: var(--text-3xl); font-weight: 700; color: var(--white); }
.hero__stat-label { font-size: var(--text-xs); color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.step { position: relative; padding: var(--space-lg) var(--space-md); }
.step__num { font-size: var(--text-4xl); font-weight: 800; color: var(--accent); opacity: 0.15; position: absolute; top: var(--space-sm); right: var(--space-md); line-height: 1; }
.step__icon { width: 44px; height: 44px; border-radius: var(--radius); background: rgba(59,130,246,0.1); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: var(--space-sm); }
.step__icon svg { width: 20px; height: 20px; }
.step__title { font-size: var(--text-base); font-weight: 600; margin-bottom: 0.4rem; }
.step__desc { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6; }
/* Connector line between steps */
.step:not(:last-child)::after { content: ''; position: absolute; top: 50%; right: 0; width: calc(var(--space-md)); height: 1px; background: var(--border-dark); }

/* ============================================================
   VALUE PROPS
   ============================================================ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-light); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-light); }
.value-card { background: var(--bg-white); padding: var(--space-lg); transition: background .2s; }
.value-card:hover { background: var(--bg-light); }
.value-card__icon { width: 40px; height: 40px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-sm); }
.value-card__icon--blue { background: var(--blue-100); color: var(--blue-600); }
.value-card__icon--amber { background: var(--amber-100); color: var(--amber-500); }
.value-card__icon--green { background: var(--green-100); color: var(--green-500); }
.value-card__icon svg { width: 20px; height: 20px; }
.value-card__title { font-size: var(--text-base); font-weight: 600; color: var(--text-dark); margin-bottom: 0.3rem; }
.value-card__desc { font-size: var(--text-sm); color: var(--text-body); line-height: 1.6; }

/* ============================================================
   MISSION / VISION / VALUES
   ============================================================ */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.mvv-card { background: var(--bg-surface); border-radius: var(--radius-lg); padding: var(--space-xl) var(--space-lg); border: 1px solid var(--border-dark); }
.mvv-card__label { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: var(--space-sm); }
.mvv-card__label--blue { color: var(--blue-400); }
.mvv-card__label--amber { color: var(--amber-400); }
.mvv-card__label--green { color: var(--green-500); }
.mvv-card__text { font-size: var(--text-sm); color: var(--slate-300); line-height: 1.8; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial { position: relative; padding: var(--space-xl) 0; text-align: center; }
.testimonial__quote { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 400; font-style: italic; color: var(--text-bright); max-width: 700px; margin: 0 auto var(--space-md); line-height: 1.6; }
.testimonial__quote::before { content: '\201C'; display: block; font-size: 4rem; color: var(--accent); line-height: 0.5; margin-bottom: var(--space-sm); }
.testimonial__author { font-size: var(--text-sm); color: var(--slate-400); }

/* ============================================================
   PROPERTY CARDS
   ============================================================ */
.properties-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-md); }
.prop-card { background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-light); transition: transform .3s var(--ease), box-shadow .3s; display: flex; flex-direction: column; }
.prop-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.prop-card__img { aspect-ratio: 16/10; position: relative; overflow: hidden; flex-shrink: 0; }
.prop-card__img img { width: 100%; height: 100%; object-fit: cover; }
.prop-card__img--placeholder { display: flex; align-items: center; justify-content: center; }
.prop-card__img--placeholder svg { opacity: 0.5; }
.prop-card__img--commercial { background: linear-gradient(135deg, var(--slate-800), var(--slate-700)); }
.prop-card__img--residential { background: linear-gradient(135deg, var(--blue-600), var(--blue-500)); }
.prop-card__badge { position: absolute; top: var(--space-sm); left: var(--space-sm); padding: 0.25rem 0.65rem; border-radius: 4px; font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; z-index: 1; }
.prop-card__badge--commercial { background: rgba(245,158,11,0.9); color: var(--slate-900); }
.prop-card__badge--residential { background: rgba(59,130,246,0.9); color: var(--white); }
.prop-card__body { padding: var(--space-md); display: flex; flex-direction: column; flex: 1; }
.prop-card__name { font-size: var(--text-lg); font-weight: 600; color: var(--text-dark); margin-bottom: 0.3rem; }
.prop-card__address { font-size: var(--text-sm); color: var(--text-body); display: flex; align-items: center; gap: 0.3rem; margin-bottom: var(--space-sm); }
.prop-card__address svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.prop-card__meta { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-sm); }
.prop-card__chip { font-size: var(--text-xs); font-weight: 500; padding: 0.2rem 0.5rem; border-radius: 4px; background: var(--slate-100); color: var(--slate-600); }
.prop-card__footer { display: flex; justify-content: space-between; align-items: center; gap: var(--space-sm); flex-wrap: wrap; padding-top: var(--space-sm); border-top: 1px solid var(--border-light); margin-top: auto; }
.prop-card__link { font-size: var(--text-sm); font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 0.3rem; transition: gap .2s; }
.prop-card:hover .prop-card__link { gap: 0.6rem; }
.prop-card__link svg { width: 14px; height: 14px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-xl); background: var(--bg-dark); color: var(--text-bright); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px); background-size: 60px 60px; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-warm), var(--accent)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-display); font-size: var(--text-4xl); font-weight: 400; margin-bottom: 0.5rem; }
.page-hero p { font-size: var(--text-lg); color: var(--slate-400); max-width: 560px; }
.page-hero__glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.1; pointer-events: none; }
.page-hero__glow--1 { width: 400px; height: 400px; background: var(--accent); top: -30%; right: -5%; }
.page-hero__glow--2 { width: 300px; height: 300px; background: var(--accent-warm); bottom: -30%; left: -5%; }

.portfolio-hero-stats { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-top: var(--space-lg); }
.portfolio-hero-stat { min-width: 150px; padding: 0.9rem 1rem; border: 1px solid var(--border-dark); border-radius: var(--radius); background: rgba(255,255,255,0.04); backdrop-filter: blur(10px); }
.portfolio-hero-stat strong { display: block; font-size: var(--text-2xl); font-weight: 700; color: var(--white); line-height: 1.1; }
.portfolio-hero-stat span { display: block; margin-top: 0.2rem; font-size: var(--text-xs); color: var(--slate-400); letter-spacing: 0.08em; text-transform: uppercase; }

.portfolio-showcase { position: relative; padding: var(--space-2xl) 0; background:
  radial-gradient(circle at top left, rgba(59,130,246,0.08), transparent 32%),
  linear-gradient(180deg, var(--bg-light), #eef4fb); }
.portfolio-intro { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--space-lg); align-items: end; margin-bottom: var(--space-xl); }
.portfolio-intro h2 { color: var(--text-dark); max-width: 12ch; }
.portfolio-intro p { color: var(--text-body); justify-self: end; }
.portfolio-stack { display: grid; gap: var(--space-lg); }
.portfolio-group { padding: var(--space-xl); border-radius: 24px; background: rgba(255,255,255,0.72); border: 1px solid rgba(15,23,42,0.08); box-shadow: 0 18px 50px rgba(15,23,42,0.08); backdrop-filter: blur(10px); }
.portfolio-group--light { background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(237,244,255,0.92)); }
.portfolio-group__header { display: grid; grid-template-columns: 1fr auto; gap: var(--space-md); align-items: end; margin-bottom: var(--space-lg); }
.portfolio-group__header h3 { color: var(--text-dark); font-size: clamp(1.5rem, 2vw, 2rem); }
.portfolio-group__header p { max-width: 34ch; font-size: var(--text-sm); color: var(--text-body); }
.properties-grid--balanced { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-lg); align-items: stretch; }

/* ============================================================
   DAISY LEE DETAIL SPECIFICS
   ============================================================ */
.dl-hero { background: linear-gradient(135deg, var(--slate-900) 0%, #1a2744 100%); }
.dl-stats { display: flex; gap: var(--space-lg); flex-wrap: wrap; margin: var(--space-lg) 0; }
.dl-stat { text-align: center; }
.dl-stat__val { font-size: var(--text-2xl); font-weight: 700; color: var(--white); }
.dl-stat__label { font-size: var(--text-xs); color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.08em; }

.dl-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--space-sm); }
.dl-gallery img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius); cursor: pointer; transition: transform .2s, box-shadow .2s; }
.dl-gallery img:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.dl-gallery__placeholder { min-height: 180px; border-radius: var(--radius); background: linear-gradient(135deg, var(--slate-100), var(--blue-100)); border: 1px solid var(--border-light); padding: var(--space-md); display: flex; align-items: end; font-size: var(--text-sm); font-weight: 600; color: var(--text-dark); line-height: 1.5; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-sm); }
.feature-item { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.75rem; border-radius: var(--radius); }
.feature-item svg { width: 18px; height: 18px; color: var(--green-500); flex-shrink: 0; margin-top: 2px; }
.feature-item span { font-size: var(--text-sm); color: var(--text-body); }

.school-card { display: flex; align-items: center; gap: var(--space-sm); padding: var(--space-md); background: var(--bg-light); border-radius: var(--radius); }
.school-card__icon { width: 40px; height: 40px; border-radius: var(--radius); background: var(--blue-100); color: var(--blue-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.school-card__icon svg { width: 20px; height: 20px; }
.school-card__name { font-weight: 600; font-size: var(--text-sm); color: var(--text-dark); }
.school-card__addr { font-size: var(--text-xs); color: var(--text-body); }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q { width: 100%; text-align: left; padding: var(--space-md) 0; font-size: var(--text-base); font-weight: 600; color: var(--text-dark); display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-q svg { width: 18px; height: 18px; color: var(--slate-400); transition: transform .2s; flex-shrink: 0; }
.faq-q.open svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a__inner { padding: 0 0 var(--space-md); font-size: var(--text-sm); color: var(--text-body); line-height: 1.7; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-card { background: var(--bg-white); padding: var(--space-xl); border-radius: var(--radius-lg); border: 1px solid var(--border-light); box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); margin-bottom: var(--space-sm); }
.form-group { margin-bottom: var(--space-sm); }
.form-group label { display: block; font-size: var(--text-sm); font-weight: 500; color: var(--text-dark); margin-bottom: 0.3rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.65rem 0.85rem; border-radius: var(--radius); border: 1.5px solid var(--slate-200); background: var(--bg-white); font-family: var(--font-body); font-size: var(--text-sm); color: var(--text-dark); transition: border-color .2s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(59,130,246,0.08); }
.form-group textarea { resize: vertical; min-height: 100px; }

.contact-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--space-2xl); align-items: start; }
.contact-info__item { display: flex; gap: var(--space-sm); margin-bottom: var(--space-lg); }
.contact-info__icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--radius); background: var(--blue-100); display: flex; align-items: center; justify-content: center; color: var(--blue-600); }
.contact-info__icon svg { width: 18px; height: 18px; }
.contact-info__text h4 { font-size: var(--text-sm); font-weight: 600; color: var(--text-dark); margin-bottom: 0.15rem; }
.contact-info__text p, .contact-info__text a { font-size: var(--text-sm); color: var(--text-body); }
.contact-info__text a { color: var(--accent); font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-darker); color: var(--slate-400); padding: var(--space-2xl) 0 var(--space-lg); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-xl); margin-bottom: var(--space-xl); }
.footer__brand { max-width: 300px; }
.footer__brand-name { font-weight: 700; font-size: var(--text-lg); color: var(--white); margin-bottom: var(--space-sm); }
.footer__brand p { font-size: var(--text-sm); line-height: 1.7; }
.footer h5 { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-500); margin-bottom: var(--space-md); }
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.4rem; }
.footer__links a { font-size: var(--text-sm); transition: color .2s; }
.footer__links a:hover { color: var(--white); }
.footer__bottom { padding-top: var(--space-md); border-top: 1px solid var(--border-dark); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-sm); }
.footer__bottom p { font-size: var(--text-xs); color: var(--slate-600); }

/* ============================================================
   WORK ORDER SPECIFICS
   ============================================================ */
.wo-card { background: var(--bg-white); border-radius: var(--radius-lg); border: 1px solid var(--border-light); padding: var(--space-2xl); text-align: center; max-width: 600px; margin: 0 auto; }
.wo-card__icon { width: 72px; height: 72px; margin: 0 auto var(--space-md); border-radius: 16px; background: var(--blue-100); display: flex; align-items: center; justify-content: center; color: var(--blue-600); }
.wo-card__icon svg { width: 32px; height: 32px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__stats { display: none; }
  .contact-split { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .mvv-grid { grid-template-columns: 1fr; }
  .portfolio-intro { grid-template-columns: 1fr; }
  .portfolio-intro p { justify-self: start; }
  .portfolio-group__header { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --text-5xl: 2.25rem; --text-4xl: 1.75rem; --text-hero: clamp(2rem, 7vw, 3rem); --space-3xl: 5rem; --space-2xl: 3.5rem; }
  .nav__links { position: fixed; inset: 0; background: rgba(15,23,42,0.98); backdrop-filter: blur(16px); flex-direction: column; justify-content: center; gap: var(--space-lg); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
  .nav__links.open { opacity: 1; visibility: visible; }
  .nav__links a { font-size: var(--text-xl) !important; color: var(--white) !important; }
  .nav__burger { display: flex; }
  .nav__dropdown-menu { position: static; transform: none; box-shadow: none; opacity: 1; visibility: visible; background: transparent; border: none; padding-left: var(--space-md); }
  .steps-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .properties-grid { grid-template-columns: 1fr; }
  .properties-grid--balanced { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-2xl); }
  .dl-gallery { grid-template-columns: repeat(2, 1fr); }
  .portfolio-group { padding: var(--space-lg); }
  .portfolio-hero-stat { min-width: 0; flex: 1 1 100%; }
}
