/*
Theme Name: Sentinel Shield
Theme URI: https://sentinelshield.co.uk
Author: Sentinel Shield Security Ltd
Author URI: https://sentinelshield.co.uk
Description: A corporate, authoritative security company theme featuring dark navy and steel grey design. Built for crowd screening and event security businesses.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sentinel-shield
Tags: business, corporate, dark, security, one-page, full-width-template
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --navy:           #0B1F3A;
  --navy-mid:       #112A4E;
  --navy-light:     #1A3A66;
  --steel:          #8A9BB0;
  --steel-light:    #B8C6D6;
  --accent:         #2A7FD4;
  --accent-bright:  #3D99F5;
  --slate:          #1E2C3D;
  --off-white:      #F0F4F8;
  --white:          #FFFFFF;
  --text-muted:     #7A8FA3;
  --border:         rgba(255, 255, 255, 0.08);
  --border-light:   rgba(42, 127, 212, 0.25);
  --dark-bg:        #060F1D;
  --font-main:      'Barlow', sans-serif;
  --font-display:   'Barlow Condensed', sans-serif;
  --transition:     0.25s ease;
  --max-width:      1280px;
  --section-pad:    6rem 4rem;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--navy);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.5px;
}

h1 { font-size: clamp(52px, 8vw, 88px); }
h2 { font-size: clamp(36px, 5vw, 56px); }
h3 { font-size: clamp(20px, 3vw, 28px); }
h4 { font-size: 18px; font-weight: 700; }

p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--steel-light);
  font-weight: 300;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-pad);
}

.section--slate { background-color: var(--slate); }
.section--dark  { background-color: var(--dark-bg); }
.section--navy  { background-color: var(--navy); }

.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent-bright);
  flex-shrink: 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--accent-bright);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
}

.btn--ghost {
  background: transparent;
  color: var(--accent-bright);
  padding: 0;
  letter-spacing: 2px;
  font-size: 12px;
}

.btn--ghost:hover {
  gap: 14px;
  color: var(--accent-bright);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 31, 58, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}

#site-header.scrolled {
  background: rgba(11, 31, 58, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__icon {
  width: 38px;
  height: 38px;
}

.site-logo__text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}

.site-logo__text span {
  color: var(--accent-bright);
}

/* Primary Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.primary-nav a {
  color: var(--steel-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.primary-nav a:hover,
.primary-nav a.current-menu-item {
  color: var(--white);
  border-bottom-color: var(--accent-bright);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-light);
  color: var(--white);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 4rem 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #070F1E 0%, #0B1F3A 50%, #112A4E 100%);
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--accent) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__accent-line {
  position: absolute;
  top: 0;
  right: 30%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(42, 127, 212, 0.3), transparent);
  pointer-events: none;
}

.hero__bg-shield {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.05;
  pointer-events: none;
}

.hero__content {
  position: relative;
  max-width: 780px;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-light);
  padding: 7px 18px;
  margin-bottom: 2rem;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-bright);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.8); }
}

.hero__badge-text {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-bright);
  font-weight: 600;
}

.hero__title {
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero__title em {
  color: var(--accent-bright);
  font-style: normal;
  display: block;
}

.hero__subtitle {
  font-size: 17px;
  color: var(--steel-light);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero__stats {
  display: flex;
  gap: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero__stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 5px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--slate);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 4rem;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--steel);
}

.trust-bar__sep {
  width: 1px;
  height: 22px;
  background: var(--border);
  flex-shrink: 0;
}

.trust-bar__icon {
  width: 16px;
  height: 16px;
  color: var(--accent-bright);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  background: var(--navy);
}

.services__header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.services__header h2 {
  margin-top: 0.5rem;
  line-height: 1.05;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.service-card {
  background: var(--navy-mid);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background var(--transition);
}

.service-card:hover {
  background: var(--navy-light);
}

.service-card:hover::before {
  background: var(--accent-bright);
}

.service-card__number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.service-card__icon-wrap {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: border-color var(--transition);
}

.service-card:hover .service-card__icon-wrap {
  border-color: rgba(61, 153, 245, 0.5);
}

.service-card__icon {
  width: 26px;
  height: 26px;
  stroke: var(--accent-bright);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.5rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-bright);
  transition: gap var(--transition);
}

.service-card__link:hover {
  gap: 12px;
  color: var(--accent-bright);
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-us {
  background: var(--slate);
}

.why-us__visual {
  position: relative;
}

.metrics-box {
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  position: relative;
}

/* Corner brackets */
.metrics-box::before,
.metrics-box::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
}

.metrics-box::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--accent-bright);
  border-left: 2px solid var(--accent-bright);
}

.metrics-box::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--accent-bright);
  border-right: 2px solid var(--accent-bright);
}

.metrics-box__corner-tr,
.metrics-box__corner-bl {
  position: absolute;
  width: 18px;
  height: 18px;
}

.metrics-box__corner-tr {
  top: -1px;
  right: -1px;
  border-top: 2px solid var(--accent-bright);
  border-right: 2px solid var(--accent-bright);
}

.metrics-box__corner-bl {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid var(--accent-bright);
  border-left: 2px solid var(--accent-bright);
}

.metric-item {
  text-align: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.metric-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.metric-item:first-child {
  padding-top: 0;
}

.metric-item__value {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent-bright);
  line-height: 1;
}

