:root {
  --fwuk-bg: #f5f6fb;
  --fwuk-surface: #ffffff;
  --fwuk-text-main: #111827;
  --fwuk-text-muted: #6b7280;
  --fwuk-accent: #f97316;
  --fwuk-radius-xl: 32px;
  --fwuk-radius-lg: 24px;
  --fwuk-shadow-soft: 0 18px 40px rgba(15,23,42,0.12);
  --fwuk-font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--fwuk-font-sans);
  background: radial-gradient(circle at top left, #ffffff 0, #f5f6fb 45%, #e5e8f6 100%);
  color: var(--fwuk-text-main);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.fwuk-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */

.fwuk-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(245,246,252,0.96), rgba(245,246,252,0.86));
  border-bottom: 1px solid rgba(219,226,239,0.7);
}

.fwuk-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.fwuk-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  font-size: 14px;
}

.fwuk-menu,
.fwuk-footer-menu {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: var(--fwuk-text-muted);
}

.fwuk-menu a,
.fwuk-footer-menu a {
  padding: 4px 0;
  position: relative;
}

.fwuk-menu a::after,
.fwuk-footer-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  transition: width 0.2s ease;
}

.fwuk-menu a:hover::after,
.fwuk-footer-menu a:hover::after {
  width: 100%;
}

.fwuk-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.fwuk-button-primary {
  background: var(--fwuk-accent);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(249,115,22,0.4);
}

.fwuk-button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(249,115,22,0.55);
}

/* HERO */

.fwuk-hero {
  min-height: 100vh;
  padding: 150px 0 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at top left, #ffffff 0, #f5f6fb 45%, #e5e8f6 100%);
}

.fwuk-hero-inner {
  max-width: 720px;
}

.fwuk-hero-heading {
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.12;
  margin: 0 0 32px;
}

.fwuk-hero-form {
  display: inline-flex;
  align-items: stretch;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(15,23,42,0.16);
  padding: 4px;
  width: 100%;
  max-width: 540px;
}

.fwuk-hero-input {
  flex: 1;
  border: none;
  border-radius: 999px 0 0 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  color: var(--fwuk-text-main);
  background: transparent;
}

.fwuk-hero-input::placeholder {
  color: var(--fwuk-text-muted);
}

.fwuk-hero-button {
  border-radius: 999px;
  padding-inline: 26px;
  white-space: nowrap;
}

.fwuk-hero-awards {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 13px;
  color: #cbd0de;
}

.fwuk-hero-award img {
  width: 72px;
  height: 72px;
  display: block;
}

/* Portfolio strip under hero */

.fwuk-portfolio {
  background: #ffffff;
  margin-top: -40px;
}

.fwuk-portfolio-inner {
  display: flex;
  justify-content: center;
}

.fwuk-portfolio-row {
  display: flex;
  gap: 18px;
  transform: translateY(-60px);
}

.fwuk-portfolio-item {
  flex: 0 0 260px;
}

.fwuk-portfolio-card {
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(15,23,42,0.18);
  overflow: hidden;
}

.fwuk-portfolio-thumb {
  aspect-ratio: 16 / 10;
  background: #e5e7f2;
}

.fwuk-portfolio-placeholder {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, #e5e9f5, #f3f4ff);
}

.fwuk-portfolio-title {
  display: none;
}

/* --- PORTFOLIO OVERLAP POSITIONING --- */
.fwuk-portfolio {
  position: unset;
  z-index: 5;
}

/* Overlap only on desktop */
@media (min-width: 1025px) {
  .fwuk-portfolio {
    margin-top: -180px;
  }
}

.fwuk-portfolio-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- DESKTOP: 3D Center Focus Slider Style --- */
@media (min-width: 1025px) {

  .fwuk-portfolio-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    perspective: 1500px;
    transition: transform 0.35s ease;
  }

  .fwuk-portfolio-item {
    flex: 0 0 340px;
    transition: transform 0.45s ease, opacity 0.45s ease;
    opacity: 0.6;
    transform: scale(0.8) translateY(30px);
  }

  /* main featured card */
  .fwuk-portfolio-item.fwuk-center {
    transform: scale(1) translateY(0);
    opacity: 1;
    z-index: 3;
  }

  /* left & right mid cards */
  .fwuk-portfolio-item.fwuk-mid {
    transform: scale(0.9) translateY(10px);
    opacity: 0.85;
    z-index: 2;
  }

  /* far left & right */
  .fwuk-portfolio-item.fwuk-far {
    transform: scale(0.8) translateY(30px);
    opacity: 0.5;
    z-index: 1;
  }

  /* stronger shadow on main card */
  .fwuk-portfolio-item.fwuk-center .fwuk-portfolio-card {
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
  }
}

