/* ==========================================================================
   Fast Forward IT — Design System
   Modern, minimal, brand palette: black / white / gray with a red accent
   (red matches the current ffwdit.com brand mark and CTAs — #E3002A).
   ========================================================================== */

:root {
  --black: #0a0a0a;
  --ink: #141414;
  --gray-900: #1f1f1f;
  --gray-700: #454545;
  --gray-600: #5c5c5c;
  --gray-500: #767676;
  --gray-400: #9a9a9a;
  --gray-300: #d0d0d0;
  --gray-200: #e6e6e6;
  --gray-100: #f4f4f4;
  --gray-50: #fafafa;
  --white: #ffffff;

  --red: #e3002a;
  --red-dark: #b8001f;
  --red-tint: rgba(227, 0, 42, 0.08);
  /* Lighter red used only where --red itself would fail 4.5:1 text
     contrast against a dark background (e.g. small bold numerals on
     --gray-900) — see .dark-card .index. */
  --red-on-dark: #ff4d6d;
  /* Darker-than-gray-300 border used wherever a border needs to clear the
     3:1 non-text contrast minimum (WCAG 1.4.11) — gray-300 alone measures
     well under that on white. */
  --border-accessible: #8c8c8c;

  --focus-ring: 0 0 0 3px rgba(227, 0, 42, 0.35);

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --max-width: 1180px;
  --radius: 10px;
  --radius-sm: 6px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* Visible keyboard-focus indicator (WCAG 2.4.7) for every interactive
   element site-wide. Only applies for keyboard/programmatic focus
   (:focus-visible), so mouse clicks don't show a ring. Components with
   their own tailored focus treatment (form fields) layer on top of this. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* Section titles carry the brand red, matching ffwdit.com's H2 treatment.
   Titles on dark backgrounds (hero, dark sections, CTA bands) stay white
   for contrast — see the overrides further down. */
h2 {
  color: var(--red);
}

p {
  margin: 0;
}

button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--red);
}

section {
  padding: 96px 0;
}

@media (max-width: 720px) {
  section {
    padding: 64px 0;
  }
}

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: var(--red);
  color: var(--white);
  border-color: transparent;
}

.btn-ghost:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-on-dark {
  background: var(--red);
  color: var(--white);
}

.btn-on-dark:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost-on-dark {
  background: var(--red);
  color: var(--white);
  border-color: transparent;
}

.btn-ghost-on-dark:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ---------------- Skip link ---------------- */

.skip-link {
  position: absolute;
  top: -60px;
  left: 8px;
  z-index: 300;
  background: var(--red);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: top 0.15s var(--ease);
}

.skip-link:focus {
  top: 8px;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* ---------------- Header ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  max-width: 1320px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.logo-mark {
  height: 30px;
  width: auto;
  display: block;
}

.logo .full {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-style: italic;
}

.logo .full small {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  font-style: normal;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.15s var(--ease);
  position: relative;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--red);
}

.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  height: 2px;
  background: var(--red);
}

/* ---------------- Nav dropdown (About) ---------------- */

.has-dropdown {
  display: flex;
  align-items: center;
  gap: 2px;
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px 2px;
  margin: 0;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  transition: color 0.15s var(--ease);
}

.dropdown-toggle:hover {
  color: var(--red);
}

.dropdown-toggle svg {
  flex-shrink: 0;
  transition: transform 0.15s var(--ease);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -12px;
  margin-top: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 8px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s var(--ease), transform 0.15s var(--ease), visibility 0.15s;
  z-index: 50;
}

.dropdown-menu a {
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
}

.dropdown-menu a:hover {
  background: var(--red-tint);
  color: var(--red);
}

.dropdown-menu a[aria-current="page"] {
  background: var(--red-tint);
}

.dropdown-menu a[aria-current="page"]::after {
  display: none;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-dropdown:hover .dropdown-toggle svg,
.has-dropdown:focus-within .dropdown-toggle svg,
.has-dropdown.open .dropdown-toggle svg {
  transform: rotate(180deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 1300px) {
  .header-phone { display: none; }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  transition: all 0.2s var(--ease);
}

@media (max-width: 1300px) {
  .main-nav {
    position: fixed;
    inset: 78px 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a,
  .main-nav .dropdown-toggle {
    font-size: 1.1rem;
  }

  .main-nav a[aria-current="page"]::after {
    display: none;
  }

  .has-dropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  /* On mobile the submenu is a real collapsible disclosure (matching the
     .dropdown-toggle's aria-expanded state) rather than being forced
     permanently open — a fixed, always-visible menu here would make
     aria-expanded lie to screen reader users. */
  .dropdown-menu {
    position: static;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    background: none;
    padding: 0 0 0 4px;
    margin-top: 0;
    min-width: 0;
    gap: 14px;
    transition: max-height 0.25s var(--ease), opacity 0.2s var(--ease), visibility 0.2s;
  }

  .has-dropdown.open .dropdown-menu {
    max-height: 320px;
    opacity: 1;
    visibility: visible;
    padding: 4px 0 0 4px;
    margin-top: 14px;
  }

  .dropdown-menu a {
    padding: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-600);
  }

  .nav-toggle {
    display: block;
  }

  .header-actions .btn-primary {
    display: none;
  }
}

@media (max-width: 480px) {
  .logo {
    gap: 8px;
  }

  .logo-mark {
    height: 24px;
  }

  .logo .full small {
    white-space: normal;
    max-width: 120px;
    font-size: 0.52rem;
    line-height: 1.25;
  }
}

/* ---------------- Hero ---------------- */

.hero {
  background: var(--black);
  color: var(--white);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 85%);
  opacity: 0.6;
}

.hero .container {
  position: relative;
}

.hero-inner {
  max-width: 760px;
}

.hero .eyebrow {
  color: var(--gray-400);
}

.hero .eyebrow::before {
  background: var(--red);
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  margin: 20px 0 24px;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--gray-300);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 32px;
}

