/* ============================================================
   Unityheads — redesign stylesheet
   Self-contained design system (replaces the old style.css look)
   ============================================================ */

:root {
	--navy:   #0a1c3f;
	--navy-2: #0d2350;
	--navy-3: #12305f;
	--blue:   #2166e0;
	--blue-2: #2f80ed;
	--teal:   #15b3c2;
	--green:  #7cbf3f;
	--gold:   #f5b301;
	--orange: #f0932b;
	--ink:    #0f2340;
	--gray:   #5b6b82;
	--muted:  #8595ab;
	--line:   #e6ecf3;
	--light:  #f5f8fc;
	--white:  #ffffff;
	--radius: 14px;
	--shadow: 0 10px 30px rgba(16,35,64,.08);
	--shadow-lg: 0 18px 50px rgba(10,28,63,.16);
	--maxw: 1180px;
	--head: 'Poppins', -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--body: 'Inter', -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
	font-family: var(--body);
	color: var(--gray);
	font-size: 16px;
	line-height: 1.6;
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: var(--head); color: var(--ink); margin: 0; line-height: 1.2; font-weight: 700; }
p { margin: 0; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

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

/* eyebrow label + section heading */
.uh-eyebrow {
	font-family: var(--head);
	text-transform: uppercase;
	letter-spacing: 2.5px;
	font-size: 13px;
	font-weight: 600;
	color: var(--blue-2);
	text-align: center;
	margin-bottom: 10px;
}
.uh-h2 { font-size: 34px; text-align: center; }
.uh-h2 .accent { color: var(--blue-2); }
.uh-underline { width: 60px; height: 4px; background: var(--gold); border-radius: 3px; margin: 14px auto 0; }

/* buttons */
.uh-btn {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--head); font-weight: 600; font-size: 15px;
	padding: 13px 24px; border-radius: 10px; cursor: pointer;
	border: 2px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.uh-btn .arrow { transition: transform .2s ease; }
.uh-btn:hover .arrow { transform: translateX(4px); }
.uh-btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 22px rgba(33,102,224,.35); }
.uh-btn-primary:hover { background: var(--blue-2); transform: translateY(-2px); }
.uh-btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.uh-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.uh-btn-ghost { background: transparent; color: var(--blue); border-color: var(--blue); }
.uh-btn-ghost:hover { background: var(--blue); color: #fff; }

/* small icon circle */
.uh-ic { display: inline-flex; align-items: center; justify-content: center; border-radius: 14px; color: #fff; flex: none; }
.uh-ic svg { width: 24px; height: 24px; }
.bg-blue  { background: var(--blue); }
.bg-teal  { background: var(--teal); }
.bg-green { background: var(--green); }
.bg-gold  { background: var(--gold); }

/* ============================================================
   HEADER
   ============================================================ */
.uh-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(10,28,63,.92);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(255,255,255,.08);
}
.uh-header .uh-wrap { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.uh-logo img { height: 44px; width: auto; }
.uh-nav { display: flex; align-items: center; gap: 6px; }
.uh-nav > li > a {
	font-family: var(--head); font-weight: 500; font-size: 15px; color: #dfe7f5;
	padding: 10px 14px; border-radius: 8px; display: inline-flex; align-items: center; gap: 6px;
	transition: color .2s ease;
}
.uh-nav > li > a:hover, .uh-nav > li.active > a { color: #fff; }
.uh-nav > li.active > a { border-bottom: 2px solid var(--gold); border-radius: 0; padding-bottom: 8px; }

/* dropdown */
.uh-drop { position: relative; }
.uh-drop-menu {
	position: absolute; top: 100%; left: 0; min-width: 240px;
	background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg);
	padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: all .2s ease;
}
.uh-drop:hover .uh-drop-menu, .uh-drop.open .uh-drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.uh-drop-menu a { display: block; padding: 10px 14px; border-radius: 8px; color: var(--ink); font-size: 14.5px; font-weight: 500; }
.uh-drop-menu a:hover { background: var(--light); color: var(--blue); }
.uh-caret { width: 10px; height: 10px; }

.uh-header .uh-btn-primary { padding: 11px 22px; box-shadow: none; }
.uh-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.uh-burger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }

/* ============================================================
   HERO
   ============================================================ */
.uh-hero { position: relative; background: var(--navy) url(../images/01_hero.png) center center / cover no-repeat; color: #fff; min-height: 520px; height: 66vh; max-height: 720px; display: flex; align-items: flex-end; justify-content: center; }
.uh-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; padding-bottom: 48px; }
.uh-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.uh-hero .uh-wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding-top: 70px; padding-bottom: 80px; }
.uh-hero h1 { font-size: 46px; color: #fff; line-height: 1.12; letter-spacing: -.5px; }
.uh-hero h1 .c-blue { color: var(--blue-2); }
.uh-hero h1 .c-green { color: var(--green); }
.uh-hero h1 .c-gold { color: var(--gold); }
.uh-hero p.lead { color: #b9c6df; font-size: 17px; margin: 22px 0 30px; max-width: 480px; }
.uh-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero visual (image-ready placeholder) */
.uh-hero-visual { position: relative; border-radius: 18px; min-height: 340px; overflow: hidden;
	background: linear-gradient(135deg, #17346a, #0c214a); border: 1px solid rgba(255,255,255,.08); }
.uh-hero-visual .ph-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: .18; }
.uh-hero-visual .ph-icon svg { width: 120px; height: 120px; color: #fff; }
.uh-badge {
	position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
	background: rgba(9,24,54,.7); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(6px);
	border-radius: 16px; padding: 22px 26px; text-align: center; min-width: 118px;
}
.uh-badge .ring { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--blue-2); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.uh-badge .ring svg { width: 22px; height: 22px; color: var(--blue-2); }
.uh-badge .num { font-family: var(--head); font-size: 40px; font-weight: 800; color: #fff; line-height: 1; }
.uh-badge .lbl { font-family: var(--head); letter-spacing: 2px; font-size: 12px; color: #cdd8ee; margin-top: 4px; }
.uh-badge .since { font-size: 12px; color: var(--muted); margin-top: 10px; }
.uh-badge .since::before { content: ""; display: block; width: 26px; height: 3px; background: var(--gold); border-radius: 2px; margin: 0 auto 8px; }

/* ============================================================
   BUSINESS VERTICALS
   ============================================================ */
.uh-section { padding: 78px 0; }
.uh-verticals .uh-h2 { margin-bottom: 44px; }
.uh-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.uh-card {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	overflow: hidden; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease;
	display: flex; flex-direction: column;
}
.uh-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.uh-card.feature { border: 1px solid #d4ecc4; box-shadow: 0 12px 34px rgba(124,191,63,.16); }
.uh-card-media { position: relative; height: 120px; display: flex; align-items: center; justify-content: center; }
.uh-card-media.m-blue  { background: linear-gradient(135deg, #1b3a72, #0f254e); }
.uh-card-media.m-teal  { background: linear-gradient(135deg, #123a54, #0f2a44); }
.uh-card-media.m-green { background: linear-gradient(135deg, #eaf6dd, #d7eec2); }
.uh-card-media.m-gold  { background: linear-gradient(135deg, #14213f, #101b34); }
.uh-card-media .ph-icon svg { width: 46px; height: 46px; color: rgba(255,255,255,.35); }
.uh-card-media.m-green .ph-icon svg { color: rgba(90,140,40,.4); }
.uh-card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.uh-tag { position: absolute; top: 12px; z-index: 2; font-family: var(--head); font-weight: 600; font-size: 11px; letter-spacing: 1px; padding: 5px 12px; border-radius: 20px; color: #fff; }
.uh-tag.coming { left: 12px; background: var(--green); }
.uh-tag.emerging { right: 12px; background: var(--gold); color: #3a2c00; }
.uh-card-ic { width: 54px; height: 54px; border-radius: 14px; margin: -27px 0 0 22px; box-shadow: 0 8px 18px rgba(16,35,64,.18); position: relative; z-index: 2; }
.uh-card-body { padding: 12px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.uh-card-body h3 { font-size: 19px; margin-bottom: 10px; }
.uh-card-body p { font-size: 14.5px; color: var(--gray); flex: 1; }
.uh-link { font-family: var(--head); font-weight: 600; font-size: 14px; color: var(--blue); display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; }
.uh-card.feature .uh-link { color: var(--green); }
.uh-link .arrow { transition: transform .2s ease; }
.uh-link:hover .arrow { transform: translateX(4px); }

/* office supplies bar */
.uh-supplies { display: flex; align-items: center; gap: 20px; background: var(--light); border: 1px solid var(--line);
	border-radius: var(--radius); padding: 18px 24px; margin-top: 22px; }
.uh-supplies .uh-ic { width: 52px; height: 52px; }
.uh-supplies .os-thumb { width: 88px; height: 60px; border-radius: 10px; overflow: hidden; flex: none; background: var(--white); border: 1px solid var(--line); }
.uh-supplies .os-thumb img { width: 100%; height: 100%; object-fit: cover; }
.uh-supplies .tick { color: var(--blue); font-weight: 700; }
.uh-supplies h4 { font-size: 17px; }
.uh-supplies .txt { color: var(--gray); font-size: 14.5px; flex: 1; }
.uh-supplies .uh-link { margin-top: 0; }

/* ============================================================
   ECOSYSTEM
   ============================================================ */
.uh-ecosystem { background: radial-gradient(120% 120% at 50% -10%, #12305f 0%, var(--navy) 60%); color: #fff; padding: 78px 0; }
.uh-ecosystem .uh-eyebrow { color: #5fa8ff; }
.uh-ecosystem .uh-h2 { color: #fff; margin-bottom: 50px; }
.uh-eco-row { display: flex; align-items: flex-start; justify-content: space-between; position: relative; gap: 10px; }
.uh-eco-row::before { content: ""; position: absolute; top: 34px; left: 8%; right: 8%; height: 2px;
	background: repeating-linear-gradient(90deg, rgba(120,160,220,.5) 0 6px, transparent 6px 14px); z-index: 0; }
.uh-node { position: relative; z-index: 1; text-align: center; width: 18%; }
.uh-node .dot { width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(0,0,0,.3); }
.uh-node .dot svg { width: 30px; height: 30px; color: #fff; }
.uh-node h4 { color: #fff; font-size: 15px; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 8px; }
.uh-node p { color: #a9bbd8; font-size: 13.5px; }
.uh-node.center { width: 22%; }
.uh-node.center .logo-ring { width: 150px; height: 150px; border-radius: 50%; border: 1px dashed rgba(150,180,230,.4);
	display: flex; align-items: center; justify-content: center; margin: -8px auto 0; background: radial-gradient(circle, rgba(30,70,140,.5), transparent 70%); }
.uh-node.center .logo-ring img { width: 96px; }
.uh-eco-banner { text-align: center; margin: 44px auto 0; max-width: 460px; background: rgba(47,128,237,.12);
	border: 1px solid rgba(95,168,255,.35); color: #bfe0ff; border-radius: 30px; padding: 12px 24px; font-family: var(--head); font-weight: 500; }

/* ============================================================
   WHAT WE DO / SOLUTIONS
   ============================================================ */
.uh-solutions .uh-wrap { display: grid; grid-template-columns: .95fr 2.4fr; gap: 40px; align-items: start; }
.uh-sol-intro .uh-eyebrow { text-align: left; margin-bottom: 12px; }
.uh-sol-intro h2 { font-size: 30px; text-align: left; }
.uh-sol-intro p { margin: 18px 0 26px; font-size: 15.5px; }
.uh-sol-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.uh-sol-item { text-align: center; padding: 0 6px; border-left: 1px solid var(--line); }
.uh-sol-grid .uh-sol-item:first-child { border-left: 0; }
.uh-sol-item .circ { width: 66px; height: 66px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.uh-sol-item .circ svg { width: 28px; height: 28px; }
.uh-sol-item .thumb { width: 100%; height: 100px; border-radius: 12px; overflow: hidden; margin: 0 auto 18px; background: var(--light); box-shadow: var(--shadow); }
.uh-sol-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.c-b1 { background: #e7f0ff; color: var(--blue); }
.c-b2 { background: #e2f6f8; color: var(--teal); }
.c-b3 { background: #eef7e2; color: #6ba535; }
.c-b4 { background: #fff3d6; color: #d99a00; }
.uh-sol-item h4 { font-size: 16px; margin-bottom: 8px; }
.uh-sol-item p { font-size: 13.5px; }

/* ============================================================
   FOOD UPCOMING BANNER
   ============================================================ */
.uh-foodbanner { padding: 0 0 78px; }
.uh-foodbanner .inner { display: grid; grid-template-columns: 300px 1fr auto; gap: 30px; align-items: center;
	background: linear-gradient(120deg, #f3f9ec, #eaf5dc); border: 1px solid #d9edc6; border-radius: 18px; padding: 24px 30px; }
.uh-foodbanner .media { height: 150px; border-radius: 12px; background: linear-gradient(135deg, #dcefc6, #cbe7ad);
	display: flex; align-items: center; justify-content: center; }
.uh-foodbanner .media svg { width: 54px; height: 54px; color: rgba(90,140,40,.5); }
.uh-foodbanner .media img { width: 100%; height: 100%; object-fit: cover; }
.uh-foodbanner .eyebrow2 { font-family: var(--head); text-transform: uppercase; letter-spacing: 2px; font-size: 12px; color: #6ba535; font-weight: 600; }
.uh-foodbanner h3 { font-size: 26px; color: #3d6b1e; margin: 6px 0 10px; }
.uh-foodbanner p { color: #4c6b39; font-size: 14.5px; max-width: 560px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.uh-cta { background: radial-gradient(120% 140% at 50% 0%, #13366d, var(--navy)); color: #fff; }
.uh-cta .uh-wrap { display: flex; align-items: center; gap: 24px; padding: 34px 24px; }
.uh-cta .bubble { width: 58px; height: 58px; border-radius: 16px; background: rgba(47,128,237,.18); display: flex; align-items: center; justify-content: center; flex: none; }
.uh-cta .bubble svg { width: 28px; height: 28px; color: #5fa8ff; }
.uh-cta h3 { color: #fff; font-size: 22px; }
.uh-cta p { color: #b9c6df; font-size: 14.5px; }
.uh-cta .grow { flex: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.uh-footer { background: var(--navy); color: #aebdd6; padding: 60px 0 0; }
.uh-footer .cols { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1fr 1.2fr; gap: 30px; }
.uh-footer .brand img { height: 34px; margin-bottom: 16px; }
.uh-footer .brand p { font-size: 13.5px; color: #90a2c0; max-width: 300px; }
.uh-footer .social { display: flex; gap: 10px; margin-top: 18px; }
.uh-footer .social a { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background .2s ease; }
.uh-footer .social a:hover { background: var(--blue); }
.uh-footer .social svg { width: 18px; height: 18px; color: #fff; }
.uh-footer h5 { color: #fff; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.uh-footer ul li { margin-bottom: 11px; }
.uh-footer ul li a { font-size: 14px; color: #a3b4d1; transition: color .2s ease; }
.uh-footer ul li a:hover { color: #fff; }
.uh-footer .contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.uh-footer .contact svg { width: 16px; height: 16px; color: #5fa8ff; margin-top: 3px; flex: none; }
.uh-footer .bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
.uh-footer .bottom p { font-size: 13px; color: #8395b5; }
.uh-footer .bottom .legal a { font-size: 13px; color: #8395b5; margin-left: 20px; }
.uh-footer .bottom .legal a:hover { color: #fff; }

/* ============================================================
   INNER PAGES
   ============================================================ */
.uh-pagebanner { background: radial-gradient(120% 130% at 70% -20%, #14356e 0%, var(--navy) 60%); color: #fff; padding: 66px 0 56px; text-align: center; }
.uh-pagebanner h1 { color: #fff; font-size: 40px; }
.uh-pagebanner p { color: #b9c6df; max-width: 660px; margin: 14px auto 0; font-size: 17px; }
.uh-crumbs { font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; color: #7f92b5; margin-bottom: 14px; }
.uh-crumbs a { color: #5fa8ff; }
.uh-crumbs span { margin: 0 8px; color: #566a8c; }

/* process flow (idea to market) */
.uh-flowtags { text-align: center; font-family: var(--head); font-weight: 700; letter-spacing: 2px; font-size: 14px; color: var(--blue-2); margin-top: 36px; }
.uh-flowtags span { color: var(--muted); margin: 0 8px; }
.uh-flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 26px; }
.uh-flow-step { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px 16px; box-shadow: var(--shadow); }
.uh-flow-step .n { width: 46px; height: 46px; border-radius: 50%; color: #fff; font-family: var(--head); font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.uh-flow-step:nth-child(1) .n { background: var(--blue); }
.uh-flow-step:nth-child(2) .n { background: var(--teal); }
.uh-flow-step:nth-child(3) .n { background: var(--green); }
.uh-flow-step:nth-child(4) .n { background: var(--gold); }
.uh-flow-step:nth-child(5) .n { background: var(--orange); }
.uh-flow-step h4 { font-size: 15px; margin-bottom: 8px; }
.uh-flow-step p { font-size: 13px; }

/* pill grid (gifting categories) */
.uh-chip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 40px; }
.uh-chip { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; box-shadow: var(--shadow); font-family: var(--head); font-weight: 500; font-size: 14.5px; color: var(--ink); }
.uh-chip .d { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); flex: none; }

.uh-content { padding: 72px 0; }
.uh-content.alt { background: var(--light); }
.uh-narrow { max-width: 820px; margin: 0 auto; }
.uh-content h2 { font-size: 30px; text-align: center; }
.uh-content .lead { text-align: center; max-width: 720px; margin: 16px auto 0; font-size: 17px; }

.uh-split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.uh-split.rev .media { order: 2; }
.uh-split .media img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-lg); }
.uh-eyebrow.left { text-align: left; }
.uh-prose h2 { text-align: left; font-size: 30px; margin-bottom: 14px; }
.uh-prose h3 { font-size: 21px; color: var(--ink); margin: 26px 0 12px; }
.uh-prose p { margin-bottom: 15px; color: var(--gray); }
.uh-tagline { font-family: var(--head); font-weight: 600; color: var(--blue); font-size: 18px; margin-top: 6px; }

.uh-list { margin: 6px 0 0; }
.uh-list li { position: relative; padding-left: 30px; margin-bottom: 11px; color: var(--gray); }
.uh-list li::before { content: ""; position: absolute; left: 0; top: 3px; width: 19px; height: 19px; border-radius: 50%; background: var(--green); }
.uh-list li::after { content: ""; position: absolute; left: 6.5px; top: 7px; width: 6px; height: 10px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg); }

.uh-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.uh-value { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 28px; box-shadow: var(--shadow); }
.uh-value .circ { width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: #fff; }
.uh-value .circ svg { width: 24px; height: 24px; }
.uh-value h4 { font-size: 18px; margin-bottom: 8px; }
.uh-value p { font-size: 14.5px; }

/* contact */
.uh-contact-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 40px; align-items: start; }
.uh-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.uh-form .full { grid-column: 1 / -1; }
.uh-field label { display: block; font-family: var(--head); font-weight: 500; font-size: 14px; color: var(--ink); margin-bottom: 7px; }
.uh-field input, .uh-field textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px; font-family: var(--body); font-size: 15px; color: var(--ink); background: #fff; transition: border .2s, box-shadow .2s; }
.uh-field input:focus, .uh-field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(33,102,224,.12); }
.uh-field textarea { min-height: 150px; resize: vertical; }
.uh-notice { padding: 14px 18px; border-radius: 10px; margin-bottom: 22px; font-size: 15px; }
.uh-notice.ok { background: #e9f7e0; color: #2f6b1e; border: 1px solid #bfe3a8; }
.uh-notice.err { background: #fdecec; color: #b3261e; border: 1px solid #f3c2c0; }
.uh-contact-aside { background: var(--light); border: 1px solid var(--line); border-radius: 16px; padding: 28px; }
.uh-contact-aside h3 { font-size: 20px; margin-bottom: 16px; }
.uh-contact-aside .row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; font-size: 14.5px; color: var(--gray); }
.uh-contact-aside .row svg { width: 20px; height: 20px; color: var(--blue); flex: none; margin-top: 2px; }
.uh-contact-aside .row a { color: var(--blue); }

/* empty-state (projects / insights) */
.uh-placeholder { text-align: center; max-width: 620px; margin: 0 auto; }
.uh-placeholder .ic { width: 84px; height: 84px; border-radius: 50%; background: var(--light); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.uh-placeholder .ic svg { width: 38px; height: 38px; color: var(--blue); }
.uh-placeholder h2 { font-size: 28px; margin-bottom: 14px; }
.uh-placeholder p { margin-bottom: 26px; }

@media (max-width: 900px) {
	.uh-split { grid-template-columns: 1fr; gap: 30px; }
	.uh-split.rev .media { order: 0; }
	.uh-values { grid-template-columns: 1fr; }
	.uh-contact-grid { grid-template-columns: 1fr; }
	.uh-prose h2, .uh-eyebrow.left { text-align: left; }
	.uh-flow { grid-template-columns: repeat(2, 1fr); }
	.uh-chip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.uh-form { grid-template-columns: 1fr; }
	.uh-pagebanner h1 { font-size: 30px; }
	.uh-flow, .uh-chip-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.uh-cards { grid-template-columns: repeat(2, 1fr); }
	.uh-solutions .uh-wrap { grid-template-columns: 1fr; }
	.uh-sol-intro h2, .uh-sol-intro .uh-eyebrow { text-align: center; }
	.uh-footer .cols { grid-template-columns: 1fr 1fr 1fr; }
	.uh-footer .brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
	.uh-nav, .uh-header .uh-btn-primary { display: none; }
	.uh-burger { display: block; }
	.uh-hero .uh-wrap { grid-template-columns: 1fr; }
	.uh-hero h1 { font-size: 36px; }
	.uh-eco-row { flex-wrap: wrap; justify-content: center; gap: 30px; }
	.uh-eco-row::before { display: none; }
	.uh-node, .uh-node.center { width: 44%; }
	.uh-sol-grid { grid-template-columns: repeat(2, 1fr); }
	.uh-sol-item { border-left: 0; }

	/* mobile nav panel */
	.uh-nav.open { display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column;
		background: var(--navy-2); padding: 12px; gap: 2px; border-top: 1px solid rgba(255,255,255,.08); }
	.uh-nav.open > li { width: 100%; }
	.uh-nav.open > li > a { width: 100%; }
	.uh-nav.open .uh-drop-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; padding: 0 0 0 16px; }
	.uh-nav.open .uh-drop-menu a { color: #cdd8ee; }
}
@media (max-width: 680px) {
	.uh-cards { grid-template-columns: 1fr; }
	.uh-sol-grid { grid-template-columns: 1fr; }
	.uh-foodbanner .inner { grid-template-columns: 1fr; text-align: center; }
	.uh-foodbanner .media { display: none; }
	.uh-supplies { flex-wrap: wrap; }
	.uh-cta .uh-wrap { flex-direction: column; text-align: center; }
	.uh-footer .cols { grid-template-columns: 1fr 1fr; }
	.uh-footer .bottom { flex-direction: column; gap: 12px; text-align: center; }
	.uh-badge { position: static; transform: none; margin: 22px auto 0; }
	.uh-hero-visual { min-height: 240px; }
}
@media (max-width: 480px) {
	.uh-hero h1 { font-size: 30px; }
	.uh-h2 { font-size: 26px; }
	.uh-footer .cols { grid-template-columns: 1fr; }
}