/* --- MOBILE: slider --- */
@media (max-width: 1024px) {
  .fwuk-portfolio-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 40px 0 20px;
  }

  .fwuk-portfolio-item {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }
}

/* How it works, onboarding & FAQ (reuse previous feel, simplified) */

.fwuk-section-title {
  font-size: 24px;
  margin: 0 0 14px;
}

.fwuk-how {
  padding: 24px 0 40px;
}

.fwuk-how-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.fwuk-how-item {
  padding: 20px 20px 18px;
  border-radius: 24px;
  background: radial-gradient(circle at 10% 0, #ffffff 0, #f5f6fd 45%, #e9ecfb 100%);
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
}

.fwuk-how-step {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fwuk-text-muted);
}

.fwuk-onboarding {
  padding: 40px 0 60px;
}

.fwuk-onboarding-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.fwuk-onboarding-form {
  padding: 26px 24px 24px;
  border-radius: var(--fwuk-radius-xl);
  background: linear-gradient(145deg, #ffffff, #eef1ff);
  box-shadow: 0 22px 50px rgba(15,23,42,0.16);
}

.fwuk-onboarding-step {
  display: none;
}

.fwuk-onboarding-step.is-active {
  display: block;
}

.fwuk-field-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}

.fwuk-field-input {
  width: 100%;
  border-radius: 14px;
  padding: 11px 14px;
  border: 1px solid rgba(148,163,184,0.4);
  background: rgba(255,255,255,0.9);
  outline: none;
  font-family: inherit;
  font-size: 14px;
  color: var(--fwuk-text-main);
}

.fwuk-step-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.fwuk-radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.fwuk-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(148,163,184,0.4);
  font-size: 13px;
}

.fwuk-radio input {
  accent-color: #111827;
}

.fwuk-onboarding-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--fwuk-text-muted);
}

.fwuk-onboarding-message {
  margin-top: 10px;
  font-size: 13px;
}

/* FAQ */

.fwuk-faq {
  padding: 40px 0 68px;
}

.fwuk-faq-grid {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.fwuk-faq-item {
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(209,213,219,0.6);
}

.fwuk-faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
}

.fwuk-faq-item summary::-webkit-details-marker {
  display: none;
}

/* Generic & footer */

.fwuk-generic {
  padding: 40px 0 60px;
}

.fwuk-page-content {
  margin-top: 10px;
}

.fwuk-footer {
  padding: 20px 0 26px;
  border-top: 1px solid rgba(209,213,219,0.8);
  background: rgba(248,249,252,0.9);
}

.fwuk-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.fwuk-footer-left {
  font-size: 13px;
  color: var(--fwuk-text-muted);
}

.fwuk-footer-right {
  font-size: 13px;
}

/* Responsive */

@media (max-width: 900px) {
  .fwuk-onboarding-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .fwuk-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .fwuk-hero {
    padding-top: 72px;
    padding-bottom: 64px;
  }

  .fwuk-hero-form {
    max-width: 100%;
  }

  .fwuk-portfolio-row {
    transform: translateY(-40px);
  }

  .fwuk-portfolio-item {
    flex: 0 0 70%;
  }

  .fwuk-portfolio-inner {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 20px 0;
  }
}

@media (max-width: 640px) {
  .fwuk-hero-heading {
    font-size: 28px;
  }

  .fwuk-hero-form {
    flex-direction: column;
    box-shadow: 0 18px 40px rgba(15,23,42,0.18);
  }

  .fwuk-hero-input {
    border-radius: 999px;
  }

  .fwuk-hero-button {
    margin-top: 8px;
    width: 100%;
  }
}

/* Blob Design Hero */
.fwuk-hero {
  position: relative;
  overflow: hidden;
}

.fwuk-blob {
  position: absolute;
  width: 780px;
  height: 780px;
  z-index: 0;
  pointer-events: none;
  filter: blur(4px);
  transform: scale(1);
}

.fwuk-blob-top-left {
  top: -200px;
  left: -240px;
}

.fwuk-blob-top-right {
  top: -260px;
  right: -280px;
}

.fwuk-blob-bottom-left {
  bottom: -180px;
  left: -260px;
}

.fwuk-blob-bottom-right {
  bottom: -160px;
  right: -220px;
}

.fwuk-hero-inner {
  position: relative;
  z-index: 1;
}

/* hero onboarding panel under the pill */

