<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,
initial-scale=1.0"/>
<title>Ad Astra Risk Management LLC</title>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Barlow:wght@300;400;500;600&display=swap"
rel="stylesheet"/>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0;
padding: 0; }
```
:root {
--navy: #0a1628;
--deep: #0d1f3c;
--mid: #1a3560;
--gold: #c9a84c;
--gold-light: #e2c47a;
--silver: #8fa3b8;
--white: #f4f7fa;
--text: #d0dce8;
}
html { scroll-behavior: smooth; }
body {
font-family: 'Barlow', sans-serif;
background: var(--navy);
color: var(--text);
overflow-x: hidden;
}
/* ─── STARFIELD
───────────────────────────────
*/
#stars {
position: fixed;
inset: 0;
z-index: 0;
pointer-events: none;
overflow: hidden;
}
.star {
position: absolute;
border-radius: 50%;
background: #fff;
animation: twinkle var(--d) ease-in-out infinite alternate;
opacity: 0;
}
@keyframes twinkle {
from { opacity: 0; }
to { opacity: var(--op); }
}
/* ─── NAV
──────────────────────────────────────
*/
nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
display: flex;
align-items: center;
justify-content: space-between;
padding: 1.2rem 5%;
background: linear-gradient(to bottom, rgba(10,22,40,0.95),
transparent);
backdrop-filter: blur(4px);
}
.logo {
font-family: 'Cormorant Garamond', serif;
font-size: 1.15rem;
font-weight: 600;
letter-spacing: 0.08em;
color: var(--gold);
text-transform: uppercase;
}
.logo span { color: var(--white); font-weight: 300; }
nav ul {
list-style: none;
display: flex;
gap: 2.5rem;
}
nav ul a {
text-decoration: none;
color: var(--silver);
font-size: 0.8rem;
letter-spacing: 0.12em;
text-transform: uppercase;
transition: color 0.3s;
}
nav ul a:hover { color: var(--gold); }
/* ─── HERO
─────────────────────────────────────
*/
#hero {
position: relative;
z-index: 1;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 6rem 5% 4rem;
}
.hero-eyebrow {
font-size: 0.72rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 1.5rem;
opacity: 0;
animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(3rem, 7vw, 6rem);
font-weight: 300;
line-height: 1.05;
color: var(--white);
max-width: 800px;
opacity: 0;
animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title em {
font-style: normal;
color: var(--gold);
}
.hero-line {
width: 60px;
height: 1px;
background: var(--gold);
margin: 2rem auto;
opacity: 0;
animation: fadeUp 0.8s 0.7s forwards;
}
.hero-sub {
font-size: 1rem;
font-weight: 300;
color: var(--silver);
max-width: 520px;
line-height: 1.8;
opacity: 0;
animation: fadeUp 0.9s 0.9s
forwards;
}
.hero-cta {
margin-top: 2.5rem;
display: flex;
gap: 1rem;
opacity: 0;
animation: fadeUp 0.9s 1.1s forwards;
}
.btn-primary {
display: inline-block;
padding: 0.9rem 2.2rem;
background: var(--gold);
color: var(--navy);
font-size: 0.78rem;
letter-spacing: 0.15em;
text-transform: uppercase;
text-decoration: none;
font-weight: 600;
transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light);
transform: translateY(-2px); }
.btn-outline {
display: inline-block;
padding: 0.9rem 2.2rem;
border: 1px solid var(--gold);
color: var(--gold);
font-size: 0.78rem;
letter-spacing: 0.15em;
text-transform: uppercase;
text-decoration: none;
font-weight: 500;
transition: background 0.3s, transform 0.2s;
}
.btn-outline:hover { background: rgba(201,168,76,0.1);
transform: translateY(-2px); }
@keyframes fadeUp {
from { opacity: 0; transform: translateY(24px);
}
to { opacity: 1; transform: translateY(0);
}
}
/* ─── DIVIDER
──────────────────────────────────
*/
.section-divider {
width: 100%;
height: 1px;
background: linear-gradient(to right, transparent, var(--mid),
transparent);
margin: 0 auto;
}
/* ─── SHARED SECTION STYLES ───────────────────
*/
section {
position: relative;
z-index: 1;
padding: 6rem 5%;
}
.section-label {
font-size: 0.68rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 0.8rem;
}
.section-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 400;
color: var(--white);
line-height: 1.15;
margin-bottom: 1rem;
}
.section-intro {
font-size: 0.95rem;
color: var(--silver);
max-width: 560px;
line-height: 1.8;
}
/* ─── SERVICES
─────────────────────────────────
*/
#services {
background: var(--deep);
}
.services-inner {
max-width: 1100px;
margin: 0 auto;
}
.services-header {
margin-bottom: 4rem;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
}
.service-card {
border: 1px solid rgba(201,168,76,0.15);
padding: 2.5rem 2rem;
background: rgba(255,255,255,0.02);
transition: border-color 0.3s, transform 0.3s, background 0.3s;
position: relative;
overflow: hidden;
}
.service-card::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(201,168,76,0.05)
0%, transparent 60%);
opacity: 0;
transition: opacity 0.4s;
}
.service-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px);
background: rgba(255,255,255,0.04); }
.service-card:hover::before { opacity: 1; }
.service-num {
font-family: 'Cormorant Garamond', serif;
font-size: 2.5rem;
color: rgba(201,168,76,0.2);
font-weight: 700;
line-height: 1;
margin-bottom: 1rem;
}
.service-title {
font-family: 'Cormorant Garamond', serif;
font-size: 1.4rem;
font-weight: 500;
color: var(--white);
margin-bottom: 0.75rem;
}
.service-desc {
font-size: 0.88rem;
color: var(--silver);
line-height: 1.75;
}
/* ─── ABOUT
────────────────────────────────────
*/
#about {
max-width: 1100px;
margin: 0 auto;
}
.about-inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 6rem;
align-items: center;
}
.about-visual {
position: relative;
}
.about-box {
border: 1px solid rgba(201,168,76,0.25);
aspect-ratio: 4/5;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, rgba(26,53,96,0.5),
rgba(10,22,40,0.8));
position: relative;
overflow: hidden;
}
.about-box::after {
content: '';
position: absolute;
width: 180px;
height: 180px;
border-radius: 50%;
background: radial-gradient(circle, rgba(201,168,76,0.12),
transparent 70%);
top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.about-icon {
font-size: 6rem;
opacity: 0.15;
color: var(--gold);
z-index: 1;
}
.about-accent {
position: absolute;
bottom: -1.5rem;
right: -1.5rem;
width: 120px;
height: 120px;
border: 1px solid rgba(201,168,76,0.3);
}
.about-content .section-title { margin-bottom: 1.5rem; }
.about-content p {
font-size: 0.92rem;
color: var(--silver);
line-height: 1.85;
margin-bottom: 1.2rem;
}
.stat-row {
display: flex;
gap: 2.5rem;
margin-top: 2.5rem;
padding-top: 2rem;
border-top: 1px solid rgba(201,168,76,0.15);
}
.stat h3 {
font-family: 'Cormorant Garamond', serif;
font-size: 2.2rem;
font-weight: 600;
color: var(--gold);
}
.stat p {
font-size: 0.75rem;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--silver);
margin: 0;
}
/* ─── CONTACT
──────────────────────────────────
*/
#contact {
background: var(--deep);
}
.contact-inner {
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1.3fr;
gap: 6rem;
align-items: start;
}
.contact-info p {
font-size: 0.92rem;
color: var(--silver);
line-height: 1.8;
margin-top: 1rem;
}
.contact-detail {
margin-top: 2.5rem;
display: flex;
flex-direction: column;
gap: 1rem;
}
.contact-detail-item {
display: flex;
flex-direction: column;
gap: 0.2rem;
}
.contact-detail-label {
font-size: 0.65rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--gold);
}
.contact-detail-value {
font-size: 0.9rem;
color: var(--white);
}
form {
display: flex;
flex-direction: column;
gap: 1.2rem;
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.2rem;
}
.form-group {
display: flex;
flex-direction: column;
gap: 0.4rem;
}
label {
font-size: 0.68rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--silver);
}
input, textarea, select {
background: rgba(255,255,255,0.04);
border: 1px solid rgba(143,163,184,0.2);
color: var(--white);
padding: 0.85rem 1rem;
font-family: 'Barlow', sans-serif;
font-size: 0.9rem;
outline: none;
transition: border-color 0.3s;
width: 100%;
}
input:focus, textarea:focus,
select:focus { border-color: var(--gold); }
select option { background: var(--navy); }
textarea { resize: vertical; min-height: 140px; }
.form-submit {
align-self: flex-start;
}
/* ─── FOOTER
───────────────────────────────────
*/
footer {
position: relative;
z-index: 1;
padding: 2.5rem 5%;
display: flex;
align-items: center;
justify-content: space-between;
border-top: 1px solid rgba(201,168,76,0.12);
}
footer p {
font-size: 0.78rem;
color: var(--silver);
opacity: 0.6;
}
.footer-logo {
font-family: 'Cormorant Garamond', serif;
font-size: 1rem;
color: var(--gold);
letter-spacing: 0.08em;
}
/* ─── RESPONSIVE
───────────────────────────────
*/
@media (max-width: 768px) {
nav ul { display: none; }
.about-inner, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
.about-visual { display: none; }
.form-row { grid-template-columns: 1fr; }
footer { flex-direction: column; gap: 1rem; text-align: center; }
}
```
</style>
</head>
<body>
<!-- Starfield -->
<div id="stars"></div>
<!-- Nav -->
<nav>
<div class="logo">Ad Astra <span>Risk
Management</span></div>
<ul>
<li><a href="#services">Services</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- Hero -->
<section id="hero">
<div class="hero-eyebrow">Ad Astra Risk Management
LLC</div>
<h1 class="hero-title">Navigating Risk.<br><em>Reaching New
Heights.</em></h1>
<div class="hero-line"></div>
<p class="hero-sub">Professional insurance adjusting and
third-party administration services — delivered with precision, integrity, and
a commitment to results.</p>
<div class="hero-cta">
<a href="#services"
class="btn-primary">Our
Services</a>
<a href="#contact"
class="btn-outline">Get in
Touch</a>
</div>
</section>
<div class="section-divider"></div>
<!-- Services -->
<section id="services">
<div class="services-inner">
<div class="services-header">
<p class="section-label">What We
Do</p>
<h2 class="section-title">Expert
Services,<br>Trusted Results</h2>
<p class="section-intro">We bring
specialized expertise to every claim and administrative function we handle,
ensuring our clients receive best-in-class service.</p>
</div>
<div class="services-grid">
<div class="service-card">
<div
class="service-num">01</div>
<h3 class="service-title">Insurance
Adjusting</h3>
<p class="service-desc">Thorough,
fair, and timely claims adjusting across property, casualty, and specialty
lines. Our adjusters bring deep industry knowledge and a commitment to
accurate, defensible outcomes.</p>
</div>
<div class="service-card">
<div
class="service-num">02</div>
<h3
class="service-title">Third-Party Administration</h3>
<p class="service-desc">End-to-end
claims management and TPA services for self-insured entities, captives, and
carriers. We handle the complexity so you can focus on your core
business.</p>
</div>
<div class="service-card">
<div
class="service-num">03</div>
<h3 class="service-title">Claims
Oversight & Audit</h3>
<p class="service-desc">Independent
review and audit of claims handling processes to ensure compliance, identify
leakage, and drive operational improvement across your program.</p>
</div>
<div class="service-card">
<div
class="service-num">04</div>
<h3
class="service-title">Litigation Management</h3>
<p class="service-desc">Strategic
oversight of legal proceedings, coordinating with defense counsel to contain
costs, manage exposure, and achieve favorable resolutions on complex
claims.</p>
</div>
<div class="service-card">
<div
class="service-num">05</div>
<h3 class="service-title">Program
Administration</h3>
<p
class="service-desc">Comprehensive administrative support for
insurance programs, including policy issuance, billing, reporting, and
regulatory compliance management.</p>
</div>
<div class="service-card">
<div
class="service-num">06</div>
<h3 class="service-title">Risk
Consulting</h3>
<p class="service-desc">Customized
advisory services to help organizations identify, assess, and mitigate risk
exposure — from loss control strategy to coverage analysis.</p>
</div>
</div>
</div>
</section>
<div class="section-divider"></div>
<!-- About -->
<section id="about">
<div class="about-inner">
<div class="about-visual">
<div class="about-box">
<div class="about-icon">★</div>
</div>
<div class="about-accent"></div>
</div>
<div class="about-content">
<p class="section-label">About
Us</p>
<h2 class="section-title">Principled.
Precise.<br>Professional.</h2>
<p>Ad Astra Risk Management LLC was founded on the
belief that exceptional claims and administrative services require more than
technical proficiency — they demand integrity, transparency, and genuine
partnership with every client we serve.</p>
<p>Our team brings decades of combined experience in
insurance adjusting and third-party administration, working across a wide
spectrum of lines and industries. We pride ourselves on being a trusted
extension of our clients' operations, delivering consistent, high-quality
outcomes on every engagement.</p>
<p>Our name reflects our mission: to reach for the
highest standard in everything we do, guiding our clients through complexity
toward clarity and resolution.</p>
<div class="stat-row">
<div class="stat">
<h3>25+</h3>
<p>Years Experience</p>
</div>
<div class="stat">
<h3>500+</h3>
<p>Claims Managed</p>
</div>
<div class="stat">
<h3>100%</h3>
<p>Client Focus</p>
</div>
</div>
</div>
</div>
</section>
<div class="section-divider"></div>
<!-- Contact -->
<section id="contact">
<div class="contact-inner">
<div class="contact-info">
<p class="section-label">Contact</p>
<h2 class="section-title">Let's Work<br>Together</h2>
<p>Whether you need claims adjusting support, TPA
services, or simply want to learn more about how Ad Astra can serve your
organization, we'd love to hear from you.</p>
<div class="contact-detail">
<div class="contact-detail-item">
<span
class="contact-detail-label">Email</span>
<span
class="contact-detail-value">info@adastrariskmgmt.com</span>
</div>
<div class="contact-detail-item">
<span
class="contact-detail-label">Office Hours</span>
<span
class="contact-detail-value">Monday – Friday, 8:00 AM – 5:00
PM</span>
</div>
</div>
</div>
<form onsubmit="handleSubmit(event)">
<div class="form-row">
<div class="form-group">
<label for="fname">First
Name</label>
<input type="text" id="fname" placeholder="Jane" required />
</div>
<div class="form-group">
<label for="lname">Last
Name</label>
<input type="text" id="lname" placeholder="Smith" required />
</div>
</div>
<div class="form-group">
<label for="email">Email
Address</label>
<input type="email"
id="email" placeholder="jane@company.com" required />
</div>
<div class="form-group">
<label for="company">Company /
Organization</label>
<input type="text"
id="company" placeholder="Your Company" />
</div>
<div class="form-group">
<label for="service">Service of
Interest</label>
<select id="service">
<option value="">Select a
service...</option>
<option>Insurance
Adjusting</option>
<option>Third-Party
Administration</option>
<option>Claims Oversight &
Audit</option>
<option>Litigation
Management</option>
<option>Program
Administration</option>
<option>Risk Consulting</option>
<option>Other / General
Inquiry</option>
</select>
</div>
<div class="form-group">
<label
for="message">Message</label>
<textarea
id="message" placeholder="Tell us about your needs..."
required></textarea>
</div>
<div class="form-submit">
<button type="submit" class="btn-primary" style="border:none;cursor:pointer;">Send
Message</button>
</div>
<p id="form-success" style="color:var(--gold);font-size:0.85rem;display:none;">✓
Thank you! We'll be in touch shortly.</p>
</form>
</div>
</section>
<!-- Footer -->
<footer>
<div class="footer-logo">Ad Astra Risk Management
LLC</div>
<p>© 2025 Ad Astra Risk Management LLC. All rights
reserved.</p>
</footer>
<script>
// Starfield
const container = document.getElementById('stars');
for (let i = 0; i < 160; i++) {
const s = document.createElement('div');
s.className = 'star';
const size = Math.random() * 2 + 0.5;
s.style.cssText = `
width:${size}px;height:${size}px;
top:${Math.random()*100}%;left:${Math.random()*100}%;
--d:${2 + Math.random()*4}s;
--op:${0.15 + Math.random()*0.6};
animation-delay:${Math.random()*4}s;
`;
container.appendChild(s);
}
// Form
function handleSubmit(e) {
e.preventDefault();
document.getElementById('form-success').style.display = 'block';
e.target.reset();
}
// Scroll reveal
const observer = new IntersectionObserver((entries)
=> {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity
= '1';
entry.target.style.transform
= 'translateY(0)';
}
});
}, { threshold: 0.1 });
document.querySelectorAll('.service-card,
.about-content, .contact-info').forEach(el => {
el.style.cssText +=
'opacity:0;transform:translateY(30px);transition:opacity
0.7s ease,transform 0.7s ease;';
observer.observe(el);
});
</script>
</body>
</html>