/*
Theme Name: Red Heron Cybersecurity
Theme URI: https://redheroncybersecurity.com
Author: Red Heron Cybersecurity
Author URI: https://redheroncybersecurity.com
Description: A bespoke, mission-driven theme for Red Heron Cybersecurity — a new solo-founded cybersecurity company launching in Phnom Penh, Cambodia. Built to communicate trust through transparency and personal commitment, not fabricated longevity. Warm authority, not cold corporate.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: red-heron
Tags: custom-header, custom-menu, custom-logo, full-width-template, responsive-layout, one-column, two-columns, accessibility-ready, blog

--------------------------------------------------------------------------------
NOTE FROM THE DEVELOPER:
--------------------------------------------------------------------------------
This theme was built to solve a specific problem: most cybersecurity websites
look the same. Dark backgrounds, matrix rains, padlock icons, stock photos of
people in hoodies. They all communicate "we are serious hackers" when what
clients actually need to feel is "I can trust this person with my business."

Red Heron breaks that mold deliberately. The heron symbolizes patience,
precision, and strategic thinking — qualities that matter far more in real
security work than theatrics. The warm color palette (deep teal + amber) signals
professionalism AND optimism, which is exactly right for a founder who believes
cybersecurity is a public good, not a fear-based product.

The positioning (new, solo, mission-driven) is a strength, not a weakness.
Established firms compete on reputation they've spent decades building.
A new founder competes on something more powerful: a visible human being making
a genuine commitment. This theme makes that commitment legible and credible.
That's more authentic trust-building than any award badge or "20 years in
business" claim could ever achieve.
--------------------------------------------------------------------------------
*/

/* ==========================================================================
   TABLE OF CONTENTS
   1. Custom Properties (Design Tokens)
   2. Reset & Base
   3. Typography
   4. Layout & Grid
   5. Header & Navigation
   6. Hero Section
   7. Section: Trust / New Here
   8. Section: Why I Started This
   9. Section: Services
   10. Section: Contact CTA
   11. About Page
   12. Service Pages
   13. Blog
   14. Contact Page
   15. Footer
   16. Forms
   17. Utilities & Components
   18. Responsive
   ========================================================================== */

/* ==========================================================================
   1. CUSTOM PROPERTIES
   ========================================================================== */

:root {
  /* Brand Colors */
  --color-primary:       #2A3B4C;   /* Deep teal — authority, depth */
  --color-primary-dark:  #1C2A38;   /* Deeper teal for hover states */
  --color-primary-light: #3A7D7A;   /* Lighter teal for accents */
  --color-accent:        #D98C5F;   /* Amber — optimism, energy */
  --color-accent-dark:   #B87348;   /* Darker amber for hover */
  --color-accent-light:  #EBB08A;   /* Lighter amber for subtle use */

  /* Neutral Palette */
  --color-slate-900: #0f1923;   /* Near-black backgrounds */
  --color-slate-800: #1c2c3a;   /* Dark sections */
  --color-slate-700: #2e4459;   /* Borders on dark */
  --color-slate-500: #5a7a90;   /* Muted text on dark */
  --color-slate-300: #a8c0cf;   /* Secondary text on dark */
  --color-slate-100: #F0EDE6;   /* Light backgrounds */
  --color-slate-50:  #F8F6F0;   /* Lightest background */
  --color-white:     #ffffff;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;

  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg:   1.125rem;  /* 18px */
  --text-xl:   1.25rem;   /* 20px */
  --text-2xl:  1.5rem;    /* 24px */
  --text-3xl:  1.875rem;  /* 30px */
  --text-4xl:  2.25rem;   /* 36px */
  --text-5xl:  3rem;      /* 48px */
  --text-6xl:  3.75rem;   /* 60px */

  --leading-tight:   1.25;
  --leading-snug:    1.375;
  --leading-normal:  1.5;
  --leading-relaxed: 1.625;
  --leading-loose:   2;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-max:    1200px;
  --container-wide:   1400px;
  --container-narrow: 760px;
  --container-xs:     560px;

  /* Border Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(15, 25, 35, 0.08), 0 1px 2px rgba(15, 25, 35, 0.05);
  --shadow-md:  0 4px 12px rgba(15, 25, 35, 0.12), 0 2px 6px rgba(15, 25, 35, 0.08);
  --shadow-lg:  0 10px 30px rgba(15, 25, 35, 0.15), 0 4px 12px rgba(15, 25, 35, 0.10);
  --shadow-xl:  0 20px 60px rgba(15, 25, 35, 0.20), 0 8px 24px rgba(15, 25, 35, 0.12);
  --shadow-glow: 0 0 30px rgba(232, 146, 42, 0.25);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;
  --transition-spring: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Customizer-overridable variables (will be replaced by PHP) */
  --customizer-primary: var(--color-primary);
  --customizer-accent:  var(--color-accent);
  --customizer-font-heading: var(--font-heading);
  --customizer-font-body:    var(--font-body);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--customizer-font-body, var(--font-body));
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-slate-800);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--customizer-primary, var(--color-primary));
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-primary-light);
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
}

