/* BCCI (Bosnian Cultural Centre of Ireland) — landing + contact shell */
:root {
  --bg: #f8fafb;
  --surface: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --border: #e2e8f0;
  --accent: #0e7490;
  --accent-hover: #0f766e;
  --accent-soft: #ecfeff;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.06),
    0 12px 40px rgba(15, 23, 42, 0.06);
  --font-sans: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --header-h: 4.25rem;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-hover);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.5rem 1rem;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  color: var(--ink);
}

.logo.logo-with-img {
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.logo-img {
  height: 42px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.logo:hover {
  color: var(--accent);
}

.logo .logo-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.logo .logo-tagline {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.3;
}

@media (max-width: 520px) {
  .logo-with-img .logo-text {
    display: none;
  }

  .logo-img {
    height: 38px;
  }
}

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

.nav-desktop a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.45rem 0.45rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
}

.nav-desktop a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.nav-desktop a[aria-current="page"] {
  color: var(--accent);
  background: var(--accent-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.62rem 1.15rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}

.btn:active {
  transform: translateY(1px);
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent-soft);
}

.btn:disabled {
  cursor: not-allowed;
}

@keyframes form-btn-spin {
  to {
    transform: rotate(360deg);
  }
}

.btn.btn--sending {
  position: relative;
  padding-left: 2.35rem;
  pointer-events: none;
  opacity: 0.92;
}

.btn.btn--sending::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  margin-top: -0.5rem;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-right-color: transparent;
  animation: form-btn-spin 0.7s linear infinite;
  opacity: 0.9;
}

.btn-primary.btn--sending::before {
  border-color: rgba(255, 255, 255, 0.45);
  border-right-color: transparent;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 0.85rem 1.25rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}

.nav-mobile a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.nav-mobile a[aria-current="page"] {
  color: var(--accent);
}

main {
  min-height: calc(100vh - var(--header-h) - 200px);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.hero {
  padding: 3rem 0 3.25rem;
  background: linear-gradient(165deg, #f0fdff 0%, var(--bg) 48%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

/* Home hero: full-bleed theme image, cover crop, readable text */
.hero.hero--theme {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--bg);
  min-height: min(72vh, 38rem);
  padding: clamp(2.25rem, 5vw, 3.75rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.hero.hero--theme::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../Images/home-page-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero.hero--theme::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(248, 250, 251, 0.94) 0%,
    rgba(248, 250, 251, 0.82) min(38%, 22rem),
    rgba(248, 250, 251, 0.45) 68%,
    rgba(248, 250, 251, 0.62) 100%
  );
}

.hero.hero--theme .hero-inner {
  position: relative;
  z-index: 2;
}

.hero.hero--theme .hero-panel {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}

.hero.hero--theme h1 {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hero.hero--theme .lead {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 860px) {
  .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    gap: 2.5rem;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  color: var(--ink);
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 38em;
}

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

.hero .contact-form {
  max-width: min(38rem, 100%);
  margin-top: 0.25rem;
}

.hero .contact-form .form-note {
  margin-bottom: 0.5rem;
}

.hero .contact-form .form-group textarea {
  min-height: 100px;
}

.hero .contact-form .hero-actions {
  margin-bottom: 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}

.badge-accent {
  background: var(--accent-soft);
  border-color: #bae6fd;
  color: var(--accent-hover);
}

.hero-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-panel h2 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 0 0 0.75rem;
}

.hero-panel ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-panel li {
  margin-bottom: 0.4rem;
}

.hero-panel-deliverables ul {
  line-height: 1.52;
}

.hero-panel-deliverables li strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-panel-deliverables li {
  margin-bottom: 0.85rem;
}

.hero-panel-deliverables li:last-child {
  margin-bottom: 0;
}

.hero-panel-note {
  margin: 1.15rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  line-height: 1.58;
  color: var(--ink);
}

.hero-panel-note a {
  font-weight: 600;
}

.hero.hero--theme .hero-panel-deliverables .hero-panel-note {
  border-top-color: rgba(226, 232, 240, 0.9);
}

/* Home hero: extra space below main headline before intro paragraphs */
.hero-inner > div:first-child > h1 {
  margin-bottom: 1.75rem;
}

/* Home: institutional services teaser — centred heading, intro, CTA */
.home-institutional-intro {
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
}

.home-institutional-intro .section-intro {
  margin-inline: auto;
}

.home-institutional-cta {
  text-align: center;
  margin-top: 1.5rem;
}

/* Home: testimonials — full-bleed band, copy aligned to .wrap like other sections */
.section.alt.home-testimonials-preview {
  background: var(--accent-soft);
  border-block-color: rgba(14, 116, 144, 0.12);
}

.home-testimonials-preview {
  text-align: left;
}

.home-testimonials-preview blockquote {
  margin: 1rem 0 0;
  padding: 1.5rem 0 1.5rem 1.25rem;
  max-width: none;
  width: 100%;
  text-align: left;
  background: transparent;
  border-left: 4px solid var(--accent);
  border-radius: 0;
  box-shadow: none;
}

.home-testimonials-preview-cta {
  margin-top: 1.25rem;
  text-align: left;
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  margin: 0 0 0.75rem;
}

.section-intro {
  color: var(--muted);
  max-width: 42em;
  margin: 0 0 1.75rem;
}

.grid-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 920px) {
  .grid-cards.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.section.alt .card {
  background: var(--bg);
}

.card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  font-weight: 650;
}

.card p {
  margin: 0;
  font-size: 0.975rem;
  color: var(--muted);
}

.split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--muted);
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.clients-list {
  display: grid;
  gap: 0.35rem;
  font-size: 0.975rem;
  color: var(--muted);
}

