/* Windster Limited — classic static site (DirectAdmin / Apache) */
:root {
  --bg: #f5f7fb;
  --bg-elevated: #ffffff;
  --bg-soft: #eef2f8;
  --navy: #27387d;
  --navy-deep: #1a2a5c;
  --navy-mid: #324a8f;
  --ink: #0f172a;
  --muted: #475569;
  --subtle: #64748b;
  --border: #d8e0ec;
  --danger: #b91c1c;
  --success: #15803d;
  --font: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --display: "Instrument Sans", "DM Sans", "Segoe UI", system-ui, sans-serif;
  --shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.08);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding-inline: 1.75rem;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4.25rem;
}

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

.brand img {
  width: 2.5rem;
  height: 2.5rem;
}

.brand span {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  font-size: 0.95rem;
}

.nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 0.375rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.15s ease;
}

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

.btn-primary:hover {
  background: var(--navy-mid);
}

.btn-white {
  background: #fff;
  color: var(--navy-deep);
}

.btn-white:hover {
  background: var(--bg-soft);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-pill {
  border-radius: 999px;
  height: 3rem;
  padding: 0 1.75rem;
  background: linear-gradient(90deg, var(--navy-deep), var(--navy), var(--navy-mid));
  color: #fff;
  box-shadow: 0 10px 24px rgba(26, 42, 92, 0.25);
}

.btn-pill:hover {
  filter: brightness(1.08);
  transform: scale(1.02);
}

.btn-pill:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.nav-cta {
  margin-left: 0.5rem;
}

.menu-toggle {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  background: #fff;
  color: var(--ink);
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 0.75rem 0 1rem;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 500;
}

.mobile-nav .btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: #fff;
  border-bottom: 1px solid var(--border);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 42, 92, 0.95), rgba(26, 42, 92, 0.85) 45%, rgba(26, 42, 92, 0.4)),
    linear-gradient(180deg, rgba(26, 42, 92, 0.3), transparent 40%, rgba(26, 42, 92, 0.9));
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  padding: 4rem 0;
  align-items: center;
  min-height: min(72vh, 40rem);
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 5rem 0;
  }
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
}

.lead {
  margin: 1.25rem 0 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-card {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
  display: none;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero-card {
    display: block;
    max-width: 28rem;
    margin-left: auto;
  }
}

.pill-strip {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(26, 42, 92, 0.8);
  backdrop-filter: blur(6px);
}

.pill-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-block: 0.9rem;
}

.pill {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.pill:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

/* Sections */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5.5rem 0;
  }
}

.section-elevated {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section-soft {
  background: var(--bg-soft);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
}

.section-head p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.grid-2 {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 960px) {
  .grid-2 {
    grid-template-columns: 5fr 7fr;
    gap: 3.5rem;
  }
  .grid-2.facts {
    grid-template-columns: 7fr 5fr;
  }
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.text-muted {
  color: var(--muted);
}

.text-ink {
  color: var(--ink);
}

/* Cards */
.cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .cards.divs {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
  transition: border-color 0.15s;
}

.card:hover {
  border-color: color-mix(in srgb, var(--navy) 30%, var(--border));
}

.card-img {
  aspect-ratio: 16/10;
  background: var(--bg-soft);
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card:hover .card-img img {
  transform: scale(1.03);
}

.card-body {
  padding: 1.25rem;
}

.card-body h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
}

.card-body p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
}

.tag:hover {
  border-color: color-mix(in srgb, var(--navy) 35%, var(--border));
  color: var(--navy);
}

.cap-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cap-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.cap {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--bg);
}

.cap-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.375rem;
  border: 1px solid var(--border);
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.75rem;
}

.cap h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.cap p {
  margin: 0.4rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.photo-row {
  display: grid;
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
}

@media (min-width: 640px) {
  .photo-row {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.photo-row img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  min-height: 12rem;
}

/* Split panels */
.split {
  display: grid;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.split-copy {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .split-copy {
    padding: 2.5rem;
  }
}

.split-copy h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
}

.split-copy p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.split-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.split-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 11rem;
  object-fit: cover;
}

.mach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.mach-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
}

/* CTA */
.cta {
  background: var(--navy);
  color: #fff;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
}

.cta p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 36rem;
}

/* Page header */
.page-hero {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
}

.page-hero h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
}

.page-hero p {
  margin: 1.25rem 0 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.facts-card {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.facts-card h2 {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--subtle);
}

.facts-card dl {
  margin: 1rem 0 0;
}

.facts-card dt {
  font-size: 0.875rem;
  color: var(--subtle);
}

.facts-card dd {
  margin: 0.15rem 0 1rem;
  font-weight: 500;
}

.side-card {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.side-card h2,
.side-card .label {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--subtle);
  font-weight: 600;
}

.side-card address {
  font-style: normal;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.side-card address strong {
  color: var(--ink);
  font-weight: 600;
}

.side-soft {
  background: var(--bg-soft);
  box-shadow: none;
}

/* Form */
.form-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .form-card {
    padding: 2rem;
  }
}

.form-card h2 {
  margin: 0;
  font-size: 1.25rem;
}

.form-card .hint {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid .full {
    grid-column: 1 / -1;
  }
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e293b;
}

.field label .req {
  color: var(--danger);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  background: #fff;
  padding: 0.65rem 0.75rem;
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--navy) 55%, transparent);
  outline-offset: 1px;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.security {
  margin-top: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--bg-soft) 80%, #fff);
  padding: 1rem;
}

.security p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--subtle);
}

.security .title {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--subtle);
}

.captcha-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.captcha-row img {
  height: 4rem;
  width: 12.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--navy-deep);
}

.alert {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
}

.alert-error {
  border: 1px solid color-mix(in srgb, var(--danger) 25%, transparent);
  background: color-mix(in srgb, var(--danger) 6%, #fff);
  color: var(--danger);
}

.alert-ok {
  border: 1px solid color-mix(in srgb, var(--success) 25%, transparent);
  background: color-mix(in srgb, var(--success) 6%, #fff);
  color: var(--success);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 5fr 3fr 4fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-brand img {
  width: 2.25rem;
  height: 2.25rem;
}

.footer-brand span {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}

.site-footer p,
.site-footer li,
.site-footer address {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer h3 {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--subtle);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

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

.site-footer address {
  font-style: normal;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--subtle);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.link-arrow:hover {
  color: var(--navy-mid);
}