.hero-stats .stat-value {
  font-size: 1.7rem;
  font-weight: 800;
}

.hero-stats .stat-label {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-top: 4px;
}

@media (max-width: 600px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

/* ---------------- Page header (non-home) ---------------- */

.page-header {
  background: var(--black);
  color: var(--white);
  padding: 88px 0 64px;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-top: 16px;
}

.page-header p.lead {
  color: var(--gray-300);
  font-size: 1.05rem;
  max-width: 620px;
  margin-top: 18px;
}

.page-header .eyebrow {
  color: var(--gray-400);
}

.page-header .eyebrow::before {
  background: var(--red);
}

/* ---------------- Section headings ---------------- */

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-top: 16px;
}

.section-head p {
  color: var(--gray-700);
  font-size: 1.05rem;
  margin-top: 16px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------------- Cards / grids ---------------- */

.grid {
  display: grid;
  gap: 28px;
}

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

@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease);
}

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

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--red-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.2s var(--ease);
}

.card:hover .icon {
  background: var(--red);
}

.card .icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  transition: stroke 0.2s var(--ease);
}

.card:hover .icon svg {
  stroke: var(--white);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--gray-700);
  font-size: 0.96rem;
}

.card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 14px;
}

/* ---------------- Team bio cards ---------------- */

.team-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px;
  transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}

.team-card .team-card-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.team-card .team-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--red-tint);
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.team-card p {
  color: var(--gray-700);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.team-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .team-card .team-card-head {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------------- Blog ---------------- */

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gray-300);
}

.blog-card .blog-date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

.blog-card h3 {
  font-size: 1.15rem;
  line-height: 1.35;
}

.blog-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.blog-card h3 a:hover {
  color: var(--red);
}

.blog-card p {
  color: var(--gray-700);
  font-size: 0.95rem;
  flex: 1;
}

.blog-card .read-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card .read-more:hover {
  text-decoration: underline;
}

.blog-post-body {
  max-width: 760px;
  margin: 0 auto;
}

.blog-post-body .blog-date {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.blog-post-body h2 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
  color: var(--ink);
}

.blog-post-body p {
  color: var(--gray-700);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.blog-post-body ul, .blog-post-body ol {
  color: var(--gray-700);
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0 0 18px 22px;
}

.blog-post-body li {
  margin-bottom: 8px;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-600);
  text-decoration: none;
  margin-bottom: 24px;
}

.blog-back-link:hover {
  color: var(--red);
}

/* ---------------- Logos / industries strip ---------------- */

.strip {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 40px 0;
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.strip-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.strip-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--gray-100);
  padding: 8px 16px;
  border-radius: 999px;
}

/* ---------------- Split section ---------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.split figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-900);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split figure svg {
  width: 55%;
  stroke: var(--gray-400);
}

.check-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--gray-700);
  font-size: 0.98rem;
}

.check-list .check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 1px;
}

/* Variant for check-list items that pair a bold label with a dash description:
   lays each item out on a fixed label column so the descriptions line up
   with each other down the list, no matter how many lines a label wraps to. */
.check-list--split li {
  display: grid;
  grid-template-columns: 22px 150px 1fr;
  column-gap: 12px;
  row-gap: 2px;
}

.check-list--split .check {
  margin-top: 2px;
}

.check-list--split strong {
  color: var(--ink);
}

.check-list--split .desc {
  display: block;
}

@media (max-width: 640px) {
  .check-list--split li {
    grid-template-columns: 22px 1fr;
  }

  .check-list--split .desc {
    grid-column: 2;
  }
}

/* ---------------- Differentiators (dark) ---------------- */

.dark-section {
  background: var(--black);
  color: var(--white);
}

.dark-section h2,
.dark-section .section-head h2,
.hero h2,
.page-header h2,
.cta-band h2 {
  color: var(--white);
}