.fwuk-onboarding-form--hero {
  max-width: 540px;
  margin: 0 auto 24px;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.fwuk-hero-step-panel {
  margin-top: 20px;
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.fwuk-hero-step-panel.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE FIX FOR HERO PILL FORM */
@media (max-width: 640px) {
  .fwuk-hero-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }

  .fwuk-hero-input {
    width: 100%;
    border-radius: 40px;
    padding: 12px 16px;
	background-color: #fff;
  }

  .fwuk-hero-button {
    width: 100%;
    border-radius: 40px;
    padding: 14px 0;
  }
}

.fwuk-onboarding-step {
  display: none;
}

.fwuk-onboarding-step.is-active {
  display: block;
  animation: fwukStepIn 0.50s ease-out;
}

/* subtle slide/fade-in */
@keyframes fwukStepIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fwuk-hero-step-card {
  padding: 20px 22px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(15,23,42,0.16);
  text-align: left;
}

.fwuk-logo-img {
  height: 70px;
  width: auto;
  display: block;
}

/* SEO summary section under FAQ */
.fwuk-seo-summary {
  padding: 40px 0 56px;
  background: linear-gradient(to bottom, #f6f7fc 0%, #f2f3fb 100%);
}

.fwuk-seo-intro {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 10px;
}

/* Hide the checkbox control */
.fwuk-seo-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Hidden content container */
.fwuk-seo-more {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
}

/* When checked, reveal content */
.fwuk-seo-toggle:checked ~ .fwuk-seo-more {
  max-height: 900px; /* enough for the copy */
  opacity: 1;
  transform: translateY(0);
}

/* Toggle button styles */
.fwuk-seo-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  user-select: none;
  gap: 6px;
}

.fwuk-seo-toggle-btn:hover {
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

/* Swap "Read more" / "Show less" text */
.fwuk-seo-toggle-less {
  display: none;
}

.fwuk-seo-toggle:not(:checked) ~ .fwuk-seo-toggle-btn .fwuk-seo-toggle-more {
  display: inline;
}

.fwuk-seo-toggle:not(:checked) ~ .fwuk-seo-toggle-btn .fwuk-seo-toggle-less {
  display: none;
}

.fwuk-seo-toggle:checked ~ .fwuk-seo-toggle-btn .fwuk-seo-toggle-more {
  display: none;
}

.fwuk-seo-toggle:checked ~ .fwuk-seo-toggle-btn .fwuk-seo-toggle-less {
  display: inline;
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .fwuk-seo-summary {
    padding: 32px 0 40px;
  }

  .fwuk-seo-intro,
  .fwuk-seo-more {
    font-size: 13px;
  }
}

/* Contact page */
.fwuk-contact {
  padding: 72px 0 96px;
  background: var(--fwuk-bg);
}

.fwuk-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.fwuk-contact-copy {
  max-width: 560px;
}

.fwuk-contact-intro {
  margin: 12px 0 20px;
  color: var(--fwuk-text-muted);
}

.fwuk-contact-details {
  margin-bottom: 20px;
}

.fwuk-contact-subtitle {
  font-size: 18px;
  margin: 0 0 10px;
}

.fwuk-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fwuk-contact-list li {
  margin-bottom: 6px;
  color: var(--fwuk-text-muted);
}

.fwuk-contact-note {
  font-size: 14px;
  color: var(--fwuk-text-muted);
}

.fwuk-contact-note a {
  text-decoration: underline;
}

.fwuk-contact-form-wrapper {
  background: var(--fwuk-surface);
  border-radius: var(--fwuk-radius-xl);
  box-shadow: var(--fwuk-shadow-soft);
  padding: 28px 28px 30px;
}

.fwuk-contact-alert {
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 16px;
}

.fwuk-contact-alert--success {
  background: #ecfdf3;
  color: #166534;
}

.fwuk-contact-alert--error {
  background: #fef2f2;
  color: #b91c1c;
}

/* Honeypot hidden field */
.fwuk-contact-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
}

.fwuk-contact-form .fwuk-field-group {
  margin-bottom: 16px;
}

.fwuk-contact-form .fwuk-field-label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
}

.fwuk-contact-form input[type="text"],
.fwuk-contact-form input[type="email"],
.fwuk-contact-form input[type="url"],
.fwuk-contact-form textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 10px 14px;
  font: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  background: #f9fafb;
}

.fwuk-contact-form textarea {
  border-radius: 18px;
  resize: vertical;
}

.fwuk-contact-form input:focus,
.fwuk-contact-form textarea:focus {
  border-color: #fb923c;
  box-shadow: 0 0 0 1px rgba(249,115,22,0.25);
  background: #ffffff;
}

.fwuk-contact-submit {
  width: 100%;
  margin-top: 6px;
}

.fwuk-contact-smallprint {
  margin-top: 10px;
  font-size: 12px;
  color: var(--fwuk-text-muted);
}

/* Stack on mobile */
@media (max-width: 768px) {
  .fwuk-contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .fwuk-contact-form-wrapper {
    padding: 22px 18px 24px;
  }
}

/* Global FWUK button styles */
.fwuk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.12s ease;
}

/* Primary orange pill button */
.fwuk-btn-primary {
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: #ffffff;
}