:focus-visible {
  outline: 2px solid var(--customizer-accent, var(--color-accent));
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection {
  background: rgba(232, 146, 42, 0.25);
  color: var(--color-slate-900);
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--customizer-font-heading, var(--font-heading));
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--color-slate-900);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl)); }
h2 { font-size: clamp(var(--text-2xl), 4vw, var(--text-5xl)); }
h3 { font-size: clamp(var(--text-xl), 3vw, var(--text-3xl)); }
h4 { font-size: clamp(var(--text-lg), 2.5vw, var(--text-2xl)); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-4);
  line-height: var(--leading-relaxed);
}

p:last-child {
  margin-bottom: 0;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
  margin-bottom: var(--space-5);
}

.entry-content ul,
.entry-content ol {
  padding-left: var(--space-6);
  list-style: revert;
}

.entry-content h2 { margin-top: var(--space-10); margin-bottom: var(--space-4); }
.entry-content h3 { margin-top: var(--space-8);  margin-bottom: var(--space-3); }

blockquote {
  border-left: 4px solid var(--customizer-accent, var(--color-accent));
  padding: var(--space-4) var(--space-6);
  margin: var(--space-8) 0;
  font-family: var(--customizer-font-heading, var(--font-heading));
  font-size: var(--text-xl);
  font-style: italic;
  line-height: var(--leading-snug);
  color: var(--color-primary);
  background: var(--color-slate-50);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

code, pre {
  font-family: var(--font-mono);
  font-size: 0.9em;
}

pre {
  background: var(--color-slate-800);
  color: var(--color-slate-100);
  padding: var(--space-6);
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin: var(--space-6) 0;
}

hr {
  border: none;
  border-top: 1px solid var(--color-slate-100);
  margin: var(--space-10) 0;
}

/* ==========================================================================
   4. LAYOUT & GRID
   ========================================================================== */

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.container--wide   { max-width: var(--container-wide); }
.container--narrow { max-width: var(--container-narrow); }
.container--xs     { max-width: var(--container-xs); }

.section {
  padding-block: var(--space-20);
}

.section--lg {
  padding-block: var(--space-32);
}

.section--sm {
  padding-block: var(--space-12);
}

.section--dark {
  background: var(--color-slate-900);
  color: var(--color-slate-100);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section--teal {
  background: var(--customizer-primary, var(--color-primary));
  color: var(--color-slate-100);
}

.section--teal h1,
.section--teal h2,
.section--teal h3 {
  color: var(--color-white);
}

.section--light {
  background: var(--color-slate-50);
}

.grid {
  display: grid;
  gap: var(--space-6);
}

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

.flex { display: flex; }
.flex--center   { align-items: center; justify-content: center; }
.flex--between  { align-items: center; justify-content: space-between; }
.flex--gap-4    { gap: var(--space-4); }
.flex--gap-6    { gap: var(--space-6); }
.flex--col      { flex-direction: column; }

/* ==========================================================================
   5. HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 74, 94, 0.1);
  transition: box-shadow var(--transition-base);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}

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

.site-branding {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.site-logo svg {
  width: 40px;
  height: 40px;
}

.site-name {
  font-family: var(--customizer-font-heading, var(--font-heading));
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-primary);
  line-height: 1.2;
}

.site-name span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-xs);
  color: var(--color-slate-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.main-navigation a {
  display: block;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-slate-700);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  letter-spacing: 0.01em;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current-page-ancestor > a {
  color: var(--customizer-primary, var(--color-primary));
  background: rgba(26, 74, 94, 0.07);
}

.main-navigation .has-children {
  position: relative;
}

.main-navigation .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--color-white);
  border: 1px solid var(--color-slate-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-base);
  flex-direction: column;
  gap: 0;
}

.main-navigation .has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-navigation .sub-menu a {
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-slate-700);
  border-radius: var(--radius-md);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: var(--customizer-accent, var(--color-accent));
  color: var(--color-white) !important;
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
  transition: all var(--transition-spring);
  box-shadow: 0 2px 8px rgba(232, 146, 42, 0.3);
}

.header-cta:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 146, 42, 0.4);
  color: var(--color-white);
}

/* Mobile Navigation */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 35, 0.5);
  z-index: 98;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: var(--color-white);
  z-index: 99;
  padding: var(--space-8) var(--space-6);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  box-shadow: var(--shadow-xl);
}

