/* Veteran Village Movement — static website styles
   Dreamweaver HTML/CSS Website v1.0 */

:root {
  --vv-green: #173627;
  --vv-green-dark: #0e2118;
  --vv-green-oak: #365b43;
  --vv-gold: #c9a64b;
  --vv-brass: #a88737;
  --vv-parchment: #f5f0e4;
  --vv-ivory: #fbf8f0;
  --vv-charcoal: #252b27;
  --vv-muted: #626a64;
  --vv-stone: #d7cfbe;
  --vv-link: #24563a;
  --vv-link-hover: #153c29;
  --vv-focus: #e0bd58;
  --vv-site-width: 73.75rem;
  --vv-reading-width: 48.75rem;
  --vv-shadow: 0 0.75rem 2rem rgba(14, 33, 24, 0.08);
  --vv-heading: Georgia, "Times New Roman", Times, serif;
  --vv-body: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--vv-ivory);
  color: var(--vv-charcoal);
  font-family: var(--vv-body);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
  overflow-wrap: break-word;
}

img { display: block; height: auto; max-width: 100%; }

a {
  color: var(--vv-link);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover { color: var(--vv-link-hover); text-decoration: underline; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--vv-focus);
  outline-offset: 3px;
}

h1, h2, h3, h4, h5, h6,
.vv-display-subtitle,
.vv-section-kicker,
.vv-strong-statement,
.vv-price,
.vv-quote {
  color: var(--vv-green-dark);
  font-family: var(--vv-heading);
  font-weight: 700;
  line-height: 1.1;
}

