:root {
  --blue: #2e5c9e;
  --blue-deep: #1f4373;
  --ink: #1b2733;
  --ink-soft: #4a5a6a;
  --paper: #faf8f4;
  --paper-edge: #eceae3;
  --line: #dcd8ce;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-mark {
  height: 60px;
  width: auto;
  display: block;
}

.site-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.site-nav a:hover {
  color: var(--blue);
}

/* Hero — faded aerial background (images/hollister-web.jpg) */

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--line);
  background-color: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/hollister-web.jpg") center / cover no-repeat;
  opacity: 0.5;
  pointer-events: none;
}

.hero .container {
  position: relative;
}

.hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 17ch;
}

.hero .lede {
  margin-top: 18px;
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 52ch;
}

.stealth-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.stealth-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* About */

.about {
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}

h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.about p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* Contact */

.contact {
  padding: 52px 0 64px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.contact-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.contact-card a {
  font-weight: 600;
  overflow-wrap: anywhere;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper-edge);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.site-footer a {
  color: var(--ink-soft);
  text-decoration: underline;
}

.site-footer a:hover {
  color: var(--blue);
}

@media (max-width: 560px) {
  .hero {
    padding: 52px 0 48px;
  }

  .brand-mark {
    height: 48px;
  }
}