/* Hover / active / focus states */
.fwuk-btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.fwuk-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.35);
}

.fwuk-btn-primary:focus-visible {
  box-shadow:
    0 0 0 2px #ffffff,
    0 0 0 4px rgba(249, 115, 22, 0.8);
}

/* Contact form specific – full width pill */
.fwuk-contact-submit {
  width: 100%;
  margin-top: 8px;
}

/* --- HEADER & NAV --- */

.fwuk-logo-link {
  text-decoration: none;
  color: var(--fwuk-text-main);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
}

/* Constrain custom logo so it doesn't break layout */
.fwuk-logo-link img,
.custom-logo {
  max-height: 32px;
  height: auto;
  width: auto;
  display: block;
}

/* Desktop header layout */
.fwuk-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto; /* logo | nav | CTA */
  align-items: center;
  column-gap: 32px;
}

/* Desktop nav in centre */
.fwuk-nav-desktop {
  justify-self: center;
}

.fwuk-menu {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.fwuk-header-cta {
  justify-self: end;
}

/* Mobile hamburger – hidden on desktop */
.fwuk-mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 6px;
  border-radius: 999px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.fwuk-mobile-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  transition: transform 0.16s ease, opacity 0.16s ease, width 0.16s ease;
}

/* --- MOBILE OVERLAY MENU --- */

.fwuk-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-out;
}

/* Backdrop */
.fwuk-mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.32);
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

/* White sliding panel */
.fwuk-mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 80vw);
  background: #ffffff;
  box-shadow: -16px 0 40px rgba(15, 23, 42, 0.25);
  padding: 24px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateX(100%);
  transition: transform 0.25s ease-out;
}

/* Header inside panel */
.fwuk-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.fwuk-mobile-menu-logo {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Mobile close button (X) */
.fwuk-mobile-close {
  border: 0;
  background: transparent;
  padding: 4px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.fwuk-mobile-close-bar {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  position: relative;
}

.fwuk-mobile-close-bar:first-child {
  transform: rotate(45deg);
}

.fwuk-mobile-close-bar:last-child {
  transform: rotate(-45deg);
}

/* Mobile menu list */
.fwuk-mobile-menu-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fwuk-mobile-menu-list a {
  display: inline-block;
  padding: 4px 0;
  font-size: 15px;
}

/* Mobile CTA and contact */
.fwuk-mobile-menu-cta {
  margin-top: 16px;
  align-self: flex-end;
}

.fwuk-mobile-menu-contact {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
  font-size: 13px;
}

.fwuk-mobile-menu-contact-label {
  font-weight: 600;
  margin-bottom: 4px;
}

.fwuk-mobile-menu-contact-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4b5563;
  text-decoration: none;
}

.fwuk-mobile-menu-contact-email:hover {
  text-decoration: underline;
}

.fwuk-mobile-menu-contact-icon {
  font-size: 14px;
}

/* --- STATE WHEN OPEN --- */
.fwuk-mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.fwuk-mobile-menu.is-open .fwuk-mobile-menu-panel {
  transform: translateX(0);
}

/* --- RESPONSIVE RULES --- */

@media (max-width: 768px) {
  /* Header bar: logo left, burger right */
  .fwuk-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 16px;
  }

  .fwuk-nav-desktop,
  .fwuk-header-cta {
    display: none;       /* hide desktop nav+CTA */
  }

  .fwuk-mobile-toggle {
    display: inline-flex;
  }
	.fwuk-mobile-menu-cta {
	  position: absolute;
	  bottom: 20px;
	  right: 20px;
	  left: 20px;
	}
	.fwuk-mobile-bio {
	  font-size: 13px;
	  line-height: 1.55;
	  color: #4b5563;
	  margin: 4px 0 16px;
	}
}

@media (min-width: 769px) {
  .fwuk-mobile-menu {
    display: none;       /* no overlay on desktop */
  }

  .fwuk-mobile-toggle {
    display: none;
  }
}

/* SEO text under hero – add breathing room before the slider */
.fwuk-hero-subcopy {
  max-width: 720px;
  margin: 24px auto 72px; /* top, bottom spacing */
  font-size: 15px;
  line-height: 1.6;
  color: var(--fwuk-text-muted);
}

/* Slightly tighter on small screens */
@media (max-width: 640px) {
  .fwuk-hero-subcopy {
    margin: 20px auto 56px;
    font-size: 14px;
  }
}

/* Footer layout - mobile tidy up */
@media (max-width: 640px) {
  .fwuk-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .fwuk-footer-left {
    font-size: 12px;
  }

  .fwuk-footer-right {
    width: 100%;
  }

  .fwuk-footer-menu {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
  }

  .fwuk-footer-menu li {
    margin-right: 0;
  }
}