body.mobile-menu-open .mobile-nav { transform: translateX(0); }
body.mobile-menu-open .mobile-menu-overlay { opacity: 1; }

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-slate-900);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(26, 74, 94, 0.6) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(232, 146, 42, 0.12) 0%, transparent 60%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: var(--space-24);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  background: rgba(232, 146, 42, 0.15);
  border: 1px solid rgba(232, 146, 42, 0.4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-white);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
}

.hero-title em {
  font-style: normal;
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));
  line-height: var(--leading-relaxed);
  color: var(--color-slate-300);
  margin-bottom: var(--space-8);
  max-width: 540px;
}

.hero-tagline {
  font-family: var(--customizer-font-heading, var(--font-heading));
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-accent-light);
  margin-bottom: var(--space-10);
  padding-left: var(--space-4);
  border-left: 3px solid var(--color-accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-heron-mark {
  width: min(360px, 100%);
  opacity: 0.15;
  filter: drop-shadow(0 0 40px rgba(26, 74, 94, 0.6));
}

/* ==========================================================================
   7. SECTION: TRUST / NEW HERE
   ========================================================================== */

.trust-section {
  padding-block: var(--space-20);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-slate-100);
}

.trust-section .section-label {
  color: var(--color-accent);
}

.trust-statement {
  font-family: var(--customizer-font-heading, var(--font-heading));
  font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
  line-height: var(--leading-snug);
  color: var(--color-primary);
  font-style: italic;
  border-left: 4px solid var(--color-accent);
  padding-left: var(--space-8);
  margin-block: var(--space-8);
}

.trust-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.trust-pillar {
  padding: var(--space-6);
  border: 1px solid var(--color-slate-100);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.trust-pillar:hover {
  border-color: rgba(26, 74, 94, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.trust-pillar-icon {
  width: 48px;
  height: 48px;
  background: rgba(26, 74, 94, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}

.trust-pillar h4 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--color-slate-800);
}

.trust-pillar p {
  font-size: var(--text-sm);
  color: var(--color-slate-500);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* ==========================================================================
   8. SECTION: WHY I STARTED THIS
   ========================================================================== */

.story-section {
  background: var(--color-slate-900);
  color: var(--color-slate-300);
  padding-block: var(--space-24);
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 74, 94, 0.4) 0%, transparent 70%);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.story-section h2 {
  color: var(--color-white);
}

.story-section .section-label {
  color: var(--color-accent);
}

.story-section p {
  color: var(--color-slate-300);
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
}

.story-accent {
  font-family: var(--customizer-font-heading, var(--font-heading));
  font-size: var(--text-2xl);
  font-style: italic;
  color: var(--color-accent-light);
  line-height: var(--leading-snug);
  margin-block: var(--space-6);
}

.story-visual {
  position: relative;
}

.story-visual img {
  border-radius: var(--radius-xl);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}

.story-caption {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  right: var(--space-6);
  background: rgba(15, 25, 35, 0.9);
  backdrop-filter: blur(8px);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--text-sm);
  color: var(--color-slate-300);
}

/* ==========================================================================
   9. SECTION: SERVICES
   ========================================================================== */

.services-section {
  padding-block: var(--space-24);
  background: var(--color-slate-50);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-16);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--customizer-primary, var(--color-primary));
  margin-bottom: var(--space-3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-slate-100);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-slow);
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  border-color: rgba(26, 74, 94, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card--featured {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.service-card--featured .service-card-title,
.service-card--featured .service-card-desc {
  color: var(--color-white);
}

.service-card--featured .service-card-desc {
  color: var(--color-slate-300);
}

.service-card--featured::before {
  background: var(--color-accent);
}

.service-free-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  background: var(--color-accent);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  background: rgba(26, 74, 94, 0.08);
  color: var(--color-primary);
}

.service-card--featured .service-card-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.service-card-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-slate-900);
}

