/* Breadcrumb */
.crumbs { padding-top: 48px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-500); display: flex; gap: 10px; align-items: center; }
.crumbs a { color: var(--gray-500); }
.crumbs a:hover { color: var(--purple); }
.crumbs .sep { opacity: 0.5; }
.crumbs .current { color: var(--purple); }

/* Hero standard */
.hero { padding: 72px 0 56px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 999px; background: var(--purple-softer); border: 1px solid color-mix(in srgb, var(--purple) 15%, transparent); font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple); margin-bottom: 28px; }
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 10px var(--purple); }
.hero h1 { font-family: var(--display); font-weight: 800; font-size: clamp(44px, 5.8vw, 80px); line-height: 0.92; letter-spacing: -0.02em; margin: 0 0 24px; color: var(--charcoal); max-width: 20ch; }
.hero h1 .accent { color: var(--purple); position: relative; display: inline-block; }
.hero h1 .accent::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 18px; background: var(--blush); z-index: -1; opacity: 0.6; border-radius: 2px; }
.hero p.lead { max-width: 56ch; font-size: 18px; color: var(--gray-700); line-height: 1.55; margin: 0 0 32px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Sections */
section.sec { padding: 72px 0; }
.section-head { display: grid; grid-template-columns: 160px 1fr; gap: 48px; align-items: start; margin-bottom: 48px; }
.section-index { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple); padding-top: 8px; }
.section-title { font-family: var(--display); font-weight: 800; font-size: clamp(34px, 4.4vw, 56px); line-height: 0.95; letter-spacing: -0.015em; color: var(--charcoal); margin: 0; max-width: 20ch; }
.section-intro { margin-top: 18px; font-size: 16px; color: var(--gray-700); max-width: 62ch; line-height: 1.6; }

/* Generic feature grid (4-up) */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feat-card {
  background: var(--paper);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all .3s var(--ease);
}
.feat-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--purple) 30%, transparent);
  box-shadow: 0 20px 40px -20px color-mix(in srgb, var(--purple) 20%, transparent);
}
.feat-card .icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: color-mix(in srgb, var(--purple) 12%, transparent);
  color: var(--purple);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.feat-card h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--charcoal);
}
.feat-card p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.55;
  margin: 0;
}

/* 3-up variant */
.feat-grid.three { grid-template-columns: repeat(3, 1fr); }
.feat-grid.two { grid-template-columns: repeat(2, 1fr); }

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 40px 48px;
  background: var(--paper);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  margin-top: 40px;
}
.stat-item { text-align: left; padding: 0 24px; position: relative; }
.stat-item + .stat-item::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: var(--gray-100); }
.stat-num { font-family: var(--display); font-weight: 800; font-size: 42px; letter-spacing: -0.015em; line-height: 1; color: var(--purple); }
.stat-label { font-family: var(--mono); font-size: 11px; color: var(--gray-500); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 10px; }

