/* ------------------------------------------------------------------------ */
/* ARSENEAULT & VIENNEAU - styles.css                                       */
/* Font: Gotham via Adobe Typekit (gotham-bold, gotham-medium, gotham-book) */
/* ------------------------------------------------------------------------ */

/* CSS Variables */
:root {
  --charcoal: #1c2b38;
  --primary: #506782;
  --gold: #9a7b3c;
  --light-grey: #f8f9fa;
  --warm-cream: #f5f0e8;
  --txt: #525252;
  --txt-dark: #171717;
  --border: #d9d9d9;
  --primary-faint: rgba(80, 103, 130, 0.15);
  --primary-bg: rgba(80, 103, 130, 0.05);
  --gotham: 'gotham', sans-serif;
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

body {
  font-family: var(--gotham);
  font-weight: 300;
  color: var(--txt);
  background-color: #fff;
  margin: 0;
}

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

a {
  text-decoration: none;
}

/* -------------------- */
/* Skip to main content */
/* -------------------- */
.skip-to-main-content {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    padding: 1em;
    background-color: black;
    color: #fff;
    opacity: 0;
}

.skip-to-main-content:focus {
    left: 50%;
    top: 1%;
    transform: translateX(-50%);
    opacity: 1;
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* -------------------------- */
/* CUSTOM MAX-WIDTH UTILITIES */
/* -------------------------- */
.mw-280 {
  max-width: 280px;
}

.mw-576 {
  max-width: 576px;
}

.mw-768 {
  max-width: 768px;
}

.mw-991 {
  max-width: 991px;
}

.mw-1024 {
  max-width: 1024px;
}

/* ------------------------- */
/* SECTION PADDING UTILITIES */
/* ------------------------- */
.section-p {
  padding-top: 64px;
  padding-bottom: 64px;
}

.single-p {
  padding-bottom: 64px;
}

/* ---------------- */
/* COLOUR UTILITIES */
/* ---------------- */
.bg-charcoal {
  background-color: var(--charcoal);
}

.bg-light-grey {
  background-color: var(--light-grey);
}

/* --------------------------------- */
/* TYPOGRAPHY - shared heading style */
/* --------------------------------- */
.section-heading {
  font-weight: 700;
  font-size: 26px;
  line-height: 34px;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.section-heading.text-white {
  color: #fff;
}

/* Gold decorative rule placed directly after .section-heading */
.heading-line {
  display: block;
  width: 48px;
  height: 3px;
  background-color: var(--gold);
}

.section-body-text {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: var(--txt);
  margin-bottom: 18px;
}

.section-lead {
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: var(--txt);
  margin-bottom: 0;
}

/* ------------ */
/* LANGUAGE BAR */
/* ------------ */
.lang-bar {
  background-color: var(--charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0;
}

.lang-bar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.lang-label {
  font-weight: 300;
  font-size: 14px;
  color: var(--light-grey);
}

/* Shared pill toggle - used in lang bar and footer */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
}

.lang-toggle-btn {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border 0.2s ease;
  line-height: 1;
  &:hover{
    color: #ffffff;
    border: 1px solid #ffffff;
  }
}


.lang-toggle-btn.active {
  background-color: var(--light-grey);
  color: var(--charcoal);
  &:hover{
    border-color: transparent;
  }
}

/* Footer pill sits on a darker bg - same pill, slightly smaller */
.lang-toggle--footer .lang-toggle-btn {
  font-size: 11px;
  padding: 4px 12px;
}

/* ------ */
/* NAVBAR */
/* ------ */
#mainNav {
  background-color: var(--light-grey);
  border-bottom: 1px solid var(--border);
  padding-top: 12px;
  padding-bottom: 12px;
  transition: box-shadow 0.3s ease;
  z-index: 1030;
}
#mainNav.nav-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}
.nav-logo-icon {
  height: 70px;
  width: auto;
}
.navbar-light .navbar-nav .nav-link {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--charcoal);
  padding: 8px 14px;
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  &:hover{
    border-color: var(--primary);
  }
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--charcoal);
}

