/* ==========================================================================
   Wingette, Bodgit & Scarper Ltd — Corporate Website Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700&display=swap');

/* --------------------------------------------------------------------------
   1. CSS Variables
   -------------------------------------------------------------------------- */
:root {
  --navy:       #1C3F6E;
  --navy-dark:  #122A4A;
  --navy-light: #2A5399;
  --gold:       #C8841A;
  --gold-light: #E09A2A;
  --white:      #FFFFFF;
  --off-white:  #F4F6F9;
  --light-gray: #E8ECF2;
  --mid-gray:   #6B7A94;
  --dark-text:  #1E2A3A;
  --body-text:  #3D4D60;
  --border:     #D8E0EA;
  --shadow-sm:  0 1px 4px rgba(28,63,110,0.08);
  --shadow-md:  0 4px 16px rgba(28,63,110,0.12);
  --shadow-lg:  0 8px 32px rgba(28,63,110,0.16);
  --radius:     6px;
  --radius-lg:  12px;
  --transition: 0.25s ease;
  --font-body:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --max-width:  1200px;
  --header-h:   72px;
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  color: var(--dark-text);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

.serif { font-family: var(--font-serif); }
.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

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

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

.section { padding: 80px 0; }
.section--gray { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.85); }
.section--navy .eyebrow { color: var(--gold-light); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.1rem; color: var(--mid-gray); }

.grid { display: grid; gap: 2rem; }
.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; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

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

/* --------------------------------------------------------------------------
   6. Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.05em;
  flex-shrink: 0;
}

/* If a logo image is provided, it replaces the logo-mark */
.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-text);
  letter-spacing: -0.01em;
}
.logo-text span {
  font-size: 0.68rem;
  color: var(--mid-gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.nav-links a {
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--body-text);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--off-white);
}

.nav-links a.nav-cta {
  background: var(--gold);
  color: var(--white);
  margin-left: 0.5rem;
}
.nav-links a.nav-cta:hover {
  background: var(--gold-light);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-text);
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
}
.mobile-menu a {
  display: block;
  padding: 0.65rem 0;
  font-weight: 500;
  border-bottom: 1px solid var(--light-gray);
  color: var(--body-text);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: block; }

/* --------------------------------------------------------------------------
   7. Hero Sections
   -------------------------------------------------------------------------- */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(200,132,26,0.12) 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

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

.hero-content .eyebrow { color: var(--gold-light); }
.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-content p { color: rgba(255,255,255,0.82); font-size: 1.15rem; margin-bottom: 2rem; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--navy);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy-light));
}

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.1rem; max-width: 640px; }
.page-hero .breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.55); }
.page-hero .breadcrumb a:hover { color: var(--gold-light); }

/* --------------------------------------------------------------------------
   8. Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--light-gray);
}

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

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

.card-body { padding: 1.5rem; }
.card-body h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.card-body p { font-size: 0.93rem; color: var(--mid-gray); margin-bottom: 1rem; }

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--mid-gray);
  margin-bottom: 0.75rem;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--navy);
}

.tag-gold {
  background: rgba(200,132,26,0.1);
  border-color: rgba(200,132,26,0.3);
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   9. Service Cards
   -------------------------------------------------------------------------- */
.service-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon svg { fill: none; stroke: white; stroke-width: 1.5; }

.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { color: var(--mid-gray); font-size: 0.95rem; flex-grow: 1; margin-bottom: 1.5rem; }
.service-card .link-arrow {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}
.service-card .link-arrow:hover { color: var(--gold); gap: 0.65rem; }

