@charset "UTF-8";
/* ============================================================
   Roha — Components
   Navbar, Footer, Buttons, Cards, Forms, Accordion, Pills
   ============================================================ */
/* ---------- Logo (wordmark) ---------- */
.logo {
  font-family: "Bricolage Grotesque", serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}
.logo .dot {
  color: var(--terracotta);
}
.logo--lg {
  font-size: 32px;
}
.logo--inverse {
  color: var(--cream);
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 18px;
  z-index: 200;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  width: 100%;
  background: color-mix(in oklab, var(--paper) 75%, transparent);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}
.nav.scrolled {
  background: color-mix(in oklab, var(--paper) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--rule);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13.5px;
}
.nav-links a {
  color: var(--ink);
  opacity: 0.68;
  transition: opacity 0.15s ease, color 0.15s ease;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover {
  opacity: 1;
  color: var(--terracotta);
}
.nav-links a.active {
  opacity: 1;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--terracotta);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  border: 1px solid var(--rule);
  background: transparent;
}
.nav-toggle svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 880px) {
  .nav-links, .nav-cta .btn-text {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}
/* ---------- Mobile menu overlay ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.7, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-head {
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
}
.mobile-menu-links {
  list-style: none;
  margin: 0;
  padding: 40px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.mobile-menu-links a {
  font-family: "Bricolage Grotesque", serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu-links a:hover {
  color: var(--terracotta);
}
.mobile-menu-links a .arr {
  color: var(--terracotta);
  font-family: "Geist", sans-serif;
  font-size: 18px;
}
.mobile-menu-foot {
  padding: 24px var(--gutter) 40px;
  border-top: 1px solid var(--rule);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--clay);
  display: flex;
  justify-content: space-between;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 99px;
  font-family: "Geist", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.005em;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}
.btn .arr {
  display: inline-block;
  transition: transform 0.25s ease;
}
.btn:hover .arr {
  transform: translateX(3px);
}
.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--terracotta-soft);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule-strong);
}
.btn-secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ink {
  background: var(--ink);
  color: var(--cream);
}
.btn-ink:hover {
  background: var(--clay);
}
.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border: 1px solid color-mix(in oklab, var(--cream) 40%, transparent);
}
.btn-outline-cream:hover {
  background: var(--cream);
  color: var(--ink);
}
.btn-cream {
  background: var(--cream);
  color: var(--ink);
}
.btn-cream:hover {
  background: white;
}
.btn-sm {
  padding: 9px 14px;
  font-size: 13px;
}
.btn-lg {
  padding: 14px 22px;
  font-size: 14.5px;
}

/* ---------- Cards ---------- */
.card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  border-color: var(--rule-strong);
}

/* ---------- Forms ---------- */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.field label {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clay);
}
.field input,
.field select,
.field textarea {
  font-family: "Geist", sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--paper);
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.field-error {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  display: none;
}
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: var(--terracotta);
}
.field.has-error .field-error {
  display: block;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}
/* ---------- Accordion ---------- */
.accordion {
  border-top: 1px solid var(--rule);
}

.accordion-item {
  border-bottom: 1px solid var(--rule);
}
.accordion-item.open .accordion-trigger .icon {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
  transform: rotate(45deg);
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: "Bricolage Grotesque", serif;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.15s ease;
}
.accordion-trigger:hover {
  color: var(--terracotta);
}
.accordion-trigger .icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  background: var(--cream);
  border: 1px solid var(--rule);
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.15s ease;
  font-family: "Geist Mono", monospace;
  font-size: 16px;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-content-inner {
  padding: 0 0 28px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.78;
  max-width: 68ch;
}

/* ---------- Pills / Tags ---------- */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 14px;
  border-radius: 99px;
  background: var(--cream);
  border: 1px solid var(--rule);
  color: var(--clay);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.pill:hover {
  border-color: var(--rule-strong);
}
.pill.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.tag {
  display: inline-flex;
  align-items: center;
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--rule);
  padding: 64px 0 32px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-col h4 {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--clay);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: var(--ink);
  opacity: 0.78;
  transition: opacity 0.15s ease, color 0.15s ease;
}
.footer-col a:hover {
  opacity: 1;
  color: var(--terracotta);
}
.footer-brand .logo {
  font-size: 28px;
  margin-bottom: 14px;
}
.footer-brand .tagline {
  font-family: "Bricolage Grotesque", serif;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  line-height: 1.25;
  max-width: 28ch;
}
.footer-brand p {
  font-size: 14px;
  color: var(--ink);
  opacity: 0.7;
  margin: 0;
  max-width: 38ch;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 99px;
  background: var(--cream);
  border: 1px solid var(--rule);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  color: var(--ink);
}
.footer-social a:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
}
.footer-social svg {
  width: 16px;
  height: 16px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clay);
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: span 2;
  }
}
@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
}
/* ---------- CTA panel (terracotta block) ---------- */
.cta-panel {
  background: var(--terracotta);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.cta-panel.pat-heat {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--clay) 100%);
}
.cta-panel .eyebrow {
  color: var(--cream);
  opacity: 0.8;
}
.cta-panel .eyebrow::before {
  background: var(--cream);
  opacity: 0.6;
}
.cta-panel h2 {
  font-family: "Bricolage Grotesque", serif;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--cream);
  margin: 18px 0 18px;
  max-width: 16ch;
}
.cta-panel p {
  font-size: 18px;
  color: var(--cream);
  opacity: 0.82;
  max-width: 52ch;
  margin: 0 0 32px;
}
.cta-panel .btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-panel {
  /* decorative arc accent on CTA */
}
.cta-panel .arcs-deco {
  position: absolute;
  right: -120px;
  bottom: -240px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid color-mix(in oklab, var(--cream) 25%, transparent);
  pointer-events: none;
}
.cta-panel .arcs-deco::before, .cta-panel .arcs-deco::after {
  content: "";
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in oklab, var(--cream) 18%, transparent);
}
.cta-panel .arcs-deco::after {
  inset: 90px;
  border-color: color-mix(in oklab, var(--cream) 12%, transparent);
}

/* ---------- CTA wrap (shared) ---------- */
.cta-wrap {
  padding: 0 var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}

/* Compact variant — used on work/services/home secondary CTAs */
.cta-panel-compact {
  padding: clamp(28px, 4vw, 48px) !important;
  border-radius: var(--radius-md) !important;
}
.cta-panel-compact h2 {
  font-size: clamp(24px, 3.4vw, 40px) !important;
  margin: 10px 0 10px !important;
}
.cta-panel-compact p {
  font-size: 14.5px !important;
  margin: 0 0 20px !important;
}
.cta-panel-compact {
  /* Tighten compact CTA decorative arcs so they don't overpower a small panel */
}
.cta-panel-compact .arcs-deco {
  right: -160px;
  bottom: -260px;
  width: 380px;
  height: 380px;
}

@media (max-width: 640px) {
  .cta-panel-compact {
    padding: 24px !important;
  }
  .cta-panel-compact h2 {
    font-size: 26px !important;
  }
  .cta-panel-compact p {
    font-size: 14px !important;
    margin: 0 0 16px !important;
  }
  .cta-panel-compact .arcs-deco {
    right: -180px;
    bottom: -200px;
    width: 280px;
    height: 280px;
  }
}

/*# sourceMappingURL=components.css.map */