.service-card-desc {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-slate-500);
  margin-bottom: var(--space-5);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--customizer-primary, var(--color-primary));
  transition: gap var(--transition-base);
}

.service-card--featured .service-card-link {
  color: var(--color-accent-light);
}

.service-card:hover .service-card-link {
  gap: var(--space-3);
}

/* ==========================================================================
   10. SECTION: CONTACT CTA
   ========================================================================== */

.cta-section {
  background: linear-gradient(135deg, var(--customizer-primary, var(--color-primary)) 0%, var(--color-primary-dark) 100%);
  padding-block: var(--space-20);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.cta-section p {
  color: var(--color-slate-300);
  font-size: var(--text-xl);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

/* ==========================================================================
   11. ABOUT PAGE
   ========================================================================== */

.page-hero {
  background: var(--color-slate-900);
  color: var(--color-white);
  padding-block: var(--space-20);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 80% 50%, rgba(26, 74, 94, 0.5), transparent);
}

.page-hero .container { position: relative; }

.page-hero-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.page-hero h1 { color: var(--color-white); }

.page-hero-sub {
  font-size: var(--text-xl);
  color: var(--color-slate-300);
  max-width: 600px;
  margin-top: var(--space-4);
}

.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-16);
  align-items: start;
}

.about-sidebar {
  position: sticky;
  top: 100px;
}

.about-card {
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-100);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-bottom: var(--space-6);
}

.about-card h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
}

.credentials-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-slate-100);
  font-size: var(--text-sm);
  color: var(--color-slate-600);
}

.credentials-list li:last-child { border-bottom: none; }

.credentials-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(26, 74, 94, 0.1);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ==========================================================================
   12. SERVICE PAGES
   ========================================================================== */

.service-page .service-intro {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  color: var(--color-primary);
  font-family: var(--customizer-font-heading, var(--font-heading));
  font-style: italic;
  max-width: var(--container-narrow);
  margin-bottom: var(--space-10);
}

.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-block: var(--space-12);
}

.service-feature {
  padding: var(--space-6);
  background: var(--color-slate-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-slate-100);
}

.service-feature h4 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-slate-800);
  margin-bottom: var(--space-2);
}

.service-feature p {
  font-size: var(--text-sm);
  color: var(--color-slate-500);
  margin: 0;
}

.free-service-banner {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: var(--color-white);
  padding: var(--space-10);
  border-radius: var(--radius-xl);
  text-align: center;
  margin-block: var(--space-12);
}

.free-service-banner h3 {
  color: var(--color-white);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.free-service-banner p {
  font-size: var(--text-xl);
  opacity: 0.9;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 0;
}

/* ==========================================================================
   13. BLOG
   ========================================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-8);
}

.post-card {
  background: var(--color-white);
  border: 1px solid var(--color-slate-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(26, 74, 94, 0.15);
}

.post-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.post-card-body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-slate-500);
  margin-bottom: var(--space-3);
}

.post-card-cat {
  padding: 2px var(--space-2);
  background: rgba(26, 74, 94, 0.08);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
}

.post-card-title {
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: var(--leading-snug);
  margin-bottom: var(--space-3);
  color: var(--color-slate-900);
}

.post-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

.post-card-title a:hover { color: var(--color-primary); }

.post-card-excerpt {
  font-size: var(--text-sm);
  color: var(--color-slate-500);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
  flex: 1;
}

.post-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  transition: gap var(--transition-base);
}

.post-card:hover .post-card-link { gap: var(--space-3); }

/* Single Post */
.single-post .entry-header { margin-bottom: var(--space-10); }
.single-post .entry-title { margin-bottom: var(--space-4); }
.single-post .entry-meta {
  display: flex;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-slate-500);
}

/* ==========================================================================
   14. CONTACT PAGE
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.contact-info h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.contact-info p {
  font-size: var(--text-lg);
  color: var(--color-slate-600);
  line-height: var(--leading-relaxed);
}

.contact-methods {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--color-slate-50);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--color-slate-700);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.contact-method:hover {
  border-color: rgba(26, 74, 94, 0.2);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  color: var(--color-primary);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(26, 74, 94, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ==========================================================================
   15. FOOTER
   ========================================================================== */