/* ------------ */
/* HERO SECTION */
/* ------------ */
.hero-section {
  position: relative;
  background-color: var(--charcoal);
  overflow: hidden;
  padding-top: 64px;
  padding-bottom: 64px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url('../images/background-pattern.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 824px;
  margin: 0 auto;
}

.hero-logo-lockup {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.hero-logo-icon {
  width: 100%;
  max-width: 440px;
}

.hero-title {
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.96px;
  color: #fff;
  margin-bottom: 24px;
}


.hero-subtitle {
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: var(--light-grey);
  max-width: 576px;
  margin: 0 auto 40px;
}

.btn-av-white {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--charcoal);
  background-color: var(--light-grey);
  border: 2px solid var(--charcoal);
  border-radius: 8px;
  padding: 12px 20px;
  display: inline-block;
  transition: background-color 0.2s ease;
  &:is(:hover, :focus-visible){
    background-color: var(--primary);
    border-color: var(--charcoal);
    color: #FFFFFF;
  }
  &:focus-visible{
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }
}

.btn-av-primary {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  background-color: var(--primary);
  border: 2px solid var(--charcoal);
  border-radius: 8px;
  padding: 12px 20px;
  display: inline-block;
  transition: background-color 0.2s;
  &:is(:hover, :focus-visible){
    background-color: var(--charcoal);
    border-color: var(--primary);
    color: #FFFFFF;
  }
  &:focus-visible{
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }
}

/* ------------ */
/* VALUES STRIP */
/* ------------ */
.values-section {
  background-color: var(--light-grey);
}

.value-item {
  padding: 48px 24px;
}

.value-line {
  width: 48px;
  height: 3px;
  background-color: var(--gold);
  margin-bottom: 16px;
}

.value-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.value-text {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: var(--txt);
  margin-bottom: 0;
}

/* Vertical dividers: border-top on mobile, border-left on md+ (see responsive.css) */
.value-item--bordered {
  border-top: 1px solid var(--border);
}

/* ---------- */
/* WHO WE ARE */
/* ---------- */
.who-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.who-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------- */
/* PRACTICE AREAS */
/* -------------- */
.practice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background-color: var(--primary-faint);
  padding: 2px;
}

/* Card base */
.practice-card {
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.practice-card-header {
  padding: 24px 24px 0;
}

.practice-card-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--charcoal);
  margin-bottom: 0;
}

.practice-card-body {
  padding: 0 24px 48px;
  flex: 1;
}

.practice-divider {
  border-top: 2px solid var(--gold);
  margin-top: 21px;
  margin-bottom: 20px;
}

.practice-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.practice-list li {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: var(--txt);
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
}

.practice-desc {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: var(--txt);
  margin-bottom: 0;
}

/* ------------ */
/* TEAM SECTION */
/* ------------ */
.team-card {
  border: 1px solid var(--primary-faint);
  background-color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;

}

.team-card-top-bar {
  height: 4px;
  width: 100%;
  background-color: var(--gold);
  flex-shrink: 0;
}

.team-card-body {
  padding: 20px;
  flex: 1;
}

/* Avatar circle */
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary-bg);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

.team-name {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: var(--txt-dark);
  margin-bottom: 2px;
}

.team-role {
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: var(--txt);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.team-bio {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--txt);
  margin-bottom: 16px;
}

.team-badge {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--charcoal);
  background-color: var(--primary-bg);
  border: 1px solid var(--primary-faint);
  border-radius: 4px;
  padding: 4px 12px;
}

.team-email {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--txt);
  text-decoration: underline;
  display: inline-block;
}

.team-email:hover {
  color: var(--primary);
}

/* ----------- */
/* FAQ SECTION */
/* ----------- */
.faq-intro-text {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: var(--txt);
  margin-bottom: 16px;
}

.faq-get-in-touch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: var(--txt);
  text-decoration: underline;
  margin-bottom: 32px;
}

.faq-get-in-touch:hover {
  color: var(--charcoal);
}

.faq-office-box {
  background-color: var(--warm-cream);
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
}

.office-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.office-row {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: var(--txt);
  margin-bottom: 4px;
}

.office-row:last-child {
  margin-bottom: 0;
}

.office-row-closed {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: var(--txt);
  font-style: italic;
  margin-bottom: 0;
}

/* On mobile, questions appear first and office info below */
.faq-left-col {
  order: 2;
}

.faq-right-col {
  order: 1;
  margin-bottom: 48px;
}

/* FAQ Accordion */
.faq-item {
  border-top: 1px solid #e5e5e5;
  padding: 24px 0;
}

.faq-item:first-child {
  border-top: none;
  padding-top: 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  text-align: left;
}

.faq-q-text {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: var(--txt-dark);
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  line-height: 1;
  width: 24px;
  height: 24px;
}