.dark-section .section-head p {
  color: var(--gray-400);
}

.dark-section .eyebrow {
  color: var(--gray-400);
}

.dark-section .eyebrow::before {
  background: var(--red);
}

.dark-card {
  background: var(--gray-900);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px;
}

.dark-card .index {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red-on-dark);
  margin-bottom: 18px;
}

.dark-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--white);
}

.dark-card p {
  color: var(--gray-400);
  font-size: 0.95rem;
}

/* ---------------- Testimonials ---------------- */

.quote-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.quote-card .quote-mark {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gray-300);
  line-height: 1;
}

.quote-card p.quote {
  font-size: 1rem;
  color: var(--ink);
  flex: 1;
}

.quote-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}

.author .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex: none;
}

.author .name {
  font-weight: 700;
  font-size: 0.92rem;
}

.author .role {
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* ---------------- FAQ accordion ---------------- */

.faq-list {
  border-top: 1px solid var(--gray-200);
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question-heading {
  margin: 0;
  font-weight: inherit;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
}

.faq-question .plus {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.2s var(--ease);
}

.faq-question .plus::before,
.faq-question .plus::after {
  content: "";
  position: absolute;
  background: var(--black);
}

.faq-question .plus::before {
  width: 10px;
  height: 1.5px;
}

.faq-question .plus::after {
  width: 1.5px;
  height: 10px;
  transition: transform 0.2s var(--ease);
}

.faq-question:hover .plus {
  border-color: var(--red);
}

.faq-item.open .faq-question .plus {
  background: var(--red);
  border-color: var(--red);
}

.faq-item.open .faq-question .plus::before,
.faq-item.open .faq-question .plus::after {
  background: var(--white);
}

.faq-item.open .faq-question .plus::after {
  transform: scaleY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s var(--ease);
}

.faq-answer-inner {
  padding: 0 4px 26px;
  color: var(--gray-700);
  font-size: 0.98rem;
  max-width: 760px;
}

/* ---------------- CTA band ---------------- */

.cta-band {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 64px 48px;
  text-align: center;
  margin: 0 24px;
}

.cta-band-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.cta-band p {
  color: var(--gray-400);
  max-width: 520px;
  margin: 0 auto 32px;
}

.cta-band .actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 640px) {
  .cta-band {
    padding: 48px 24px;
    margin: 0 16px;
  }
}

/* ---------------- Contact ---------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-info-list {
  display: grid;
  gap: 24px;
  margin-top: 8px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-item .icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--red-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.contact-info-item .icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
}

.contact-info-item .label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: 3px;
}

.contact-info-item .value {
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.15s var(--ease);
}

a.value:hover {
  color: var(--red);
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border-accessible);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: var(--focus-ring);
}

.form-field .required-marker {
  color: var(--red-dark);
}

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

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-note {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.form-success {
  display: none;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 20px;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-error {
  display: none;
  background: var(--red-tint);
  color: var(--red-dark);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 16px;
}

/* ---------------- Booking embed ---------------- */

.booking-embed {
  height: 1600px;
  border-radius: var(--radius);
  overflow: visible;
  border: 1px solid var(--gray-200);
}

@media (max-width: 640px) {
  .booking-embed {
    height: 1900px;
  }
}

/* ---------------- Footer ---------------- */

.site-footer {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-700);
  margin-bottom: 18px;
}

.footer-col ul {
  display: grid;
  gap: 12px;
}

.footer-col ul li {
  font-size: 0.92rem;
  color: var(--gray-700);
}

.footer-col a {
  font-size: 0.92rem;
  color: var(--gray-700);
  transition: color 0.15s var(--ease);
}

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

.footer-about p {
  color: var(--gray-700);
  font-size: 0.92rem;
  margin: 16px 0 20px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s var(--ease);
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--gray-700);
}

.footer-bottom .legal-links {
  display: flex;
  gap: 20px;
}

.footer-bottom .legal-links a:hover {
  color: var(--red);
}

/* ---------------- Utility ---------------- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

.breadcrumb-space { height: 0; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------------- Cookie consent ---------------- */

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--black);
  color: var(--white);
  padding: 20px 24px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}

.cookie-consent.visible {
  transform: translateY(0);
}

.cookie-consent-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent-inner p {
  color: var(--gray-400);
  font-size: 0.88rem;
  margin: 0;
  max-width: 720px;
}

.cookie-consent-inner p a {
  color: var(--white);
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-consent-actions .btn {
  padding: 10px 22px;
  font-size: 0.88rem;
}

@media (max-width: 640px) {
  .cookie-consent {
    padding: 18px 20px;
  }

  .cookie-consent-inner {
    gap: 14px;
  }

  .cookie-consent-actions {
    width: 100%;
  }

  .cookie-consent-actions .btn {
    flex: 1;
  }
}
