/* Whitney Title - Light Theme (Black/White borders + text) */

:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f7;
  --card: #ffffff;

  --text: #111111;
  --muted: #4f4f4f;

  --border: #1a1a1a;
  --border-soft: #d9d9d9;

  --radius: 16px;
  --max: 1120px;

  --shadow: 0 10px 24px rgba(0, 0, 0, 0.08);

  --font: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  background: #000;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus {
  left: 12px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand .title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand .title strong {
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.brand .title span {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--text);
  border-color: var(--border-soft);
  background: #fafafa;
}

.nav-links a[aria-current="page"] {
  color: var(--text);
  border-color: var(--border);
  background: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.08s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  background: #f3f3f3;
}

.btn:active {
  transform: translateY(1px);
}

.btn.primary {
  background: #000;
  color: #fff;
  border-color: #000;
}

.btn.primary:hover {
  background: #1a1a1a;
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 700;
}

/* Sections */
.section {
  padding: 52px 0;
}

.section.alt {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--muted);
}

h1 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  margin: 10px 0 12px;
}

h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
}

.lead {
  max-width: 72ch;
  font-size: 16px;
}

/* Hero */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.panel {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

/* Image placeholders */
.media {
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.media.placeholder {
  display: grid;
  place-items: center;
  min-height: 260px;
  background:
    linear-gradient(135deg, #f2f2f2, #ffffff);
  position: relative;
}

.media.placeholder::before {
  content: "Image Placeholder";
  color: #6b6b6b;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.media.placeholder::after {
  content: "Replace with: hero.jpg / about.jpg / services.jpg / contact.jpg";
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  font-size: 12px;
  color: #7a7a7a;
}

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 14px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-weight: 700;
}

.pill span {
  color: var(--text);
  font-size: 14px;
}

/* Cards + grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 18px;
}

.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--text);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.list li {
  margin: 8px 0;
}

.sep {
  border: 0;
  border-top: 1px solid var(--border-soft);
  margin: 18px 0;
}

/* CTA band */
.cta {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cta .left h2 {
  margin: 0;
  font-size: 18px;
}

.cta .left p {
  margin: 6px 0 0;
}

.cta .right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Forms */
.form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

label {
  font-size: 13px;
  color: var(--muted);
}

input,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  padding: 12px 12px;
  background: #fff;
  color: var(--text);
  font-size: 14px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.notice {
  font-size: 12px;
  color: #6b6b6b;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-soft);
  padding: 26px 0 36px;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid strong {
  color: var(--text);
}

.footer-links {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.footer-links a {
  color: var(--text);
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    padding: 12px 20px;
    background: #fff;
    border-bottom: 1px solid var(--border-soft);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta .right {
    justify-content: flex-start;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .btn {
    width: 100%;
  }

  .nav-actions {
    display: none;
  }
}