/* CTA dark block */
.cta { background: var(--cosmic); color: #fff; border-radius: 28px; margin: 0 32px 80px; padding: 72px 56px; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 600px 400px at 15% 20%, color-mix(in srgb, var(--purple) 55%, transparent), transparent 60%), radial-gradient(ellipse 500px 300px at 90% 80%, color-mix(in srgb, var(--blush) 22%, transparent), transparent 55%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: end; max-width: var(--container); margin: 0 auto; }
.cta h2 { font-family: var(--display); font-size: clamp(42px, 5vw, 72px); line-height: 0.92; letter-spacing: -0.02em; margin: 0 0 12px; max-width: 16ch; }
.cta h2 span { color: var(--lilac); }
.cta-eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lilac); margin-bottom: 20px; }
.cta-body { font-size: 16px; color: rgba(255,255,255,0.72); line-height: 1.55; margin: 0 0 24px; }
.cta-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 1024px) {
    .hero { padding: 48px 0 40px; }
    .feat-grid, .feat-grid.three { grid-template-columns: repeat(2, 1fr); }
    .stats-strip { grid-template-columns: 1fr 1fr; gap: 0; padding: 24px; }
    .stat-item:nth-child(odd)::before { display: none; }
    .stat-item { padding: 16px 20px; border-top: 1px solid var(--gray-100); border-right: 1px solid var(--gray-100); }
    .stat-item:nth-child(even) { border-right: 0; }
    .stat-item:nth-child(1), .stat-item:nth-child(2) { border-top: 0; }
    .section-head { grid-template-columns: 1fr; gap: 16px; }
    .cta { padding: 48px 32px; margin: 0 16px 48px; }
    .cta-inner { grid-template-columns: 1fr; gap: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
  }
  @media (max-width: 720px) {
    .container { padding: 0 20px; }
    .feat-grid, .feat-grid.three, .feat-grid.two { grid-template-columns: 1fr; }
    section.sec { padding: 48px 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
  }


  /* ============================================================
     Contact-us specific component styles
     ============================================================ */

  /* Hero — adjusted to give the contact lead more breathing room */
  .hero { padding: 64px 0 32px; }
  .hero h1 .accent { color: var(--purple); }

  /* Quick-jump rail under hero — three pill-buttons to anchor sections */
  .quick-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid color-mix(in srgb, var(--charcoal) 10%, transparent);
  }
  .quick-rail-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-right: 8px;
    align-self: center;
  }
  .quick-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--paper);
    border: 1px solid var(--gray-100);
    font-size: 13px;
    font-weight: 500;
    color: var(--charcoal);
    transition: all .2s var(--ease);
  }
  .quick-pill:hover {
    border-color: color-mix(in srgb, var(--purple) 40%, transparent);
    background: var(--purple-softer);
    color: var(--purple);
    transform: translateY(-1px);
  }
  .quick-pill svg { width: 14px; height: 14px; }

  /* Office cards — 3-up grid with a left accent bar and live "now" indicator */
  .office-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .office-card {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 32px 28px 28px;
    overflow: hidden;
    transition: all .3s var(--ease);
  }
  .office-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: var(--purple);
    transform: scaleY(0.35);
    transform-origin: top;
    transition: transform .35s var(--ease);
  }
  .office-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--purple) 30%, transparent);
    box-shadow: 0 20px 40px -20px color-mix(in srgb, var(--purple) 20%, transparent);
  }
  .office-card:hover::before { transform: scaleY(1); }

  .office-flag {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 4px;
  }
  .office-name {
    font-family: var(--display);
    font-weight: 800;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.015em;
    color: var(--charcoal);
    margin: 0 0 22px;
  }
  .office-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 500;
    color: var(--purple);
    margin-bottom: 18px;
    direction: ltr;
    unicode-bidi: isolate;
  }
  .office-phone:hover { text-decoration: underline; text-underline-offset: 4px; }
  .office-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-700);
    padding-top: 16px;
    border-top: 1px dashed var(--gray-200);
  }
  .office-status {
    width: 8px; height: 8px; border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    animation: pulseStatus 2.2s var(--ease) infinite;
    flex-shrink: 0;
  }
  .office-status.closed { background: var(--gray-400); animation: none; box-shadow: none; }
  @keyframes pulseStatus {
    0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
  }

  /* Channels — 3-up grid of routing cards (general / support / partnerships)
     paired with a sticky hours callout on the side */
  .channels-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 24px;
    align-items: start;
  }
  .channels-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .channel-card {
    background: var(--paper);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 28px 28px 24px;
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 20px;
    align-items: center;
    transition: all .25s var(--ease);
  }
  .channel-card:hover {
    border-color: color-mix(in srgb, var(--purple) 30%, transparent);
    box-shadow: 0 16px 30px -18px color-mix(in srgb, var(--purple) 18%, transparent);
  }
  .channel-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--purple-softer);
    color: var(--purple);
    display: grid; place-items: center;
  }
  .channel-icon svg { width: 24px; height: 24px; }
  .channel-body h3 {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 4px;
  }
  .channel-body p {
    font-size: 13.5px;
    color: var(--gray-700);
    line-height: 1.55;
    margin: 0;
    max-width: 52ch;
  }
  .channel-email {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--purple);
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--purple-softer);
    border: 1px solid color-mix(in srgb, var(--purple) 15%, transparent);
    transition: all .2s var(--ease);
    white-space: nowrap;
  }
  .channel-email:hover {
    background: var(--purple);
    color: #fff;
    transform: translateY(-1px);
  }
  .channel-sla {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-top: 6px;
  }

  /* Sticky business-hours card */
  .hours-card {
    background: var(--cream-2);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 28px;
    position: sticky;
    top: 96px;
  }
  .hours-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 14px;
  }
  .hours-card h3 {
    font-family: var(--display);
    font-weight: 800;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.015em;
    color: var(--charcoal);
    margin: 0 0 18px;
  }
  .hours-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    border-top: 1px solid var(--gray-200);
  }
  .hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 13.5px;
  }
  .hours-list li span:first-child { color: var(--gray-700); }
  .hours-list li span:last-child { font-family: var(--mono); font-weight: 500; color: var(--charcoal); }
  .hours-tz {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: color-mix(in srgb, #10B981 14%, transparent);
    border: 1px solid color-mix(in srgb, #10B981 28%, transparent);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    color: #047857;
    letter-spacing: 0.05em;
  }
  .hours-tz .dot { width: 6px; height: 6px; border-radius: 50%; background: #10B981; }

  /* Testimonials — two card layout, large pull-quote with logo */
  .quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .quote-card {
    background: var(--paper);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 36px 36px 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .quote-mark {
    font-family: var(--display);
    font-weight: 800;
    font-size: 120px;
    line-height: 0.6;
    color: var(--blush);
    margin-bottom: 4px;
    user-select: none;
  }
  .quote-card blockquote {
    margin: 0 0 28px;
    font-size: 17px;
    line-height: 1.55;
    color: var(--charcoal);
    flex: 1;
    font-weight: 400;
  }
  .quote-byline {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
  }
  .quote-author {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 14.5px;
    color: var(--charcoal);
    line-height: 1.3;
  }
  .quote-author .role {
    display: block;
    font-weight: 400;
    color: var(--gray-500);
    font-size: 13px;
    margin-top: 4px;
  }
  .quote-logo {
    font-family: var(--display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.01em;
    color: var(--gray-400);
  }

  /* FAQ accordion */
  .faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .faq-item {
    background: var(--paper);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .2s var(--ease);
  }
  .faq-item:hover { border-color: color-mix(in srgb, var(--purple) 25%, transparent); }
  .faq-item.open { border-color: color-mix(in srgb, var(--purple) 40%, transparent); }
  .faq-item details {
    padding: 0;
  }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 28px;
    display: grid;
    grid-template-columns: 32px 1fr 32px;
    gap: 16px;
    align-items: center;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-num {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--purple);
    letter-spacing: 0.06em;
  }
  .faq-toggle {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--purple-softer);
    color: var(--purple);
    display: grid; place-items: center;
    transition: all .25s var(--ease);
    flex-shrink: 0;
  }
  .faq-toggle svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
  .faq-item[open] .faq-toggle { background: var(--purple); color: #fff; }
  .faq-item[open] .faq-toggle svg { transform: rotate(45deg); }
  .faq-body {
    padding: 0 28px 28px 76px;
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
    max-width: 70ch;
  }

  /* Booking strip — cosmic dark CTA at the bottom */
  .book-cta { padding: 0; }
  .book-card {
    background: var(--cosmic);
    color: #fff;
    border-radius: 28px;
    padding: 80px 64px;
    position: relative;
    overflow: hidden;
    margin: 0 0 80px;
  }
  .book-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 700px 400px at 12% 15%, color-mix(in srgb, var(--purple) 55%, transparent), transparent 60%),
      radial-gradient(ellipse 500px 320px at 95% 90%, color-mix(in srgb, var(--blush) 22%, transparent), transparent 55%);
    pointer-events: none;
  }
  .book-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: end;
  }
  .book-eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lilac);
    margin-bottom: 22px;
  }
  .book-card h2 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(40px, 5vw, 76px);
    line-height: 0.92;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    max-width: 18ch;
  }
  .book-card h2 span { color: var(--lilac); }
  .book-card p {
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255,255,255,0.72);
    margin: 0 0 28px;
    max-width: 52ch;
  }
  .book-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
  .book-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .book-stat-num {
    font-family: var(--display);
    font-weight: 800;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #fff;
  }
  .book-stat-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-top: 8px;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .office-grid { grid-template-columns: 1fr; }
    .channels-layout { grid-template-columns: 1fr; }
    .hours-card { position: static; }
    .quote-grid { grid-template-columns: 1fr; }
    .book-card { padding: 56px 36px; }
    .book-grid { grid-template-columns: 1fr; gap: 40px; }
  }
  @media (max-width: 720px) {
    .channel-card { grid-template-columns: 48px 1fr; gap: 16px; padding: 22px; }
    .channel-card .channel-email { grid-column: 2; justify-self: start; }
    .channel-icon { width: 48px; height: 48px; }
    .faq-item summary { grid-template-columns: 1fr 32px; gap: 12px; padding: 20px; font-size: 15px; }
    .faq-num { display: none; }
    .faq-body { padding: 0 20px 22px; }
    .book-card { padding: 40px 24px; margin: 0 0 48px; }
    .book-card h2 { font-size: clamp(32px, 8vw, 48px); }
  }
