/* Sander & Warberg El-Teknik ApS — draft website stylesheet */

:root {
  --bg-dark: #0e1726;
  --bg-darker: #0a111c;
  --bg-panel: #121d30;
  --bg-card: #ffffff;
  --bg-soft: #f4f7fb;
  --brand-blue: #1fa3e8;
  --brand-blue-dark: #0b6b9a;
  --brand-blue-darker: #084e72;
  --brand-silver: #d8dee6;
  --text-dark: #1a232f;
  --text-muted: #5b6776;
  --text-light: #e9eef5;
  --border-soft: #e4eaf1;
  --shadow-sm: 0 2px 6px rgba(14, 23, 38, 0.08);
  --shadow-md: 0 8px 24px rgba(14, 23, 38, 0.12);
  --radius: 10px;
  --max-width: 1140px;
  --font-sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--bg-soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand-blue-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Decorative icons inside links should not pick up the link underline */
a [aria-hidden="true"] {
  display: inline-block;
  text-decoration: none;
}

/* SVG-mask icons — render in currentColor regardless of platform emoji rendering */
.icon-phone,
.icon-mail {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  background-color: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  text-decoration: none;
  flex: none;
}
.icon-phone {
  -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}
.icon-mail {
  -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}
/* Footer icons should be pure white */
.site-footer .icon-phone,
.site-footer .icon-mail { color: #fff; }

/* ---------- Accessibility ---------- */
/* Skip link — visible on keyboard focus */
.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  background: var(--brand-blue-dark);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  z-index: 100;
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus {
  top: 8px;
  outline: 3px solid #ffffff;
  outline-offset: 2px;
  text-decoration: none;
}

/* Visible keyboard-focus indicator on all interactive elements */
:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: 2px;
  border-radius: 3px;
}
.site-header :focus-visible,
.site-footer :focus-visible,
.hero :focus-visible {
  outline-color: #fff;
}
button:focus-visible,
.btn:focus-visible {
  outline-offset: 3px;
}

/* Visually hidden — for screen-reader-only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

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

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

/* ---------- Header ---------- */
.site-header {
  background: var(--bg-dark);
  color: var(--text-light);
  border-bottom: 2px solid var(--brand-blue);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 20px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Two-row header: brand (left) + phone CTA (right) on row 1, full nav on row 2 */
.brand { order: 0; }
.header-cta { order: 1; }
.main-nav {
  order: 2;
  flex-basis: 100%;
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand svg { display: block; }

.brand-text { line-height: 1.1; }
.brand-text .name { font-weight: 700; font-size: 16px; letter-spacing: 0.5px; }
.brand-text .name .blue { color: var(--brand-blue); }
.brand-text .tagline { font-size: 11px; color: var(--brand-silver); letter-spacing: 1px; text-transform: uppercase; }

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.main-nav a {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover { background: rgba(31, 163, 232, 0.15); color: #fff; text-decoration: none; }
.main-nav a.active { color: var(--brand-blue); }

.header-cta {
  background: var(--brand-blue-dark);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.15s;
}
.header-cta:hover { background: var(--brand-blue-darker); text-decoration: none; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 60%, #16243d 100%);
  color: var(--text-light);
  padding: 70px 20px 60px;
  position: relative;
  overflow: hidden;
  /* Unified height across pages — content is vertically centered */
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(31, 163, 232, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
/* Hero with photo background — image is layered behind the gradient for legibility */
.hero.with-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
}
.hero-inner { width: 100%; }
@media (max-width: 768px) {
  .hero, .hero.with-image { min-height: 440px; padding: 60px 20px; }
}
.hero.with-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 17, 28, 0.92) 0%, rgba(14, 23, 38, 0.78) 50%, rgba(22, 36, 61, 0.55) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero.with-image .hero-inner { position: relative; z-index: 1; }

/* Feature image — used in two-col or full-width content areas */
.feature-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: block;
}
.feature-image.tall { height: 420px; }
.feature-image.short { height: 240px; }

/* Card image header */
.card.with-image { padding: 0; overflow: hidden; }
.card.with-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.card.with-image .card-body { padding: 18px 22px 20px; }
.card.with-image .card-body h3 { margin-top: 0; color: var(--brand-blue-dark); }
.card.with-image .card-body p { color: var(--text-muted); font-size: 14px; margin: 0; }

.photo-credit {
  font-size: 11px;
  color: #6a7889;
  margin-top: 6px;
  text-align: right;
}
.photo-credit a { color: #6a7889; }
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 16px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.hero h1 .blue { color: var(--brand-blue); }
.hero p.lead {
  font-size: 17px;
  max-width: 720px;
  color: var(--brand-silver);
  margin: 0 0 24px;
}

.hero-promises {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-promises li {
  background: rgba(31, 163, 232, 0.12);
  border: 1px solid rgba(31, 163, 232, 0.35);
  color: #fff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
}
.hero-promises li::before { content: "✓ "; color: var(--brand-blue); font-weight: 700; }

/* When promises pills appear on a light section, switch to dark text on a soft blue tint */
.content .hero-promises li,
.content.alt .hero-promises li {
  background: #e6f4fb;
  border: 1px solid var(--brand-blue);
  color: var(--text-dark);
  font-weight: 600;
}
.content .hero-promises li::before,
.content.alt .hero-promises li::before { color: var(--brand-blue-dark); }

.hero-cta {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-primary { background: var(--brand-blue-dark); color: #fff; border-color: var(--brand-blue-dark); }
.btn-primary:hover { background: var(--brand-blue-darker); border-color: var(--brand-blue-darker); text-decoration: none; }
.btn-secondary { background: transparent; color: #fff; border-color: var(--brand-silver); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.08); text-decoration: none; }

/* ---------- Sections ---------- */
section.content {
  padding: 56px 20px;
}
section.content.alt {
  background: #fff;
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-inner h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin: 0 0 12px;
  color: var(--text-dark);
}
.section-inner h3 {
  font-size: 18px;
  margin: 24px 0 8px;
  color: var(--text-dark);
}
.section-inner p { margin: 0 0 14px; }
.section-inner ul { margin: 8px 0 16px 22px; padding: 0; }
.section-inner ul li { margin-bottom: 6px; }

/* Service cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 28px 0 0;
}
.card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--brand-blue);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-top: 0; color: var(--brand-blue-dark); }
.card p { color: var(--text-muted); margin: 0; font-size: 14px; }

/* Service icon row (forside) */
.service-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.service-tile {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.service-tile:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.service-tile .icon {
  width: 48px; height: 48px;
  background: var(--brand-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: #fff;
}
.service-tile h3 { margin: 0 0 6px; font-size: 16px; color: var(--text-dark); }
.service-tile p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, #16243d, var(--bg-dark));
  color: var(--text-light);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cta-banner h3 { color: #fff; margin: 0 0 6px; font-size: 22px; }
.cta-banner p { margin: 0; color: var(--brand-silver); }

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 0;
}
.contact-strip a, .contact-strip span {
  color: var(--text-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-strip .icon-bg {
  width: 32px; height: 32px;
  background: var(--brand-blue);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Form */
.contact-form {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-top: 4px solid var(--brand-blue);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
  max-width: 680px;
}
.form-required-note {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--text-muted);
}
.req-mark {
  color: var(--brand-blue-dark);
  font-weight: 700;
  margin-left: 2px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin-bottom: 12px;
}
.form-grid .form-row { margin-bottom: 0; }
.form-row { margin-bottom: 12px; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.form-row label .subtle {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 12px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-soft);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #9aa6b3;
}
.form-row input:hover,
.form-row textarea:hover,
.form-row select:hover {
  border-color: #b9c4d2;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(31, 163, 232, 0.15);
}
.form-row textarea { min-height: 130px; resize: vertical; line-height: 1.5; }
.form-hint {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--text-muted);
}

/* Custom checkbox */
.form-row.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  margin-top: 4px;
  margin-bottom: 16px;
}
.form-row.checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid #b9c4d2;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form-row.checkbox input[type="checkbox"]:hover { border-color: var(--brand-blue); }
.form-row.checkbox input[type="checkbox"]:checked {
  background: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
}
.form-row.checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.form-row.checkbox label {
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}

/* Submit */
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(11, 107, 154, 0.25);
}
.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(11, 107, 154, 0.35);
}
.form-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(11, 107, 154, 0.25);
}
.btn-arrow { transition: transform 0.2s ease; }
.form-submit:hover .btn-arrow { transform: translateX(3px); }

/* ---------- Contact Form 7 integration ----------
 * CF7 emits its own <form class="wpcf7-form"> and wraps fields in
 * <span class="wpcf7-form-control-wrap">. The rules above already cascade
 * onto inputs/textarea inside .form-row, so the only extras needed are:
 *   - neutralise CF7's own form chrome (no double card)
 *   - make the field-wrap span transparent (block-level, full width)
 *   - style the [acceptance] checkbox (different DOM shape)
 *   - style validation/response messages with brand colors
 *   - apply submit visuals to <input type="submit">
 */
.contact-form .wpcf7-form {
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}
.contact-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
/* wpautop wraps each label in <p> and inserts <br> around the input.
 * Strip those so .form-row owns the spacing. */
.contact-form .form-row > p,
.contact-form .form-row p:has(> label) {
  margin: 0;
  padding: 0;
}
.contact-form .form-row label > br,
.contact-form .form-row label + br {
  display: none;
}
.contact-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: #c0392b;
}
.contact-form .wpcf7-form input[aria-invalid="true"],
.contact-form .wpcf7-form textarea[aria-invalid="true"] {
  border-color: #c0392b;
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.12);
}
.contact-form .wpcf7-response-output {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border-soft);
  background: var(--bg-soft);
  font-size: 14px;
}
.contact-form .wpcf7 form.sent .wpcf7-response-output,
.contact-form .wpcf7-mail-sent-ok {
  border-color: #2e8b57;
  background: #eaf6ef;
  color: #1f6b42;
}
.contact-form .wpcf7 form.invalid .wpcf7-response-output,
.contact-form .wpcf7 form.failed .wpcf7-response-output {
  border-color: #c0392b;
  background: #fbecea;
  color: #8c2a1f;
}
.contact-form .wpcf7-spinner { margin-left: 10px; }

/* CF7 acceptance / checkbox markup: <label><input><span>text</span></label> */
.contact-form .wpcf7-acceptance,
.contact-form .wpcf7-checkbox {
  display: block;
}
.contact-form .wpcf7-acceptance .wpcf7-list-item,
.contact-form .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
  display: block;
}
.contact-form .wpcf7-acceptance .wpcf7-list-item label,
.contact-form .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}
.contact-form .wpcf7-acceptance input[type="checkbox"],
.contact-form .wpcf7-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid #b9c4d2;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.contact-form .wpcf7-acceptance input[type="checkbox"]:checked,
.contact-form .wpcf7-checkbox input[type="checkbox"]:checked {
  background: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
}
.contact-form .wpcf7-acceptance input[type="checkbox"]:checked::after,
.contact-form .wpcf7-checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

/* Submit as <input type="submit"> — CF7 default. Arrow via background SVG. */
.contact-form input.wpcf7-submit,
.contact-form .wpcf7-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  padding: 14px 48px 14px 28px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--brand-blue-dark) url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat right 22px center;
  border: 2px solid var(--brand-blue-dark);
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(11, 107, 154, 0.25);
  transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, background-position 0.2s ease;
}
.contact-form input.wpcf7-submit:hover,
.contact-form .wpcf7-form input[type="submit"]:hover {
  background-color: var(--brand-blue-darker);
  border-color: var(--brand-blue-darker);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(11, 107, 154, 0.35);
  background-position: right 18px center;
}
.contact-form input.wpcf7-submit:active,
.contact-form .wpcf7-form input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(11, 107, 154, 0.25);
}