h1, h2, h3 { margin: 0 0 0.55em; }
h1 { font-size: clamp(2.65rem, 6vw, 4.65rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
p { margin: 0 0 1.15em; }

.vv-skip-link {
  background: var(--vv-focus);
  color: var(--vv-green-dark);
  font-weight: 700;
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: -10rem;
  z-index: 10000;
}

.vv-skip-link:focus { top: 1rem; }

/* Shared header and navigation */
.vv-site-header {
  background: var(--vv-green-dark);
  border-bottom: 1px solid rgba(201, 166, 75, 0.55);
  color: var(--vv-ivory);
  position: relative;
  z-index: 1000;
}

.vv-header-inner {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-inline: auto;
  max-width: var(--vv-site-width);
  min-height: 5.5rem;
  padding: 0.7rem 1.25rem;
}

.vv-brand {
  align-items: center;
  color: var(--vv-ivory);
  display: inline-flex;
  font-family: var(--vv-heading);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 700;
  gap: 0.8rem;
  line-height: 1.15;
  max-width: 24rem;
  text-decoration: none;
}

.vv-brand:hover { color: var(--vv-ivory); text-decoration: none; }
.vv-brand img { height: 3.8rem; object-fit: contain; width: auto; }

.vv-nav__toggle {
  align-items: center;
  background: transparent;
  border: 2px solid var(--vv-gold);
  border-radius: 2px;
  color: var(--vv-ivory);
  cursor: pointer;
  display: none;
  font: 700 1rem/1 var(--vv-body);
  min-height: 48px;
  padding: 0.65rem 0.85rem;
}

.vv-nav__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vv-nav a {
  color: var(--vv-ivory);
  display: block;
  font-size: 0.94rem;
  font-weight: 700;
  padding: 0.8rem 0;
  text-decoration: none;
}

.vv-nav a:hover,
.vv-nav a[aria-current="page"] { color: var(--vv-gold); }

/* Page and section system */
.vv-page { background: var(--vv-ivory); }
.vv-section { padding: clamp(3rem, 7vw, 7rem) clamp(1.2rem, 4vw, 3rem); }
.vv-section--ivory { background: var(--vv-ivory); }
.vv-section--parchment { background: var(--vv-parchment); }

.vv-section--dark {
  background: var(--vv-green);
  color: var(--vv-ivory);
}

.vv-section--dark h1,
.vv-section--dark h2,
.vv-section--dark h3,
.vv-section--dark .vv-display-subtitle,
.vv-section--dark .vv-section-kicker,
.vv-section--dark .vv-strong-statement,
.vv-section--dark .vv-quote { color: var(--vv-ivory); }

.vv-section--closing {
  background: var(--vv-green-dark);
  color: var(--vv-ivory);
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.vv-wrap { margin-inline: auto; max-width: var(--vv-site-width); width: 100%; }
.vv-reading { margin-inline: auto; max-width: var(--vv-reading-width); width: 100%; }
.vv-reading--after-grid { margin-top: clamp(2rem, 4vw, 3.5rem); }
.vv-centered, .vv-closing { text-align: center; }
.vv-centered .vv-actions { justify-content: center; }
.vv-closing p { margin-bottom: 0.45rem; }

.vv-hero {
  align-items: center;
  display: flex;
  min-height: min(820px, 88vh);
}

.vv-hero__grid,
.vv-split,
.vv-publication-grid {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.vv-split--reverse,
.vv-publication-grid { grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr); }
.vv-hero__content { max-width: 46rem; }
.vv-interior-hero { padding-block: clamp(4.5rem, 9vw, 8rem); }

.vv-eyebrow {
  color: var(--vv-brass);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.vv-eyebrow--gold { color: var(--vv-gold); }

.vv-display-subtitle,
.vv-section-kicker,
.vv-strong-statement,
.vv-price {
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  line-height: 1.25;
}

.vv-lead { font-size: clamp(1.2rem, 2.2vw, 1.5rem); max-width: 44rem; }
.vv-location { color: var(--vv-muted); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.vv-section--dark .vv-location { color: var(--vv-stone); }

/* Buttons and pathways */
.vv-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 1.75rem;
}

.vv-button {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  line-height: 1.25;
  text-decoration: none;
}

.vv-button--primary {
  background: var(--vv-gold);
  border: 1px solid var(--vv-gold);
  border-radius: 2px;
  color: var(--vv-green-dark);
  font-weight: 700;
  min-height: 48px;
  padding: 0.8rem 1.4rem;
}

.vv-button--primary:hover { background: var(--vv-brass); border-color: var(--vv-brass); color: var(--vv-green-dark); }
.vv-text-link { font-weight: 700; }
.vv-text-link--light { color: var(--vv-ivory); }

/* Cards, lists, quotations and callouts */
.vv-four-part-grid,
.vv-discipline-grid,
.vv-pathways {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.vv-four-part-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.vv-discipline-grid, .vv-pathways { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.vv-card {
  background: var(--vv-ivory);
  border: 1px solid var(--vv-stone);
  box-shadow: var(--vv-shadow);
  padding: clamp(1.35rem, 3vw, 2.25rem);
}

.vv-card--pathway { display: flex; flex-direction: column; }
.vv-card--pathway .vv-button { align-self: flex-start; margin-top: auto; }

.vv-callout,
.vv-contact-expectation {
  border-left: 3px solid var(--vv-gold);
  margin: 2rem 0;
  padding: 0.4rem 0 0.4rem 1.5rem;
}

.vv-callout p { margin-bottom: 0.45rem; }
.vv-quote { border: 0; margin: 2rem 0; padding: 0; }
.vv-quote p { font-size: clamp(2rem, 5vw, 3.5rem); }
.vv-list { margin: 1.25rem 0 1.5rem; padding-left: 1.35rem; }
.vv-list li { margin-bottom: 0.65rem; padding-left: 0.35rem; }
.vv-secondary-path { margin-top: 2rem; text-align: center; }

/* Known assets and future-image placeholders */
.vv-crest-large {
  filter: drop-shadow(0 0.8rem 1.2rem rgba(0, 0, 0, 0.25));
  margin-inline: auto;
  max-height: 28rem;
  object-fit: contain;
  width: auto;
}

.vv-book-cover { margin-inline: auto; max-width: 29rem; width: 100%; }

.vv-placeholder {
  align-items: center;
  aspect-ratio: var(--vv-placeholder-ratio, 3 / 2);
  background: var(--vv-stone);
  border: 1px solid rgba(168, 135, 55, 0.55);
  color: var(--vv-muted);
  display: flex;
  font-size: 0.75rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.08em;
  min-width: 0;
  overflow: hidden;
  padding: 1rem;
  text-align: center;
  text-transform: uppercase;
}

.vv-placeholder--hero { --vv-placeholder-ratio: 2 / 1; }
.vv-placeholder--wide { --vv-placeholder-ratio: 16 / 9; }
.vv-placeholder--standard { --vv-placeholder-ratio: 3 / 2; }
.vv-placeholder--four-three { --vv-placeholder-ratio: 4 / 3; }
.vv-placeholder--portrait { --vv-placeholder-ratio: 4 / 5; }

.vv-price { border-block: 1px solid var(--vv-stone); padding-block: 0.75rem; }

/* Contact form — backend intentionally not configured */
.vv-contact-form {
  background: var(--vv-ivory);
  border: 1px solid var(--vv-stone);
  box-shadow: var(--vv-shadow);
  margin-block: 2rem;
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

.vv-form-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vv-form-field--full { grid-column: 1 / -1; }
.vv-contact-form label { display: block; font-weight: 700; margin-bottom: 0.35rem; }
.vv-form-help { color: var(--vv-muted); display: block; font-size: 0.88rem; margin-top: 0.25rem; }

.vv-contact-form input,
.vv-contact-form select,
.vv-contact-form textarea {
  background: #fff;
  border: 1px solid var(--vv-muted);
  border-radius: 2px;
  color: var(--vv-charcoal);
  font: inherit;
  min-height: 48px;
  padding: 0.7rem 0.8rem;
  width: 100%;
}

.vv-contact-form textarea { min-height: 11rem; resize: vertical; }
.vv-contact-form button[disabled] { cursor: not-allowed; opacity: 0.68; }

.vv-development-notice {
  background: #fff8dc;
  border: 1px dashed var(--vv-brass);
  color: var(--vv-charcoal);
  font-size: 0.9rem;
  margin: 1.5rem 0;
  padding: 1rem;
}

.vv-unconfigured-link[aria-disabled="true"] { cursor: not-allowed; opacity: 0.75; }

/* Shared footer */
.vv-site-footer {
  background: var(--vv-green-dark);
  border-top: 1px solid rgba(201, 166, 75, 0.55);
  color: var(--vv-ivory);
  padding: 3rem 1.25rem;
}

.vv-footer-inner { margin-inline: auto; max-width: var(--vv-site-width); text-align: center; }
.vv-footer-title { font-family: var(--vv-heading); font-size: 1.5rem; font-weight: 700; }
.vv-footer-motto { color: var(--vv-gold); }
.vv-footer-nav { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; justify-content: center; list-style: none; margin: 1.5rem 0 0; padding: 0; }
.vv-footer-nav a { color: var(--vv-ivory); }

@media (max-width: 980px) {
  body { font-size: 17px; }
  .vv-hero { min-height: auto; }
  .vv-hero__grid,
  .vv-split,
  .vv-split--reverse,
  .vv-publication-grid,
  .vv-publication-grid--book { grid-template-columns: 1fr; }
  .vv-four-part-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vv-crest-large { max-height: 20rem; }
}

@media (max-width: 820px) {
  .js .vv-nav__toggle { display: inline-flex; }
  .vv-header-inner { align-items: flex-start; flex-wrap: wrap; gap: 0.6rem 1rem; min-height: 4.5rem; }
  .vv-brand img { height: 3rem; }
  .vv-nav { flex-basis: 100%; width: 100%; }
  .js .vv-nav__list { align-items: stretch; display: none; flex-direction: column; gap: 0; padding: 0.5rem 0 1rem; }
  .js .vv-nav__list[data-open="true"] { display: flex; }
  .vv-nav a { border-top: 1px solid rgba(215, 207, 190, 0.22); padding: 0.8rem 0.25rem; }
}

@media (max-width: 767px) {
  .vv-section { padding-inline: 1.2rem; }
  .vv-four-part-grid,
  .vv-discipline-grid,
  .vv-pathways,
  .vv-form-grid { grid-template-columns: 1fr; }
  .vv-form-field--full { grid-column: auto; }
  .vv-actions { align-items: stretch; flex-direction: column; }
  .vv-actions .vv-button { width: 100%; }
  .vv-placeholder--wide,
  .vv-placeholder--standard,
  .vv-placeholder--four-three { --vv-placeholder-ratio: 4 / 3; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .vv-site-header, .vv-site-footer, .vv-skip-link, .vv-development-notice { display: none; }
  body { color: #000; font-size: 12pt; }
  .vv-section { background: #fff; color: #000; padding: 1rem 0; }
  a { color: #000; text-decoration: underline; }
}