/* Home: Why agencies — two text columns from md, simultaneous interpreting heads column two */
.why-agencies-columns {
  display: grid;
  gap: 1.5rem 2.25rem;
  align-items: start;
  margin-top: 0.75rem;
}

@media (min-width: 880px) {
  .why-agencies-columns {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

/* Home: organisations band — teal-tinted strip aligned with logo / accent colours */
.clients-section-band {
  background: linear-gradient(
    165deg,
    var(--accent-soft) 0%,
    rgba(236, 254, 255, 0.55) 35%,
    var(--surface) 72%,
    #f1f5f9 100%
  );
  border-block-color: rgba(14, 116, 144, 0.14);
}

.clients-section {
  padding-top: 0.25rem;
}

.clients-section h2 {
  text-align: center;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  color: var(--accent-hover);
}

.clients-section h2::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin: 0.75rem auto 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  border-radius: 2px;
  opacity: 0.9;
}

/* Default client grid (reuse elsewhere if needed) */
.clients-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--muted);
}

.clients-grid li {
  margin: 0;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

/* Home: organisations list full width across the band */
.clients-grid--section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.clients-grid--section li {
  padding: 0.42rem 0;
  border-bottom-color: rgba(14, 116, 144, 0.12);
}

@media (min-width: 720px) {
  .clients-grid--section {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

blockquote {
  margin: 0;
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

blockquote p {
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--ink);
}

cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--muted);
}

cite span {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.disclaimer-note {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 1rem;
}

.site-footer {
  background: var(--ink);
  color: #cbd5e1;
  padding: 2.5rem 0 2rem;
  margin-top: 0;
}

.site-footer .wrap {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .site-footer .wrap {
    grid-template-columns: 1fr 1fr auto;
    align-items: start;
  }
}

.site-footer a {
  color: #99f6e4;
}

.site-footer strong {
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-meta {
  font-size: 0.875rem;
}

.footer-credit {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.page-header {
  padding: 2.5rem 0 2rem;
  background: linear-gradient(165deg, #f0fdff 0%, var(--bg) 70%);
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  margin: 0 0 0.5rem;
}

.page-header p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}

/* About (and similar): photo banner behind logo / title — same pattern as home hero */
.page-header.page-header--theme {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--bg);
  padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(2.25rem, 5vw, 3rem);
  border-bottom: 1px solid var(--border);
  min-height: min(42vh, 20rem);
}

.page-header.page-header--theme::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-header.page-header--theme.page-header--theme-photo-about::before {
  background-image: url("../Images/about-page-image.jpg");
}

.page-header.page-header--theme.page-header--theme-photo-contact::before {
  background-image: url("../Images/contact-page-image.jpg");
}

.page-header.page-header--theme.page-header--theme-photo-services::before {
  background-image: url("../Images/services-page-image.jpg");
}

.page-header.page-header--theme.page-header--theme-photo-quote::before {
  background-image: url("../Images/get-a-quote-page-image.jpg");
}

.page-header.page-header--theme.page-header--theme-photo-payments::before {
  background-image: url("../Images/payments-page-image.jpg");
  transform: scaleX(-1);
  transform-origin: center;
}

.page-header.page-header--theme::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(248, 250, 251, 0.94) 0%,
    rgba(248, 250, 251, 0.8) min(48%, 28rem),
    rgba(248, 250, 251, 0.42) 100%
  );
}

.page-header.page-header--theme .wrap {
  position: relative;
  z-index: 2;
}

.page-header.page-header--theme h1 {
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.page-header.page-header--theme > .wrap > p {
  color: var(--muted);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.page-header.page-header--theme .about-hero-logo {
  filter: drop-shadow(0 2px 12px rgba(255, 255, 255, 0.9))
    drop-shadow(0 1px 2px rgba(15, 23, 42, 0.08));
}

.prose {
  max-width: 42rem;
}

.prose p {
  margin: 0 0 1rem;
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--muted);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 28rem;
  padding: 0.62rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--surface);
}

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

.form-note {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.contact-form {
  max-width: 28rem;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  max-width: none;
  width: 100%;
}

.contact-form .btn {
  margin-top: 0.25rem;
}

.form-feedback {
  max-width: 28rem;
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink);
  background: var(--accent-soft);
  border: 1px solid #bae6fd;
  box-shadow: 0 1px 2px rgba(14, 116, 144, 0.06);
}

.form-feedback[hidden] {
  display: none !important;
}

.form-feedback-actions {
  max-width: 28rem;
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-feedback-actions a {
  font-weight: 600;
  color: var(--accent);
}

.form-feedback-actions a:hover {
  color: var(--accent-hover);
}

.form-feedback-actions[hidden] {
  display: none !important;
}

.testimonial-block {
  margin: 0 0 2rem;
}

.testimonial-block:last-of-type {
  margin-bottom: 0;
}

.testimonial-block p {
  margin: 0 0 1rem;
  color: var(--ink);
}

.testimonial-block p:last-of-type {
  margin-bottom: 0;
}

.testimonial-sep {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.25rem 0;
}

.about-hero-logo {
  max-width: 280px;
  margin: 0 0 1.25rem;
}

.pricing-callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
  box-shadow: var(--shadow);
}

.pricing-callout h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

/* Get a quote: “How it works” vs quotation blocks */
.quote-block-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.35rem;
}

/* Quote page sections + form blocks (sticky header offset) */
#how-it-works,
#request-quote,
#quote-form-block,
#contact-enquiry {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.quote-page-how {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.quote-page-how h2 {
  margin-top: 0;
}

.quote-how-steps {
  margin: 1.25rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.quote-how-steps strong {
  color: var(--ink);
}

.quote-how-steps li {
  margin-bottom: 1.1rem;
}

.quote-how-steps li:last-child {
  margin-bottom: 0;
}

.quote-page-separator {
  border: none;
  height: 4px;
  margin: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  opacity: 0.9;
}

.quote-page-quote .pricing-callout {
  margin-top: 0;
}

.hide-mobile {
  display: inline-flex;
}

@media (max-width: 900px) {
  .hide-mobile {
    display: none;
  }

  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}
