/* Vasrue — small-firm digital media. Conservative, plain CSS. */

:root {
  --bg: #faf9f6;
  --panel: #ffffff;
  --text: #222220;
  --muted: #5a5a56;
  --border: #ddd9cc;
  --black: #111111;
  --black-soft: #1c1c1a;
  --gold: #efc94c;
  --gold-ink: #8a6c1a;
  --navy: var(--black);
  --navy-dark: var(--black);
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

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

a {
  color: var(--gold-ink);
}

/* Header */

.site-header {
  border-bottom: 3px solid var(--gold);
  background: var(--black);
}

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

.logo {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.logo:hover {
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.main-nav a:hover {
  color: var(--gold);
}

.main-nav a.current {
  color: var(--gold);
  font-weight: 600;
}

.nav-cta {
  border: 1px solid var(--gold);
  padding: 8px 16px;
  border-radius: 3px;
  color: var(--gold) !important;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
}

.nav-toggle {
  display: none;
}

/* Main content spacing */

main {
  padding: 48px 0 64px;
}

section + section {
  margin-top: 56px;
}

h1 {
  font-size: 30px;
  color: var(--navy-dark);
  margin: 0 0 12px;
}

h2 {
  font-size: 21px;
  color: var(--navy-dark);
  margin: 0 0 12px;
}

h3 {
  font-size: 17px;
  color: var(--navy-dark);
  margin: 0 0 8px;
}

p {
  color: var(--text);
  margin: 0 0 14px;
}

.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
}

.small-note {
  font-size: 14px;
  color: var(--muted);
}

/* Buttons */

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--navy);
}

.btn-primary {
  background: var(--black);
  color: #fff;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: #fff;
}

.btn-row {
  display: flex;
  gap: 14px;
  margin: 20px 0 10px;
  flex-wrap: wrap;
}

/* Hero */

.hero {
  padding-bottom: 8px;
}

.hero h1 {
  max-width: 760px;
}

/* Two-column list */

.two-col-list {
  columns: 2;
  column-gap: 40px;
  max-width: 700px;
  margin: 0;
  padding-left: 20px;
}

.two-col-list li {
  margin-bottom: 8px;
  break-inside: avoid;
}

/* Simple bullet list */

ul.plain {
  padding-left: 20px;
  max-width: 620px;
}

ul.plain li {
  margin-bottom: 8px;
}

/* Selected work / portfolio rows */

.work-row {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  align-items: flex-start;
}

.work-row:last-child {
  border-bottom: 1px solid var(--border);
}

.work-thumb {
  flex: 0 0 160px;
  width: 160px;
  height: 120px;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  background: #eef0f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-thumb.placeholder {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  padding: 10px;
}

.work-body {
  flex: 1;
}

.work-category {
  font-size: 13px;
  color: var(--gold-ink);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}

.work-desc {
  color: var(--text);
  margin-bottom: 8px;
}

.work-skills {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}

.work-note {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  border-left: 2px solid var(--border);
  padding-left: 10px;
  margin: 8px 0;
}

.work-link {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* Portfolio page item — larger thumb */

.portfolio-list .work-thumb {
  flex: 0 0 220px;
  width: 220px;
  height: 165px;
}

/* CTA band */

.cta-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  text-align: left;
}

/* Contact form */

.contact-form {
  max-width: 560px;
  margin-top: 24px;
}

.form-row {
  margin-bottom: 18px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy-dark);
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 1px solid var(--navy);
  border-color: var(--navy);
}

/* Footer */

.site-footer {
  border-top: 3px solid var(--gold);
  background: var(--black);
  padding: 36px 0 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-legal {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

/* About page */

.about-body {
  max-width: 700px;
}

.about-closing {
  font-weight: 600;
  color: var(--navy-dark);
  margin-top: 24px;
}

/* Responsive */

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 3px solid var(--gold);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 16px;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 0;
    width: 100%;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .site-header .container {
    position: relative;
  }

  .nav-toggle {
    display: inline-block;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    padding: 6px 10px;
    font-size: 14px;
    color: #ffffff;
  }

  .two-col-list {
    columns: 1;
  }

  .work-row {
    flex-direction: column;
  }

  .work-thumb,
  .portfolio-list .work-thumb {
    width: 100%;
    flex-basis: auto;
  }

  .footer-legal {
    flex-direction: column;
  }
}

/* Bluehost package additions: logo chip, form status, honeypot */

.logo,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand {
  align-items: flex-start;
}

.logo-chip {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background: #faf9f6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0;
}

.logo-chip img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.form-status {
  max-width: 560px;
  margin: 18px 0;
  padding: 12px 14px;
  border-radius: 3px;
  font-size: 15px;
}

.form-ok {
  background: #eef4e8;
  border: 1px solid #b9d1a8;
  color: #2e5c1f;
}

.form-err {
  background: #f9ecec;
  border: 1px solid #dbb3b3;
  color: #8c2f2f;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
}