.site-footer {
  background: var(--color-slate-900);
  color: var(--color-slate-400);
  padding-top: var(--space-16);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .site-name {
  color: var(--color-white);
  font-size: var(--text-xl);
}

.footer-tagline {
  font-family: var(--customizer-font-heading, var(--font-heading));
  font-style: italic;
  color: var(--color-slate-400);
  font-size: var(--text-base);
  line-height: var(--leading-snug);
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
}

.footer-mission {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-slate-500);
}

.footer-col h5 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col a {
  font-size: var(--text-sm);
  color: var(--color-slate-500);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-col a:hover {
  color: var(--color-accent-light);
}

.footer-bottom {
  padding-block: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copy {
  font-size: var(--text-sm);
  color: var(--color-slate-600);
}

.footer-country {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-slate-600);
}

/* ==========================================================================
   16. FORMS
   ========================================================================== */

.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-slate-700);
  margin-bottom: var(--space-2);
}

.form-control {
  display: block;
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-slate-800);
  background: var(--color-white);
  border: 1.5px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--customizer-primary, var(--color-primary));
  box-shadow: 0 0 0 3px rgba(26, 74, 94, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235a7a90'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
  background-size: 16px;
  padding-right: var(--space-10);
}

/* ==========================================================================
   17. UTILITIES & COMPONENTS
   ========================================================================== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-spring);
  white-space: nowrap;
}

.btn-primary {
  background: var(--customizer-accent, var(--color-accent));
  color: var(--color-white);
  border-color: var(--customizer-accent, var(--color-accent));
  box-shadow: 0 4px 14px rgba(232, 146, 42, 0.3);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 146, 42, 0.4);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--color-white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--customizer-primary, var(--color-primary));
  border-color: var(--customizer-primary, var(--color-primary));
}

.btn-outline-dark:hover {
  background: var(--customizer-primary, var(--color-primary));
  color: var(--color-white);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 3px var(--space-3);
  font-size: var(--text-xs);
  font-weight: 700;
  border-radius: var(--radius-full);
}

.badge-accent {
  background: rgba(232, 146, 42, 0.12);
  color: var(--color-accent-dark);
  border: 1px solid rgba(232, 146, 42, 0.3);
}

.badge-primary {
  background: rgba(26, 74, 94, 0.08);
  color: var(--color-primary);
  border: 1px solid rgba(26, 74, 94, 0.2);
}

/* Text Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-accent  { color: var(--color-accent); }
.text-muted   { color: var(--color-slate-500); }
.text-white   { color: var(--color-white); }

.mt-0  { margin-top: 0; }
.mb-0  { margin-bottom: 0; }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: var(--space-3) var(--space-6);
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 600;
  z-index: 999;
}

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

/* Breadcrumbs */
.breadcrumbs {
  padding: var(--space-4) 0;
  font-size: var(--text-sm);
  color: var(--color-slate-500);
}

.breadcrumbs a {
  color: var(--color-slate-500);
  text-decoration: none;
}

.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumbs span + span::before { content: ' / '; }

/* Divider */
.divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-block: var(--space-8);
  color: var(--color-slate-300);
  font-size: var(--text-sm);
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-slate-100);
}

/* ==========================================================================
   18. RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .story-grid    { grid-template-columns: 1fr; gap: var(--space-10); }
  .footer-main   { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .about-grid    { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .contact-grid  { grid-template-columns: 1fr; }
  .hero-inner    { grid-template-columns: 1fr; }
  .hero-visual   { display: none; }
}

@media (max-width: 768px) {
  .main-navigation, .header-cta { display: none; }
  .menu-toggle  { display: flex; }
  .mobile-nav   { display: flex; flex-direction: column; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer-main  { grid-template-columns: 1fr; }

  .hero         { min-height: 80vh; }
  .section      { padding-block: var(--space-14); }
  .section--lg  { padding-block: var(--space-20); }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container { padding-inline: var(--space-4); }
  .btn-lg { padding: var(--space-3) var(--space-6); font-size: var(--text-base); }
}

/* Print */
@media print {
  .site-header, .site-footer, .hero, .cta-section { display: none; }
  body { color: #000; font-size: 12pt; }
  a[href]::after { content: " (" attr(href) ")"; }
}