@media (max-width: 600px) {
  .contact-form { padding: 22px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .form-submit,
  .contact-form input.wpcf7-submit,
  .contact-form .wpcf7-form input[type="submit"] {
    width: 100%;
    justify-content: center;
  }
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: start;
}
.info-box {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px;
}
.info-box h3 { margin-top: 0; }
.info-box .row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
}
.info-box .row svg { flex: 0 0 auto; }
.info-box address { font-style: normal; line-height: 1.5; }

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-darker);
  color: var(--brand-silver);
  padding: 48px 20px 18px;
  margin-top: 60px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.footer-col h3 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer-col a { color: var(--brand-silver); display: block; padding: 4px 0; font-size: 14px; }
.footer-col a:hover { color: var(--brand-blue); text-decoration: none; }
.footer-col p { margin: 0 0 8px; font-size: 14px; }
.footer-col p:has(> .icon-phone),
.footer-col p:has(> .icon-mail) {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom {
  max-width: var(--max-width);
  margin: 32px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: #9aa6b5;
  text-align: center;
}

/* Print/utility */
.subtle { color: var(--text-muted); font-size: 14px; }
.draft-banner {
  background: #fff7e0;
  color: #7a5400;
  border-bottom: 1px solid #f3dfa2;
  text-align: center;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}