/* --------------------------------------------------------------------------
   10. Team / Profile
   -------------------------------------------------------------------------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 1.25rem;
  overflow: hidden;
  position: relative;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
}

/* Different avatar accent colours for visual variety */
.avatar-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.avatar-slate { background: linear-gradient(135deg, #3D5A80, #5B8AB5); }
.avatar-teal  { background: linear-gradient(135deg, #1A6B6B, #259B9B); }
.avatar-rust  { background: linear-gradient(135deg, #8B3A2A, #C25940); }
.avatar-deep  { background: linear-gradient(135deg, #2C2C6C, #4A4AA0); }
.avatar-green { background: linear-gradient(135deg, #2A6041, #3A8A5C); }
.avatar-plum  { background: linear-gradient(135deg, #5C2A6C, #8A3A9E); }

.team-card h4 { margin-bottom: 0.2rem; font-size: 1.05rem; }
.team-card .role {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  display: block;
}
.team-card .division {
  font-size: 0.8rem;
  color: var(--mid-gray);
  margin-bottom: 1rem;
  display: block;
}
.team-card p { font-size: 0.88rem; color: var(--body-text); text-align: left; }

/* Killian special treatment - slightly more verbose card */
.team-card.killian { border-top: 3px solid var(--gold); }

/* --------------------------------------------------------------------------
   11. Stats / Metrics Bar
   -------------------------------------------------------------------------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--navy-dark);
}

.stat-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
  font-family: var(--font-serif);
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   12. Case Study Cards (Work page)
   -------------------------------------------------------------------------- */
.case-study-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
  transition: box-shadow var(--transition);
}

.case-study-card:nth-child(even) { direction: rtl; }
.case-study-card:nth-child(even) > * { direction: ltr; }

.case-study-card:hover { box-shadow: var(--shadow-lg); }

.cs-image {
  overflow: hidden;
  min-height: 320px;
}
.cs-image img { width: 100%; height: 100%; object-fit: cover; }

.cs-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cs-meta { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.cs-content h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.cs-content p { color: var(--mid-gray); margin-bottom: 1.5rem; }

.cs-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}
.cs-outcome-item strong {
  display: block;
  font-size: 1.6rem;
  color: var(--gold);
  font-family: var(--font-serif);
  line-height: 1;
}
.cs-outcome-item span {
  font-size: 0.78rem;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   13. Insights / Blog
   -------------------------------------------------------------------------- */
.insight-card {
  display: flex;
  flex-direction: column;
}
.insight-card .card-image { aspect-ratio: 3/2; }

.author-line {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-size: 0.82rem; font-weight: 600; color: var(--dark-text); }
.author-role { font-size: 0.75rem; color: var(--mid-gray); }

/* --------------------------------------------------------------------------
   14. Careers
   -------------------------------------------------------------------------- */
.job-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  transition: all var(--transition);
  margin-bottom: 1rem;
}
.job-card:hover { box-shadow: var(--shadow-md); border-color: var(--navy); }

.job-info h4 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.job-tags { display: flex; gap: 0.5rem; margin-top: 0.6rem; flex-wrap: wrap; }
.job-card .btn { flex-shrink: 0; }

/* --------------------------------------------------------------------------
   15. Contact
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.office-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  margin-bottom: 1.25rem;
}

.office-card h4 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.office-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.office-card address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--body-text);
  line-height: 1.7;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-text);
  background: var(--white);
  margin-bottom: 1rem;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(28,63,110,0.08);
}

.contact-form textarea { resize: vertical; min-height: 130px; }

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

/* --------------------------------------------------------------------------
   16. Testimonial / Pull Quote
   -------------------------------------------------------------------------- */
.pull-quote {
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.pull-quote p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}
.pull-quote cite { font-size: 0.85rem; color: var(--mid-gray); font-style: normal; }

/* --------------------------------------------------------------------------
   17. Accreditations / Logos Strip
   -------------------------------------------------------------------------- */
.accreditations {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.accreditations-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}
.accred-item {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mid-gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-mark { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-address {
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.footer-address strong {
  display: block;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* --------------------------------------------------------------------------
   19. Placeholder Images
   -------------------------------------------------------------------------- */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, rgba(200,132,26,0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.img-placeholder--light {
  background: linear-gradient(135deg, #D8E0EA 0%, #B8C8DC 100%);
  color: rgba(28,63,110,0.35);
}

/* --------------------------------------------------------------------------
   20. Utilities & Misc
   -------------------------------------------------------------------------- */
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.text-gold    { color: var(--gold); }
.text-navy    { color: var(--navy); }
.text-muted   { color: var(--mid-gray); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.divider {
  height: 1px;
  background: var(--border);
  margin: 2.5rem 0;
}

.notice {
  background: rgba(200,132,26,0.08);
  border: 1px solid rgba(200,132,26,0.25);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: var(--body-text);
}

/* Irish language badge */
.gaeltacht-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   21. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image { max-width: 500px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .case-study-card { grid-template-columns: 1fr; direction: ltr !important; }
  .case-study-card:nth-child(even) { direction: ltr; }
  .cs-image { min-height: 220px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  :root { --header-h: 64px; }
  .section { padding: 56px 0; }
  .hero { padding: 72px 0 56px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; }
  .container { padding: 0 1.25rem; }
  .cs-content { padding: 2rem; }
}