.faq-answer p {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: var(--txt);
  margin-bottom: 0;
  padding-top: 12px;
}

/* Icon toggle - Bootstrap adds .collapsed to the button when closed */
.faq-question .icon-minus {
  display: block;
}

.faq-question .icon-plus {
  display: none;
}

.faq-question.collapsed .icon-minus {
  display: none;
}

.faq-question.collapsed .icon-plus {
  display: block;
}

/* --------------- */
/* CONTACT SECTION */
/* --------------- */
.contact-map-wrap {
  overflow: hidden;
  width: 100%;
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
}

/* Contact info blocks */
.contact-info-label {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: var(--border);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-info-value {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--light-grey);
  margin-bottom: 0;
  text-decoration: underline 2px solid transparent;
  transition: text-decoration-color 0.2s ease;
  &:hover{
    text-decoration-color: var(--light-grey);
  }
}
.contact-info-date{
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--light-grey);
  margin-bottom: 0;
}

.contact-info-date.sm {
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
}

.contact-col-info {
  margin-top: 0;
}

.form-error {
  color: #f87171;
  font-size: .875rem;
  margin-bottom: 1rem;
}

.form-success {
  padding: 3rem 0;
  text-align: center;
  color: #fff;
}

.form-success-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem 0 .5rem;
}

.form-success-sub {
  opacity: .75;
  margin: 0;
}

/* Contact form */
.form-label-dark {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}

.required-star {
  color: #ff6c6c;
}

.form-input-dark {
  width: 100%;
  background-color: rgba(80, 103, 130, 0.3);
  border: 1px solid rgba(212, 212, 212, 0.4);
  padding: 10px 14px;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: var(--light-grey);
  outline: none;
  transition: border-color 0.2s, background-color 0.2s;
  display: block;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  &:focus-visible{
    outline: 3px solid var(--gold);
    outline-offset: 2px;
  }
}

.form-input-dark::placeholder {
  color: rgba(248, 249, 250, 0.5);
}

.form-input-dark:focus{
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(80, 103, 130, 0.4);
}

.form-textarea-dark {
  resize: none;
  height: 130px;
}


/* ------ */
/* FOOTER */
/* ------ */
.site-footer {
  position: relative;
  background-color: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 64px;
}
.footer-logo-img {
  height: 240px;
  width: auto;
  object-fit: contain;
}
.footer-nav-link{
  font-weight: 600;
  font-size: 14px;
  color: var(--light-grey);
  text-decoration: underline 2px solid transparent;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
  &:hover{
    color: #ffffff;
    text-decoration-color: #FFFFFF;
  }
}
.footer-bottom {
  border-top: 1px solid var(--light-grey);
  padding: 24px 0;
}
.footer-copy {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
  a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
    transition: color 0.2s ease;
    &:hover{
      color: #FFFFFF;
    }
  }
}
.footer-graphic {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.footer-graphic img {
  width: 420px;
  height: auto;
  opacity: 0.4;
}
.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-info-item{
  /* min-width: 188px; */
  min-width: 204px;
  .footer-title{
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    color: var(--border);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
  }
  .footer-address {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: var(--light-grey);
    margin-bottom: 4px;
    i{
      margin-right: 4px;
    }
  }
  ul{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }
  span.footer-address{
    font-size: 14px;
    line-height: 20px;
    font-style: italic;
    opacity: 0.8;
  }
}
/* faq link style */
.faq-answer a{
  color: var(--primary);
  text-decoration: underline solid 1px var(--primary);
  font-weight: 400;
  transition: color 0.2s ease;
  &:hover{
    color: var(--charcoal);
  }
}

/* team bio image */
.team-image{
  height: 400px;
  & img{
    height: 100%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
    border-bottom: 8px solid var(--gold);
  }
}

/* --------------------------------------------------------- */
/* JUSTIFIED BODY TEXT                                       */
/* Per client request (May 22, 2026) - applies to paragraph- */
/* style body copy only; headings, labels, nav, buttons,     */
/* short address lines and bullet lists are left untouched.  */
/* --------------------------------------------------------- */
.section-body-text,
.section-lead,
.team-bio,
.faq-intro-text,
.faq-answer p,
.value-text,
.practice-desc {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* wrapped text */
.navbar .btn-av-primary,
.navbar-light .navbar-nav .nav-link,
.footer-nav-link{
  white-space: nowrap;
}