.metric-item__label {
  font-size: 13px;
  color: var(--steel-light);
  letter-spacing: 1px;
  margin-top: 6px;
}

.why-us__points {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.why-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-point__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--accent-bright);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-point__content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  text-transform: none;
  font-family: var(--font-main);
  letter-spacing: 0;
}

.why-point__content p {
  font-size: 14px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  background: var(--navy);
}

.about__content h2 {
  margin-bottom: 1.5rem;
}

.about__content p {
  margin-bottom: 1.25rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.team-card {
  background: var(--slate);
  border: 1px solid var(--border);
  padding: 1.25rem;
  transition: border-color var(--transition);
}

.team-card:hover {
  border-color: var(--border-light);
}

.team-card__avatar {
  width: 46px;
  height: 46px;
  background: var(--navy-light);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--accent-bright);
  margin-bottom: 0.75rem;
}

.team-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-main);
}

.team-card__role {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--slate);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  transition: border-color var(--transition);
}

.cert-item:hover {
  border-color: var(--border-light);
}

.cert-item__bar {
  width: 3px;
  height: 44px;
  background: var(--accent);
  flex-shrink: 0;
}

.cert-item__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.cert-item__desc {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  background: var(--slate);
}

.contact__info h2 {
  margin-bottom: 1.5rem;
}

.contact__info > p {
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-detail__icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-bright);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail__label {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-detail__value {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

/* Quote Form */
.quote-form-wrap {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  padding: 2.5rem;
}

.quote-form__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A8FA3' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.btn--submit {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 16px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 0.5rem;
}

.btn--submit:hover {
  background: var(--accent-bright);
}

/* Form success message */
.form-success {
  display: none;
  background: rgba(42, 127, 212, 0.1);
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  text-align: center;
  color: var(--accent-bright);
  font-size: 14px;
  margin-top: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--dark-bg);
  padding: 4rem 4rem 2rem;
  border-top: 1px solid var(--border);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 280px;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__col ul li a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color var(--transition);
}

.footer__col ul li a:hover {
  color: var(--accent-bright);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright {
  font-size: 12px;
  color: var(--text-muted);
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

/* Social Links */
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer__social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer__social a:hover {
  border-color: var(--border-light);
  background: rgba(42, 127, 212, 0.1);
}

.footer__social svg {
  width: 14px;
  height: 14px;
  fill: var(--text-muted);
  transition: fill var(--transition);
}

.footer__social a:hover svg {
  fill: var(--accent-bright);
}

/* ============================================================
   PAGE BANNER (Interior pages)
   ============================================================ */
.page-banner {
  background: linear-gradient(135deg, #070F1E 0%, #0B1F3A 60%, #112A4E 100%);
  padding: 9rem 4rem 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-banner__grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--accent) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-banner__content {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-banner h1 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 1rem;
}

.page-banner__sub {
  font-size: 16px;
  color: var(--steel-light);
  max-width: 560px;
}

/* ============================================================
   SINGLE SERVICE PAGE
   ============================================================ */
.service-detail {
  background: var(--navy);
  padding: var(--section-pad);
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-detail__body h2 {
  font-size: 32px;
  margin: 2rem 0 1rem;
}

.service-detail__body p {
  margin-bottom: 1.25rem;
}

.service-detail__sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-cta-box {
  background: var(--navy-mid);
  border: 1px solid var(--border-light);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.sidebar-cta-box h3 {
  font-size: 20px;
  margin-bottom: 1rem;
  color: var(--white);
}

.sidebar-cta-box p {
  font-size: 13px;
  margin-bottom: 1.5rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  background: var(--navy);
  padding: var(--section-pad);
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ============================================================
   WORDPRESS SPECIFIC
   ============================================================ */
/* Alignment classes */
.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { margin: 0 auto 1rem; display: block; }
.alignwide  { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull  { max-width: none; }

/* Captions */
.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-align: center;
}

/* Screen reader text */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: var(--white);
  padding: 8px 16px;
  z-index: 10000;
  font-size: 14px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* WP Admin Bar offset */
.admin-bar #site-header {
  top: 32px;
}

/* Gutenberg block styles */
.wp-block-button__link {
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 0;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 5rem 2.5rem;
  }

  .header-inner { padding: 0 2.5rem; }
  .hero { padding: 5rem 2.5rem 4rem; }
  .trust-bar { padding: 1.5rem 2.5rem; }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-pad: 4rem 1.5rem;
  }

  .header-inner { padding: 0 1.5rem; }

  .primary-nav { display: none; }
  .header-cta .btn { display: none; }
  .menu-toggle { display: flex; }

  /* Mobile nav open state */
  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy-mid);
    border-top: 1px solid var(--border);
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    z-index: 999;
  }

  .primary-nav.is-open a {
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
  }

  .header-cta .btn--primary { display: block; }

  .hero { padding: 6rem 1.5rem 4rem; }
  .hero__stats { gap: 2rem; flex-wrap: wrap; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }
  .hero__bg-shield { display: none; }

  .trust-bar { padding: 1.5rem; }
  .trust-bar__inner { justify-content: flex-start; }
  .trust-bar__sep { display: none; }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-us__visual { order: -1; }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #site-footer {
    padding: 3rem 1.5rem 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-page__grid,
  .service-detail__grid {
    grid-template-columns: 1fr;
  }

  .service-detail__sidebar {
    position: static;
  }

  .page-banner {
    padding: 8rem 1.5rem 3rem;
  }
}
